 :root{
     --mount-meadow: #1bbc9c;
     --white-smoke: #f0f0f0;
     --night-rider: #343434;
     --black: #191b17;
     --transition: all 0.5s ease-in-out;
 }
 *{
    
     font-family: 'Hind Siliguri', sans-serif;
     padding: 0;
     margin: 0;
     box-sizing: border-box;
 }

 body{
    background: var(--black);
 }

 html{
    
     font-size: 1rem;
     font-weight: 300;
     line-height: 1.5;
     text-rendering: optimizeLegibility;
     scroll-behavior: smooth;
 }

 /* setup & reusable styling */
 img{
     width: 100%;
 }
 /* a{
     text-decoration: none;
     color: var(--black);
 }*/
 li{
    text-align: center;
     
 } 
 button{
     cursor: pointer;
     outline: 0;
     background: transparent;
 }
 .container{
     max-width: 1220px;
     margin: 0 auto;
     padding: 0 1rem;
 }
 h1, h2, h3, h4, h5, h6{
     margin: 0.6rem 0;
     line-height: 1.25;
     font-weight: 400;
     text-transform: capitalize  ;
 }
.text{
    color: var(--black);
    margin: 0.6rem 0;
    opacity: 0.8;
}
 .center{
     display: flex;
     justify-content: center;
     align-items: center;
 }
 section{
     padding: 6.5rem 0;
 }
 .title{
     padding: 0.6rem 0;
     text-align: center;
     justify-content: center;
     align-items: center;
 }
 .title h2{
     font-size: 2.2rem;
     font-weight: bold;
     color: var(--white-smoke);
 }
 .title .text{
     font-weight: 500;
     font-size: 1 .1rem;
 }
 .container .title .underline{
    height: 3.3px;
    width: 120px;
    background: rgb(185, 18, 18);
    margin: 1.2rem auto;
    
 }
 /* .header{
     background-image: linear-gradient(rgba(0,0,0,0.8)
     ,rgba(0,0,0,0.7)), url(../img/emp.jpg);
     min-height: 100vh;
     background-position: center;
     background-size: cover;
     background-repeat: no-repeat;
     background-attachment: fixed;
     color: #fff;
     display: flex;
     flex-direction: column;
     justify-content: stretch;
 } */

 /* header-navbar */
 #header{
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
 }
#header .header{
    min-height: 13vh;
    background-color: rgba(31, 30, 30, 0.24);
    transition: .3s ease background-color;
}
#header .nav-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding: 0 10px;
    margin-left: 65px;
    margin-right: 65px;
}
#header .nav-list ul{
    
    list-style: none;
    position: absolute;
    background-color: rgb(185, 18, 18);
    width: 100vw;
    height: 100vh;
    left: 100%;
    top: 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-x: hidden;
    transition: .5s ease left;
}
/* #header .nav-list ul{
    margin-right: -15rem;
    left: 100%;
    
} */
#header .nav-list ul.active{
    left: 0;
    
}
#header .nav-list ul a{
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: .2rem;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    padding: 11.5px;
    display: block;
}
#header .nav-list ul a::after{
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    color: rgba(240,248,255,0.021);
    font-size: 8rem;
    letter-spacing: 50px;
    z-index: -1;
    transition: .3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after{
    transform: translate(-50%,-50%) scale(1);
    letter-spacing: initial;
}
#header .nav-list ul li:hover a{
    color: var(--black);
}
#header .hamburger{
    height: 60px;
    width: 60px;
    display: inline-block; 
    border: 3px solid white;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
    cursor: pointer;
    transform: scale(.8);
    margin-right: -55px;
}
#header .hamburger .bar{
    height: 2px;
    width: 30px;
    position: relative;
    background-color: white;
    z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: white;
    transition: .3s ease;
    transition-property: top,bottom;
}
#header .hamburger .bar::after{
    top: 8px;
}
#header .hamburger .bar::before{
    bottom: 8px;
}
#header .hamburger.active .bar::before{
    bottom: 0;
}
#header .hamburger.active .bar::after{
    top: 0; 
}

.brand h1{
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
}
.brand a{
    text-decoration: none;
}
 /* .navbar{
     position: fixed;
     align-items: center;
     text-align: center;
     top:0;
     left: 0;
     width: 100%;
     background-color: #fff;
     z-index: 999;
 }
 .brand-and-toggler{
     font-size: 1.65rem;
     padding: 0.8rem 0;
     display: flex;
    justify-content: space-between;
    align-items: center;
 }
 .navbar-brand{
     font-weight: 500;
     color: var(--night-rider);
 }
 .navbar-brand span{
     color: var(--mount-meadow);
 }
 .navbar-toggler{
     border: none;
     color: var(--mount-meadow);
 }
 .navbar-nav{
     margin: 0.2rem 0 0.6rem 0;
 }
 .nav-item{
     padding: 0.6rem 0;
 }
 .nav-link{
     text-transform: uppercase;
     font-size: 0.95rem;
     letter-spacing: 1.5px;
     font-weight: 400;
     opacity: 0.65;
     transition: var(--transition);
 }
 .nav-link:hover{
     color: var(--mount-meadow)!important;
 }
 .navbar-collapse{
     display: none;   
 } */

 .containe{
    margin-top: -6.8rem;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
 }

 #hero{
    background-image: url(../img/lion-06.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
    height: 620px;
 }
 #hero::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /*background-color: gray;*/
    opacity: .7;
    z-index: -1;
 }
 #hero .hero{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    justify-content: flex-start;
 }
 
 .hero img{
    
    height: 150px;
    width: 150px;
    border-radius: 100%;
 }
 
 #hero h1{
    display: block;
    width: fit-content;
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: -25px;
    position: relative;
    color: transparent;
    animation: text_reveal .5s ease forwards;
    animation-delay: 1s;
 }
 #hero h1:nth-child(1){
    animation-delay: 1s;
 }
 #hero h1:nth-child(2){
    animation-delay: 2s;
 }
 #hero h1:nth-child(3){
    animation: text_reveal_name .5s ease forwards;
    animation-delay: 3s;
 }
 #hero h1:nth-child(1) span{
    animation-delay: .5s;
 }
 #hero h1:nth-child(2) span{
    animation-delay: 1.5s;
 }
 #hero h1:nth-child(3) span{
    animation-delay: 2.5s;
 }
 #hero h1 span{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: rgb(185, 18, 18);;
    animation: text_reveal_box 1s ease;
    animation-delay: .3s;
 }

 /* keyframes */
 @keyframes text_reveal_box {
    50%{
        width: 100%;
        left: 0;
    }
    100%{
        width: 0;
        left: 100%;
    }
 }
 @keyframes text_reveal{
    100%{
        color: var(--white-smoke);
    }
 }
 @keyframes text_reveal_name{
    100%{
        color: rgb(185, 18, 18);;
        font-weight: 500;
    }
 }
 /* end of keyframe */

 .about .container{
    margin-top: -4rem;
 }
 .about{
    background: var(--white-smoke);
 }

 .about .container .about-sec{
    display: flex;
    align-items: center;
    margin-top: 25px;
    height: 100%;
    width: 100%;
}

.about .container .about-sec .about-text{
    width: 40%;
    margin-top: -70px;
}

.about .container .about-sec .about-img{
    width: 60%;
    padding-right: 60px;
}

.about .container .about-sec .about-img img{
    width: 100%;
}

 .about h2{
    color: var(--black);
    text-align: center;
 }
.about-back{
	
    background-image: url(../img/backround.jpg);
    background-size: cover;
    background-position: top center;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.about-back::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--black);
    opacity: .7;
    z-index: -1;
 }

 .about .container .about-missn{
    
    display: flex;
    align-items: center;
    margin-top: 50px;
    height: 100%;
    width: 100%;
}

.about .container .about-missn .item{
    background: #b9b8b8;
    border-radius: 5px;
    margin-top: 20px;
    width: 60%;
    /* margin-right: 70px; */
    /* padding-right: 200px; */
}

.about .container .about-missn .item .inner-item{
    margin: 35px;
}

.about .container .about-missn .item i{
    color: rgb(185, 18, 18);
    font-size: 20px;
    margin-right: 5px;
    margin-top: 0px;
}
.about .container .about-missn .item h2{
    font-size: 20px;
    /* margin-left: 35px; */
    text-align: left;
    color: rgb(185, 18, 18);
}
.about .container .about-missn .item p{
    margin-top: -10px;
    margin-bottom: 0px;
    color: var(--black);
    /* margin-left: 35px;
    margin-right: 35px; */
}

.about .container .about-missn .item-img{
    width: 44%;
    margin-left: 60px;
}

 /* services */

 .serv-image{
    display: flex;
    align-items: center;
    
 }
 .serv-image .gear{
    margin-left: 20%;
    width: 60%;
 }

 .serv-image .cam-era{
    
    margin-left: -10%;
    width: 15%;
    
 }

 .serv-image .sec-era{
    margin-left: -70%;
    width: 15%;
    
 }
 #service{
    padding: 8vw 8vw 8vw 8vw;
    text-align: center;
    background: #b9b8b8;
}

#service .title h2{
    color: var(--black);
}

#service .services{
   text-align: start;
   background: var(--white-smoke);
   height: 100%;
   padding-bottom: 100px;
   position: relative;
}

#service .services img{
   width: 100%;
   height: 60%;
   background-size: cover;
   background-position: center;
}

#service .service-box{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   grid-gap: 1rem;
   margin-top: 50px;
}


#service .services .details{
   padding: 5px 15px 0 15px;
}

#service .services .details h6{
    font-size: 18px;
    font-weight: bold;
    color: rgb(185, 18, 18);
}

#service .services .details p{
    position: relative;
    font-size: 15px;
    color: var(--black);
    margin: 0.6rem 0;
    opacity: 0.8;
    
}

 /* .hero-div{
     flex: 1;
     flex-direction: column;
     text-align: center;
 }
 .hero-div h1{
     font-size: 2.55rem;
     padding-bottom: 0.4rem;
 }
 .hero-div p{
     color: var(--white-smoke);
     font-size: 1.05rem;
     letter-spacing: 3px;
 }
 .hero-btns{
     margin-top: 2.8rem;
 }
 .hero-btns button{
    border: 3.5px solid #fff;
    border-radius: 2rem;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
 }
 .btn-trans{
     color: #fff;
     transition: var(--transition);
     display: none;
 }
 .btn-trans:hover{
     background: var(--mount-meadow);
     border-color: var(--mount-meadow);
 }
 .btn-white{
     background: #fff;
     color: var(--night-rider);
     transition: var(--transition);
 }
 .btn-white:hover{
     background: transparent;
     color: #fff;
 } */


 /* more on our services */
 .myslides{
    display: none;
 }

 .imageslide{
    /*background-color: var(--black);*/
    border-radius: 4px;
    height: 30rem;
    width: 100%;
    vertical-align: middle;
 }
.slideshow-container{
    background: var(--black);
    max-width: 87.5%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    margin-bottom: 10px;
}
.txt{
    
    color: #f2f2f2;
    font-size: 2rem;
    font-weight: bold;
    text-transform: capitalize  ;
    padding: 8px 12px;
    position: absolute;
    width: 17%;
    text-align: center;
    bottom: 150px;
    background-color: goldenrod;
    margin-left: 35%;
    margin-right: 30%;
    border-radius: 4px;
}
.fade{
    background: var(--black);
    -webkit-animation-name: fade;
    -webkit-animation-duration: 10s; 
    animation-name: fade;
    animation-duration: 10s;
}
@-webkit-keyframes fade{
    from {opacity: .4;}
    to{opacity: 1;}
}
@keyframes fade{
    from {opacity: .4;}
    to{opacity: 1;}
}

/* scroll animation */

.autoShow{
    animation: text-appear both;
    animation-timeline: view();
    animation-range: entry 20% cover 100vh;
}

@keyframes text-appear {
    from{
        opacity: 0;
        transform: translateY(100px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}


.imageReveal{
    animation: imageReveal both;
    animation-timeline: view(10% 5%);
}

@keyframes imageReveal {
    from{
        filter: saturate(0) contrast(4) brightness(.1) blur(5px);
        opacity: 0;
        scale: .95;
        transform: 0 4rem;
    }
    to{
        filter: none;
        opacity: 1;
        scale: 1;
        transform: 0 0;
    }
}

.fadeUp{
    animation: fadeUp both;
    animation-timeline: view();
}
.timeline-item:nth-child(1){
    animation-range: entry 20% cover 40%;
}

.timeline-item:nth-child(2){
    animation-range: entry 40% cover 60%;
}

.timeline-item:nth-child(3){
    animation-range: entry 40% cover 80%;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(10px) scale(0.5);
    }

    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* resposive */
@media only screen and (min-width: 500px){
    .txt{
        
        width: 35%;

    }
}

/* @media only screen and (max-width: 500px){
    .txt{
        
        font-size: 11px;
        width: 50%;
        
    }
}
@media only screen and (max-width: 768px){
    .txt{
        
        width: 50%;

    }
} */
@media only screen and (max-width: 450px){
    .txt{
        margin-left: 35%;
        margin-right: 30%;
        font-size: 2rem;
        width: 35%;

    }


}
@media only screen and (max-width: 850px){

    .about .container .about-missn{
    
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:center;
        margin-top: 0px;
        padding: 8vw 4vw 2vw 4vw;
    }

    .about .container .about-missn .item{
        width: 100%;
        padding-right: 5px;
    }

    .about .container .about-missn .item-img{
        margin-left: 0px;
        margin-top: 25px;
        width: 100%;
    }

    .about .container .about-sec{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:center;
        margin-top: 0px;
        
        padding: 8vw 4vw 2vw 4vw;
    }
    .about .container .about-sec .about-img{
        width: 100%;
        padding-right: 5px;
    }

    .about .container .about-sec .about-text{
        margin-top: 0px;
        width: 100%;
    }

    .about .container .about-sec .about-text .text{
        
        text-align: center;
    }
    .txt{
        margin-left: 25%;
        margin-right: 30%;
        font-size: 1.73rem;
        width: 50%;

    }
}


 /* detail */
 .detail{
     background: #b9b8b8;
     
 }
 .detail .container{
    margin-top: -5rem;
 }

 .detail .container .title{
    margin-bottom: 15px;
    margin-top: 15px;
 }
 /* .detail .row{
    margin-right: -10rem;
 } */
 .detail .dtail{
    color: goldenrod;
}
  .detail .text{
    text-align: center;
  }
 .detail-item{
     background: transparent;
     text-align: center;
     /* box-shadow: 0 1px 2px 0 rgba(90,91,95,0.1);
     -webkit-box-shadow: 0 1px 2px 0 rgba(90,91,95,0.1);
     -moz-box-shadow: 0 1px 2px 0 rgba(90,91,95,0.1); */
     margin: 2rem 0;
     padding: 0.5rem 1.5rem;
     border-radius: 4px;
     transition: var(--transition);
 }
 /* .detail-item:hover{
    -webkit-box-shadow: 0 21px 19px -2px rgba(217,217,217,1);
    -moz-box-shadow:0 21px 19px -2px rgba(217,217,217,1);
    box-shadow:0 21px 19px -2px rgba(217,217,217,1);
    transform: translateY(-5px);
} */

.text-item{
    color: #fff;
    margin: 0.6rem 0;
    opacity: 0.8;
}

.detail-item span{
    font-size: 2.5rem;
}
.detail-item h2{
    font-size: 1.4rem;
    opacity: 0.8;
    font-weight: 300;
}
.line{
    width: 45px;
    margin: 1.2rem auto;
    background: var(--mount-meadow);
    height: 2.5px;
}

/* feature */
.feature .title{
    text-align: left;
}
.feature-left img{
    width: 80%;
    margin: 0 auto;
}
.feature-right{
    margin-top: 4rem;
}
.feature-item{
    margin: 1.4rem 0;
    display: flex;
}
.feature-item div h3{
    margin-top: 0;
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.85;
}
.feature-item span{
    font-size: 1.1rem;
    color: #fff;
    background: var(--mount-meadow);
    align-self: flex-start;
    padding: 0.4rem 0.7rem;
    border-radius: 2px;
    margin-right: 1.4rem;
}
.video{
    background-image: linear-gradient(rgba(0,0,0,0.8),
     rgba(0,0,0,0.7)), url(../img/emp.jpg);
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     background-repeat: no-repeat;
     color: #fff;
     text-align: center;
}
.video a{
    font-size: 2.2rem;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--mount-meadow);
    padding-left: 7px;
    margin: 0 auto;
}
.vide h2{
    font-size: 2rem;
    color: var(--white-smoke);
    padding: 1.2rem 0;
}
.video p{
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--white-smoke);
    opacity: 0.7;
}

/* team */
.team .row{
    margin-top: 2rem;
}
.team-item{
    margin: 2rem 0;
}
.team-img{
    position: relative;
}
.team-icons{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    background: var(--white-smoke);
    opacity: 0;
    transition: var(--transition);
}
.team-icons a{
    color: var(--night-rider);
    width: 50px;
    height: 50px;
    transition: var(--transition);
}
 .team-icons a:hover{
     background: var(--mount-meadow);
     color: #fff;
 }
 .team-img:hover .team-icons{
     opacity: 1;
 }
 .team-info{
     text-align: center;
     padding: 1.5rem;
     line-height: 1;
 }
 .team-info h3{
     font-size: 0.85rem;
    color: var(--night-rider);
 }
 .team-info span{
     font-size: 0.85rem;
     letter-spacing: 1px;
     font-weight: 500;
     opacity: 0.7;
 }

 /* faq */
 .faq{
     background: #f9f9f9;
 }
 .faq .row{
     margin-top: 2rem;
 }
 .fag-item{
     margin: 0.6rem 0;
 }
 .faq-head{
     background: var(--white-smoke);
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor:pointer;
     padding: 0.2rem 1.8rem;
 }
 .faq-head h3{
     font-weight: 300;
     opacity: 0.8;
 }
 .faq-content{
     background: #fff;
     overflow: hidden;
     height: 0;
     padding: 0 1.8rem;
     transition: var(--transition);
 }
 .show-faq-content{
    height: 168px;
    padding: 0.6rem 1.8rem;
 }

 .services-back{
	
    background-image: url(../img/detailback.jpg);
    background-size: cover;
    background-position: top center;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.services-back::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--black);
    opacity: .7;
    z-index: -1;
 }



/* contact */
.popup{
    width: 350px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 670px;
    transform: translate(-50%,-50%) scale(0.1);
    padding: 0 30px 30px;
    color: #333;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
}
.popup img{
    width: 100px;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.popup h2{
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;
}

.popup button{
    width: 100%;
    margin-top: 50px;
    padding: 10px 0; 
    background: goldenrod;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}
.open-popup{
    visibility: visible;
    top: 50px;
    transform: translate(-50%,-50%) scale(1);
}

.contact{
    background: #5A5A5A;
    background-image: url(../img/lion-06.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
    
}

.contact::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #4d4c4c;
    opacity: .7;
    z-index: -1;
 }
.contact .container{
    margin-top: -3.7rem;
}

.contact-info{
    width: 50%;
    margin-left: 150px;
}
.contact-info-item{
    display: flex;
    margin-bottom: 30px;
}

.contact-info-icon{
    height: 70px;
    width: 70px;
    margin-top: 13px;
    background-color: var(--white-smoke);
    text-align: center;
    border-radius: 50%;
}
.contact-info-icon i{
    font-size: 30px;
    line-height: 70px;
}
.contact-info-content{
    margin-left: 20px;
}

.contact-info-content h4{
    color: rgb(185, 18, 18);
    font-size: 1.4em;
    margin-bottom: 5px;
}
.contact-info-content p{
    color: #fff;
    font-size: 1em;
}
.contact-form{
    background-color: var(--white-smoke);
    border-radius: 4px;
    padding: 40px;
    width: 65%;
    padding-bottom: 30px;
    padding-top: 10px;
}
.contact-form .form-h {
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 10px;
	color: red;
    /*color: var(--black);*/
}
.contact-form .input-box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.contact-form .input-box input, textarea{
    background-color: var(--white-smoke);
}
.contact-form .input-box input,
.contact-form .input-box textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}
.contact-form .input-box span{
    position: relative;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}
.contact-form .input-box input:focus ~ span, 
.contact-form .input-box textarea:focus ~ span {
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
}
.contact-form .input-box input[type="submit"] {
    width: 100%;
    background: rgb(185, 18, 18);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    border: none;
    font-size: 18px;
    border-radius: 4px;
    border: 1px solid goldenrod;
    transition: 0.5s;
}
.contact-form .input-box input[value="send"]:hover{
    background: #fff;
    color: rgb(185, 18, 18);
}


.contact .row{ 
    margin:2rem;
}
.contact .row > div h2{
    color: #fff;
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
}
.contact-left form input,
.contact-left form textarea{
    width: 100%;
    font-size: 1.1rem;
    margin: 0.2rem 0;
    padding: 0.8rem 0.6rem;
    border: none;
    border-bottom: 1.5px solid #f0f0f0;
    outline: 0;
}
.contact-left form input::placeholder,
.contact-left form textarea::placeholder{
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.8;
}

.contact-left form input:focus,
.contact-left form textarea:focus{
    border-color: var(--night-rider);
}
.submit-btn{
    margin: 1rem 0;
    border: none;
    font-size: 1.3rem;
    color: #fff;
    background: var(--mount-meadow);
    opacity: 0.9;
    padding: 0.8rem 3.4rem;
    border-radius: 2rem;
    transition: var(--transition);
}
.submit-btn:hover{
    background: var(--black);
}
.contact-right div{
    margin: 2rem 0;
}
/* footer */
.footer{
    text-align: center;
    background: var(--black);
    color: var(--white-smoke);
    padding:2rem 0;
    height: 50vh;
}
.footer img{
    width: 20%;
}
.footer .text{
    opacity: 0.8;
}
.footer-links{
    display: flex;
    justify-content: center;
    margin-top: 1.6rem;
}
.footer-links a{
    color: var(--white-smoke);
    opacity: 0.8;
    width: 50px;
    height: 50px;
    margin: 0 0.2rem;
    border-radius: 50%;
    transition: var(--transition);
}
.footer-links a:hover{
    background: rgb(185, 18, 18);
}

.footer p{
    color: var(--white-smoke);
}

/* media queries */
@media screen and (max-width: 768px) {
    .contact-info{
        margin-left: 0;
    }
}

@media screen and (max-width: 768px) {
    #hero{
        height: 570px;
    }
    #hero .hero{
        margin-top: -25%;
        justify-content: center;
     }
    .hero img{
    
        display: block;
        margin-left: 20%;
        margin-right: 40%;
        margin-top: 2.5%;
        margin-bottom: 10%;


    }
     #hero h1{
        display: inline;
        width: fit-content;
        position: relative;
        font-size: 1.5rem;
        font-weight: 500;
     }
    .contact-form{
        
        width: 100%;
        
    }
}

@media screen and (min-width: 768px){

    .detail .row{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .detail-item{
        margin: 0;
    }

    .video h2{
        font-size: 2.6rem;
    }
    .video p{
        font-size: 1.2rem;
        width: 75%;
        margin: 0 auto;
    }
    .team-item{
        margin: 0;
    }
    .faq-row{
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .contact .row{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }
    .contact-right > div:first-child{
        margin-top: 0;
    }
    
}
@media screen and (max-width: 768px) {
    .detail .container .title{
        
        margin-top: 75px;
     }
    .contact-info{
        width: 100%;
        
        /* margin-left: 100px; */
    }
}
@media screen and (max-width: 992px) {
    .contact-info{
        width: 100%;
        
        
        /* margin-left: 100px; */
    }
}


@media screen and (min-width: 992px){
    /* .navbar{
        background: transparent;
        margin-top: 1.4rem;
    }
    .navbar .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-brand{
        color: var(--white-smoke);
        font-size: 2rem;
    }
    .navbar-toggler{
        display: none;
    }
    .navbar-collapse{
        align-items: center;
        display: block!important;
    }
    .navbar-nav{
        display: flex;
        margin: 0;
    }
    .nav-item{
        margin-left: 1.8rem;
    }
    .nav-link{
        color: var(--white-smoke)
    } */
    .hero-div h1{
        font-size: 3.8rem;
    }
    .btn-trans{
        display: inline-block;
        margin-right: 0.8rem;
    }

    /* navbar change */
    /* .cng-navbar{
        -webkit-box-shadow: 0 2px 5px 0 rgba(207,205,207,0.3);
        -moz-box-shadow: 0 2px 5px 0 rgba(207,205,207,0.3);
        box-shadow: 0 2px 5px 0 rgba(207,205,207,0.3);
        margin-top: 0;
        background: #fff;
    }
    .cng-navbar .navbar-brand{
        color: var(--night-rider);
    }
    .cng-navbar .nav-link{
        color: var(--night-rider);
    } */
    .fearure ,.row{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        column-gap: 2rem;
    }
    .feature .right{
        margin-top: 0;
    }

}

@media screen and (max-width: 1000px) {
    #hero{
        height: 570px;
    }

    #hero .hero{
        margin-top: -25%;
        justify-content: center;
     }
    .hero img{
    
        display: block;
        margin-left: 20%;
        margin-right: 40%;
        margin-top: 2.5%;
        margin-bottom: 10%;


    }
     #hero h1{
        display: inline;
        width: fit-content;
        position: relative;
        font-size: 1.5rem;
        font-weight: 500;
     }
}

@media screen and (min-width: 1000px) {
    #header .hamburger{
        display: none;
    }
    #header .nav-list ul{
        position: initial;
        display: block;
        height: auto;
        width: fit-content;
        background-color: transparent;
    }
    #header .nav-list ul a::after{
        display: none;
    }
    #header .nav-list ul li{
        display: inline-block;
        
    }
    #header .nav-list ul a{
        font-size: 1.15rem;
    }
    .hero-div h1{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .detail .row{
        grid-template-columns: repeat(3, 1fr);
    }
    .contact .row{
        column-gap: 4rem;
    }
    .contact-right{
        padding-left: 4rem!important;
    }
}

/*/////

@media screen and (min-width: 1200px) {
    #header .hamburger{
        display: none;
    }
    #header .nav-list ul{
        position: initial;
        display: block;
        height: auto;
        width: fit-content;
        background-color: transparent;
    }
    #header .nav-list ul a::after{
        display: none;
    }
    #header .nav-list ul li{
        display: inline-block;
        
    }
    #header .nav-list ul a{
        font-size: 1.15rem;
    }
    .hero-div h1{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .detail .row{
        grid-template-columns: repeat(3, 1fr);
    }
    .contact .row{
        column-gap: 4rem;
    }
    .contact-right{
        padding-left: 4rem!important;
    }

}

@media (max-width: 991px) {
    .contact{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .contact .container .row{
        flex-direction: column;
    }
    .contact-info{
        margin-left: 0;
        margin-bottom: 40px;
        width: 100%;
    }
    .contact-form{
        width: 100%;
    }
}