@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.ttf');
}
@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.ttf');
}
@font-face {
    font-family: 'Poppins-Light';
    src: url('../fonts/Poppins-Light.ttf');
}
@font-face {
    font-family: 'Poppins-Semibold';
    src: url('../fonts/Poppins-Semibold.ttf');
}

@font-face {
    font-family: 'Poppins-LightItalic';
    src: url('../fonts/Poppins-LightItalic.ttf');
}
@font-face {
    font-family: 'JosefinSans-Medium';
    src: url('../fonts/JosefinSans-Medium.ttf');
}
@font-face {
    font-family: 'JosefinSans-Regular';
    src: url('../fonts/JosefinSans-Regular.ttf');
}
@font-face {
    font-family: 'JosefinSans-SemiBold';
    src: url('../fonts/JosefinSans-SemiBold.ttf');
}
html {
  scroll-behavior: smooth;
}
/* hamburger */

.checkbox {
    display: none;
}

.button {
    position: relative;
   background-color: #000;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    position: fixed;
    top: 5vh;
    right: 5vw;
    z-index: 2000;
    /*box-shadow: 0 1rem 3rem black;*/
    text-align: center;
    cursor: pointer;
      border: 2px solid #FFC845;
        border-radius: 50%;
        animation: rotateIn;
        animation-duration: 3s;

}

.background {
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    position: fixed;
    top: 5vh;
    right: 5vw;
    background: #00000070;
  
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);

}

.nav {
    height: 100vh;
    position: fixed;
    top: 0;
    right: -60vw;
    z-index: 1500;
    opacity: 0;
    width: 0;
    transition: all 0.8s;
}

.list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
    width: 100%;
    padding: 0;
}
.list .item{
    margin: 5px;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.item {
     margin: 5px;
    height: 8rem;
    display: flex;
    align-items: center;
}

.link:link,
.link:visited {
    display: inline-block;
    font-size: 17px;
    font-weight: 300;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
   /* background-image: linear-gradient( 120deg, transparent 0%, transparent 50%, white 50%);*/
    background-size: 220%;
    transition: all 0.4s;
}
.link:visited .list{
    display: none;
}
.link:hover,
.link:active {
    color: lightgreen;
    cursor: pointer;
}


/* functionality */

.checkbox:checked~.background {
    transform: scale(85);
        border-radius: 0;
        background: #191919;
}

.checkbox:checked~.nav {
    opacity: 1;
    width: 100%;
    right: 0;
}


/*  */


/* styling hamb ICON */

.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon,
.icon::before,
.icon::after {
    width: 1rem;
    height: 2px;
    background-color: #fff;
    display: inline-block;
}

.icon::before,
.icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all 0.2s;
}

.icon::before {
    top: -0.3rem;
}

.icon::after {
    top: 0.35rem;
}

.button:hover icon:before {
    top: -1rem;
}

.button:hover icon::after {
    top: 1rem;
}

.checkbox:checked+.button .icon {
    background-color: transparent;
}

.checkbox:checked+.button .icon::before {
    top: 0;
    transform: rotate(135deg);
    background-color: #FFC845;
}

.checkbox:checked+.button .icon::after {
    top: 0;
    transform: rotate(-135deg);
    background-color: #FFC845;
}
.link{
    color: #fff!important;
     font-family: 'Poppins-Medium';
     font-size: 17px;
    letter-spacing: 4px;
}
.link:hover{
color: #FFC845!important;
}
/*end nav*/

/* banner */
.banner{
    /*background: url(../img/bg-top.png);*/
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
}
.home-video{
  /*      position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;*/
}
/*.home-video video {
    position: absolute;
    z-index: 0;
}*/
.logo{
    width: 15rem;
    margin: auto;
    display: block;
    margin-top: 2rem;
    padding: 0 2rem;
}
.logo img{
    width: 100%;
    /*animation: backInUp;  referring directly to the animation's @keyframe declaration 
  animation-duration: 2s;*/
}
.p-underlogo{
  font-size: 24px;
    text-align: center;
    color: #fff;
    font-family: 'Poppins-Regular';
        margin-top: 9rem;
}
.buttons{
    margin-top: 9rem;
    margin-bottom: 10rem;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.joinus,.memberonly{
   font-family: 'Poppins-Medium';
   color: #fff;
    border: 1px solid #FFC845;
    background:transparent;
    width: 13rem;
    padding: 12px 5px;
    border-radius: 9px;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
  /*  animation: backInUp;
    animation-duration: 2s;*/
}
.joinus:hover,.memberonly:hover{
  color:  #fff;
  text-decoration: none;
}
.joinus:hover,.memberonly:hover{
        background: #cd954a5c;
}
.memberonly{
    margin-right: 15px;
}
.joinus{
    margin-left: 15px
}

.grid-gallery{
     border-top: 1px solid #b98d25fa;
    width: 100%;
    grid-gap: 1%;
    color: #fff;
    position: relative;
    display: grid;
    grid-gap: 0%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: #000;
}
.img {
    height: 20rem;
    background: #000;
}
.img img{
    width:100%;
    height: 100%;
    object-fit: cover;
    opacity: 1



/*    animation:fadeInDown;
    animation-duration: 1s;*/
    /*animation-delay: 2s;*/
}
.odd{
    background: #000;

}

.img-ove{
    position: absolute;
}

/*.one{
    -webkit-animation: load 5s infinite;
  animation: load 5s infinite;
}
.two {
  -webkit-animation: load 5s infinite 1s;
  animation: load 5s infinite 1s;
}
.three {

  -webkit-animation: load 5s infinite 2s;
  animation: load 5s infinite 2s;
}
.four {
  -webkit-animation: load 5s infinite 3s;
  animation: load 5s infinite 3s;
}*/
/*.one{
  animation:fadeIn;
  animation-duration: 3s;
  animation-delay: 0.3s;
}
.two{
 animation:fadeIn;
  animation-duration: 3s;
  animation-delay: 0.6s;
}
.three{
animation:fadeIn;
  animation-duration: 3s;
  animation-delay: 0.9s;
}
.four{
animation:fadeIn;
  animation-duration: 3s;
  animation-delay: 1.2s;
}
.five{
animation:fadeIn;
  animation-duration: 3s;
  animation-delay:1.5s;

}
.six{
animation:fadeIn;
  animation-duration: 3s;
animation-delay: 1.8s;
}
.seven{
animation:fadeIn;
  animation-duration: 3s;
animation-delay:2.1s;
}
.eight{
animation:fadeIn;
  animation-duration: 3s;
animation-delay: 2.4s;
}*/
.overlay{
  background: url(../img/about.jpg);
    height: 28rem;
    background-size: cover;
    background-repeat: no-repeat;
        border-top: 0.1px solid #7453059e;
}
.background-overlay{
    padding: 0 1rem;
    height: 100%;
    width: 100%;
    background: rgb(0,0,0,20%);
}
.overlay-title{
   color: #fff;
   font-family: 'Poppins-Medium';
   text-align: center;
    margin-top: 5rem;
    margin-bottom: 2rem;
    font-size: 24px;
    letter-spacing: 1px;
 /*   animation:backInDown;
    animation-duration: 3s*/
}
.text{
   color: #fff;
   font-family: 'Poppins-Light';
   text-align: center;
   margin-bottom: 3px;
   font-size: 18px;
  /* animation: backInUp;
   animation-duration: 3s;*/

}
.learn-more{
    text-align: center;
        margin-top: 2rem;
}
.learn-btn{
    font-family: 'Poppins-Medium';
    color: #fff;
    border: 1px solid #FFC845;
    background: transparent;
    width: 13rem;
    padding: 12px 5px;
    border-radius: 9px;
    text-transform: uppercase;
    font-size: 14px;
}
.learn-btn:hover{
     background: #cd954a5c;
}
.left-btn,.right-btn{
display: contents;
}
.left{
border:solid #ffc8459e;
height: 20rem;
background: #181818;
border-left-width: 0.5px;
border-top-width: 0.5px;
border-bottom-width: 0.5px;
border-right-width: 0.05px;
display: flex;
justify-content: center;
align-items: center;
/*animation: fadeInRight;
animation-duration: 2s;
animation-delay: 1s;*/
}
.left img{
        width: 100%;
    height: 100%;
    object-fit: cover;
        opacity: 0.8;
}
.right{
border:solid #ffc8459e;
height: 20rem;
background: #181818;
border-left-width: 0.05px;
border-top-width: 0.5px;
border-bottom-width: 0.5px;
border-right-width: 0.5px;
display: flex;
justify-content: center;
align-items: center;
/*animation:  fadeInLeft;
animation-duration: 2s;
animation-delay: 1s;*/
}
.right img{
       width: 100%;
    height: 100%;
    object-fit: cover;
        opacity: 0.8;
}
.grid{
    width: 100%;
    position: relative;
    display: grid;
    grid-gap: 0%;
    grid-template-columns: 1fr 1fr;
}
.right .text-about1{
    font-family: 'Poppins-Light';
    background: transparent;
    color: #fff;
    border: none;
    position: absolute;
    font-size: 32px;
    text-transform: uppercase;
    outline: none;
/*    animation: backInUp;
   animation-duration: 3s;
   animation-delay: 0.3s;*/
}
.right .text-about{
    font-family: 'Poppins-LightItalic';
    background: transparent;
    color: #fff;
    border: none;
    position: absolute;
    font-size: 18px;
    top: 54%;
    outline: none;
}
.left .text-about1{
    font-family: 'Poppins-Light';
    background: transparent;
    color: #fff;
    border: none;
    position: absolute;
    font-size: 32px;
    text-transform: uppercase;
    outline: none;
/*    animation: backInUp;
   animation-duration: 3s;
   animation-delay: 0.3s;*/
}
.left .text-about{
    font-family: 'Poppins-LightItalic';
    background: transparent;
    color: #fff;
    border: none;
    position: absolute;
    font-size: 18px;
    top: 54%;
    outline: none;
}
.left:hover #desktop1{
    opacity: 0.3;

}
.right:hover #desktop2{
    opacity: 0.3;

}

/*.owl-carousel .item img{
    animation: backInUp;
   animation-duration: 3s;
}
*/

#mobile1,#mobile2{
    display: none;
}


.owl-nav button {
     position: absolute;
     top: 50%;
     background-color: #000;
     color: #fff;
     margin: 0;
     transition: all 0.3s ease-in-out;
}
 .owl-nav button.owl-prev {
     left: 0;
}
 .owl-nav button.owl-next {
     right: 0;
}
 .owl-dots {
     text-align: center;
     padding-top: 15px;
}
 .owl-dots button.owl-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     display: inline-block;
    border: 1px solid #000;
     background: #fff;
     margin: 0 3px;
}
 .owl-dots button.owl-dot.active {
     background-color: #000;
     border: 1px solid #000;
}
 .owl-dots button.owl-dot:focus {
     outline: none;
}
 .owl-nav button {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.38) !important;
}
 span {
     font-size: 70px;
     position: relative;
     top: -5px;
}
 .owl-nav button:focus {
     outline: none;
}

.slider{
    padding: 2rem 5rem;
    background: #fff;
}
.slider-title{
    color: #fff;
    text-align: center;
    font-family: 'JosefinSans-Regular';
    text-transform: uppercase;
    font-size: 36px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

footer{
  background: url(../img/background.png);  
  padding: 8rem 2rem 8rem 2rem;
}
.footer-title{
    font-size: 24px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-family: 'JosefinSans-Regular';
/*    animation: backInUp;
   animation-duration: 3s;*/
}
.social{
    padding: 0;
    display: flex;
    margin:0;
    align-items: center;
    list-style: none;
    justify-content: center;
}
.social li{
    width: 2rem;
    height: 2rem;
}
.social .middle-li{
    margin-right: 8px;
    margin-left: 8px
}
.social li a img{
    width: 100%;
    height: 100%;
  
}
.copyright{
    text-align: center;
    color: #000;
    font-family: 'Poppins-Semibold';
    margin-top: 3rem;
    margin-bottom: 0;
}

#gallery-mobile{
    display: none;
}
/*responsive*/
@media(min-width: 1440px){
    #home-video{
            max-height:195vh!important;
        }
            .buttons{
               
                  margin-top: 10rem;
                      margin-bottom: 11rem;
    
    }
     .p-underlogo {
            margin-top: 10rem;
            margin-bottom: 0;
        }
     #gallery{margin-top: 8rem;}
     .checkbox:checked~.background {
    transform: scale(95);
}
  
    }
    @media(max-width: 1430px) and (min-width:1421px){
      #gallery{margin-top: 7rem;}
       .buttons {
    margin-top: 8rem;
        margin-bottom: 7rem;
  }
  #home-video{
            max-height:200vh!important;
        }
         .p-underlogo {
            margin-top: 8rem;
            margin-bottom: 0;
        }
    }
@media(max-width:1420px) and (min-width: 1301px){
    #home-video{
            max-height:195vh!important;
        }
  
     #gallery{margin-top: 6rem;}
   

    }
@media(max-width:1300px) and (min-width: 1201px){
    #home-video{
            max-height: 194vh!important;
        }
   
    }
     @media(max-width:1400px) and (min-width: 1301px){
       .buttons{
                margin-top: 9rem;
                    margin-bottom: 9rem;
    }
     .p-underlogo {
            margin-top: 9rem;
            margin-bottom: 0;
        }
     }
    @media(max-width:1300px) and (min-width: 1251px){
           .buttons{
                margin-bottom: 8rem;
                    margin-bottom: 4rem;
    }
     .p-underlogo {
            margin-top: 8rem;
            margin-bottom: 0;
        }
    }
@media(max-width:1250px) and (min-width: 1100px){
    .gallery{
   margin-top: 0rem;
}
.buttons{
      margin-top: 8rem;
          margin-bottom: 5.5rem;
}
 .p-underlogo {
            margin-top: 8rem;
            margin-bottom: 0;
        }
        #home-video{
              max-height: 166vh!important;
        }
}
@media(max-width:1090px) and (min-width: 764px){
    #home-video{
            max-height: 192vh!important;
    }
    .buttons {
    margin-top: 8rem;
}
    }
@media(max-width:1024px){
    .img {
    height: 15rem;
    }
    .text{
    font-size: 18px;
    padding: 0 10px;
    }
        .p-underlogo {
            margin-top: 8rem;
            margin-bottom: 0;
        }
   
}

@media(max-width:768px){
    .grid-gallery{
      grid-template-columns: 1fr 1fr;
    }
    .buttons{
            margin-top: 4rem;
                margin-bottom: 1.5rem;
    }
    .banner{
        height: auto;
    }
    .img {
    height: 14rem;
    }
    .text{
    font-size: 15px;
    padding: 0 18px;
    }
    .p-underlogo {
   font-size: 20px;
    margin-top: 4rem;
    margin-bottom: 0;
  }
}
@media(max-width:600px){
  .p-underlogo {
    font-size: 12px;
    margin-top: 5rem;
    margin-bottom: 0
}
    #gallery-desktop{
    display: none;
}
#gallery-mobile{
    display: block;
}
.right .text-about{
        top: 76%;
}
.left .text-about{
        top: 26%;
}
    #mobile1,#mobile2{
        display: block;
    }
    #desktop1,#desktop2{
        display: none;
    }
    .left:hover #mobile1{
        opacity: 1;
    }
    .right:hover #mobile2{
        opacity: 1;
    }
    .logo {
    width: 9rem;
    margin: auto;
    display: block;
    margin-top: 1rem;
    padding: 0 2rem;
   }
   .banner {
    height: 21rem;
    background-size: cover;
   } 
   .buttons {
    margin-top: 5rem;
   }
   .joinus, .memberonly{
    width: 8rem;
    font-size: 12px;
   }
   .memberonly{
        margin-right: 8px;
   }
   .joinus {
    margin-left: 8px;
   }
   .grid-gallery{
        grid-template-columns: 1fr 1fr;
   }
   .img {
    height: 12rem;
   }
   .gallery{
    margin-top: -1px;
   }
   .overlay{
        background-size: cover;
    background-position: bottom;
   }
   .text{
        font-size: 12px;
    padding: 0 10px;
   }
   .grid
   {
        display: block;
   }
   .copyright{
        font-size: 12px;
   }

}
@media(max-width: 410px){
    .banner {
       background-size: cover;
}
}
@media(max-width:390px){
    .banner {
    height: 21rem;
   }
   .buttons {
    margin-top: 5rem;
   }
}
@media(max-width:375px){
    .banner {
    height: 21rem;
   }
   .buttons {
    margin-top: 5rem;
   }
   .img {
    height: 11rem;
   }
}