*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    font-family: sans-serif;
}

body{
    background: black;
}
/* home */


.head{
    width: 100%;
    height: 90px;
    background: black;
    
}
.logo1{
    color: rgb(31, 192, 192);
    padding-top: 10px;
    padding-left: 20px;
}
.logo1 span{
    color: rgb(236, 125, 85);
}
.logo1 i{
    color: aliceblue;
}



.container .heading{
   
    margin-top: 100px;
    text-align: center;
    padding: 2.5rem 0;
}

.heading span{
    font-size: 3.5rem;
    background: rgba(12, 12, 12, 0.568);
    color: rgb(206, 136, 7);
    border-radius: .5rem;
    padding: .2rem 1rem;
    
}

.container .btn-2{
    cursor: pointer;
    padding: 10px 30px;
    margin-left: 45%;
    background: rgb(243, 229, 32);
    color: black;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    text-decoration: none;
    transition: .5s;

}
.container a .btn-2:hover{
   background: crimson;
}
 video{ 
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 80vh;
    width: 100%;
    object-fit: cover;
   
    animation:fadeIn .4s linear .6s backwards; 
 } 
 @keyframes fadeIn{
    0%{
        transform: scale(1.5);
    }

}

@keyframes animate{
    0%{
        opacity: 0;
        transform: scale(.5) translateY(-50px);
    }
} 


/* menu */

#side{
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 80px;
    background: black;
    z-index: 2;
    transition: 0.5s;
    
}
nav ul li{
   list-style: none;
   margin: 30px 10px;
}
nav ul li a{
    font-size: 20px;
    text-decoration: none;
    color: white;
}
nav ul li a:hover{
    color: #7c6cc7;
}
 nav .search{
    width: 270px;
}
nav .srch{
    width: 150px;
    height: 40px;
    /* border-radius: 20px; */
    background: transparent;
    border: 1px solid blue;
    border-right: none;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    float: left;
    color: white;

}
nav .btn{
    width: 90px;
    height: 40px;
    background: rgb(8, 7, 54);
    color: white;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px solid blue;
}


#mb{
    cursor: pointer;
    width: 30px;
    position: fixed;
    right: 65px;
    top: 30px;
    z-index: 2;
    
}

/* login */

.heading-2{
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 100px;
}
.heading-2 span{
    font-size: 50px;
    background: rgba(94, 91, 91, 0.7);
    color: rgb(236, 172, 52);
    border-radius: 5px;
    padding: .2rem 1rem; 
  
   
}
.login{
    width: 540px;
    padding: 15px;
    background: rgba(247, 214, 29, 0.836);
    margin-left: 30%;
    
}

.login input{
    width: 510px;
    margin-bottom: 15px;
    background: transparent;
    padding: 12px;
    border: none;
    border-bottom: 1px solid whitesmoke;
    color: aliceblue;
    font-size: 14px;
    letter-spacing: 1px;

}
.login input:focus{
    outline: none;
}
.btn-5{
    width: 300px;
    text-align: center;
    color: rgb(11, 11, 19);
    background: crimson;
    border-radius: 16px;
    padding: 8px;
    margin-top: 15px;
    margin-left: 100px;
    cursor: pointer;
    transition: 0.5s;
   

}
a .btn-5 {
    margin-bottom: 18px;
    font-weight: bold;
}
a .btn-5:hover{
    background: white;
    
}
.login p{
    text-align: center;
    font-family: sans-serif;
    font-size: 15px;
    margin-top: 10px;
    line-height: 30px;
}
.liw{
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    margin-top: 10px;
}
.icon{
    margin-top: 15px;
    font-size: 25px;
    margin-left: 10px;
    cursor: pointer;
}

.icon i{
    transition: .7s;
}
.icon i:hover{
    color: crimson;
    font-size: 50px;
}



/* footer */
    

footer{
    width: 100%;
    margin-top: 170px;
    position: absolute;
    background: linear-gradient(to right,#161d47,#2d0b00);
    padding: 90px 5px 40px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    font-size: 18px;
    line-height: 20px;
}
.row-1{
    width: 95%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;

}
.col-1{
    flex-basis: 20%;
    padding: 0;
}
.col-1 h3{
    font-size: 28px;
    color: rgb(20, 153, 153);
    margin-bottom: 15px;
   
}
.col-1 p{
    font-size: 16px;
    color: orange;
   
}
.col-1 ul li{
    list-style: none;
    line-height: 30px;
}
.col-1 ul li a{
    text-decoration: none;
    color: orange;
    cursor: pointer;
}
.col-1 ul li a:hover{
    color: crimson;
}
.col-1 i{
    font-size: 28px;
    color: rgb(69, 69, 201);
    transition: .4s;
    cursor: pointer;
   
}
.col-1 i:hover{
    color: crimson;
    font-size: 36px;
    
    
}
.col-1 h4{
    color: orange;
    font-size: 20px;
}
.col-1 a{
    color: #3e4da5;
}
.col-1 a:hover{
    color: crimson;
}

hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid whitesmoke;
    margin: 20px auto;
}
.name{
    text-align: center;
    color: rgb(6, 175, 175);
}
/* services */



.service{
    width: 100%;
    background:linear-gradient(to top,#624acf,#1d0855);
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    color: aliceblue;
    font-family: sans-serif;
}
.service h1{
    font-size: 50px;
    margin-bottom: 10px;

}
.service h1 span{
    font-size: 2.8rem;
    color: rgb(199, 145, 45);
    background: rgba(0,0,0,0.7);
    border-radius: .5rem;
    padding: .2rem 1rem;
   
}
.service p{
    color: rgb(247, 241, 241);
}
.row{
    width: 95%;
    margin: auto;
    margin-top: 50px;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
}
.service-col{
    flex-basis: 28%;
    padding: 20px;
    border-radius: 10px;
    background: black;
    text-align: left;
    display: flex; 
    cursor: pointer; 
    top: 0;  
    position: relative;
    transition: 0.52s;

}
.service-col i{
    color: rgb(62, 222, 243);
  
    margin-left: 5px;
    margin-right: 20px;
    font-size: 30px;
    margin-top: 4px;
}
.service-col h3{
    font-size: 30px;
    color: rgb(62, 222, 243);
    padding-bottom: 10px;
}
#row{
    margin-top: 0;
}
.service-col:hover{
    top: -15px;
    box-shadow: 2px 20px 20px 4px grey;
    background: rgb(90, 7, 90);
    
}


/* review */

.testimonial{
    width: 100%;
    padding-top: 50px;
    padding-bottom: 30px;
    text-align: center;
    background: linear-gradient(to top,#624acf,#1d0855);


}
h1{
    font-size: 50px;
    margin-bottom: 20px;
}
h1 span{
    color: rgb(241, 228, 36);
}
.trestimonial p{
    color: rgb(46, 151, 236);
}
.testimonial-col{
    flex-basis: 30%;
    padding: 50px;
    background: rgba(0,0,0,0.7);
    border-radius: 10px;
    text-align: left;
    position: relative;
    margin-top: 50px;
    cursor: pointer;
    transition: 0.5s;
    color: white;
    box-shadow: 0 0 20px grey;
}
.testimonial-col img{
    width: 90px;
    height: 90px;
    border: 3px solid white;
    border-radius: 50%;
    top: -40px;
    position: absolute;
    margin-bottom: 15px;
}
.testimonial-col p{
    margin-top: 50px;
    margin-bottom: 15px;
    
}
.testimonial-col h3{
    color: rgb(76, 199, 236);
    font-weight: bold;
    font-size: 25px;
}
.testimonial-col .star{
    color: orange;
    font-weight: 100;
    margin-top: 10px;
    font-size: 20px;
}
.testimonial-col:hover{
    transform: scale(1.1);
    z-index: 10000;
    background: #7c3fc2;
    
}

/* booking */


.heading-1{
    text-align: center;
    /* margin-top: 21%; */
    padding: 2.5rem 0;
}
.heading-1 span.space{
    background: none;
}
.heading-1 span{
    font-size: 60px;
    background: rgba(94, 91, 91, 0.7);
    color: rgb(238, 183, 82);
    border-radius: 5px;
    padding: .2rem 1rem;
}
.book .row{
   
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    align-items: center;
}

.book .row form{
    background: rgb(240, 161, 14);
    
    height: 70vh;
    flex: 1 1 40rem;
    padding: 2rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.7);
    border-radius: 5px;
}
.book .row form .inputBox{
    padding: .3rem 0;
}
.book .row form .inputBox input{
    width: 100%;
    padding: 1rem;
    border: .1rem solid rgba(0,0,0,0.7) ;
    font-size: 1.1rem;
    color: gray;
    text-transform: none;
}

