@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --orange:#ffa500;
    /* --orange:#345c00; */
    --arjun :red;
    --arjunn:green;
}

*{
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    outline: none;
    border: none;
    transition: all .2s linear;
    
}

*::selection{
    background: var(--orange);
    color:#fff;
    
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior:smooth;
    background: rgb(254, 246, 231);
}

section{
    padding:2rem 9%;


}
.btn{
    display: inline-block;
    margin-top: 1rem;
    background-color: var(--orange);
    color: #fff;
    padding: .8rem 3rem;
    border:.2rem solid var(--orange);
    cursor:pointer;
    font-size: 1.7rem;
}
.btn:hover{
  background-color: rgba(255, 165, 0, 0.2);
  /* border:#fff; */
  color: var(--orange);
}
header{
    position:fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #b3d0da99;
    backdrop-filter: blur(2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 999 ;
    display: flex;
    justify-content: space-between;
    padding: 2rem 9%;
}

#homeNav{
    /* border: 1px solid rgb(255, 255, 255); */
    /* border-radius: 30px; */
    /* background-color: var(--orange); */
    padding:.4rem .8rem;
    /* font-size: 3rem; */
}

#homeNav:hover{
    color:var(--orange); 
}

header .logo{
  font-size: 2.5rem;
  font-weight: bolder;
  color: #fff;
  text-transform: uppercase; 
  text-decoration: none;
}
header .logo span{
    color: var(--orange);
}
header .navbar a{
    color: #fff;
    font-size: 1.8rem;
    margin: 0 .8rem;
    /* padding: 0 0.8rem; */
    text-decoration: none;

}
header .navbar a:hover{
    color:var(--orange)
}

header .icons i{
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    margin-right: 2rem;
}

header .icons i:hover{
    color:var(--orange);
}


.login-form-container{
    position: fixed;
    top: -120%;
    /* top: 0; */
    left: 0;
    z-index: 999;
    min-height:100vh;
    width: 100%;
    background: 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:#ffa500;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem 0;

    
}

.login-form-container form .box{
    width: 100%;
    padding: 1rem;
    font-size: 1.7rem;
    color: #46330e;
    margin: .6rem 0;
    border: .1rem solid rgba(0, 0, 0, 0.3);
    text-transform: none;


}

.login-form-container form .box:focus{
    border-color: var(--orange);
    /* box-shadow: 0 10px 20px rgba(0,0,0,0.15); */
    box-shadow: 0 1px 4px var(--orange);

     
}

.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%;
    letter-spacing: 3px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom: 15px;
}

.login-form-container form p{
    padding: .5rem 0;
    font-size: 1.5rem;
    color: #666;
  
}

#noempty{
    color: red;
}

.login-form-container form p a{
    color: var(--orange);
    text-decoration: none;
}
.login-form-container form p a:hover{
    color: #333;
    text-decoration: unset;
    text-decoration: underline;
}

.login-form-container #form-close{
   position: absolute;

    top: 1.8rem;
    right: 3rem;
    /* top:6rem;
    right:33rem; */
    font-size: 4rem;
    color:#fff;

    cursor: pointer;
}

.login-form-container #form-close:hover{
    color: var(--orange);
}



#menu-bar{
    color: #fff;
    border:.1rem solid #fff;
    font-size:3rem;
    padding:.5rem 1.2rem;
    cursor: pointer;
    display: none;
}
/* video{
    filter: brightness(.5);
} */
.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;  
    position: relative; 
    z-index: 0;
}

.home .content{
    /* position: absolute; */
    text-align: center;

}
.home .content h3{
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0.3rem .5rem rgba(0, 0, 0, 0.954);  
      
}

.home .content p{
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
}
/* .search-bar{
    display: inline-block;
} */
.search-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-bar{
    height:50px;
    width: 100%;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.247);
    display: flex;
    align-items: center;
    border-radius: 60px;
    padding: 10px 20px;
    margin-top: 15px;
} 
.search-bar input{
    background: transparent;
    flex: 1;
    border: 0;
    outline: none;
    padding: 24px 20px;
    font-size: 20px;
    color: #cac7ff;
    color: rgb(255, 255, 255);
}
.search-bar input::placeholder{
    color: #ffffff;
}
.search-bar i{
    color: #fff;
}
.search-bar button{
    border: 0;
    border-radius: 50%;
    
    width: 40px;
    height: 40px;
    font-size: 17px;
    color: #fff ;
    border: 0;
    margin-right: -13px;
    border-radius: 50%;
    background-color: #c1c1c138;
    
}

.search-bar #search-btn:hover{
    color: var(--orange);
}

.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-color: rgba(0, 0, 0, 0.7);
    position: relative;
    top:10rem;
} */

/* .home .controls .vid-btn{
    height: 22rem;
    width: 22rem;
    display: inline-block;
    border-radius: 50%;
    background: #2e1717;
    cursor:pointer;
    margin: 5rem 5.5rem;
    
} */
/* .home .controls .vid-btn.active{
    background-color: var(--orange);
} */
/* .how-it-works h3{
    border-bottom: 5px solid orange;

} */
/* .how-it-works{
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.how-it-works .howitworks{

    width: 100%;
    max-width: 900px;
    height: 350px;
    position: relative;
   
}

.how-it-works .howitworks h3{
    display: flex;
    justify-content: center;
    font-size: 3rem;
    font-weight: 400;
    color: var(--orange);
    margin: 15px;
}


.how-it-works .howitworks .secbox{
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-it-works .howitworks .secbox .imagebox{
    box-shadow: 5px 5px 10px black;
    margin:5px 20px;
    height: 250px;
    padding-top: 23px;
    border-radius: 10px;
    background-color: #ffff6e;
}

.how-it-works .howitworks .secbox img{
    width: 140px;
    margin: 0 25px;
    border-radius: 5px;
} */


/* why travello  */

.whytravello{
    margin: 0;
    /* padding: 10px; */
    background-color: #ffeecb;
    
}
.containerofkrishna {
    left: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .container-title h1{
    display: flex;
    justify-content: center;
    font-size: 3rem;
    font-weight: 400;
    color: var(--orange);
    margin: 15px;
  }
 
  .container-paragraph {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
  }

  .left-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 3em;
    width: 15em;

  }
  .left-content ul li{
    cursor: pointer;
  }
  
  .right-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .right-content p{
    width: 60%;
  }
/* why travello ends here */

.packages{
    background-color: #ffeecb;
}

.packages h1{
    display: flex;
    justify-content: center;
    font-size: 3rem;
    font-weight: 400;
    color: var(--orange);
    margin: 15px;
}

.packages .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.packages .box-container .box{
    flex: 30rem;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0 , 0 , 0 , 0.1);
    position: relative;
    height: 68rem;
}

.packages .box-container .box img{
    height: 25rem;
    width: 100%;
    object-fit: cover;

}

.packages .box-container .box .content{
    padding: 2rem;
}

.packages .box-container .box .content h3{
    font-size: 2rem;
    color: #333;
}

.packages .box-container .box .content h3 i{
    color: var(--orange);
    margin-right: 1.5rem;
}

.packages .box-container .box .content p{
    font-size: 1.7rem;
    color: #666;
    padding: 1rem 0;
    text-transform: none;
}

.packages .box-container .box .button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 5px;
    bottom: 2px;
    position: absolute;
    margin-left: 100px;
}
#buttonExploreMore{
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
    margin-top: 20px;
}
.packages .box-container .box .button a{
    text-decoration: none;
    /* border-radius: 1rem; */
}

.service h1{
    display: flex;
    justify-content: center;
    font-size: 3rem;
    font-weight: 400;
    color: var(--orange);
    margin: 15px;
}

.service .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;

}

.service .box-container .box{
   flex:30rem;
   border-radius: .5rem;
   padding: 1rem;
   text-align: center;
}

.service .box-container .box i{
    padding: 1rem;
    font-size: 5rem;
    color: var(--orange );
}

.service .box-container .box h3{
    font-size: 2.5rem;
    color: #333;
}

.service .box-container .box p{
    font-size: 1.5rem;
    color: #666;
    padding: 1rem 0;
}

.service .box-container .box:hover{
    box-shadow: 0 1rem 2rem rgba(0 , 0 , 0 , 0.1);
}
.gallary{
    background-color: #ffeecb;
}
.gallary .heading{
    display: flex;
    justify-content: center;
    font-size: 3rem;
    font-weight: 400;
    color: var(--orange);
    margin: 15px;
}

.gallary .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
}

.gallary .box-container .box{
    overflow: hidden;
    flex: 30rem;
    border: 1rem solid #fff;
    box-shadow: 0 1rem 1rem rgba(0 , 0 , 0 , 0.1);
    height: 25rem;
    position: relative;
}

.gallary .box-container .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;

}

.gallary .box-container .box .content{
    position: absolute;
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    background: rgba(0 , 0 , 0 , 0.1);
    padding: 2rem;
    padding-top: 5rem;

}

.gallary .box-container .box:hover .content{
    top: 0;
}

.gallary .box-container .box .content h3{
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--orange);
}

.gallary .box-container .box .content p{
    font-size: 1.5rem;
    /* color: #eee; */
    color: #75e876;
    padding: .5rem 0;
    font-weight: bolder;
}

.developers h1{
    display: flex;
    justify-content: center;
    font-size: 3rem;
    font-weight: 400;
    color: var(--orange);
    margin: 15px;
}

/* .review .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.review .box-container .box {
    flex: 30rem;
    border-radius: .5rem;
    text-align: center;
    box-shadow: 0 1rem 2rem rgba(0 , 0 , 0 , 0.1);
   
}

.review .box-container .box:hover {
    flex: 30rem;
    border-radius: .5rem;
    text-align: center;
    box-shadow: 2rem 2rem 3rem rgba(0 , 0 , 0 , 0.2);
   
}

.review .box-container .box img{
   height: 13rem;
   width: 13rem;
   border-radius: 50%;
   object-fit: cover;
   margin-bottom: 1rem;
   margin-top: 2rem;
    
}

.review .box-container .box h3{
    font-size: 2rem;
    color: #333;

}

.review .box-container .box p{
    font-size: 1rem;
    color:#666;
}
.review .box-container .box .stars{
    padding: 1rem;
    color: var(--orange);
    font-size: 1.5rem;
} */

#knowmore{
    display: flex;
    justify-content: center;
    margin: .7rem;
}

#knowmore a{
    text-decoration: none;
}

.contact{
    background-color: #ffeecb;
}

.contact h1{
    display: flex;
    justify-content: center;
    font-size: 3rem;
    font-weight: 400;
    color: var(--orange);
    margin: 15px;
}

.contact .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.contact .row .image{
    flex:40rem;
}

.contact .row img{
    width: 100%;
}

.contact .row form{
    flex:50rem;
    padding: 2rem;
    box-shadow: rgba(0 , 0 , 0 , 0.1);
    border-radius: .5rem;
    background-color: #fff;
}

.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-color: #f7f7f7;
}

.contact .row form textarea{
    width: 100%;
    resize: none;
}

.contact .row .submitbutton{
    display: flex;
    justify-content: center;
}

.contact .findus{
   
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    
}

.contact .findus .boxe{
    flex: 50rem;
    background-color: #222;
    object-fit: cover;
    height: 40rem;
    border-radius: .7rem;
    
}

/* for map */


/* .contact .findus .boxe img{
    max-width: 100%;
    object-fit: cover;
    border-radius: .7rem;
}
.contact .findus .boxe iframe{
    max-width: 100%;
    height:40rem ;
    object-fit: fill;
    overflow: hidden;
    border-left-radius: .7rem;
} */

/* for map ends  */

.footer{
    background: #ffa500;
}

.footer .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer .box-container .box{
    padding: 1rem;
    flex: 20rem ;
}

.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{
    display: block;
    font-size: 1.5rem;
    padding: .7rem 0;
    color: #f45a00;
    
}

.footer .credit{
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: normal;
    color: #222;
    border-top: 1px solid #6e6e6e;
}

.footer .credit span{
    color: black;
    font-weight: 700;
    
}


/* #preloader{
    background: aliceblue url("/media_content/loading.gif") no-repeat center center;
    background-size: 10%;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    overflow-x: hidden;
} */


.swiper{
    width: 950px;

    /* position: relative; */

}
.developers .card .image{
    height: 140px;
    width: 140px;
    border-radius: 50%;
    padding: 3px;
    background-color: orange;
}
 .developers .name-review{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 }
.developers .card .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
}

.developers .card{
    /* position: relative; */
    background-color: #fff;
    border-radius: 20px;
    margin: 20px 0;
    width: 280px;
    
    
}

.developers .card::before{
    content: "";
    position: absolute;
    height: 55%;
    width: 100%;
    background: orange;
    border-radius: 20px 20px 0 0 ;
    
}

.developers .card .card-content{
    padding: 30px;
    /* padding-bottom: 5px ; */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    
}

.developers .name{
    font-size: 20px;
    font-weight: 600;
}

.developers .review{
    font-size: 10px;
    font-weight: 400;
}

.developers .card .rating{
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.developers .card .rating i{
    color: orange;
    font-size: 18px;
    margin: 0 2px;
}

::-webkit-scrollbar{
    display: none;
}



.active-option {
    width: auto;
    padding: 12px;
    height: 3em;
    /* border: 2px solid black; */
    font-weight: 600;
    color: white;
    background: orange;
    transition: all 0.2s ease-in;
}















/* media queries */
@media(max-width:1000px){
   html{ font-size: 55%;
   }
}
@media(max-width:991px){
    header{
        padding: 2rem;
    }
}
@media(max-width:768px){
    #menu-bar{
        display: initial;
        top: 100%;
        right: 0;
        left: 0;
    }
    header .navbar{
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        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: 1rem;
        margin: 1.5rem 0;
        background: #222;
    }
}

