@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;1,400&display=swap');

/* LOADER SCREEN STARTS HERE */
#preloader{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #393E46;
    z-index: 10000;
    overflow: hidden;
}

.preloader-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
header .img-logo{
    width: 6rem;
    margin-left: 20px;
    animation: float2 4s ease-in-out infinite;
}

#path_1{
    animation: float 3s ease-in-out infinite;
}

#path_2{
    animation: animateOne 0.8s linear 0.8s infinite alternate;
}

#path_3{
    animation: animateTwo -0.5s linear 0.8s infinite alternate;
}

.heading{
    animation: float2 3s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-10px);
	}
	100% {
		transform: translatey(0px);
	}
}
@keyframes float2 {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-5px);
	}
	100% {
		transform: translatey(0px);
	}
}

@keyframes animateOne{
    0%{
        opacity: 0;
        fill: #393E46;
    }
    100%{
        opacity: 1;
        fill: #00ADB5;
    }
}
@keyframes animateTwo{
    0%{
        opacity: 0;
        fill: #393E46;
    }
    100%{
        opacity: 1;
        fill: #00ADB5;
    }
}
/* LOADING SCREEN ENDS HERE */

:root{
    --blue: #00ADB5;
    --white: #EEEEEE;
}

*{
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
    text-transform: capitalize;
    outline: none; border: none;
    text-decoration: none;
    transition: all .2s linear;
    margin: 0;
    padding: 0;
    cursor: url(images/paddle.svg), auto;
    
}


*::selection{
    background: var(--blue);
    color: #fff;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}

/* SECTION TITLES */
section{
    padding:2rem 9%;
}
  
.heading{
    margin-top: 2rem;
    text-align: center;
    padding:2.5rem 0;
    line-height: 1rem;
}
  
.heading span{
    font-size: 3.5rem;
    background:rgba(57, 62, 70, 0.2);
    color:var(--blue);
    border-radius: .5rem;
    padding:.2rem 1rem;
}
  
.heading span.space{
    background:none;
}

/* NAVIGATION BAR SECTION */
header{
    position: fixed;
    top: 0; 
    left: 0;
    right: 0;
    background: #393E46;
    z-index: 1000;
    display: flex;
    padding: 1rem 1%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color:#fff;
    margin-right: auto;
    margin-left: 0.5rem;
}
  
header .logo span{
    color:var(--blue);
}
header .navbar a{
    color: #fff;
    font-size: 2rem;
    margin:0;
    margin-left: 3rem;
    padding: 0 1rem;
    cursor: url(images/paddleHover.svg), auto;
}

header .navbar a:hover{
    color: var(--blue);
}

header i{
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    margin-right: 2rem;
    padding-left: 2rem;
    cursor: url(images/paddleHover.svg), auto;
}
    .space{
        margin-left: 20px;
    }
    


header i:hover{
    color: var(--blue);
}

header .search-bar-container{
    position: absolute;
    top: 100%; left: 0; right: 0;
    padding: 1.5rem 2rem;
    background: #393E46;
    border-top: .1rem solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    z-index: 1001;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
header .search-bar-container.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .search-bar-container #search-bar{
    width: 100%;
    padding: 1rem;
    text-transform: none;
    color:#393E46;
    font-size: 1.7rem;
    border-radius: .5rem;
}

header .search-bar-container label{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    margin-left: 1.5rem;
}

header .search-bar-container label:hover{
    color: var(--blue);
}

.login-form-container{
    position: fixed;
    top: -120%;
    left: 0;
    z-index: 10000;
    min-height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-container.active{
    top:0;
  }

.login-form-container form{
    margin: 2rem;
    padding: 1.5rem 2rem;
    border-radius: .5rem;
    background: #fff;
    width: 50rem;
}

.login-form-container form h3{
    font-size: 3rem;
    color: #393E46;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem 0;
}

.login-form-container form .box{
    width:100%;
    padding:1rem;
    font-size: 1.7rem;
    color:#393E46;
    margin:.6rem 0;
    border:.1rem solid rgba(0,0,0,.3);
    text-transform: none;
}

.login-form-container form .box:focus{
    border-color: var(--blue);;
}

.login-form-container form #remember{
    margin:2rem 0;
}

.login-form-container form label{
    font-size: 1.5rem;
}

.login-form-container form .btn{
    display: block;
    width:100%;
}

.login-form-container form p{
    padding:.5rem 0;
    font-size: 1.5rem;
    color:#666;
}

.login-form-container form p a{
    color:var(--blue);
}

.login-form-container form p a:hover{
    color:#393E46;
    text-decoration: underline;
}

.login-form-container #form-close{
    position: absolute;
    top:2rem; right:3rem;
    font-size: 5rem;
    color:#fff;
    cursor: pointer;
}

/* BURGER SECTION */
#menu-bar{
    color:#fff;
    border:.1rem solid #fff;
    border-radius: .5rem;
    font-size: 3rem;
    padding:.5rem 1.2rem;
    cursor: pointer;
    display: none;
}

/* HOME SECTION */
.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
    z-index: 0;
}
  
.home .content{
    text-align: center;
}
  
.home .content h3{
    font-size: 4.5rem;
    color:#fff;
    text-transform: uppercase;
    text-shadow: 0 .3rem .5rem rgba(0,0,0,.1);
}
  
.home .content p{
    font-size: 2.5rem;
    color:#fff;
    padding:.5rem 0;
}
  
.home .video-container video{
    position: absolute;
    top:0; left: 0;
    z-index: -1;
    height: 100%;
    width:100%;
    object-fit: cover;
}
  
.home .controls{
    padding:1rem;
    border-radius: 5rem;
    background:rgba(0,0,0,.7);
    position: relative;
    top:10rem;
}
  
.home .controls .vid-btn{
    height:2rem;
    width:2rem;
    display: inline-block;
    border-radius: 50%;
    background:#fff;
    cursor: url(images/paddleHover.svg), auto;
    margin:0 .5rem;
    
}
  
.home .controls .vid-btn.active{
    background:var(--blue);
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    background:var(--blue);
    color:#fff;
    padding:.8rem 3rem;
    border:.2rem solid var(--blue);
    cursor: pointer;
    font-size: 1.7rem;
    cursor: url(images/paddleHover.svg), auto;
}

.btn:hover{
    background:rgba(57, 62, 70,.1);
    color:var(--blue);
}

.btn2{
    display: inline-block;
    margin-top: 1rem;
    background:var(--blue);
    color:#fff;
    padding:.8rem 3rem;
    border:.2rem solid var(--blue);
    cursor: pointer;
    font-size: 1.7rem;
    cursor: url(images/paddleHover.svg), auto;
}

.btn2:hover{
    background:rgba(57, 62, 70,.7);
    color:var(--blue);
}

/* HAVEN SECTION */
.haven-box{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, auto));
	grid-gap: 3rem;
	align-items: center;
	margin-top: 2rem;
}

.haven-content{
	position: relative;
}

.haven-content img{
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 15px;
	filter: brightness(80%);
	transition: all .3s cubic-bezier(.495,.05,.55,.95);
}

.haven-content h5{
	position: absolute;
	font-size: 22px;
	font-weight: 500;
	color: var(--white);
	left: 15px;
	bottom: 60px;
    text-shadow: 1px 2px rgba(57, 62, 70, 0.4)
}

.haven-content p{
	position: absolute;
	font-size: 15px;
	color: var(--white);
	left: 15px;
	bottom: 30px;
	letter-spacing: 2px;
    text-shadow: 1px 2px rgba(57, 62, 70, 0.4)
}

.haven-content img:hover{
	filter: brightness(100%);
	transform: scale(1.04);
	cursor: url(images/paddleHover.svg), auto;
}

/* GALLERY SECTION */
.gallery .box-container{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
}
  
.gallery .box-container .box{
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    border:1rem solid #fff;
    border-radius: .5rem;
    flex:1 1 30rem;
    height: 25rem;
    position: relative;
}
  
.gallery .box-container .box img{
    height: 100%;
    width:100%;
    object-fit: cover;
}
  
.gallery .box-container .box .content{
    position: absolute;
    top:-100%; left:0;
    height: 100%;
    width:100%;
    text-align: center;
    background:rgba(0,0,0,.7);
    padding:2rem;
    padding-top: 5rem;
}
  
.gallery .box-container .box:hover .content{
    top:0;
}
  
.gallery .box-container .box .content h3{
    font-size: 2.5rem;
    color:var(--blue);
}
  
.gallery .box-container .box .content p{
    font-size: 1.5rem;
    color:#eee;
    padding:.5rem 0;
}
  
/* BOOK SECTION */
.book .row{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    align-items: center;
}
  
.book .row .image{
    flex:1 1 40rem;
}
  
.book .row .image img{
    width:100%;
}
  
.book .row form{
    flex:1 1 40rem;
    padding:2rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    border-radius: .5rem;
}
  
.book .row form .inputBox{
    padding:.5rem 0;
}
  
.book .row form .inputBox input{
    width:100%;
    padding:1rem;
    border:.1rem solid rgba(0,0,0,.1);
    font-size: 1.7rem;
    color:#333;
    text-transform: none;
}

.book .row form .inputBox select{
    width:100%;
    padding:1rem;
    border:.1rem solid rgba(0,0,0,.1);
    font-size: 1.7rem;
    color:#333;
    text-transform: none;
}
  
.book .row form .inputBox h3{
    font-size: 2rem;
    padding:1rem 0;
    color:#666;
}

/* CONTACT SECTION */
.contact .row{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    align-items: center;
    margin-bottom: 8rem;
}
  
.contact .row .image{
    flex:1 1 35rem;
}
  
.contact .row .image img{
    width:100%;
}
  
.contact .row form{
    flex:1 1 50rem;
    padding:2rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    border-radius: .5rem;
}
  
.contact .row form .inputBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
  
.contact .row form .inputBox input, .contact .row form textarea{
    width:49%;
    margin:1rem 0;
    padding:1rem;
    font-size: 1.7rem;
    color:#333;
    background:#f7f7f7;
    text-transform: none;
}
  
.contact .row form textarea{
    height: 15rem;
    resize: none;
    width:100%;
}

.numberBox::-webkit-outer-spin-button,
.numberBox::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}


/* FOOTER SECTION */
.footer{
    background:#393E46;
}
  
.footer .box-container{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
}
  
.footer .box-container .box{
    padding:1rem 0;
    flex:1 1 25rem;
}
  
.footer .box-container .box h3{
    font-size: 2.5rem;
    padding:.7rem 0;
    color:#fff;
}
  
.footer .box-container .box p{
    font-size: 1.5rem;
    padding:.7rem 0;
    color:#eee;
}
  
.footer .box-container .box a{
    display: block;
    font-size: 1.5rem;
    padding:.7rem 0;
    color:#eee;
}
  
.footer .box-container .box a:hover{
    color:var(--blue);
    text-decoration: underline;
}
  
.footer .credit{
    text-align: center;
    padding:2rem 1rem;
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: normal;
    color:#fff;
    border-top: .1rem solid rgba(255,255,255,.2);
}
  
.footer .credit span{
    color:var(--blue);
}

.footer .box-container .box .img-logo{
    width: 50%;
    animation: float2 3s ease-in-out infinite;
    padding: 5rem 0;
    margin-left: auto;
    margin-right: auto;
}

/* SCROLL BAR */
:-webkit-scrollbar-track
 {
     border-radius: 10px;
 }

 ::-webkit-scrollbar
 {
     width: 12px;
     background-color: #393E46;
 }

 ::-webkit-scrollbar-thumb
 {
     border-radius: 10px;
     background-color: #00ADB5;
 }

/* SCROLL ELEMENTS ANIMATION */
    
    /* FOR HAVEN SECTION ANIMATION STARTS HERE */
        .haven .hidden{
            opacity: 0;
            transform: translateX(-10%);
            transition: all 3s;
        }

        .haven .show{
            opacity: 1;
            transform: translateX(0);
        }

        .haven .haven-box .hidden {
            opacity: 0;
            filter: blur(5px);
            transform: translateX(-100%);
            transition: all 1.7s;
        }

        .haven .haven-box .show {
            opacity: 1;
            filter: blur(0);
            transform: translateX(0);
        }

        .haven .haven-box .haven-content:nth-child(2){
            transition-delay: 200ms;
        }

        .haven .haven-box .haven-content:nth-child(3){
            transition-delay: 400ms;
        }

        .haven .haven-box .haven-content:nth-child(4){
            transition-delay: 600ms;
        }

        .haven .haven-box .haven-content:nth-child(5){
            transition-delay: 800ms;
        }

        .haven .haven-box .haven-content:nth-child(6){
            transition-delay: 1000ms;
        }

        .haven .haven-box .haven-content:nth-child(7){
            transition-delay: 1200ms;
        }

        .haven .haven-box .haven-content:nth-child(8){
            transition-delay: 1400ms;
        }
    /* FOR HAVEN SECTION ANIMATION ENDS HERE */

    /* FOR GALLERY SECTION ANIMATION STARTS HERE */

        .gallery .hidden{
            opacity: 0;
            transform: translateX(-10%);
            transition: all 3s;
        }

        .gallery .show{
            opacity: 1;
            transform: translateX(0);
        }

        .gallery .box-container .hidden {
            opacity: 0;
            filter: blur(5px);
            transform: translateX(-100%);
            transition: all 1.7s;
        }

        .gallery .box-container .show {
            opacity: 1;
            filter: blur(0);
            transform: translateX(0);
        }

        .gallery .box-container .box:nth-child(2){
            transition-delay: 200ms;
        } 

        .gallery .box-container .box:nth-child(3){
            transition-delay: 300ms;
        }

        .gallery .box-container .box:nth-child(4){
            transition-delay: 400ms;
        }

        .gallery .box-container .box:nth-child(5){
            transition-delay: 500ms;
        }

        .gallery .box-container .box:nth-child(6){
            transition-delay: 600ms;
        } 

        .gallery .box-container .box:nth-child(7){
            transition-delay: 700ms;
        }

        .gallery .box-container .box:nth-child(8){
            transition-delay: 800ms;
        }

        .gallery .box-container .box:nth-child(9){
            transition-delay: 900ms;
        }

        .gallery .box-container .box:nth-child(10){
            transition-delay: 1000ms;
        } 

        .gallery .box-container .box:nth-child(11){
            transition-delay: 1100ms;
        }

        .gallery .box-container .box:nth-child(12){
            transition-delay: 1200ms;
        }

        .gallery .box-container .box:nth-child(13){
            transition-delay: 1300ms;
        }

        .gallery .box-container .box:nth-child(14){
            transition-delay: 1400ms;
        } 

        .gallery .box-container .box:nth-child(15){
            transition-delay: 1500ms;
        }
    /* FOR GALLERY SECTION ANIMATION ENDS HERE */
    
    /* FOR BOOK SECTION ANIMATION STARTS HERE */
        .book .hidden{
            opacity: 0;
            transform: translateX(-10%);
            transition: all 3s;
        }

        .book .show{
            opacity: 1;
            transform: translateX(0);
        }

        .book .row .hidden{
            opacity: 0;
            transform: translateX(-20%);
            transition: all 4s;
        }

        .book .row .show{
            opacity: 1;
            transform: translateX(0);
        }
    /* FOR BOOK SECTION ANIMATION ENDS HERE */

    /* FOR CONTACT SECTION ANIMATION STARTS HERE */
        .contact .hidden{
            opacity: 0;
            transform: translateX(-10%);
            transition: all 3s;
        }

        .contact .show{
            opacity: 1;
            transform: translateX(0);
        }

        .contact .row .hidden{
            opacity: 0;
            transform: translateX(-20%);
            transition: all 4s;
        }

        .contact .row .show{
            opacity: 1;
            transform: translateX(0);
        }
    /* FOR CONTACT SECTION ANIMATION ENDS HERE */
/* MEDIA QUERIES */
@media (max-width:1200px){

    html{
      font-size: 55%;
    }
  
  }
  
  @media (max-width:991px){
  
    header{
      padding:2rem;
    }
  
    section{
      padding:2rem;
    }
  
  }
  
  @media (max-width:768px){
  
    #menu-bar{
      display: initial;
    }
  
    header .navbar{
      position: absolute;
      top:100%; right:0; left: 0;
      background: #333;
      border-top: .1rem solid rgba(255,255,255,.2);
      padding:1rem 2rem;
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
  
    header .navbar.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
  
    header .navbar a{
      display: block;
      border-radius: .5rem;
      padding:1.5rem;
      margin:1.5rem 0;    
      background:#222;
      
    }
  
  }
  
  @media (max-width:450px){
  
    html{
      font-size: 50%;
    }
  
    .heading span{
      font-size: 2.5rem;
    }
  
    .contact .row form .inputBox input{
      width:100%;
    }
  
  }

  /* @media(prefers-reduced-motion){
    .hidden {
        transition:none;
    }
  } */