/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
 
 @media (max-width: 1024px) {
    body .home-video h1 {
        top: 46%;
    }
    
    body .home-video h2 {
        font-size: 12px;
        line-height: normal;
        padding-left: 30px;
        padding-right: 30px;
        top: 55%;
    }
    
    body .scroll-down span {
        width: 10px;
        height: 10px;
        left: 27px;
    }
    
    body.lang-en .scroll-down span {
        left: 23px!important;
    }
 }
 
 @media (max-width: 480px) {
     body .home-video h1 {
         top: 35%;
     }
     
     body .home-video h2 {
         font-size: 12px;
         line-height: normal;
         padding-left: 30px;
         padding-right: 30px;
         top: 49%;
     }
  }
  
html {
  scroll-behavior: smooth;
}

.home-video {
    margin-top: 0px;
}

.home-video h1 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: #FFF;
    z-index: 2;
    cursor: none;
}

.home-video h2 {
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    color: #FFF;
    z-index: 2;
    cursor: none;
    font-size: 16px;
}

.home-video h1 img {
    width: 25px;
    height: 25px;
    position: relative;
    top: -3px;
    margin-right: 3px;
}

.header-top img.logo {
    width: 100px;
}

.scroll-down {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 10;
}

.scroll-down small {
    display: block;
    font-size: 12px;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 1px;
    position: relative;
    top: 20px;
}

.scroll-down span {
    display: block;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    animation: scrollDown 1.8s infinite;
    position: relative;
    left: 25px;
}

body.lang-en .scroll-down span {
    left: 20px;
}

@keyframes scrollDown {
  0% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translate(12px, 12px);
    opacity: 0;
  }
}

body.is-not-index #header {
    background-image: none;
    background-color: #000;
}

div#_mobile_logo img.logo {
    width: 100px!important;
}

.promo-banner .container {
    padding: 40px 20px;
    background: rgb(000,000,000,0.7);
}

.promo-banner .container h3.headline-section {
    color: #FFF;
}

.promo-banner .container p {
    color: #fff;
    font-weight: 500;
    line-height: 1.5em;
}

.top-banner.text-in-left img.img-banner {
    object-fit: cover;
    height: 1000px;
    object-position: center center;
}

.top-banner img.img-banner {
    object-fit: cover;
    height: 1000px;
    object-position: bottom center;
}

.top-banner.text-in-left .banner-description a.banner-link:before {
    background: none;
}

.top-banner.text-in-left .banner-description a.banner-link {
    margin-bottom: 15px;
}

@media (max-width: 991.98px) {
    #menu-icon {
        flex: 9 0 0;
    }
    .promo-banner .banner-link {
        padding-bottom: 0;
        padding-top: 0;
    }
    
    .top-banner.text-in-left img.img-banner {
        height: 500px;
    }
    
    .top-banner img.img-banner {
        height: 700px;
    }
}