:root{

  /*========================== COLORS ==========================*/

  --dark-black: #000000;
  --dark-blue: #18425d;
  --light-blue: #6cace3;
  --bright-blue: #a9cbda;
  --brightest-blue: #e8eff6;
  --dark-gray: #0d0d0d;
  --gray: #545454;
  --light-gray: #a6a6a6;
  --bright-gray: #d9d9d9;
  --yellow-white: #fdfdfb;
  --white: #ffffff;
  --success-color: #2ecc71;
  --error-color: #e74c3c;
}

@font-face {
    font-family: 'HeroLight';
    src: url('../fonts/HeroLight-Bold.otf') format('opentype');
}

*{
    margin: 0;
    padding: 0;
}

body {
    font-family: 'HeroLight', sans-serif;
    box-sizing: border-box;
    overflow-x: hidden;
}

.landing-page{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.header-con{
    background-image: url(landing-page-pic.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 1.5rem 1.2rem 11rem 1.2rem;
    margin: 1.5rem 1.5rem 0 1.5rem;
    border-radius: 2rem;
    position: relative;
    z-index: 1;
}

header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999; 
}

.logo{
    position: relative;
    text-decoration: none;
    transition: 0.6s;
}

.logo img{
    height: auto;
    width: 14vw;
}

.nav__list{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul li{
    position: relative;
    list-style: none;
}

.nav__link{
    position: relative;
    text-decoration: none;
    color: var(--bright-gray);
    margin: 0 15px;
    letter-spacing: 1px;
    font-weight: bold;
    transition: 0.3s;
}

.nav__link:hover{
    color: var(--white);
}

.nav-button{
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    color: var(--white);
    z-index: 1;
    background: var(--dark-blue);
    position: relative;
    font-weight: bold;
    font-size: 1rem;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    cursor: pointer;
    font-family: 'HeroLight', sans-serif;
}

.nav-button::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 height: 100%;
 width: 0;
 background-color: var(--white);
 z-index: -1;
 -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 transition: all 250ms
}

.nav-button a{
    text-decoration: none;
    width: 100%;
    color: var(--white);
}

.nav-button:hover a {
 color: var(--dark-black);
}

.nav-button:hover::before {
 width: 100%;
}

.nav__toggle,
.nav__close{
    display: none;
}

.header-textbox{
    text-align: center;
    color: var(--white);
    margin-top: 10%;
}

.header-textbox h3{
    margin: 0;
    font-size: 1.5vw;
}

.header-textbox h1{
    font-size: 9vw;
    margin: 0;
    font-weight: bolder;
}

.header-textbox h2{
    margin: 0;
    font-size: 2.5vw;
}

.header-buttons{
    margin-top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .8rem
}

.header-buttons button{
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    z-index: 1;
    position: relative;
    font-weight: bold;
    font-size: 1.4vw;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    cursor: pointer;
    font-family: 'HeroLight', sans-serif;
}

.header-buttons button::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 height: 100%;
 width: 0;
 background-color: var(--white);
 z-index: -1;
 -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 transition: all 250ms
}

.header-buttons button:hover {
 color: var(--dark-black);
}

.header-buttons button:hover::before {
 width: 100%;
}

.header-button-1{
    color: var(--white);
    background: var(--dark-blue);
}

.header-button-2{
    color: var(--white);
    background: var(--light-blue);
}

.header-boxes{
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: absolute;
  top: 92%;
  z-index: 2;
}

.header-box{
  background: rgba(217, 217, 217, 0.4);
  backdrop-filter: blur(12px); 
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2); 
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 1rem;
  flex-basis: 22%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
} 

.box-icon img{
    display: block;
    height: auto;
    width: 6vw;
}

.header-box h1{
    color: var(--dark-black);
    font-size: 1.5vw;
    font-weight: 1000;
    margin-top: .5rem;
}

.header-box p{
    color: var(--gray);
    font-size: 1.1vw;
    margin-top: 0.5rem;
}

@media (min-width: 700px) and (max-width: 1024px){
    header{
        padding: 10px 15px;
    }
    .logo img{
        width: 21vw;
    }
    .nav-button{
        display: none;
    }
    .nav__menu{
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(12px); 
        box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2); 
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        padding-block: 4.5rem 3.5rem;
        z-index: 100;
        transition: top 1s;
    }
    .nav__list{
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
        text-align: center;
    }
    .nav__link{
        color: var(--dark-black);
        text-decoration: none;
    }
    .nav__link:hover{
        color: var(--dark-black);
    }
    .nav__close{
        position: absolute;
        top: 1.15rem;
        right: 1.5rem;
    }
    .show-menu{
        top: 0;
    }
    .fa-bars{
        margin-right: 2rem;
    }.nav__toggle{
        font-size: 1.5rem;
        color: var(--white);
        cursor: pointer;
        display: block;
    }
    .nav__close{
        font-size: 1.5rem;
        color: var(--dark-black);
        cursor: pointer;
        display: block;
    }
    .header-con{
        padding: 0.8rem 1.2rem 11rem 1.2rem;
    }
    .header-textbox{
        margin-top: 15%;
    }
    .header-textbox h3{
        font-size: 1.7vw;
    }
    .header-textbox h1{
        font-size: 11vw;
    }
    .header-textbox h2{
        font-size: 3.5vw;
    }
    .header-buttons{
        margin-top: 7%;
    }
    .header-buttons button{
        font-size: 1.65vw;
    }
    .header-boxes{
        gap: 1rem;
    }
    .header-box{
        padding: 1.5rem;
    }
    .box-icon img{
        width: 7vw;
    }
    .header-box h1{
        font-size: 1.8vw;
    }
    .header-box p{
        font-size: 1.4vw;
    }
}

@media (max-width: 700px){
    header{
        padding: 10px 10px;
    }.nav-button{
        display: none;
    }
    .nav__menu{
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background: rgba(217, 217, 217, 0.4);
        backdrop-filter: blur(12px); 
        box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2); 
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        padding-block: 4.5rem 3.5rem;
        z-index: 100;
        transition: top 1s;
    }
    .nav__list{
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
        text-align: center;
    }
    .nav__link{
        color: var(--dark-black);
        text-decoration: none;
    }
    .nav__link:hover{
        color: var(--dark-black);
    }
    .nav__close{
        position: absolute;
        top: 1.15rem;
        right: 1.5rem;
    }
    .show-menu{
        top: 0;
    }
    .fa-bars{
        margin-right: 2rem;
    }.nav__toggle{
        font-size: 1.5rem;
        color: var(--white);
        cursor: pointer;
        display: block;
    }
    .nav__close{
        font-size: 1.5rem;
        color: var(--dark-black);
        cursor: pointer;
        display: block;
    }
}

@media (min-width: 550px) and (max-width: 700px) {
   .logo img{
        width: 28vw;
    }
    .header-con{
        padding: 0.8rem 1.2rem 13rem 1.2rem;
        width: 87%;
    }
    .header-textbox{
        margin-top: 30%;
    }
    .header-textbox h3{
        font-size: 2.2vw;
    }
    .header-textbox h1{
        font-size: 14vw;
    }
    .header-textbox h2{
        font-size: 4.7vw;
    }
    .header-buttons{
        margin-top: 7%;
    }
    .header-buttons button{
        font-size: 2.4vw;
    }
    .header-boxes{
        gap: 2rem;
        flex-direction: column;
    }
    .box-icon img{
        width: 12vw;
    }
    .header-box h1{
        font-size: 2.8vw;
    }
    .header-box p{
        font-size: 2vw;
    }
}

@media (min-width: 400px) and (max-width: 550px){
    .logo img{
        width: 33vw;
    }
    .header-con{
        padding: 0.8rem 1.2rem 15rem 1.2rem;
        width: 85%;
    }
    .header-textbox{
        margin-top: 35%;
    }
    .header-textbox h3{
        font-size: 2.6vw;
    }
    .header-textbox h1{
        font-size: 15.5vw;
    }
    .header-textbox h2{
        font-size: 5.7vw;
    }
    .header-buttons{
        margin-top: 7%;
    }
    .header-buttons button{
        font-size: 2.7vw;
    }
    .header-boxes{
        gap: 2rem;
        flex-direction: column;
        margin: 0 3rem;
    }
    .box-icon img{
        width: 14vw;
    }
    .header-box h1{
        font-size: 3.3vw;
    }
    .header-box p{
        font-size: 2.7vw;
    }
}

@media (max-width: 420px){
    .logo img{
        width: 46vw;
    }
    .nav__toggle{
        font-size: 1.4rem;
    }
    .fa-bars{
        margin-right: 1rem;
    }
    .header-con{
        padding: 0.8rem 1.2rem 15rem 1.2rem;
        width: 84%;
    }
    .header-textbox{
        margin-top: 54%;
    }
    .header-textbox h3{
        font-size: 3vw;
    }
    .header-textbox h1{
        font-size: 16.5vw;
    }
    .header-textbox h2{
        font-size: 6.7vw;
    }
    .header-buttons{
        margin-top: 7%;
        gap: .4rem;
    }
    .header-buttons button{
        font-size: 3vw;
    }
    .header-boxes{
        gap: 2rem;
        flex-direction: column;
        margin: 0 1.5rem;
    }
    .box-icon img{
        width: 18vw;
    }
    .header-box h1{
        font-size: 4.3vw;
    }
    .header-box p{
        font-size: 3.3vw;
    }
}

.about-con{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.ab-mt{
    margin: 20rem 0 7rem 0;
}

.ab-sep-mt{
    margin: 9rem 0 7rem 0;
}

.about-textbox{
    flex-basis: 41%;
}

.small-head{
    background: var(--bright-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    width: 40%;
    padding: .2rem;
}

.small-head h3{
    text-transform: uppercase;
    color: var(--dark-blue);
    font-size: 1.3vw;
}

.about-textbox h1{
    margin-top: 1rem;
    font-size: 4.2vw;
    color: var(--dark-black);
}

.about-textbox p{
    margin: .7rem .7rem 0 0;
    color: var(--gray);
    font-size: 1.2vw;
}

.about-pics{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.about-pic-col-1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
}

.about-pic-col-2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
}

.about-pic img{
    display: block;
    height: auto;
    border-radius: 1rem;
}

.about-pic-col-2 .about-pic img{
    width: 20vw;
}

.about-pic-col-1 .about-pic:nth-child(1) img{
    width: 17vw;
}

.about-pic-col-1 .about-pic:nth-child(2) img{
    width: 20vw;
}

@media (min-width: 830px) and (max-width: 1024px){
    .ab-mt{
        margin: 18rem 0 6rem 0;
    }
}

@media (max-width: 1024px){
    .ab-sep-mt{
    margin: 7rem 0 7rem 0;
    }
}

@media (min-width: 700px) and (max-width: 800px){
    .ab-mt{
        margin: 15rem 0 7rem 0;
    }
}

@media (min-width: 700px) and (max-width: 1024px){
    .small-head h3{
        font-size: 1.4vw;
    }
    .about-textbox h1{
    font-size: 4.5vw;
    }
    .about-textbox p{
    font-size: 1.5vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .about-con{
        gap: 4rem;
        flex-direction: column;
    }
    .about-textbox{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 2rem;
    }
    .small-head{
        width: 27%;
    }
    .small-head h3{
        font-size: 1.6vw;
    }
    .about-textbox h1{
        font-size: 5.5vw;
    }
    .about-textbox p{
        font-size: 1.8vw;
    }
    .about-pic-col-2 .about-pic img{
        width: 32vw;
    }
    .about-pic-col-1 .about-pic:nth-child(1) img{
        width: 29vw;
    }
    .about-pic-col-1 .about-pic:nth-child(2) img{
        width: 32vw;
    }
}

@media (min-width: 600px) and (max-width: 700px){
    .ab-mt{
        margin-top: 48rem;
    }
}

@media(min-width: 550px) and (max-width: 600px){
    .ab-mt{
        margin-top: 44rem;
    }
}

@media (min-width: 430px) and (max-width: 600px){
    .about-con{
        gap: 4rem;
        flex-direction: column;
    }
    .about-textbox{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 2rem;
    }
    .small-head{
        width: 27%;
    }
    .small-head h3{
        font-size: 2vw;
    }
    .about-textbox h1{
        font-size: 6.7vw;
    }
    .about-textbox p{
        font-size: 2.2vw;
    }
    .about-pic-col-2 .about-pic img{
        width: 35vw;
    }
    .about-pic-col-1 .about-pic:nth-child(1) img{
        width: 32vw;
    }
    .about-pic-col-1 .about-pic:nth-child(2) img{
        width: 35vw;
    }
}

@media (min-width: 470px) and (max-width: 550px){
    .ab-mt{
        margin-top: 48rem;
    }
}

@media (min-width: 350px) and (max-width: 470px){
    .ab-mt{
        margin-top: 46rem;
    }
}

@media (min-width: 230px) and (max-width: 430px){
    .about-con{
        gap: 4rem;
        flex-direction: column;
    }
    .about-textbox{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 2rem;
    }
    .small-head{
        width: 33%;
    }
    .small-head h3{
        font-size: 2.6vw;
    }
    .about-textbox h1{
        font-size: 8vw;
    }
    .about-textbox p{
        font-size: 3vw;
    }
    .about-pic-col-2 .about-pic img{
        width: 38vw;
    }
    .about-pic-col-1 .about-pic:nth-child(1) img{
        width: 35vw;
    }
    .about-pic-col-1 .about-pic:nth-child(2) img{
        width: 38vw;
    }
}

@media (max-width: 350px){
    .ab-mt{
        margin-top: 44rem;
    }
}

.services-sec{
    background: var(--brightest-blue);
    padding-bottom: 6rem;
}

.services-head{
    padding: 6rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.small-head-ser{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    width: 16%;
    padding: .2rem;
}

.small-bg-w{
    background: var(--white);
}

.small-bg-g{
    background: var(--light-gray);
}

.small-head-ser h3{
    text-transform: uppercase;
    color: var(--dark-blue);
    font-size: 1.3vw;
}

.services-head h1{
    color: var(--dark-black);
    font-size: 4vw;
    margin-top: 1rem;
}

.services-head p{
    color: var(--gray);
    font-size: 1.2vw;
    margin-top: .6rem;
}

.swiper {
  width: 83%;
}

.swiper-slide{
  position: relative;
  cursor: pointer;
}

.service-pic img {
  display: block;
  height: auto;
  width: 26vw;
  border-radius: 1.5rem;
  filter: grayscale(40%);
  transition: all 0.4s ease;
}

.service-pic img:hover {
    filter: grayscale(0%) brightness(1.1);
}

.service-con h1{
    position: absolute;
    top: 91%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--white);
    font-size: 1.6vw;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.swiper-slide:hover .service-con h1 {
  top: 86%;
  opacity: 1;
}

.lf-33{
    left: 33%;
}

.lf-39{
    left: 39%;
}

@media (min-width: 800px) and (max-width: 1024px){
    .swiper{
        width: 88%;
    }
    .services-head{
        padding: 5rem 5rem;
    }
    .small-head-ser h3{
        font-size: 1.5vw;
    }
    .services-head h1{
        font-size: 4.5vw;
    }
    .services-head p{
        font-size: 1.5vw;
    }
    .service-pic img{
        width: 27.5vw;
    }
    .service-con h1{
        font-size: 1.8vw;
    }
    .lf-33{
        left: 35%;
    }
    .lf-39{
        left: 41%;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .swiper{
        width: 85%;
    }
    .services-head{
        padding: 5rem 4rem;
    }
    .small-head-ser{
        width: 20%;
    }
    .small-head-ser h3{
        font-size: 1.7vw;
    }
    .services-head h1{
        font-size: 5.5vw;
    }
    .services-head p{
        font-size: 1.8vw;
    }
    .service-pic img{
        width: 40vw;
    }
    .service-con h1{
        font-size: 2.6vw;
    }
    .lf-33{
        left: 35%;
    }
    .lf-39{
        left: 41%;
    }
}

@media (min-width: 430px) and (max-width: 600px){
    .swiper{
        margin-right: 0 !important;
    }
   .services-head{
        padding: 4.5rem 3rem;
    }
    .small-head-ser{
        width: 26%;
    }
    .small-head-ser h3{
        font-size: 2.2vw;
    }
    .services-head h1{
        font-size: 6.8vw;
    }
    .services-head p{
        font-size: 2.3vw;
    }
    .service-pic img{
        width: 67vw;
    }
    .service-con h1{
        font-size: 4vw;
    }
    .lf-33{
        left: 31%;
    }
    .lf-39{
        left: 37%;
    }
}

@media (max-width: 430px){
    .swiper{
        width: 84%;
        margin-right: 0 !important;
    }
   .services-head{
        padding: 4.5rem 2.2rem;
    }
    .small-head-ser{
        width: 30%;
    }
    .small-head-ser h3{
        font-size: 2.6vw;
    }
    .services-head h1{
        font-size: 7.8vw;
    }
    .services-head p{
        font-size: 2.9vw;
    }
    .service-pic img{
        width: 67vw;
    }
    .service-con h1{
        font-size: 4.1vw;
    }
    .lf-33{
        left: 31%;
    }
    .lf-39{
        left: 37%;
    }
}

.marquee-sec{
    background: var(--white);
}

.services-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 4rem 0;
}

.services-track {
  display: inline-block;
  white-space: nowrap;
  animation: scrollLeft 25s linear infinite;
}

.services-track span {
  display: inline-block;
  margin: 0 2rem;
  font-size: 7vw;
  font-weight: 1000;
  color: transparent;
  -webkit-text-stroke: 3px var(--gray);
  text-shadow: none;
  transition: all 0.3s ease;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 600px) and (max-width: 800px){
    .services-track span{
        font-size: 9vw;
    }
}

@media (min-width: 430px) and (max-width: 600px){
    .services-track span{
        font-size: 12vw;
    }
}

@media (max-width: 430px){
    .services-track span{
        font-size: 15vw;
    }
}

.steps-sec{
    background: var(--brightest-blue);
}

.steps-boxes{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 0 4rem 5rem 4rem;
    gap: 1.7rem;
}

.step-box{
    flex-basis: 33%;
    border: 2px solid var(--gray);
    border-radius: 1rem;
    padding: 3rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
} 

.step-box h1{
    color: var(--dark-blue);
    font-size: 2.4vw;
}

.step-box p{
    color: var(--gray);
    margin-top: .7rem;
    font-size: 1.3vw;
}

.step-box-icons{
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-icon img{
    display: block;
    height: auto;
    width: 9vw;
}

.number-box{
    background: var(--light-gray);
    border-radius: 50%;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.number-box h3{
    color: var(--dark-black);
    font-size: 2.3vw;
}

@media (min-width: 800px) and (max-width: 1024px){
    .steps-boxes{
        padding: 0 2rem 5rem 2rem;
        gap: 1.3rem;
    }
    .step-box h1{
        font-size: 2.8vw;
    }
    .step-box p{
        font-size: 1.6vw;
    }
    .step-box-icons{
        margin-top: 3rem;
    }
    .number-box h3{
        font-size: 2.6vw;
    }
}


@media (min-width: 700px) and (max-width: 800px){
    .steps-boxes{
        padding: 0 2rem 5rem 2rem;
        gap: 1.3rem;
    }
    .step-box{
        padding: 3rem 1.5rem;
    }
    .step-box h1{
        font-size: 3.1vw;
    }
    .step-box p{
        font-size: 1.9vw;
    }
    .step-box-icons{
        margin-top: 3rem;
    }
    .step-icon img{
        width: 10vw;
    }
    .number-box h3{
        font-size: 2.8vw;
    }
}

@media (min-width: 550px) and (max-width: 700px){
    .steps-boxes{
        flex-direction: column;
    }
    .step-box h1{
        font-size: 4vw;
    }
    .step-box p{
        font-size: 2.3vw;
    }
    .step-icon img{
        width: 11vw;
    }
    .number-box{
        height: 70px;
        width: 70px;
    }
    .number-box h3{
        font-size: 3.3vw;
    }
}

@media (min-width: 450px) and (max-width: 550px){
    .steps-boxes{
        flex-direction: column;
    }
    .step-box{
        padding: 2rem 1.5rem;
    }
    .step-box h1{
        font-size: 5.2vw;
    }
    .step-box p{
        font-size: 2.8vw;
    }
    .step-icon img{
        width: 14vw;
    }
    .number-box{
        height: 70px;
        width: 70px;
    }
    .number-box h3{
        font-size: 4.3vw;
    }
}

@media (max-width: 450px){
    .steps-boxes{
        flex-direction: column;
        padding: 0 2.5rem 5rem 2.5rem;
    }
    .step-box{
        padding: 2rem 1.5rem;
    }
    .step-box h1{
        font-size: 6vw;
    }
    .step-box p{
        font-size: 3.2vw;
    }
    .step-icon img{
        width: 16vw;
    }
    .number-box{
        height: 70px;
        width: 70px;
    }
    .number-box h3{
        font-size: 6.3vw;
    }
}

.projects-con{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 6rem;
    margin-left: 1rem;
}

.projects-col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.project-pic{
    cursor: pointer;
}

.project-pic img{
    display: block;
    height: auto;
    width: 27vw;
    border-radius: 1rem;
    filter: grayscale(40%);
    transition: all 0.4s ease;
}

.project-pic img:hover {
    filter: grayscale(0%) brightness(1.1);
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.5s ease-in-out;
    justify-content: center;
    align-items: center;
}

.image-modal img {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 1rem;
    animation: zoomIn 0.2s ease-in-out;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease-in-out;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 3rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.5); }
    to { transform: scale(1); }
}

@media (min-width: 500px) and (max-width: 800px){
    .projects-con{
        align-items: start;
    }
    .project-pic:nth-child(1){
        order: 2;
    }
    .projects-col{
        flex-direction: row;
    }
    .project-pic{
        height: 37vw;
        width: 37vw;
    }
    .project-pic img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 500px){
    .projects-con{
        align-items: start;
        gap: .5rem;
    }
    .project-pic:nth-child(1){
        order: 2;
    }
    .projects-col{
        flex-direction: row;
        gap: .5rem;
    }
    .project-pic{
        height: 41vw;
        width: 40vw;
    }
    .project-pic img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .image-modal img {
        max-width: 70vw;
        max-height: 70vh;
}
}

.testimonials-sec{
    background: var(--brightest-blue);
}

.testimonials-head{
    padding: 5rem 7rem;
}

.testimonials-head h1{
    color: var(--dark-black);
    margin-top: 1rem;
    font-size: 4vw;
}

.testimonials-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    padding-bottom: 6rem;
}

.testimonial{
    border: 2px solid var(--light-gray);
    flex-basis: 31%;
    padding: 2rem;
    border-radius: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
} 

.comas-pic img{
    display: block;
    height: auto;
    width: 8vw;
}

.testimonial p{
    color: var(--gray);
    margin-top: 2rem;
    font-size: 1.4vw;
}

.testimonial-profile{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.profile-icon img{
    display: block;
    height: auto;
    width: 7vw;
}

.testimonial-profile h2{
    font-size: 1.7vw;
    color: var(--dark-black);
}

@media (min-width: 700px) and (max-width: 1024px){
    .testimonials-head h1{
        font-size: 5vw;
    }
    .testimonials-con{
        gap: .8rem;
    }
    .testimonial p{
        font-size: 1.7vw;
    }
    .testimonial-profile h2{
        font-size: 2vw;
    }
}

@media (min-width: 500px) and (max-width: 700px){
    .testimonials-head{
        padding: 5rem 5rem;
    }
    .testimonials-head h1{
        font-size: 6.5vw;
    }
    .testimonials-con{
        padding: 0 5rem 6rem 5rem;
        flex-direction: column;
    }
    .comas-pic img{
        width: 11vw;
    }
    .testimonial p{
        font-size: 2.6vw;
    }
    .profile-icon img{
        width: 13vw;
    }
    .testimonial-profile h2{
        font-size: 2.9vw;
    }
}

@media (min-width: 400px) and (max-width: 500px){
    .testimonials-head{
        padding: 5rem 3rem;
    }
    .testimonials-head h1{
        font-size: 7.5vw;
    }
    .testimonials-con{
        padding: 0 3rem 6rem 3rem;
        flex-direction: column;
    }
    .testimonial{
        padding: 2rem 1.5rem;
    }
    .comas-pic img{
        width: 15vw;
    }
    .testimonial p{
        font-size: 3.2vw;
    }
    .testimonial-profile{
        gap: 1.5rem;
    }
    .profile-icon img{
        width: 17vw;
    }
    .testimonial-profile h2{
        font-size: 3.9vw;
    }
}

@media (max-width: 400px){
    .testimonials-head{
        padding: 4rem 2rem;
    }
    .testimonials-head h1{
        font-size: 8.5vw;
    }
    .testimonials-con{
        padding: 0 2rem 6rem 2rem;
        flex-direction: column;
    }
    .testimonial{
        padding: 2rem 1.2rem;
    }
    .comas-pic img{
        width: 18vw;
    }
    .testimonial p{
        font-size: 3.8vw;
    }
    .testimonial-profile{
        gap: 1.5rem;
        margin-top: 2.3rem;
    }
    .profile-icon img{
        width: 20vw;
    }
    .testimonial-profile h2{
        font-size: 4.5vw;
    }
}

.footer{
    background: var(--dark-blue);
}

.footer-links{
    padding-top: 7rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 5rem;
}

.footer-link{
    flex-basis: 20%;
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
}

.footer-ul-h1{
    color: var(--white);
    font-size: 1.5rem;
}

.footer-link p{
    color: var(--light-gray);
    font-size: .75rem;
    margin-top: .75rem;
    margin-right: 3rem;
}

.footer-link ul{
    list-style-type: none;
}

.footer-link ul li a{
    text-decoration: none;
    color: var(--bright-gray);
    transition: 0.5s;
}

.footer-link ul li .foot-hover:hover{
    color: var(--white);
    letter-spacing: 2px;
}

.footer-link ul li{
    font-size: .75rem;
    margin-top: .75rem;
}

.footer-link ul li:hover{
    color: var(--white);
}

.mr-r2{
  margin-right: 1.5rem;
}

.fa-chevron-right{
  color: var(--light-blue);
  margin-right: 1rem;
}

.yellow-foot{
    margin-right: 1rem;
    color: var(--light-blue);
}

.fa-brands{
    margin-right: 1rem;
    font-size: 1.1rem;
}

.footer-panel{
    background-color: var(--gray);
    color: var(--white);
    padding:  1.8rem 0;
    font-weight: 500;
    font-size: .85rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-panel p{
  margin: 0 1rem;
}

.footer-panel p a{
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
}

@media (min-width: 600px) and (max-width: 1024px){
    .footer-text{
        margin-left: 2rem;
    }
    .footer-h1{
        margin-left: 2rem;
        font-size: 2rem;
    }
    .footer-link{
        flex-basis: 40%;
        margin-bottom: 2rem;
        margin-right: 1rem;
    }
    .footer-ul-h1{
        font-size: 1.1rem;
    }
}


@media (max-width: 600px){
    .footer-text{
        margin-left: 0;
    }
    .footer-text .small{
        margin-left: 1.5rem;
    }
    .footer-h1{
        margin-left: 2rem;
        font-size: 1.5rem;
    }
    .footer-link{
        flex-basis: 80%;
        margin-bottom: 2rem;
        margin-right: 1rem;
    }
    .footer-ul-h1{
        font-size: 1rem;
    }
    .footer-link ul li{
        font-size: .65rem;
    }
    .footer-link p{
        font-size: .65rem;
    }
    .footer-panel{
        padding: 1.4rem 0;
        font-size: .65rem;
    }
}

.socials {
  display: flex;
  align-items: center;
  margin: 1rem 0 0 0.45rem;
}

.social {
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex; 
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}

.social a {
  text-decoration: none;
  color: var(--bright-gray);
  font-size: 18px; 
  transition: 0.5s;
}

.social a:hover {
  color: var(--light-blue);
}

.social a i{
  margin-right: 0;
}

.hidden {
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.from-left {
  transform: translateX(-150px);
}
.from-left.show {
  transform: translateX(0);
  opacity: 1;
}

.from-right {
  transform: translateX(150px);
}
.from-right.show {
  transform: translateX(0);
  opacity: 1;
}

.from-bottom {
  transform: translateY(150px);
}
.from-bottom.show {
  transform: translateY(0);
  opacity: 1;
}

.from-top {
  transform: translateY(-150px);
}
.from-top.show {
  transform: translateY(0);
  opacity: 1;
}

.sep-header{
    height: 100vh;
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    position: relative;
    padding: 2rem 2rem 0 2rem;
}

.about-page{
    background-image: url(about-pagebg.jpg);
}

.regclean-page{
    background-image: url(regclean-pagebg.jpg);
}

.windowclean-page{
    background-image: url(windowclean-pagebg.jpg);
}

.hygiene-page{
    background-image: url(hygiene-pagebg.jpg);
}

.facade-page{
    background-image: url(buildingclean-pagebg.jpg);
}

.construction-page{
    background-image: url(constructionclean-pagebg.jpg);
}

.services-page{
    background-image: url(services-pagebg.jpg);
}

.projects-page{
    background-image: url(projects-pagebg.jpg);
}

.contact-page{
    background-image: url(contact-pagebg.jpg);
}

.page-links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    top: 26%;
    left: 6%;
}

.page-links ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style-type: none;
}

.pl-mr{
    margin-right: .55rem;
}

.page-links ul li a{
    text-decoration: none;
    color: var(--bright-gray);
    font-size: 1vw;
    transition: 0.3s;
}

.page-links ul li a:hover{
    color: var(--white);
}

.page-links h1{
    color: var(--white);
    font-size: 4vw;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.page-links p{
    color: var(--bright-gray);
    margin-right: 21rem;
    font-size: 1.2vw;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

@media (min-width: 400px) and (max-width: 1024px){
    .sep-header{
        padding: 1rem 0 0 0;
    }
}

@media (max-width: 400px){
    .sep-header{
        padding: 1rem .3rem 0 0;
    }
}

@media (min-width: 850px) and (max-width: 1024px){
    .page-links h1{
        font-size: 5.2vw;
    }
    .page-links p{
        margin-right: 18rem;
        font-size: 1.5vw;
    }
    .page-links ul li a{
        font-size: 1.3vw;
    }
}

@media (min-width: 620px) and (max-width: 850px){
    .page-links h1{
        font-size: 6.2vw;
    }
    .page-links p{
        margin-right: 13rem;
        font-size: 1.8vw;
    }
    .page-links ul li a{
        font-size: 1.5vw;
    }
}

@media (min-width: 450px) and (max-width: 620px){
    .page-links h1{
        font-size: 7.5vw;
    }
    .page-links p{
        margin-right: 8rem;
        font-size: 2.3vw;
    }
    .page-links ul li a{
        font-size: 2vw;
    }
}

@media (max-width: 450px){
    .page-links h1{
        font-size: 9.5vw;
    }
    .page-links p{
        margin-right: 4rem;
        font-size: 3.1vw;
    }
    .page-links ul li a{
        font-size: 2.9vw;
    }
}

.values-sec{
    background: var(--brightest-blue);
}

.values-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    padding: 0 0 6rem 0;
}

.value{
    flex-basis: 20%;
    background: var(--bright-blue);
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
} 

.value-inn{
    margin: 1.8rem 1.3rem;
}

.value-icon img{
    display: block;
    height: auto;
    width: 4vw;
    background: var(--white);
    padding: .4rem .6rem;
    border-radius: .8rem;
}

.value-inn h1{
    color: var(--dark-blue);
    margin-top: 1rem;
    font-size: 1.7vw;
}

.value-inn p{
    color: var(--gray);
    margin-top: .5rem;
    font-size: 1.2vw;
}

@media (min-width: 650px) and (max-width: 950px){
    .value{
        flex-basis: 39%;
    }
    .value-icon img{
        width: 6vw;
    }
    .value-inn h1{
        font-size: 2.1vw;
    }
    .value-inn p{
        font-size: 1.5vw;
    }
}

@media (min-width: 500px) and (max-width: 650px){
    .values-con{
        padding: 0 4rem 6rem 4rem;
        flex-direction: column;
    }
    .value-icon img{
        width: 9vw;
    }
    .value-inn h1{
        font-size: 3.1vw;
    }
    .value-inn p{
        font-size: 2.1vw;
    }
}

@media (max-width: 500px){
    .values-con{
        padding: 0 2rem 6rem 2rem;
        flex-direction: column;
    }
    .value-icon img{
        width: 11vw;
    }
    .value-inn h1{
        font-size: 3.8vw;
    }
    .value-inn p{
        font-size: 2.8vw;
    }
}

.stats-head{
    padding: 5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.one-c{
    flex-basis: 45%;
}

.small-head-ab-ser{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    width: 30%;
    padding: .2rem;
}

.small-head-ab-ser h3{
    text-transform: uppercase;
    color: var(--dark-blue);
    font-size: 1.3vw;
}

.one-c h1{
    color: var(--dark-black);
    font-size: 3vw;
    margin-top: .5rem;
}

.stats-head p{
    flex-basis: 35%;
    color: var(--gray);
    font-size: 1.2vw;
    margin-bottom: .2rem;
}

.line-con{
    margin: 0 5rem;
}

.line{
    height: 2px;
    width: 100%;
    background: var(--gray);
}

.stats-con{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin: 5rem 0;
    text-align: center;
}

.stat:nth-child(2){
    transition-delay: 200ms;
}

.stat:nth-child(3){
    transition-delay: 400ms;
}

.stat:nth-child(4){
    transition-delay: 600ms;
}

.stat h1{
    color: var(--gray);
    font-size: 5vw;
}

.stat p{
    color: var(--gray);
    font-size: 1.3vw;
}

@media (min-width: 750px) and (max-width: 1024px){
    .stats-head{
        padding: 5rem 3rem;
    }
    .one-c{
        flex-basis: 47%;
    }
    .small-head-ab-ser h3{
        font-size: 1.5vw;
    }
    .stats-head p{
        flex-basis: 39%;
        font-size: 1.5vw;
    }
    .one-c h1{
        font-size: 3.5vw;
    }
    .stats-con{
        gap: 3rem;
    }
    .stat h1{
        font-size: 6vw;
    }
    .stat p{
        font-size: 1.5vw;
    }
}

@media (min-width: 550px) and (max-width: 750px){
    .stats-head{
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .one-c{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .small-head-ab-ser h3{
        font-size: 1.9vw;
    }
    .one-c h1{
        font-size: 5vw;
    }
    .stats-head p{
        font-size: 2vw;
    }
    .line-con{
        margin: 0 3rem;
    }
    .stat{
        flex-basis: 34%;
    }
    .stat h1{
        font-size: 8vw;
    }
    .stat p{
        font-size: 2vw;
    }
}

@media (min-width: 400px) and (max-width: 550px){
    .stats-head{
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding: 5rem 3rem 3rem 3rem;
    }
    .one-c{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .small-head-ab-ser h3{
        font-size: 2.3vw;
    }
    .one-c h1{
        font-size: 6vw;
    }
    .stats-head p{
        font-size: 2.5vw;
    }
    .line-con{
        margin: 0 3rem;
    }
    .stats-con{
        gap: 3rem;
        margin: 4rem 0 5rem 0;
    }
    .stat{
        flex-basis: 34%;
    }
    .stat h1{
        font-size: 10vw;
    }
    .stat p{
        font-size: 2.5vw;
    }
}

@media (max-width: 400px){
    .stats-head{
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding: 5rem 2rem 3rem 2rem;
    }
    .one-c{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .small-head-ab-ser h3{
        font-size: 2.6vw;
    }
    .one-c h1{
        font-size: 7vw;
    }
    .stats-head p{
        font-size: 3.2vw;
    }
    .line-con{
        margin: 0 3rem;
    }
    .stats-con{
        gap: 3rem 2rem;
        margin: 4rem 0 5rem 0;
    }
    .stat{
        flex-basis: 34%;
    }
    .stat h1{
        font-size: 11vw;
    }
    .stat p{
        font-size: 2.8vw;
    }
}

@media (max-width: 750px){
    .stat:nth-child(2){
        transition-delay: 200ms;
    }
    .stat:nth-child(3){
        transition-delay: 200ms;
    }
    .stat:nth-child(4){
        transition-delay: 400ms;
    }
}

.hire-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    margin: 0 3rem 5rem 3rem;
}

.hire-el{
    flex-basis: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.hire-el:nth-child(1){
    transition-delay: 200ms;
}

.hire-el:nth-child(2){
    transition-delay: 400ms;
}

.hire-el:nth-child(3){
    transition-delay: 600ms;
}

.hire-el:nth-child(4){
    transition-delay: 200ms;
}

.hire-el:nth-child(5){
    transition-delay: 400ms;
}

.hire-el:nth-child(6){
    transition-delay: 600ms;
}

.hire-el h2{
    color: var(--dark-black);
    font-size: 1.6vw;
    margin-top: .5rem;
}

.hire-el p{
    color: var(--gray);
    font-size: 1.2vw;
    margin-top: .4rem;
}

.hire-icon img{
    display: block;
    height: auto;
    width: 6vw;
}

@media (min-width: 800px) and (max-width: 1024px){
    .hire-con{
        gap: 2rem;
    }
    .hire-icon img{
        width: 7vw;
    }
    .hire-el h2{
        font-size: 1.9vw;
    }
    .hire-el p{
        font-size: 1.5vw;
    }
}

@media (min-width: 500px) and (max-width: 800px){
    .hire-con{
        gap: 2rem;
    }
    .hire-el{
        flex-basis: 35%;
    }
    .hire-icon img{
        width: 10vw;
    }
    .hire-el h2{
        font-size: 2.5vw;
    }
    .hire-el p{
        font-size: 1.8vw;
    }
    .hire-el:nth-child(1){
        transition-delay: 200ms;
    }
    .hire-el:nth-child(2){
        transition-delay: 400ms;
    }
    .hire-el:nth-child(3){
        transition-delay: 200ms;
    }
    .hire-el:nth-child(4){
        transition-delay: 400ms;
    }
    .hire-el:nth-child(5){
        transition-delay: 200ms;
    }
    .hire-el:nth-child(6){
        transition-delay: 400ms;
    } 
}

@media (max-width: 500px){
    .hire-con{
        flex-direction: column;
    }
    .hire-icon img{
        width: 17vw;
    }
    .hire-el h2{
        font-size: 4vw;
    }
    .hire-el p{
        font-size: 2.9vw;
    }
    .hire-el:nth-child(1){
        transition-delay: 0ms;
    }
    .hire-el:nth-child(2){
        transition-delay: 0ms;
    }
    .hire-el:nth-child(3){
        transition-delay: 0ms;
    }
    .hire-el:nth-child(4){
        transition-delay: 0ms;
    }
    .hire-el:nth-child(5){
        transition-delay: 0ms;
    }
    .hire-el:nth-child(6){
        transition-delay: 0ms;
    } 
}

.regclean-pic{
    display: flex;
    justify-content: center;
    align-items: center;
}

.regclean-pic img{
    display: block;
    height: auto;
    width: 77vw;
    border-radius: 2rem;
}

.faq-head{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0 2rem 3rem 2rem;
    text-align: center;

}

.faq-h1{
    color: var(--dark-black);
    font-size: 4vw;
}

@media (min-width: 800px) and (max-width: 1024px){
    .faq-h1{
        font-size: 4.5vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .faq-h1{
        font-size: 5.5vw;
    }
}

@media (min-width: 430px) and (max-width: 600px){
    .faq-h1{
        font-size: 6.8vw;
    }
}

@media (max-width: 430px){
    .faq-h1{
        font-size: 7.8vw;
    }
}

.faq-con{
    margin: 0 5rem;
}

.pd-b{
    padding-bottom: 5rem;
}

.faq-item {
    margin-bottom: 10px;
}

  .faq-question {
    width: 100%;
    text-align: left;
    background-color: var(--light-gray);
    border: none;
    padding: 1.3rem 2rem;
    font-size: 1.3vw;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    font-family: 'HeroLight', sans-serif;
  }
  .faq-question:hover {
    background-color: var(--bright-gray);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    background-color: #f9f9f9;
    border-left: 3px solid #007bff;
    text-align: left;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .faq-answer p{
    font-size: 1.3vw;
    padding: 1rem;
  }
  .arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
  }
  .faq-answer.open {
    max-height: 200px;
    padding: 10px;
  }

  @media (min-width: 550px) and (max-width: 699px){
    .faq-question{
      font-size: 1.6vw;
    }
    .faq-answer p{
      font-size: 1.6vw;
    }
  }
  

  @media (min-width: 500px) and (max-width: 800px){
    .faq-con{
        margin: 0 3rem;
    }
    .faq-question{
      font-size: 2vw;
      padding: 1.3rem;
    }
    .faq-answer p{
      font-size: 2vw;
    }
  }

  @media (max-width: 500px){
    .faq-con{
        margin: 0 1.5rem;
    }
    .faq-question{
      font-size: 2.6vw;
      padding: 1.3rem;
    }
    .faq-answer p{
      font-size: 2.6vw;
    }
  }

  .includes-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-bottom: 6rem;
  }

  .include-el{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .include-el:nth-child(1){
    transition-delay: 200ms;
  }

  .include-el:nth-child(2){
    transition-delay: 400ms;
  }

  .include-el:nth-child(3){
    transition-delay: 200ms;
  }

  .include-el:nth-child(4){
    transition-delay: 400ms;
  }

  .include-el h2{
    color: var(--dark-black);
    font-size: 1.8vw;
    margin-top: 1rem;
  }

  .service-small-pic img{
    display: block;
    height: auto;
    width: 34vw;
    border-radius: 1.5rem;
    filter: grayscale(40%);
    transition: all 0.4s ease;
}

.service-small-pic img:hover {
    filter: grayscale(0%);
}

@media (min-width: 500px) and (max-width: 700px){
    .includes-con{
        gap: 1rem;
    }
    .include-el h2{
        font-size: 2.3vw;
    }
}

@media (max-width: 500px){
    .includes-con{
        flex-direction: column;
    }
    .service-small-pic img{
        width: 62vw;
    }
    .include-el h2{
        font-size: 3.8vw;
    }
    .include-el:nth-child(1){
        transition-delay: 0ms;
    }
    .include-el:nth-child(2){
        transition-delay: 0ms;
    }
    .include-el:nth-child(3){
        transition-delay: 0ms;
    }
    .include-el:nth-child(4){
        transition-delay: 0ms;
    }
    .regclean-pic img{
        width: 88vw;
        border-radius: 1rem;
    }
}

.services-sep-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    padding: 0 2rem;
}

.sep-ser:nth-child(1){
    transition-delay: 200ms;
}

.sep-ser:nth-child(2){
    transition-delay: 400ms;
}

.sep-ser:nth-child(3){
    transition-delay: 600ms;
}

.sep-ser:nth-child(4){
    transition-delay: 200ms;
}

.sep-ser:nth-child(5){
    transition-delay: 400ms;
}

@media (min-width: 600px) and (max-width: 800px){
    .sep-ser:nth-child(1){
        transition-delay: 200ms;
    }
    .sep-ser:nth-child(2){
        transition-delay: 400ms;
    }
    .sep-ser:nth-child(3){
        transition-delay: 200ms;
    }
    .sep-ser:nth-child(4){
        transition-delay: 400ms;
    }
    .sep-ser:nth-child(5){
        transition-delay: 200ms;
    }
}

@media (max-width: 600px){
    .sep-ser:nth-child(1){
        transition-delay: 0ms;
    }
    .sep-ser:nth-child(2){
        transition-delay: 0ms;
    }
    .sep-ser:nth-child(3){
        transition-delay: 0ms;
    }
    .sep-ser:nth-child(4){
        transition-delay: 0ms;
    }
    .sep-ser:nth-child(5){
        transition-delay: 0ms;
    }
}

.contact-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 6rem 2rem;
}

.contact-textbox{
    flex-basis: 36%;
}

.contact-textbox h1{
    color: var(--dark-blue);
    font-size: 3.5vw;
}

.contact-textbox p{
    color: var(--gray);
    font-size: 1.2vw;
    margin-top: .5rem;
}

.contact-textbox ul{
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: .5rem;
}

.contact-textbox ul li{
    font-size: 1.2vw;
}

.contact-textbox ul li a{
    text-decoration: none;
    color: var(--gray);
}

.contact-pic img{
    display: block;
    height: auto;
    width: 32vw;
    border-radius: 1rem;
}

@media (min-width: 700px) and (max-width: 1024px){
    .contact-textbox{
        flex-basis: 40%;
    }
    .contact-textbox h1{
        font-size: 4.5vw;
    }
    .contact-textbox p{
        font-size: 1.5vw;
    }
    .contact-textbox ul li{
        font-size: 1.5vw;
    }
    .contact-pic img{
        width: 40vw;
    }
}

@media (min-width: 500px) and (max-width: 700px){
    .contact-con{
        padding: 6rem 3rem;
        flex-direction: column;
        text-align: center;
    }
    .contact-textbox h1{
        font-size: 6.5vw;
    }
    .contact-textbox p{
        font-size: 2vw;
    }
    .contact-textbox ul li{
        font-size: 2vw;
    }
    .contact-pic img{
        width: 59vw;
    }
    .contact-textbox ul{
        align-items: center;
    }
}

@media (max-width: 500px){
    .contact-con{
        padding: 6rem 2rem;
        flex-direction: column;
        text-align: center;
    }
    .contact-textbox h1{
        font-size: 7.5vw;
    }
    .contact-textbox p{
        font-size: 2.6vw;
    }
    .contact-textbox ul li{
        font-size: 2.6vw;
    }
    .contact-pic img{
        width: 67vw;
    }
    .contact-textbox ul{
        align-items: center;
    }
}

.contact-sec-section{
    background: var(--brightest-blue);
}

.contact-sec-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    gap: 2rem;
}

form{
  display: flex;
  flex-direction: column;
  background: var(--dark-blue);
  width: 30vw;
  border-radius: 1rem;
  padding: 2rem .5rem 0 .5rem;
}

.con-form{
    display: flex;
    justify-content: center;
    align-items: center;
}

.con-form .form-input {
  flex: 1;
  min-width: 40%;
}

.form-input input{
  display: block;
  width: 100%;
  border: none; 
  border-bottom: 1px solid white;
  outline: none;
  background-color: transparent;
  color: var(--white);
  transition: border-bottom 0.3s ease;
}

.form-input label{
  color: var(--white);
  font-size: 1vw;
}

textarea{
  height: 4rem;
  width: 100%;
  display: block;
  margin-bottom: 1.2rem;
  border: none; 
  border-bottom: 1px solid white;
  outline: none;
  background-color: transparent;
  color: var(--white);
  transition: border-bottom 0.3s ease;
}

.form-input{
  position: relative;
  margin: 0 1rem 2.5rem 1rem;
}

.form-input.success input{
  border-bottom: 2px solid var(--success-color);
}

.form-input.error input{
  border-bottom: 2px solid var(--error-color);
}

.form-input.success textarea{
  border-bottom: 2px solid var(--success-color);
}

.form-input.error textarea{
  border-bottom: 2px solid var(--error-color);
}

.form-input small {
  color: var(--error-color);
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
}

.form-input.error small {
  visibility: visible;
}

.form-input.error small{
  visibility: visible;
  color: #A52A2A;
  font-weight: 500;
}

.form-btn{
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-us-btn{
    padding: .7rem 1rem;
    width: 56%;
    border: none;
    border-radius: 2rem;
    z-index: 1;
    position: relative;
    font-weight: bold;
    font-size: 1.15vw;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    cursor: pointer;
    font-family: 'HeroLight', sans-serif;
    transition: .3s;
}

.contact-us-btn:hover{
    background: var(--bright-blue);
}

.contact-textbox h2{
    color: var(--gray);
    font-size: 1.7vw;
}

@media (min-width: 700px) and (max-width: 1024px){
    .contact-sec-con{
        gap: 1.5rem;
    }
    form{
        width: 34vw;
    }
    .con-form .form-input {
        min-width: 37%;
    }
    .form-input label{
        font-size: 1.5vw;
    }
    .contact-textbox h2{
        font-size: 2.1vw;
    }
    .contact-us-btn{
        font-size: 1.35vw;
    }
}

@media (min-width: 520px) and (max-width: 700px){
    .contact-sec-con{
        flex-direction: column;
    }
    form{
        width: 64vw;
    }
    .form-input label{
        font-size: 2vw;
    }
    .contact-us-btn{
        font-size: 1.8vw;
    }
    .contact-textbox h2{
        font-size: 3.3vw;
    }
    .contact-textbox{
        text-align: center;
    }
}

@media (max-width: 520px){
    .contact-sec-con{
        flex-direction: column;
    }
    form{
        width: 68vw;
    }
    .form-input label{
        font-size: 2.7vw;
    }
    .contact-us-btn{
        font-size: 2.8vw;
    }
    .contact-textbox h2{
        font-size: 4vw;
    }
    .contact-textbox{
        text-align: center;
    }
}

@media (max-width: 450px){
    .con-form .form-input {
        min-width: 37%;
    }
}

.impressum-header{
    background: var(--gray);
    padding: 2rem 2rem 0 2rem;
    height: 25rem;
}

.impressum-head{
    text-align: center;
    position: relative;
    top: 25%;
}

.impressum-head h1{
    color: var(--white);
    font-size: 3vw;
}

.impressum-head p{
    color: var(--bright-gray);
    font-size: 1.1vw;
    margin: .4rem 14%;
}

.impressum-con{
    padding: 5rem 10%;
}

.impressum-con h1{
    color: var(--dark-blue);
    font-size: 3.2vw;
}

.impressum-con p{
    color: var(--dark-gray);
    font-size: 1.1vw;
    margin-top: .5rem;
}

.impressum-con p a{
    text-decoration: none;
    color: var(--dark-blue);
}

.mr-t1{
    margin-top: 1rem !important;
}

.mr-t2{
    margin-top: 2rem !important;
}

@media (min-width: 1024px) and (max-width: 1150px){
    .impressum-head{
        top: 29%;
    }
}

@media (min-width: 800px) and (max-width: 1024px){
    .impressum-header{
        padding: 1.4rem .4rem 0 .4rem;
    }
    .impressum-head{
        top: 19%;
    }
    .impressum-header h1{
        font-size: 4vw;
    }
    .impressum-header p{
        font-size: 1.3vw;
    }
    .impressum-con h1{
        font-size: 4.5vw;
    }
    .impressum-con p{
        font-size: 1.35vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .impressum-header{
        padding: 1.4rem .4rem 0 .4rem;
        height: 22rem;
    }
    .impressum-head{
        top: 19%;
    }
    .impressum-header h1{
        font-size: 5vw;
    }
    .impressum-header p{
        font-size: 1.75vw;
        margin: .4rem 11%;
    }
    .impressum-con h1{
        font-size: 5.5vw;
    }
    .impressum-con p{
        font-size: 1.75vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .impressum-header{
        padding: 1.4rem .4rem 0 .4rem;
        height: 22rem;
    }
    .impressum-head{
        top: 19%;
    }
    .impressum-header h1{
        font-size: 6vw;
    }
    .impressum-header p{
        font-size: 2.15vw;
        margin: .4rem 11%;
    }
    .impressum-con h1{
        font-size: 6.5vw;
    }
    .impressum-con p{
        font-size: 2.15vw;
    }
}

@media (max-width: 480px){
    .impressum-header{
        padding: 1.4rem .4rem 0 .4rem;
        height: 22rem;
    }
    .impressum-head{
        top: 19%;
    }
    .impressum-header h1{
        font-size: 7.2vw;
    }
    .impressum-header p{
        font-size: 2.9vw;
        margin: .4rem 11%;
    }
    .impressum-con h1{
        font-size: 7.8vw;
    }
    .impressum-con p{
        font-size: 2.9vw;
    }
}