@import url("https://fonts.googleapis.com/css2?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");
:root {
  --main-color: #fe9401;
  --main-color-0: #feac01;
  --secondary-color: #09c1f8;
  --secondary-semi-transparent: #09c0f833;
  --surface-color: #f4f5f4;
  --background-color: #ffffff;
  --text-color: #313131;
}

* {
  font-family: "Poppins";
}

* {
  border-radius: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  background-color: var(--background-color);
}

.top-header {
  height: 50px;
  width: 100%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.top-header a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top-header a:hover {
  color: var(--main-color);
}
.top-header .social-media {
  display: flex;
  gap: 10px;
}

body>.header {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px; 
  height: 100px;
  width: 100%;
  background-color: transparent;
  z-index: 10;
} 
.header .logo img {
  max-height: 100px;
}
.header > .header-content{
  position: relative;
  display: flex;
  align-items: center;
  gap:50px;
  height: inherit; 
}
.header .menu {
  height: inherit;
}
.header .menu ul {
  display: flex;
  margin-left: auto;
  list-style: none;
  height: inherit;
}
.header.float{
  position: fixed;
  background-color: #091013;
  box-shadow: 0 1px 10px #33333331;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
}

.header .menu ul li{
  height: inherit;
  display: flex;
  align-items: center;
  padding-inline: 20px;
  transition: all 0.3s ease;
  cursor: pointer;

}

  .header .action #menuButton{
    display: none;
  }

.header .menu ul li:hover{
  font-weight: 700;
}
.header.float .menu ul li:hover{
  border-bottom: 3px solid var(--secondary-color);
  background-color: var(--secondary-semi-transparent);  
}
.header .menu .logo{ 
  display: none;
}
.header .menu ul a { 
  display: flex;
  align-items: center;
  height: inherit;
  color: var(--surface-color);
  text-decoration: none;
  transition: all 0.3s ease;
} 

  .header .menu .close-button {
    display: none;
  }
#lgToggle{
  position: relative;
  display: flex;
  align-items: center; 
  justify-content: space-between;
  gap: 5px;
  cursor: pointer;
  width: 60px;
  padding-block: 5px;
  border-radius: 10px;
  background: linear-gradient(to right, transparent, var(--secondary-color));
  color: var(--surface-color);
  transition: all 0.3s ease;
}

#lgToggle:hover {
  padding-block: 7px;
  box-shadow: 0 1px 10px  #33333331;
  width: 80px;
}
#lgToggle:hover span.desc{ 
  font-weight: 600;
  margin-left: 50px; 
}
#lgToggle span.flag{
  margin-left: 4px;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: all 0.3s ease;  
}
#lgToggle span.desc{
  margin-top: -4px;
  margin-left: 30px; 
  width: 20px;
  height: 20px;
  border-radius: 50%;  
  transition: all 0.2s ease;  
}

.body{
  display: flex;
  flex-direction: column;
}
.body{
  display: flex;
  flex-direction: column;
}

.body .section{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start; 
  background-color: red;
}

.body .section.welcome-section{
  height: 800px;

}
.body .welcome-section .video-background {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  object-fit: cover;
  z-index: 1;
}

.video-background .overlay-content {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #080808b4;
  text-align: center;
  padding: 100px 20px;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}


.video-background .overlay-content .welcome{
  position: relative;
  max-width: 600px;  
  text-align: left;  
  margin-left: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .2s ease;

}


.video-background .overlay-content .welcome .title{
  color: #fff;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 600;
}

.video-background .overlay-content .welcome .description{
  color: var(--main-color);
  font-size: 18px; 
  font-weight: 300;
  letter-spacing: 2px;
  font-style: oblique;
}
.video-background .overlay-content .welcome .description .mark{
  color: var(--secondary-color); 
  font-weight: 700; 
  font-style: normal;
}

.body .section.service-section{
  background: #fff; 
  
}
.service-section-anchor{
  background: #fff; 
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 10px;
  margin-left: 200px;
  border-radius: 30px;
  box-shadow: 0 1px 10px #33333331; 
  padding: 5px 20px;
  margin-top: -20px;
  z-index: 5;
  cursor: pointer;
  transition: all 0.3s ease;
}
.section .service-section-anchor .title{
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.section .service-section-anchor i{
  margin-top: 5px;
}


.section .service-section-anchor:hover .title{
  letter-spacing: 4px;
  font-weight: 600;
}


.body .section.service-section .content{
  width: 100%;
  margin-top: 100px;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.body .section.service-section .content .header{
  display: flex; 
  align-items: center;
  justify-content: center;
}
.body .section.service-section .content .header .image{
  
  height: 200px;
  width: 400px; 
  border-left: 1px solid #d6d6d6;
  overflow: hidden;
  display: flex;
  position: relative;
}
  
.body .section.service-section .content .header .image img{ 
  margin-left: 0px;
  margin-top: -10px;
  height: 400px;
}
.body .section.service-section .content .header .image .overlay{ 
  position: absolute; 
  height: 50px;
  width: 160px; 
  background: linear-gradient(to bottom, transparent, #fff );
  z-index: 5;
  margin-top: 150px;
}
 
.body .section.service-section .content .header .description{
  display: flex; 
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between; 
  text-align: right;
  width: 400px;
  margin-right: 10px;
}
.body .section.service-section .content .header .description .title{
  font-size: 12px;
  color: var(--main-color);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.body .section.service-section .content .header .description .text{
  margin-top: 10px;
  font-size: 12px;
  color: #333;
  font-weight: 400; 
  font-style: italic;
}

.body .section.service-section .content .service-list{
  width: 100%;
  display: flex;
  height: 500px;
  margin-top: 10px; 
  gap: 10px;
  align-self: center;
  align-items: center;
  justify-content: center;
  max-width: 1200px; 
  padding-inline: 20px;
}


.body .section.service-section {
  margin-bottom: 0;
}
 
.body .section.service-section .content .service-list .service-card{
  height: 100%;
  min-width: 70px;
  width: 70px;
  background-color: red;
  border-radius: 40px;
  transition: all  .2s ease;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all  .7s ease;
}
.body .section.service-section .content .service-list .service-card.active {
  width: 100%;
  transition: all .7s ease;
}
.body .section.service-section .content .service-list .service-card .service-icon{
 margin-top: 10px;
 margin-left: 10px;
 width: 50px;
 height: 50px;
 border-radius: 40px;
 background-color: #fff;
 transition: all .3s ease;
 display: flex;
 align-items: center;
 justify-content: flex-start;
  overflow: hidden;
  transition: all  .7s ease;
}

.body .section.service-section
.content .service-list .service-card{
  transition: all  .7s ease;

}
.body .section.service-section
.content .service-list .service-card .service-icon{
  transition: all .4s ease; 
} 
.body .section.service-section
.content .service-list .service-card .service-icon .text{
  transition: all .3s ease;
 opacity: 0;
}
.body .section.service-section
.content .service-list .service-card.active .service-icon .text{
 opacity: 1;
 margin-left: 5px;
 font-size: 12px;
 text-transform: uppercase;
 letter-spacing: 3px;
 font-weight: 600;
}
.body .section.service-section
.content .service-list .service-card.active .service-icon {
  background-color:var(--main-color);
 width: auto;
 padding-right:20px;
 display: flex;
 
}
.body .section.service-section
.content .service-list .service-card:hover .service-icon i{
  color:  #333;
}


.body .section.service-section
.content .service-list .service-card .service-icon i{
  margin-top: 4px;
  margin-left: 17px;
  transition: all .3s ease;
}
.body .section.service-section
.content .service-list .service-card.service-clean {
  background: url('../../public/assets/service-clean.jpeg ') no-repeat 0 center/cover;
  object-fit: cover;
}
.body .section.service-section
.content .service-list .service-card.service-pest {
  background: url('../../public/assets/service-pest.webp ') no-repeat 0 center/cover;
  object-fit: cover;
}
.body .section.service-section
.content .service-list .service-card.service-spray {
  background: url('../../public/assets/service-spray.webp ') no-repeat 0 center/cover;
  object-fit: cover;
}

.body .section.service-section
.content .service-list .service-card > * { 
  z-index: 4;
  position: absolute;
}
.body .section.service-section
.content .service-list .service-card .service-card-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #080808a6;
  z-index: 1;
}
.section.service-section .break{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section.service-section .break img{
  filter: grayscale(100%);
  width: 400px;
}
.section.service-section .break .title{
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--main-color);
  font-size: 12px;
  margin-top: -50px;
  margin-bottom: 50px;

}
.section.service-section .service-gallery{
  width: 100%;
  height: 500px;
  background-color: #091013;
  padding: 0;
  overflow-y: hidden;
  overflow-x: auto;

  -ms-overflow-style: none;  /* IE e Edge */
  scrollbar-width: none;     /* Firefox */
  display: flex;
  scroll-behavior: smooth;
}
.service-gallery::-webkit-scrollbar {
  display: none;             /* Chrome, Safari e Opera */
}
.section.service-section .service-gallery .gallery-item{
  width: 400px;
  min-width: 400px;
  height: 100%;
  overflow: hidden;
  transition: all .4s ease;
  position: relative;
  cursor: pointer;
  display: flex; 
} 
.section.service-section .service-gallery .gallery-item:hover img,
.section.service-section .service-gallery .gallery-item.active 
img{
  transform: scale(1.04);
  filter: grayscale(.3) brightness(.8);
}

.section.service-section .service-gallery 
.gallery-item:hover .marquee,
.section.service-section .service-gallery .gallery-item.active 
.marquee{
  opacity: 1;
}

.section.service-section .service-gallery .gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(.4);
  transition: all .4s ease;
}
.section.service-section .service-gallery .gallery-item .description{
  position: absolute;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  bottom: 0;
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}

.section.service-section .service-gallery .gallery-item .marquee{
  position: absolute;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  bottom: 0;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 10px;
  background-color: #080808a6;
  opacity: 0;
  transition: all .4s ease;
}

.section.about-section{
  background: #091013;
  min-height: 700px;
  min-width: 100%;
  max-height: 700px;
  max-width: 100%;
  color: #fff;
}


.section.about-section .intro{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px; 
}
.section.about-section .ceo-card{
  height: 300px;  
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--main-color);
  position: relative;
  gap: 20px;
}

.section.about-section .ceo-card .name{
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  top: 60px;
  z-index: 2;
  margin-top: 16px;
}
 
.section.about-section .ceo-card .waves {
  position: absolute; 
  transform: scale(.4) translate(350px, 500px);
  display: flex;
  flex-direction: column;
  height: 200px;
  z-index: 4; 
}
.section.about-section .ceo-card .waves svg:nth-child(2){
  transform: translateY(-100px);
}
.section.about-section .ceo-card .waves svg:nth-child(3){
  transform: translateY(-200px);
} 

.section.about-section .ceo-card img{
  z-index: 3;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 200px;
  border: 1px solid var(--secondary-color);
  background-color: #09c1f8;
}
.section.about-section .ceo-card{
  position: relative;
}

.section.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section.about-section .ceo-card .job-title{
  position: absolute;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  color:var(--secondary-color);
  left: 0;
}

.section.about-section .message-quote{
  font-size: 12px; 
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative; 
  margin-top: 100px;
  height: 200px;

}
 

.section.about-section .message-quote .quote{
  font-size: 100px;
  font-weight: 900;
  font-style: italic;
  opacity: .2;
  margin-left: -10px;
}
.section.about-section .message-quote .message{
  margin-top: -100px;
}
.section.about-section .mvv{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 100px;
}

.section.about-section .mvv .item{
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  cursor: pointer;
}

.section.about-section .mvv .item .title{
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.section.about-section .mvv .item i,
.section.about-section .mvv .item .title{
  transition: all .3s ease;
}
.section.about-section .mvv .item:hover i,
.section.about-section .mvv .item:hover .title{
  color: var(--secondary-color);
  letter-spacing: 5px;
}
.section.about-section .mvv .item .description{
  text-align: center;
  opacity: 0.7;
  transition: all .3s ease;
  font-size: 12px;
}

.section.about-section .mvv .item:hover .description{
  opacity: 1;
}

.section.clients-section{
  padding-top: 100px;
  background-color: #fffae5;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.section.clients-section .title{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 70px;
}
.section.clients-section .brands{
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.section.clients-section .brands .brand-item img{
  max-height: 200px;
}





.section.contact-section{
  background: #fff;
  min-height: 700px;
  min-width: 100%;
  max-height: 700px;
  max-width: 100%;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.section.contact-section .title{
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;

}
.section.footer-section{
  background: #091013;
  min-width: 100%; 
  max-width: 100%;
  display: flex;
  padding-block: 50px;
  padding-inline: 20px;
}


.section.footer-section .brand{
  display: flex;
  flex-direction: column;
  
}
.section.footer-section .brand .social-media{
  margin-top: -30px;
  margin-left: 130px;
  display: flex;
  gap: 10px;
  
}
.section.footer-section .brand .social-media a{
  color: #fff;
  text-decoration: none;
  
}
.footer-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 14px;
  height: auto;
  padding: 20px;
}
.footer-section a {
  text-decoration: none;
  color: #fff;
  transition: all .4s;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.footer-section > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-section .title {
  color: var(--main-color);
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-section .brand .logo img{
  width: 300px;
}
.footer-section .contacts .number{
  display: flex;
  flex-direction: column;
}

.footer-section .contacts {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.float-button-whatsapp{
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 30;
  padding: 6px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #06ac4b;
  color: #fff;
  transition: all .3s ease-in-out;
  box-shadow: 0 0 5px 2px #1616165d;
  cursor: pointer;
}

.float-button-whatsapp *{ 
  transition: all .3s step-start;
}
.float-button-whatsapp i{
  margin-top: 5px;
}
.float-button-whatsapp .text{
  font-size: 12px;
}
.float-button-whatsapp:hover .text{
  font-weight: 600;
}


@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* media query */
@media (max-width: 1200px) {
  
  .header .menu ul li {
    font-size: 12px;
  } 
}

@media (max-width: 950px) {

.section.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 0;
  padding-block: 100px;
}
.footer-section > div{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-section .brand .logo img{
  width: 200px;
}

.footer-section > div a{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-section > div ul li{
  list-style: none;

}


.service-section-anchor{
  margin-left: 0;
  align-self: center;
}
.video-background .overlay-content .welcome{
  margin: 0;
}
    .header .menu ul li {
    font-size: 16px;
    height: auto;
    padding-block: 30px;
    width: inherit;
      text-align: center;
      display: flex;
      justify-content: center;

    
  } 

    .header .menu ul li:hover {
      border: none;
  } 
  .header .menu ul { 
    width: inherit;
  } 
  
  .header .menu.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: url('../../public/assets/cover-01-01.png') no-repeat center center/cover, #313131;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-block: 20px;
    animation: slideBackground 10s ease-in-out infinite;
  }
  .header .menu {
     display: none;
  }  

  .header .action{
     display: flex;
     gap: 20px;
      align-items: center;
      justify-content: center;
  }  
  .header .action #menuButton{
     display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border: 2px solid #fff; 
      border-radius: 10px;
      transition: all 0.3s ease;
      cursor: pointer;
  }  
  .header .action #menuButton:hover{ 
      border-color: var(--secondary-color);  
  }  
  .header .action #menuButton:hover i{ 
      color: var(--secondary-color);  
  }  

  .header .action #menuButton i{
    margin-top: 5px;
    color: #fff;
    transition: all 0.3s ease;
  }  
  .header .menu .logo {
      display: flex; 
      justify-content: center;
  }

  .header .menu .close-button {
      display: flex;
      align-items: center;
      justify-content: center;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;

    margin-block: 20px 40px;
  }  
  
  .header .menu .close-button:hover{
    border-color: var(--main-color);
    color:  var(--main-color);
  } 
  
  .header .menu .close-button:hover i{
    transform: scale(1.5);
  } 
  .header .menu .close-button i{
    margin-top: 5px;
    transition: all 0.3s ease;
  } 
  .header .menu ul {
      display: flex;
    flex-direction: column;

  }   
  @keyframes slideBackground {
  0% {
    background-position: center -10%;
  }
  50% {
    background-position: center 10%;
  }
  100% {
    background-position: center 20%;
  }
}
}