@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Lilita+One&family=Oswald:wght@200..700&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,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*whatsapp*/
/* .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:80px;
	right:30px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.float:hover {
	text-decoration: none;
	color: #FFF;
    background-color:#1ab152;
    animation: shake 1s;
    animation-iteration-count: infinite;
}

.float i{
	display: flex;
    flex-direction: column;
    margin-top: 14px;
    color: #FFF;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
     box-shadow: 0 0 0 0px #25d36657; rgba(0, 0, 0, 0.2);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

@keyframes shake {
    0% { transform: translateX(0) }
    25% { transform: translateX(5px) }
    50% { transform: translateX(-5px) }
    75% { transform: translateX(5px) }
    100% { transform: translateX(0) }
 } */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins';
    color: #000;
    scroll-behavior: smooth;
}

/*CAROUSEL HERO*/
.swiper {
   width: 100%;
   height: 100vh;
}

.container {
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   flex-direction: column;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 1rem;
}

.slide-bg {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
}

.slide-bg img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: Left top;
   
}

.slide-content {
   width: 100%;
   max-width: 650px;
}

.slide-content__subtitle {
   font-size: 1.5rem;
   font-weight: 300;
   display: block;
   background: rgba(250, 250, 250, 0.8);
   width: fit-content;
   padding: 10px 15px;
   margin-bottom: 1rem;
}

.slide-content__title {
   font-size: 4.5rem;
   font-weight: 900;
   line-height: 1.1;
   background: rgba(250, 250, 250, 0.8);
   width: fit-content;
   padding: 10px 15px;
   margin-bottom: 1rem;
   
}

.slide-content__text {
   font-size: 1rem;
   margin-bottom: 2rem;
   margin-top: 1rem;
   font-style: italic;
   background: rgba(250, 250, 250, 0.8);
   width: fit-content;
   padding: 10px 15px;
   margin-bottom: 1rem; 
}

.button {
   padding: 1rem 2rem;
   background-color: #0707ee;
   color: #fff;
   display: inline-block;
   transition: all 300ms;
}

.button:hover {
   padding: 1rem 2.5rem;
}

/* slider active */
.slide-content__subtitle,
.slide-content__title,
.slide-content__subtitle,
.slide-content__text,
.slide-content__buttons {
   transition: 900ms;
   opacity: 0;
   transform: translateX(-300px);
}

.slide-bg {
   transition: all 900ms;
   opacity: 0;
   transform: translateY(-20px);
}

.swiper-slide-active .slide-bg {
   opacity: 1;
   transform: translateY(0);
}

.swiper-slide-active .slide-content__subtitle {
   opacity: 1;
   transform: translateY(0);
   transition-delay: 300ms;
}

.swiper-slide-active .slide-content__title {
   opacity: 1;
   transform: translateY(0);
   transition-delay: 700ms;
}

.swiper-slide-active .slide-content__text {
   opacity: 1;
   transform: translateY(0);
   transition-delay: 900ms;
}

.swiper-slide-active .slide-content__buttons {
   opacity: 1;
   transform: translateY(0);
   transition-delay: 1100ms;
}

/* pagination */

.swiper-horizontal > .swiper-pagination {
   bottom: 25px;
}

.swiper-pagination-bullet {
   background-color: #282828;
   opacity: 1;
   transition: all 300ms;
}

.swiper-pagination-bullet-active {
   width: 40px;
   border-radius: 10px;
}

@media screen and (max-width: 767px) {
   .slide-content__title {
      font-size: 2.5rem;
   }

   .button {
      padding: 0.8rem 1.8rem;
   }

   .slide-bg:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.66);
   }
   .slide-bg img {
      object-position: 70% top;
   }
}

/* HEADER */

.header {
    width: 100%;
    background-image: url(../image/banner_image.png);
    background-size: 50%;
    background-position: right;
    background-repeat: no-repeat;
    position: relative;
}

:root {
    --white-color: #fff;
    --second-color: #000;
    --prime-color: #0707ee;
    --pg-color: #817f91;
    --transition03: all ease 0.3s;
    --transition04: all ease 0.4s;
    --transition05: all ease 0.5s;
}

.section {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 100px 8%;
    gap: 50px;
}


/*BG-PARALLAX*/
.bg-parallax {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

button {
    width: 100px;
    height: 55px;
    border: none;
    cursor: pointer;
    color: var(--white-color);
    background-color: var(--prime-color);
    font-weight: 500;
    font-size: 15px;
    box-shadow: 5px 5px 20px var(--prime-color);
    position: relative;
    overflow: hidden;
}

button:after {
    content: '';
    position: absolute;
    height: 40px;
    width: 120px;
    background-color: var(--white-color);
    top: -20%;
    left: -100%;
    transform: rotate(-60deg);
    filter: blur(10px);
    transition: var(--transition05);
}

button:hover:after {
    left: 100%;
}

.section_title {
    align-items: center;
    text-align: center;
    gap: 10px;
}

.section_title_white {
    align-items: center;
    text-align: center;
    gap: 10px;
    color: #fff;
}

.section_width {
    width: 70%;
}

.title-underline {
    width: 30px;
    height: 3px;
    background-color: #0707ee;
    margin: 0 auto 30px auto;
}

/* NOSOTROS */
.grid-container {
	max-width: 90vw;
	margin: 2rem auto;
	display: grid;
	grid-row-gap: 2rem;
}

@media screen and (min-width:768px){
	.grid-container-medium-2{
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 4rem;
	}
	.grid-container{
		max-width: 75vw;
	}
}

.nosotros-container{
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto 1fr;
	grid-gap: 2rem;
}

.about_img-item{
	width: 100%;
	display: block;
	height: 100%;
	border-radius: 0.25rem;
}

.section-title_underline{
	background: var(--prime-color);
	width: 3rem;
	height: 0.25rem;
    margin-top: 0.50rem;
    margin-bottom: 0.50rem;
}

.section-title_text{
	letter-spacing: 0.1rem;
	line-height: 1.5;
	margin-top: 1rem;
	color: var(--pg-color);
    
}

@media screen and (min-width:760px){
	.about_img-special{
		order: -2;
	}
	.nosotros-container{
		grid-template-rows: 1fr 1fr;
		
	}
}

/* Responsive NAV*/
.ri-menu-2-line {
    font-size: 25px;
    font-weight: 600;
    display: none;
    color: #333;
}

.ri-close-large-line {
    display: none;
    color: #333;
}

nav {
    display: flex;
    height: 80px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 8px 8%;
    position: fixed;
    background-color: #ffffff;
    z-index: 99;
    backdrop-filter: blur(10px);
    border-bottom: 0.5px solid #0707ee;
}

nav .logo {
    width: 150px;
}

nav .logo img {
    width: 100%;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li a {
    color: var(--second-color);
    text-transform: uppercase;
    position: relative;
    font-weight: 500;
}

nav ul li a:after {
    content: '';
    position: absolute;
    height: 2px;
    top: 100%;
    width: 0%;
    left: 0%;
    transition: var(--transition05);
}

nav ul li a:hover:after {
    width: 100%;
    color: var(--prime-color);
    background-color: var(--prime-color);
}

nav ul li a:hover {
    color: var(--prime-color);
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.dark-mode-boton{
    width: 3rem;
    cursor: pointer;
}

.btn a {
    color: white;
}

.btn button:nth-child(2),
#nbtn{
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: var(--second-color);
    border: 1px solid var(--second-color);
}

/*--------------------------------------------------------*/

.heroWrapper {
    flex-direction: row;
    padding-top: 300px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: start;
}

.hero-content p {
    padding: 10px 0;
    color: var(--pg-color);
}

.hero-content p i {
    color: #333;
}

span {
    font-size: 22px;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 5rem;
    margin-top: 20px;
}

.hero-content h1 span {
    font-size: 4rem;
    font-weight: 800;
    color: var(--prime-color);
}

.hero-img {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.hero-img img {
    width: 100%;
    z-index: -99;
}

.hero-btn button {
    width: 180px;
    margin: 30px 0;
    font-size: 18px;
}

.hero-btn button i {
    padding-left: 8px;
    font-size: 18px;
    color: var(--white-color);
}

.hero-btn button:nth-child(2) {
    background-color: var(--second-color);
    color: var(--white-color);
    transition: var(--transition03);
    border: 2px solid var(--second-color);
}

.hero-btn button:nth-child(2):hover {
    color: var(--prime-color);
    border: 2px solid var(--prime-color);
    background-color: transparent;
}

.hero-btn button:nth-child(2):hover i{
    color: var(--prime-color);
}

/*-----animation-----*/
.heroWrapper {
    animation-delay: .1s;
    animation-duration: .5s;
}

.hero-content {
    animation-delay: .5s;
    animation-duration: .5s;
}

.hero-btn button {
    animation-delay: 1s;
    animation-duration: .5s;
}


/*--------FEATURES-----------*/
.header.animate__animated.animate__fadeIn{
    z-index: 1;
}

.Grid_Cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.Grid_Card {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    overflow: hidden;
    padding: 25px 35px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all 0.5s ease 0s;
}

.Grid_Card i { 
    font-size: 30px;
    margin-bottom: 20px;
    transition: all 0.5s;
    color: #333;
}

.Grid_Card::before, .Grid_Card::after {
    content: "";
    height: 300%;
    position: absolute;
    transform: rotate(45deg);
    width: 120%;
    z-index: -9;
    transition: all 0.5s;
    opacity: 0;
    background: #0707ee;    
    
}

.Grid_Card::before{
    top: -37px;
    left: 100%; 
}

.Grid_Card:hover:before{    
    left: -27px;
    opacity: 1;  
}

.Grid_Card::after{
     right: 100%;
     bottom: -37px;
     z-index: -1;
}

.Grid_Card:hover:after{
     right: -27px;
     opacity: 1;
}

.Grid_Card:hover{
     color: white;    
}

.Grid_Card:h3, i{
     color: white;    
}


.Grid_Card:hover h3, i{
     color: white;    
}


.Grid_Card:hover h3:after{
     background-color: white;    
}

.Grid_Card i{
    font-size: 30px;
    margin-bottom: 20px;
    transition: all 0.5s;
    
}


.Grid_Card:hover i{
    color: white;
    transform:rotate(360deg);
}

.Grid_Card h3
{
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
    
}

.Grid_Card p
{
    font-size: 14px;
    margin-bottom: 0;
    color: var(--pg-color);
}

.Grid_Card:hover p{
    color: white;
    
}
/* img#eleimage {
    width: 200px;
}

.Grid_Card:hover #eleimage {
    animation: wobble-hor-bottom 1s;
} */

@keyframes wobble-hor-bottom {
    0%,
    100% {
        transform: translateX(0%);
        transform-origin: 50% 50%;
    }
    15% {
        transform: translateX(-30px) rotate(-6deg);
    }
    30% {
        transform: translateX(15px) rotate(6deg);
    }
    45% {
        transform: translateX(-15px) rotate(-3.6deg);
    }
    60% {
        transform: translateX(9px) rotate(2.4deg);
    }
    75% {
        transform: translateX(-6px) rotate(-1.2deg);
    }
}

.row-text {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 10px;
}

.row-text h3 {
    font-size: 25px;
    font-weight: 700;
}

/*--------FEATURES-----------*/
.about-pg {
    position: relative;
}

.about-main{
    display: flex;
    justify-content: space-between;
    gap: 60px;
    
}

.video-btn {
    position: absolute;
    top: 90%;
    left: 80%;
    transform: translate(-50%, -50%);
    background-color: var(--prime-color);
    height: 150px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-btn i {
    color: var(--white-color);
    font-size: 40px;
}

/* .about-text p{
    border-bottom: 1px solid var(--prime-color);
} */

.about-Cards {
    padding-top: 50px;
}

.about-Card {
    gap: 10px;
}

.row-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.row-info h2 i{
    font-size: 3rem;
    color: var(--prime-color);
}

.row-info span {
    font-size: 16px;
    color: var(--pg-color);
}

/*--------STATS-----------*/
#stats-cover {
    background-image: url(../image/slide-principal.jpeg);
}

#stats-cover .content-box {
    padding-top: 80px;
    padding-bottom: 100px;
    background-color: rgba(0,0,0,0.8);
}

.content-box  h1 {
    color: #fff;
}

.Grid_Stats{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    
}

.Grid_Stats .stats-item i{
    text-align: center;
    color: #34c6d3;
    font-size: 5rem;
}

.stats-item h2,
.stats-item span {
    color: var(--white-color);
    font-size: 2rem;
}

.Grid_Stats .stats-item p {
    color: #fff;
}

/*--------BANNER-----------*/

.banner {
    background-image: url("../image/ingenieria-civil.jpeg");
    background-size: cover;
    background-position: right center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    z-index: 0;
    
}

.banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.banner img {
    width: 25%;
}

.banner button {
    width: 170px;
}

.banner button i {
    padding-left: 8px;
    color: var(--white-color);
}

.banner-page h1,
.banner-page span {
    color: var(--white-color);
}

.banner-page h1 {
    font-size: 3rem;
    font-weight: 600;
}

.banner-page span {
    font-weight: 400;
}

@media screen and (max-width: 884px) {
    .banner {
         flex-direction: column;
    }
    
}

@media screen and (max-width:500px) {
	.banner img {
        width: 50%;
		margin: auto;
	}

    .banner-page h1 {
        font-size: 2.5rem;
        font-weight: 600;
    }

}


/*--------FAQ SECTION-----------*/
.faq-wrapper {
    background-image: url(../image/medio-ambiente.png);
    background-size: 30%;
    background-position: left bottom;
    background-repeat: no-repeat;
    align-items: center;
    z-index: 1;
}

.faq-cols {
    min-height: 100%;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.boxs{
    width: 70%;
    margin: 30px auto;
    overflow: hidden;
    transition: var(--transition05) ease;
    border-radius: 5px;
    box-shadow: 5px 5px 10px #0000000b;
    z-index: 999;
}

.box-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 18px 30px;
    background-color: var(--white-color);
    box-shadow: 5px 5px #0000000b;
    border-bottom: 1px solid #0000000b;
    transition: 1s;
}

.box-text span{
    font-size: 18px;
    font-weight: 600;
}

.box-icon {
    display: flex;
    align-items: center;
}

.box-icon i{
    color: #000;
    font-size: 22px;
    transition: color 0.3s ease;
}

.faq-pg {
    background-color: var(--white-color);
    height: 0;
    overflow: hidden;
    transition: 1s;
}

.faq-pg p{
    font-size: 15px;
    line-height: 1.5;
    color: var(--pg-color);
}

.box-icon .ri-arrow-up-s-line{
    display: none;
}

.show_box {
    padding: 20px;
    animation: showAnim 0.6s linear forwards;
}

@keyframes showAnim {
    100% {
        height: 120px;
    }
}

.box-row.active {
    background-color: #f4f4f4;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

#banner-two {
    min-height: 480px;
    background-image: url(image/download-background-image.png);
    background-position: top;
    background-color: #f9f9f9;
}

.banner-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 30px;
}

.banner-text h1 {
    font-size: 4rem;
}

/*--------CLIENTS-----------*/
.owl-dots {
    text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: var(--prime-color);
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background-color: #869791;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    width: 12px;
    height: 12px;
    background-color: var(--prime-color);
}

.owl-dots button.owl-dot{
    margin-right: 10px;
    background: #869791;
    border-radius: 50%;
    height: 12px;
    width: 12px;
    position: relative;
}

/*--------FOOTER-----------*/


hr {width: 80%; border: 4px solid #0707ee; border-radius: 300px/10px; height: 0px; margin: 0 auto;}
.f-rows {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.f-row {
    display: flex;
    align-items: start;
    flex-direction: column;
    width: 100%;
    gap: 30px;
    padding: 20px;
}

.f-row span {
    color: #000;
    font-weight: 700;
}

.f-row ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 18px;
}

.f-row ul li a i {
    padding-right: 5px;
    color: #333;
}

.f-row:nth-child(3) .f-info h2{
    font-size: 17px;
    font-weight: 400;
}

.f-row:nth-child(3) span {
    font-size: 17px;
    color: #817f91;
    font-weight: 400;
}

.f-row:nth-child(4) input {
    width: 100%;
    padding: 18px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    outline: none;
    text-align: center;
    background-color: #ECECEC;
}

.f--bottom{
    border-top: 1px solid #0000006a;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.f-bottom-text span {
    color: #000;
    font-size: 18px;
}

.f--bottom .icons {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.icons i{
    font-size: 25px;
    cursor: pointer;
}

.icons i:hover {
    color: var(--prime-color);
}

/*--------SCROLL TO TOPY-----------*/
#myBtn {
    display: none;
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: 2px solid #0707ee;
    outline: none; /* Remove outline */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 3px 15px; /* Some padding */
    border-radius: 0; /* Rounded corners */
    font-size: 24px; /* Increase font size */
  }

  i.ri-arrow-up-s-line {
    color: #0707ee;
  }

  i.ri-arrow-up-s-line:hover {
    color: #fff;
  }

  #myBtn:hover {
    background-color: #0707ee;
    color: #fff;
  }

/*--------NOSOTROS-----------*/ 
 .site-header{
    display: flex;
    height: 100vh;
    align-items: center;
    padding-top: 70px;
    min-height: 400px;
    max-height: 600px;
    background-image: url(../image/banner.jpg); 
   
 } 
    
.site-info{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.site-title {
    font-size: 3em;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
}

.site-description {
    text-align: center;
    color: #008dd2;
    font-size: 1.2em;
    margin-top: -.8em;
    font-style: italic;
}

@media screen and (min-width: 1120px) {

    /* .site-title {
        font-size: 4em;
    } */
    
}

@media screen and (min-width:500px) {
     /* .site-title {
        font-size: 1em;
    } */
} 

@media screen and (max-width:480px) {
    .site-title {
        text-align: center;
        font-size: 2.3em;
    }
 
}

/* contact section */
.contact-container{
	max-width: 90vw;
	margin: 0 auto;
	display: grid;
	grid-row-gap: 1rem;
}
.contact-info{
	display: grid;
	justify-content: center;
}
.contact-item{
	margin: 1rem 0;
	padding: 0.5rem;
}
.contact-item_icon{
	font-size: 3rem;
	color: var(--prime-color);
}
.contact-item_icon i {
	color: #333;
}

.contact-item_title{
	text-transform: uppercase;
	margin: 0.5rem 0;
	letter-spacing: 0.25rem;
	font-style: italic;
}
.contact-item_text {
	font-size: 1rem;
	text-transform: uppercase;
	color: var(--grey);
}

.contact-item_text span i {
	color: #333;
}

@media screen and (max-width:480px) {
    .contact-container {
        padding-top: 30px;
    }
 
}

@media screen and (min-width:500px) {
    .contact-container {
        margin-top: 1rem;
    }
}

@media screen and (min-width:768px) {
	.contact-info{
		grid-template-columns: repeat(3, 1fr);
		order: -1;
	}
 
}

@media screen and (min-width:992px) {
	.contact-info{
		grid-template-columns: 1fr;
		order: 0;
	}
	.contact-container{
		display: grid;
		grid-template-columns: 2fr 1fr;
		grid-column-gap: 2rem;
	}
	.contact-map{
		align-self: center;
	}
}


/*--------MEDIA QUERY-----------*/

@media (max-width:1600px) {
    .hero-content h1,
    .hero-content h1 span {
        font-size: 3.5rem;
    }
}

@media (max-width:1400px) {
    .hero-content h1,
    .hero-content h1 span {
        font-size: 3rem;
    }
    .header {
        background-size: cover;
    }
}

@media (max-width:1200px) {
    .hero-content h1,
    .hero-content h1 span {
        font-size: 3rem;
        line-height: 4rem;
    }
    .video-btn button {
        height: 100px;
        width: 100px;
    }
    .tst-row p{
        font-size: 1rem;
    }
    .ri-menu-2-line{
        display: block;
        cursor: pointer;
    }
    .menu{
        flex-direction: column;
        position: absolute;
        top: 0;
        left: -100%;
        background-color: #fff;
        min-height: 100vh;
        width: 300px;
        padding: 50px 50px;
        opacity: 0;
        transition: var(--transition04);
        font-size: 22px;
        z-index: 9;
    }
    .menu li:nth-child(1){
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .menu li:nth-child(1) i{
        border: 1px solid #0000009e;
        height: 50px;
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
    }
    .menu li{
        padding: 20px 0px;
    }
    .show{
        left: 0;
        opacity: 1;
    }
}

@media (max-width:1000px) {
    .heroWrapper{
        flex-direction: column;
    }
    .hero-content{
        width: 100%;
    }
    .hero-img{
        width: 100%;
    }
    .about-main{
        flex-direction: column;
    }
    .Grid_Cards{
        grid-template-columns: repeat(2,1fr);
    }
    .benifites-card{
        flex-direction: column;
        text-align: center;
    }
    .user-info span{
        font-weight: 500;
        font-size: 16px;
    }
    .box-text span {
        font-size: 16px;
    }
    .faq-pg p{
        font-size: 12px;
    }
    .banner{
        background-size: cover;
    }
    .f-rows{
        grid-template-columns: repeat(2,1fr);
    }
    .benifites-img img{
        width: 100%;
    }
    .video-btn{
        height: 100px;
        width: 100px;
    }
}

@media (max-width:768px) {
    .boxs{
        width: 100%;
    }
    .banner-images{
        display: flex;
        justify-content: center;
        gap: 30px;
        width: 100%;
    }
    .banner-images img{
        width: 160px;
    }
    .Grid_Stats {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:500px) {
    nav .logo {
        width: 150px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 2rem;
    }
    .hero-content span{
        font-size: 30px;
    }
    .hero-content h2 span {
        font-size: 2rem;
    }
    .hero-btn button {
        width: 160px;
    }
    .Grid_Stats {
        grid-template-columns: repeat(2,1fr);
    }
    .banner{
        flex-direction: column;
        align-items: start;
    }
    .banner-text h1{
        font-size: 2rem;
    }
    .Grid_Cards{
        grid-template-columns: repeat(1,1fr);
    }
    .f-rows{
        grid-template-columns: repeat(1,1fr); 
    }
}

