@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap");

:root {
  --primary-color: #3685fb;
  --primary-color-dark: #2f73d9;
  --secondary-color: #fafcff;
  --text-dark: #0d213f;
  --text-light: #767268;
  --extra-light: #ffffff;
  --max-width: 1200px;
}



*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
    box-sizing: border-box;
}

.back-video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
@media (min-aspect-ratio:16/9){
    .back-video{
        width: 100%;
        height: auto;
    }
}
@media (max-aspect-ratio:16/9){
    .back-video{
        width: auto;
        height: 100%;
    }
}
h1{
    text-align: left;
    font-size: 15px;
}
.header{
   top: 0; left: 0; right: 0;
   z-index: 500;
   background:none;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 25px 9%;

}
.navbar a{
    justify-content: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', Verdana, sans-serif;
    margin-top: 25px;
    font-size: 20px;
    color:white;
    display: inline-block;
    margin: 0 1rem;
}
.navbar a:hover{
    color:#89CFF0;
}
.logo{
    justify-content: left;
    max-width: 700px;
    height: 150px;
    margin-top:4px;
    cursor: pointer;
    float: left;
    position:absolute;
    left: 40px;
    margin-top: 30px;

}
.container{
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10px 8%;
}
nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.logo{
    width: 180px;
    cursor: pointer;
}
nav ul{
    list-style: none;
    width: 100%;
    text-align: center;
    padding-right: 140px;
    padding-left: 100px;
}
nav ul li{
    display: inline-block;
    margin: 5px 5px;
}
nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size:20px;
    font-weight: bold;
}
.btn{
   top: 43px;
   display: inline-block;
   padding: 10px 30px;
   color:white ;
   border-radius: 20px;
   border: 3px solid #89CFF0;
   font-size: 10.7px;
   cursor: pointer;
   background:none;
   position: absolute;
   right: 140px;
  
}
.btn:hover{
    background: #89CFF0;
    color: black;
}
.btn2{
    top: 43px;
    display: inline-block;
    padding: 10px 30px;
    color:white;
    border-radius: 20px;
    border:3px solid #89CFF0;
    font-size: 10.7px;
    cursor: pointer;
    background:none;
    position: absolute;
    right: 20px;
    transition: .5s;
   
}
.btn2:hover{
    background: #89CFF0;
    color: black;
}
.buttons{
    display: grid; 
    float: right;
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px; 
}

@import url('https://fonts.googleapis.com/css?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.wrapperlogin{
    position: relative;
    width: 400px;
    height: 440px;
    background:transparent;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: height .2s ease;
}


.wrapperlogin.active{
    height: 520px;
}

.wrapperlogin.form-box{
    width: 100%;
    padding: 40px;
}

.wrapperlogin .form-box.login{
    transition: transform .18s ease ;
    transform: translateX(0);
}
.wrapperlogin.active .form-box.login{
    transition: none;
    transform: translateX(-400px);
}

.wrapperlogin .form-box.register{
    position: absolute;
    transition: none;
    transform: translateX(400px);
}

.wrapperlogin.active .form-box.register{
    transition: transform .18s ease ;
    transform: translateX(0);
}

.wrapperlogin .icon-close{
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background:#162938;
    font-size: 2em;
    color: #fff;
    display: flex;
    justify-content:center;
    align-items: center;
    border-bottom-left-radius: 20px ;
    cursor: pointer;
    z-index: 1;

}

.form-box h2{
    font-size: 2em;
    color:#162938;
    text-align: center;
}
.input-box{
    position: relative;
    width: 100%;
    height: 50px;
    border-bottom: 2px solid #162938;
    margin:30px 0;
}

.input-box label{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1em;
    color:#162938;
    font-weight: 500;
    pointer-events: none;
    transition: .5s;
}

.input-box input:focus~label,
.input-box input:valid~label{
    top: -5px;
}

.input-box input{
    width: 100%;
    height: 100%;
    background:transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: #162938;
    font-weight: 600;
    padding: 0 35px 0 5px;
}

.input-box .icon{
    position: absolute;
    right: 8px;
    font-size: 1.2em;
    color: #162938;
    line-height: 57px;
}

.remember-forgot{
    font-size: .9em;
    color: #162938;
    font-weight: 500;
    margin: -15px 0 15px;
    display: flex;
    justify-content:space-between ;
}

.remember-forgot label input{
    accent-color: #162938;
    margin-right: 3px;
}
.remember-forgot a{
    color: #162938;
    text-decoration: none;
}
.remember-forgot a:hover {
    text-decoration: underline;
}
.btnloginsignup{
    width: 100%;
    height: 45px;
    background: #162938;
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    color: #fff;
    font-weight: 500;
}

.login-register{
    font-size: .9em;
    color: #162938;
    text-align: center;
    font-weight: 500;
    margin: 25px 0 10px;
}
.login-register p a{
    color: #162938;
    text-decoration: none;
    font-weight: 600;
}
.login-register p a:hover{
    text-decoration: underline;
}




.trip2 {
    background-color: var(--secondary-color);
  }
  
  .trip2__container :is(.section__title, .section__subtitle, .view__all) {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
  
  .trip2__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
  }
  
  .trip2__card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
  }

  .trip2 img{
    width: 550px;
    height: 300px;
   border-radius: 10px;
}

  .trip2__details {
    padding: 1rem;
    display: grid;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--extra-light);
    cursor: pointer;
  }
  
  .rating {
    color: goldenrod;
  }
  
  .booking__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .price span {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
  .book__now {
    padding: 0.5rem 1.5rem;
    color: var(--primary-color);
    outline: none;
    border: 1px solid var(--primary-color);
    border-radius: 5rem;
    background-color: transparent;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .book__now:hover {
    color: var(--extra-light);
    background-color: var(--primary-color);
  }


.trip {
    background-color: var(--secondary-color);
  }
  
  .trip__container :is(.section__title, .section__subtitle, .view__all) {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
  
  .trip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
  }
  
  .trip__card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
  }
  
  .trip__details {
    padding: 1rem;
    display: grid;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--extra-light);
    cursor: pointer;
  }
  
.trip img{
    width: 550px;
    height: 300px;
   border-radius: 10px;
}

  .rating {
    color: goldenrod;
  }
  
  .booking__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .price span {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
  .book__now {
    padding: 0.5rem 1.5rem;
    color: var(--primary-color);
    outline: none;
    border: 1px solid var(--primary-color);
    border-radius: 5rem;
    background-color: transparent;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .book__now:hover {
    color: var(--extra-light);
    background-color: var(--primary-color);
  }
  
  .gallary__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .image__gallary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .gallary__col {
    display: grid;
    place-content: center;
    gap: 1rem;
  }
  
  .gallary__col img {
    width: 500px;
    height: 500px;
    border-radius: 1rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  }
  
.gallary p{
    font-size: 20px;
}
  
.gallary h4{
    font: 15px;
}
  .gallary__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .gallary__content > div {
    max-width: 400px;
  }
  
  .gallary__content .section__subtitle {
    margin-bottom: 2rem;
  }
  

.content{
    padding:0 7%;
    margin-top:180px;

}
.content h1{
    justify-content: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 10px;
    color: #fff;
}
.content p{
    color:#fff;
    text-align: center;
    margin-bottom: 40px;
}
.content form{
    display: flex;
    align-items: center;
    border-radius: 20px;
    background:#fff;
    padding: 5px;
    margin-top: 5px;
}
.content form input{
    border: 0;
    outline: 0;
    width: 700px;
    height: 60px;
    font-size: 15px;
    padding-left: 10px;
}
.content form .btn{
    background: #89CFF0;
    color: black;
    border-radius: 10px;
    font-size: 15px;
    padding: 8px 25px;
}
.content form .btn:hover{
    background:none;
}
.info{
   display: flex;
   justify-content: center;
   margin-top: 100px;
}
.text{
    font-size: 40px;
    font-weight: 500;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border-right: 5 px solid;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation: 
    typing 2s steps(29);
    cursor: .4s step-end infinite alternate;
}

.btn3{
    display: inline-block;
    padding: 10px 30px;
    color:#000 ;
    font-size: 30px;
    border-radius: 20px;
    border: 3.5px solid #89CFF0;
    font-size: 16px;
    cursor: pointer;
    background:none;
   
 }
 .btn3:hover{
     background: #89CFF0;
     color: black;
 }
@keyframes cursor{
    50%{
        border-color: transparent;
    }
}
@keyframes typing{
    from{
        width: 0;
    }
}









/*--------Speciality Tours---------*/
.special{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    grid-gap:30px;
    margin-bottom: 30px;
}
.speciality h2{
    font-size: 50px;
    justify-content: center;
    margin-bottom: 50px;
}
.special div img{
    width: 350px;
    height: 250px;
   border-radius: 10px;
}
.special h3{
    font-weight: 700;
    margin-top: 10px;
}

/*--------Contact us---------*/

@import url('https://fonts.googleapis.com/css?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
*
{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}
.contact
{
    position:relative;
    min-height: 50vh;
    padding: 30px,100px;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(background.jpg);
    background-size: cover;
}
.contact .contcontent h2
{
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 85px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 45px;
    font-weight: 500;
    color:black;
}
.contcontainer
{
    margin-top: 20px;
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:30px;  
}
.contcontainer .ContactInfo{
    width:50%;
    display: flex;
    flex-direction: column;
}
.contcontainer .ContactInfo .box
{
    position: relative;
    padding: 20px 0;
    display: flex;
}
.contcontainer .ContactInfo .box .icon
{
    min-width: 60px;
    height: 60px;
    background:white;
    display:flex;
    justify-content: center;
    align-items: center;
    border-bottom: 50%;
    font-size: 22px;
}
.contcontainer .ContactInfo .box .text
{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color:#fff;
    flex-direction: column;
    font-weight: 300;
}
.contcontainer .ContactInfo .box .text h3
{
    font-weight: 500;
    color:#89CFF0;
}
.contcontainer .ContactInfo .box .text p
{
    font-weight: 500;
    color: black;
}
.contactForm
{
   width:40%;
   padding: 40px;
   background:#fff; 
}
.contactForm h2{
    font-size: 30px;
    color:black;
    font-weight: 500;
}
.contactForm .inputBox
{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.contactForm .inputBox input,
.contactForm .inputBox input textarea
{
    width:100%;
    padding: 5px 0;
    font-size:16px;
    margin: 10px 0;
    border:none;
    border-bottom: 2px solid #333;
    outline:none;
    resize: none;
}
.contactForm .inputBox span
{
    position: relative;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin:10px 0;
    pointer-events: none;
    transition: 0.5s;
    color:#666;
}
.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span
{
    color: #89CFF0;
    font-size: 12px;
    transform: translateY(-20px);
}
.contactForm .inputBox input[type="submit"]
{
    width: 100px;
    background:#89CFF0;
    color:#fff;
    border:none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border-radius: 10px;
    border-width: 10px;
    border-color: white;
}
.contactForm .inputBox input[type="submit"]:hover{
    background-color: #89CFF0;
    color: black;
}
@media(max-width:991px){
    .contact{
        padding: 50px;
    }
    .contcontainer{
        flex-direction:column;
    }
    .contcontainer .ContactInfo{
        margin-bottom: 40px;
    }
    .contactForm{
        width: 100%;
    }
}

/*--------footer---------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.footercontainer{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer2{
	background-color: black;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #89CFF0;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}
/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}
footer{
    background-color: #111;
}
.footerContainer{
    width: 100%;
    padding: 70px 30px 20px ;
}
.socialIcons{
    display: flex;
    justify-content: center;
}
.socialIcons a{
    text-decoration: none;
    padding:  10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.socialIcons a i{
    font-size: 2em;
    color: black;
    opacity: 0,9;
}
/* Hover affect on social media icon */
.socialIcons a:hover{
    background-color: #111;
    transition: 0.5s;
}
.socialIcons a:hover i{
    color: white;
    transition: 0.5s;
}
/*--------Services---------*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

.services .heading {
    margin-top:60px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    font-size: 40px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.services .box-container{
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 60px;
}
.services .box-container .box{
    flex: 1 1 25rem;
    border-radius: .5rem;
    padding: 1rem;
    text-align: center;
}
.services .box-container .box i{
    padding: 1rem;
    font-size: 4rem;
    color: #39CFF0;
}

.services .box-container .box h3{
    font-size: 2rem;
    color: #333;
}
.services .box-container .box p{
    font-size: 0.8rem;
    color: #666;
    padding: 1rem 0;
}
.services .box-container .box:hover{
    box-shadow: 0 1rem 2 rem rgba(0,0,0,.1);
}
  
/*--------Travellers stories---------*/
h2{
    margin-top: 50px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 50px;
    display: flex;
    justify-content: center;
}
.stories{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    grid-gap:30px;
    margin-bottom: 30px;
}
.stories  div img{
    width: 100%;
    border-radius: 10px;
    min-height: 450px;
}
.stories div {
    position: relative;
    text-align: center;
}
.stories p{
    width:80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 26px;
}

/*-------Reviews-------*/

*{
    margin: 0px;
    padding: 0px;
    font-family: poppins;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
#testimonials{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width:100%;
}
.testimonial-heading{
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.testimonial-heading h1{
    font-size: 2.2rem;
    font-weight: 500;
    background-color: #202020;
    color: #ffffff;
    padding: 10px 20px;
}
.testimonial-heading span{
    font-size: 1.3rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.testimonial-box-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width:100%;
}
.testimonial-box{
    width:500px;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
}
.profile-img{
    width:50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}
.profile-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.profile{
    display: flex;
    align-items: center;
}
.name-user{
    display: flex;
    flex-direction: column;
}
.name-user strong{
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.name-user span{
    color: #979797;
    font-size: 0.8rem;
}
.reviews{
    color: #f9d71c;
}
.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.client-comment p{
    font-size: 0.9rem;
    color: #4b4b4b;
}
.testimonial-box:hover{
    transform: translateY(-10px);
    transition: all ease 0.3s;
}
 
@media(max-width:1060px){
    .testimonial-box{
        width:45%;
        padding: 10px;
    }
}
@media(max-width:790px){
    .testimonial-box{
        width:100%;
    }
    .testimonial-heading h1{
        font-size: 1.4rem;
    }
}
@media(max-width:340px){
    .box-top{
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .reviews{
        margin-top: 10px;
    }
}
::selection{
    color: #ffffff;
    background-color: #252525;
}
 .whytravel{
    margin-top: 50px;
 }
.whytravel h4{
    font-size: 35px;
    text-align: center;
  }
  
  .whytravel p{
    font-size: 25px;
    text-align: center;
    color: #666;
  }
  
  .whytravel i{
    color:#452c63
  }

  .about{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .image{
    flex: 1 1 41rem;
  }
  .image img{
    width: 100%;
    height: 750px;
    margin-top: 50px;
    margin-bottom: 60px;
  }

  .aboutcontent{
    flex: 1 1 41rem;
    padding: 3rem;
    background: #eee;
    height: 750px;
    margin-top: 50px;
    margin-bottom: 60px;
  }
  .aboutcontent h3{
    font-size: 2.5rem;
    color: #000;
  }

.aboutcontent p{
    font-size: 1.2rem;

}
 
.aboutcontent a{
    font-size: 20px;
    font-weight: bold;
}
  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

  .heading {
      margin-top:10px;
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      font-size: 20px;
      font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }
  .servicesa p{
    font-size: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .servicesa .box-container{
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 5px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 40px;
  }
  .servicesa .box-container .box{
      flex: 1 1 30px;
      border-radius: 5px;
      padding: 10px;
      text-align: center;
  }
  .servicesa .box-container .box i{
      padding: 50px;
      font-size: 40px;
      color:black;
  }
  
  .servicesa .box-container .box h3{
      font-size: 18px;
      color: #333;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .servicesa .box-container .box p{
      font-size: 8px;
      color: #666;
      padding: 1rem 0;
  }
  .servicesa .box-container .box:hover{
      box-shadow: 0 8px 15px rgba(0,0,0,.1);
  }
