/*
* Style tweaks
* --------------------------------------------------
*/
html,
body {
    overflow-x: hidden; /* Prevent scroll on narrow devices */
}
.bleu{
    color: #078FD4;
}

.bg-bleu{
    background-color: #078FD4;
    color: white;
}

.bg-black{
    background-color: black;
    color: white;
}

.bg-black-light{
    background-color: #182031;
    color:white;
}

.mw-30{
    max-width: 30px;
}

.header-info-box {
  margin: 0 0 0 30px;
  display: flex;
  color: white;
  align-items: center;
}

#user-btn {
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  background: #078FD4;
  color: white;
  display: inline-block;
  border-radius: 90px;
}

.menu-search-block {
  position: relative;
  margin: 0 30px 0 0;
}

.menu-search-block a {
  color: white;
  font-size: 16px;
  width: 18px;
  display: inline-block;
}


.account-holder {
  position: relative;
  margin-right: 30px;
}

.basic-button {
  text-transform: uppercase;
  position: relative;
  width: auto;
  background: #078FD4;
  color: white;
  font-size: 16px;
  padding: 6px 30px;
  line-height: 2;
  vertical-align: middle;
  border: none;
  display: inline-block;
  overflow: hidden;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

h4{
    font-family: "Jost", Sans-serif;
    font-weight: 600;
}

.movie-thumb {
  position: absolute;
  left: 38%;
  display: flex;
  z-index: 99;
  top: 66%;
}

a:hover{
    color:white;
}

/* [1] The container */
.hover-img {
  height: 300px; /* [1.1] Set it as per your need */
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.hover-img .thumimg {
  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.hover-img:hover .thumimg {
  transform: scale(1.5);
}

.movie-play{
  position: absolute;
  top: 38%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
}

.play-btn{
  padding: 0;
  width: 60px;
  height: 60px;
  opacity: 1;
  display: inline-block;
  line-height: 60px;
  text-align: center;
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
}

.hover-img:hover .movie-play {
    opacity: 1;
}

.black{
    color:black;
}

.goproads{
    position: absolute;
    top: 45%;
    left: 5%;
}

.animtext{
    opacity: 0;
    transform: scale(1.2);
}

@keyframes wipe-enter {
    0% {
        transform: scale(0, .025);
    }
    50% {
        transform: scale(1, .025);
    }
}

@media (prefers-reduced-motion: no-preference) {
  .animtext-transition {
    animation-name: wipe-enter;
    animation-duration: 2s;
  }
}

.animtext-transition {
    opacity: 1;
    transform: none;
}

.video-block{
    border-bottom: 3px solid #078FD4;
}

#map {
    height: 400px;
}

#my-video{
    border-radius: 5px;
    border: 2px solid white;
}

.white{
    color: white;
}

#chartdiv {
  width: 100%;
  height: 500px;
  max-width: 100%;
}

.bg-yt{
    background-color: #ff3f3f;
    color: white;
}

.bg-vimeo{
    background-color: #19b1e3;
    color:white;
}

.w-120{
    width:120px;
}

footer {
    padding: 30px 0;
}

