/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
/*
  2. Remove default margin
*/
* {
  margin: 0;
}
/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  background-color: #113522;
  color: #fff;
  font-size: 18px;
  font-family: "HelveticaRoman";
}
/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  color: #fff;
  font: inherit;
}
/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
/*
  8. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

ul {
  padding: 0;
  list-style: none;
}

/* -----------------------------------------Utilities */

.m-auto {
  margin: 0 auto;
}

.siteSection {
  width: 100%;
  overflow: hidden;
  margin-bottom: 70px;
}

.container {
  width: 80%;
  max-width: 1600px;
  margin: 0 auto;
}

/* Background */
.bg-ct {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg-cv {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg-complete {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg-fixed {
  background-attachment: fixed;
}

/* Images */
.ob-ct {
  object-fit: contain;
}
.ob-cv {
  object-fit: cover;
}

/* Display */

.block {
  display: block;
}
.i-block {
  display: inline-block;
}

/* flex */

.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}

.a-s {
  align-items: flex-start;
}

.a-c {
  align-items: center;
}
.a-e {
  align-items: flex-end;
}
.a-st {
  align-items: stretch;
}

.j-s {
  justify-content: flex-start;
}

.j-sb {
  justify-content: space-between;
}
.j-a {
  justify-content: space-around;
}

.j-c {
  justify-content: center;
}

.j-e {
  justify-content: flex-end;
}

.column {
  flex-direction: column;
}

.column-reverse {
  flex-direction: column-reverse;
}

.row-reverse {
  flex-direction: row-reverse;
}

/* positions */

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.abosulte-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% -50%);
}

.absolute-upper-left {
  position: absolute;
  top: 0;
  left: 0;
}

/* Wrapper */

.wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 1600px;
}

/* Cursor */

.pointer {
  cursor: pointer;
}

/* size */

.full-view {
  width: 100%;
  height: 100vh;
}

.width-100 {
  width: 100%;
}

.width-90 {
  width: 90%;
}
.width-80 {
  width: 80%;
}
.width-70 {
  width: 70%;
}
.width-60 {
  width: 60%;
}
.width-50 {
  width: 50%;
}
.width-40 {
  width: 40%;
}
.width-30 {
  width: 30%;
}
.width-20 {
  width: 20%;
}
.width-10 {
  width: 10%;
}

.height-100 {
  height: 100vh;
}

.height-90 {
  height: 90vh;
}
.height-80 {
  height: 80vh;
}
.height-70 {
  height: 70vh;
}
.height-60 {
  height: 60vh;
}
.height-50 {
  height: 50vh;
}

/* Text */

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

/* Text align */

.t-center {
  text-align: center;
}
.t-left {
  text-align: left;
}
.t-right {
  text-align: right;
}

/* Images ratio */

.square {
  aspect-ratio: 1/1;
}

.rectangle {
  aspect-ratio: 16/9;
}

.bgLight {
  background-color: #154733;
}

.siteLogo {
  width: 120px;
  height: 45px;
  object-fit: contain;
}

*::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}

*::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: #113522;
}

a {
  color: #fff;
  text-decoration: none;
}
/* Header */

.siteHeader {
  /*  background-color: #16312580;*/
  background-color: rgba(17, 53, 34, 0.8);
  padding: 15px 0;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
}

.siteHeader.small {
  background-color: #113522;
  padding: 10px 0;
}

.leftHeader {
  gap: 20px;
}

.burger {
  width: 40px;
  height: 40px;
  background-image: url(../assets/img/burger.svg);
  cursor: pointer;
}

.mailLogo {
  width: 40px;
  height: 40px;
  background-image: url(../assets/img/mail.svg);
}

/* Hero Section */

.wrapperImgHero-1 {
  background-image: url(../assets/img/hero.jpg);
}
.wrapperImgHero-2 {
  background-image: url(../assets/img/hero.jpg);
}
.wrapperImgHero-3 {
  background-image: url(../assets/img/hero.jpg);
}

.containerHero {
  padding-top: 75px;
}

.prevSlick {
  width: 40px;
  height: 40px;
  left: 40px;
  top: calc(50% - 20px);
  cursor: pointer;
  background-color: rgba(17, 53, 34, 0.8);
  z-index: 1;
}
.prevSlick::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url(../assets/img/arrow.png);
  transform: rotateY(180deg);
  z-index: 100;
  filter: drop-shadow(0px 2px 0px black);
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
}
.nextSlick {
  width: 40px;
  height: 40px;
  right: 40px;
  top: calc(50% - 20px);
  cursor: pointer;
  background-color: rgba(17, 53, 34, 0.8);
  z-index: 1;
}

.nextSlick::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url(../assets/img/arrow.png);
  z-index: 100;
  filter: drop-shadow(0px 2px 0px black);
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
}
.transparentBoxContent {
  /*  background-color: #16312580;*/
  background-color: rgba(17, 53, 34, 0.8);
  padding: 50px 50px;
}

.subtitleFont {
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 25px;
  /*  font-family: "HelveticaBlack";*/
  font-family: "Inter-Black";
}

.bodyFont {
  margin-bottom: 25px;
}
.contInnerMenu {
  position: relative;
}
.contImageMenu {
  height: calc(100% + 75px);
  width: 50%;
  position: absolute;
  top: -75px;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.primaryButton {
  background-color: transparent;
  border: 2px solid #6eb980;
  padding: 7px 15px 7px 50px;
  cursor: pointer;
  align-content: center;
  position: relative;
  display: inline-block;
  transition: all 0.5s ease;
  font-family: "Inter-Black";
}

.primaryButton:hover {
  background-color: #6eb980;
  padding: 7px 32.5px;
}

.primaryButton:hover::after {
  opacity: 0;
}

.primaryButton:after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 15px;
  width: 25px;
  height: 3px;
  background-color: #6eb980;
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* Features container */

.titleTextContainer {
  margin-bottom: 60px;
}

.lineBefore {
  width: 100px;
  height: 5px;
  background-color: #6eb980;
  margin-bottom: 15px;
}

.lineAfter {
  width: 25%;
  height: 5px;
  background-color: #6eb980;
  position: absolute;
  right: 0;
  bottom: -25px;
  min-width: 140px;
}

.wrapperFeatures {
  gap: 0 30px;
  margin-bottom: 30px;
}

.feature {
  width: calc(33.333% - 20px);
  overflow: hidden;
}

.imgFeature {
  /* max-height: 700px; */
  aspect-ratio: 3/4.5;
}

.featureTraslucentBox {
  bottom: 0;
  left: 0;
  background-color: #113522cc;
  padding: 25px;
  padding-bottom: 0;
  transition: all 0.5s ease;
}

.feature:hover .featureTraslucentBox {
  padding-bottom: 25px;
}

.featureTraslucentBox .subtitleFont {
  font-size: 25px;
  margin-bottom: 40px;
  position: relative;
}

.featureTraslucentBox .subtitleFont:before {
  content: "";
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  width: 40px;
  height: 5px;
  background-color: #6eb980;
}

.featureTraslucentBox .bodyFont {
  height: 0px;
  overflow: hidden;
  transition: inherit;
  overflow-y: auto;
}

.feature:hover .featureTraslucentBox .bodyFont {
  height: 180px;
}

/* About */

.featuresHistory {
  padding: 100px 0 50px;
}

.featuresHistory .primaryButton {
  position: relative;
  left: -10%;
}

.featuresHistory:before {
  content: "";
  position: absolute;
  top: 0;
  right: 25%;
  height: 100%;
  width: 100vw;
  background-color: #154733;
}

.featureHistory {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
  padding: 50px 0;
}

.whiteBoxHistory {
  padding: 100px 60px;
  background-color: #fff;
  color: #1e1e1e;
  width: 50%;
  position: relative;
  z-index: 1;
}

.featureHistoryImg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.productsImg {
  width: 40%;
}

.cGreen {
  color: #1e5c35;
}

.transparentBox {
  background: transparent;
  color: #fff;
  padding: 30px 0;
}

.featureProductPage .primaryButton {
  left: 0;
}

.featureProductPage .titleTextContainer {
  margin-bottom: 20px;
}

/* Qualities section */

.containerQualities {
  gap: 20px;
}

.qualityBox {
  width: calc(33.3333% - 13.3333px);
  padding: 30px 50px;
}

.qualityBox:nth-child(2) {
  border: 5px solid #6eb980;
  border-top: none;
  border-bottom: none;
}

.iconQuality {
  width: 100px;
  height: 100px;
  background-image: url(../assets/img/commitment.svg);
  display: block;
  margin: 0 auto 20px;
}

/* Contact Section */

.contactSection {
  padding: 70px 0;
  margin-bottom: 0;
  z-index: 1;
  position: relative;
}

.titleContainerContactForm {
  margin: 0 0 35px;
}

.labelContactForm {
  margin: 0 0 20px;
}

.labelTextForm {
  margin-bottom: 10px;
}

.inputContact,
.textareaContact {
  border: 1px solid #fff;
  background-color: transparent;
  height: 45px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0 10px;
}

.inputContact:focus,
.textareaContact:focus {
  outline: none;
}

.textareaContact {
  padding: 10px;
  aspect-ratio: 4/1;
  height: auto;
}

.rightSideContact .subtitleFont {
  margin-bottom: 10px;
}

.rightSideContact .bodyFont {
  margin-bottom: 25px;
}

.contactMap {
  aspect-ratio: 16/11;
  background-image: url(../assets/img/map.jpg);
}

/* Footer */

.siteFooter {
  overflow: hidden;
  padding-top: 50px;
  z-index: 1;
  position: relative;
}

.topFooter {
  gap: 40px;
  margin-bottom: 50px;
}

.lineFooter {
  width: calc(50% - 120px);
  height: 5px;
  background-color: #6eb980;
}

.logoFooter {
  width: 200px;
  height: 70px;
}

.footerNav {
    gap: 20px 0px;
    margin-bottom: 25px;
}

.innerFooterNav {
  font-size: 22px;
  width: calc(20% - 84px);
  text-align: center;
}

.pointSeparator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legalNav {
  border-top: 1px solid #6eb980;
  padding: 25px 0;
}

.legalNavContainer {
  gap: 0 80px;
}

/* SiteMenu */

#siteMenu {
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 10;
  background-color: #154733;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease, top 0s 0.5s;
}

#siteMenu.active {
  top: 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease, top 0s 0s;
}

#siteMenu .siteHeader {
  position: relative;
  background-color: transparent;
}
.close.burger {
  background-image: url(../assets/img/close_hyd.png);
  width: 40px;
  height: 30px;
}

.containerMenu {
  height: calc(100vh - 75px);
  width: 80%;
  padding: 0vh 0%;
  overflow-y: auto;
  align-content: center;
}

.topDropDown {
  cursor: pointer;
  margin-bottom: 10px;
}

.preLine {
  width: 50px;
  height: 10px;
  background-color: #6eb980;
  margin-right: 45px;
}

.topDropDown .preLine,
.innerNavMenu .preLine {
  height: 5px;
}

.innerNavMenu.subtitleFont {
  margin: 0 25px 0 0;
}

.arrowDrop {
  width: 35px;
  height: 35px;
  background-image: url(../assets/img/arrow_hyd.png);
  transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  transition: all 0.2s ease;
}

.activeDrop .arrowDrop {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
}

.innerDopDownMenu {
  padding-left: 95px;
  font-size: 30px;
  cursor: default;
  height: 0px;
  overflow: hidden;
  transition: all 0.5s ease;
}
.innerDopDownMenu .linkInnerDoprDown {
  margin-bottom: 10px;
}
.activeDrop .innerDopDownMenu {
  height: var(--height);
}

.innerNavMenu {
  margin-bottom: 50px;
}

.groupInneMenu {
  margin-bottom: 40px;
}

/* Product Detail */

/* .containerProductsSection {
} */

.filterSection {
  position: sticky;
  top: 75px;
}

.filterProducts {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  left: 0;
  padding: 50px 50px 50px 0;
}

.filterProducts:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background-color: #154733;
}

.ulFilterProducts {
  list-style: none;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.categoryFilterli {
  width: 100%;
  cursor: pointer;
  position: relative;
  left: 0;
  font-size: 24px;
  transition: all 0.5s ease;
}

.categoryFilterli .lineBefore {
  width: 50px;
  opacity: 0;
  margin-bottom: 5px;
  transition: all 0.5s ease;
}

.categoryFilterli.active,
.categoryFilterli:hover {
  font-weight: 900;
  left: 5px;
}

.categoryFilterli.active .lineBefore {
  opacity: 1;
}

.textFilter {
  margin: 0px 0 10px;
  display: inline-block;
}

.containerProducts {
  padding: 50px 0 50px 50px;
}

.containerProducts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background-color: #154733;
}

.groupProductContainer {
  margin-bottom: 50px;
}

.groupProductContainer:last-of-type {
  margin-bottom: 0;
}

.containerProducts .lineBefore {
  margin-bottom: 10px;
  width: 50px;
}
.containerProducts .subtitleFont {
  margin-bottom: 10px;
}

.whiteBoxProducts {
  width: calc(100% + 100px);
  position: relative;
  left: -100px;
  padding: 50px 0 50px 55px;
}

.whiteBoxProducts:before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
}

.logosContainer {
  width: 100%;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
}

.logo {
  width: 100px;
  height: 60px;
}

.imgProductsContainer {
  gap: 30px;
  position: relative;
}

.imgProduct {
  width: calc(25% - 22.5px);
  aspect-ratio: 1/0.8;
}

.aboutSection {
  padding-top: 150px;
  margin-bottom: 150px;
}

.containerAboutSection > .titleTextContainer {
  margin-bottom: 80px;
}

.leftTextSide {
  align-content: center;
  padding: 50px 30px;
}

.leftTextSide .titleTextContainer {
  margin-bottom: 0;
}
.leftTextSide .bodyFont {
  margin-bottom: 0;
}

.leaderSection {
  margin-bottom: 100px;
}

.leaderSection .subtitleFont {
  text-align: right;
  width: 70%;
}

.containerImtTextLeader {
  padding-bottom: 50px;
}

.imgLeaderWrapper .innerImg {
  aspect-ratio: 3/4;
}

.textLeaderWrapper {
  margin-left: -5%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 50px;
  position: relative;
  bottom: -50px;
}

.textLeaderWrapper .bodyFont {
  color: #1e1e1e;
}

.ourSectors {
  padding: 50px 0;
}

.containerSectors .subtitleFont {
  position: relative;
  padding-left: 30px;
  margin-bottom: 80px;
}

.containerSectors .subtitleFont:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  width: 5px;
  height: 100%;
  background-color: #6eb980;
}

.sectorsWrapper {
  gap: 10px;
}

.ulSectors {
  width: calc(25% - 7.5px);
  list-style: none;
  padding: 0;
}

.itemSector {
  margin-bottom: 10px;
}

.itemSector .beforeLine {
  background-color: #6eb980;
  height: 5px;
  width: 20px;
  margin-bottom: 5px;
  position: relative;
  left: -10px;
}

.serviceBox {
  margin-bottom: 100px;
}

.imgServiceBox {
  margin-bottom: -10%;
}

.imgServiceBox .innerImg {
  object-fit: cover;
  aspect-ratio: 6/2;
}

.textServiceBox {
  padding: 50px;
  position: relative;
  left: 50px;
}

.textServiceBox .titleTextContainer,
.textServiceBox .bodyFont {
  margin: 0;
}

.servicesHero {
  margin-bottom: 150px;
}

.containerHeroContact {
  padding-top: 75px;
}

.imgHeroContact {
  width: 48%;
}

.imgHeroContact .innerImg {
  height: calc(100vh - 75px);
  margin-top: -75px;
}

.textHeroContact {
  width: 48%;
}

.groupContactText .subtitleFont {
  margin: 0 0 5px;
  font-size: 25px;
}

.groupContactText .bodyFont {
  margin: 0 0 0px;
}

.groupContactText .titleTextContainer {
  margin: 0 0 25px;
}

.itemContact {
  margin: 0 0 10px;
  gap: 0 15px;
}

.iconContact {
  width: 25px;
  height: 25px;
}

.textiItemContact {
  font-family: "HelveticaBlack";
}

.textiItemContact span {
  font-family: "HelveticaRoman";
}

.pinIcon {
  background-image: url(../assets/img/pin.svg);
}
.telIcon {
  background-image: url(../assets/img/tel.svg);
}
.celIcon {
  background-image: url(../assets/img/cel.svg);
}
.mailIcon {
  background-image: url(../assets/img/light-mail.svg);
}

.groupContactText {
  margin-bottom: 50px;
}

.textiItemContact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 10px;
}

.catalogueHero {
  padding-top: 150px;
}

.wrapperPdfCatalogue {
  gap: 30px 30px;
  padding: 0 0 0 35%;
}

.pdfItemCatalogue {
  padding: 25px;
  gap: 0 20px;
  width: calc(50% - 30px);
  position: relative;
}

.iconPdf {
  width: 40px;
  height: 40px;
  background-image: url(../assets/img/pdf.svg);
}

.pdfItemCatalogue .lineBefore {
  width: 30px;
  margin: 0 0 5px;
}

.pdfItemCatalogue .subtitleFont {
  font-size: 20px;
}

.containerCatalogueSection .titleTextContainer {
  margin-bottom: 0;
}

.policySection .wrapperPdfCatalogue {
  padding: 0;
}

.policySection .pdfItemCatalogue {
  width: calc(33.3333% - 20px);
}

.innerImgSideRight {
  height: 100%;
}

.textLeaderWrapper .bodyFont {
  margin-bottom: 0;
}

.textServiceBox .lineBefore {
  width: 50px;
}

.labelFilterBox {
  padding: 0;
  cursor: pointer;
  height: 60px;
  display: none;
  font-family: "HelveticaBlack";
  font-size: 18px;
}

.arrowFilter {
  width: 20px;
  height: 20px;
  background-image: url(../assets/img/arrow-drop.svg);
  transform: rotateX(180deg);
  transition: all 0.25s ease;
}

.containerLeader .subtitleFont {
  position: relative;
  margin-bottom: 45px;
}
.itemSocialMadia {
    height: 30px;
    width: 30px;
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.contSocialMedia {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 65px;
}
@media only screen and (max-width: 1350px) {
  body {
    font-size: 16px;
  }
  .transparentBoxContent {
    width: 70%;
    padding: 30px;
  }

  .container {
    width: 90%;
  }
  .whiteBoxHistory {
    padding: 60px;
  }

  .transparentBox {
    padding: 30px 0;
  }

  .subtitleFont {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .logoFooter {
    width: 170px;
    height: 60px;
  }

  .innerFooterNav {
    font-size: 20px;
  }
  .innerDopDownMenu {
    font-size: 25px;
  }

  .featureHistory {
    padding: 40px 0;
  }

  .productsImg {
    width: 45%;
  }

  .leftTextSide {
    padding: 30px;
  }

  .leftTextSide,
  .rightImgSide {
    width: 50%;
  }

  .aboutSection {
    margin-bottom: 100px;
  }

  .textLeaderWrapper {
    padding: 30px;
  }

  .groupContactText {
    margin-bottom: 30px;
  }
  .siteHeader {
    padding: 10px 0;
  }

  .siteSection {
    margin-bottom: 50px;
  }
  .pdfItemCatalogue {
    gap: 0 10px;
  }
  .namePdfCatalogue {
    width: calc(100% - 40px);
  }

  .namePdfCatalogue {
    font-size: 16px;
  }
  .textServiceBox {
    left: 30px;
    padding: 30px;
  }

  .containerHero {
    padding: 65px 0 0;
  }

  /*
  .prevSlick {
    left: 20px;
    width: 25px;
    height: 25px;
  }
  .nextSlick {
    right: 20px;
    width: 25px;
    height: 25px;
  }
*/
  .textServiceBox {
    width: 60%;
  }
}

@media only screen and (max-width: 1024px) {
  .subtitleFont {
    font-size: 32px;
  }

  .imgLeaderWrapper {
    width: 40%;
  }

  .containerSectors .subtitleFont {
    margin-bottom: 60px;
  }

  .filterProducts {
    padding: 35px 15px 36px 0;
    width: 30%;
  }
  .categoryFilterli {
    font-size: 20px;
  }
  .wrapperPdfCatalogue {
    gap: 20px 20px;
    padding: 0 0 0 30%;
  }
  .pdfItemCatalogue {
    padding: 20px;
    width: calc(50% - 10px);
  }

  .textFilter {
    margin-bottom: 5px;
  }

  .footerNav {
    flex-wrap: wrap;
  }

  .innerFooterNav {
    width: 100%;
  }

  .pointSeparator {
    display: none;
  }
  *::-webkit-scrollbar {
    display: none;
  }

  .wrapperFeatures {
    gap: 30px;
  }

  .feature {
    width: calc(48% - 15px);
  }

  .feature:hover .featureTraslucentBox .bodyFont {
    height: auto;
  }
  .featureTraslucentBox .bodyFont {
    height: auto;
  }
  .qualityBox {
    width: calc(50% - 20px);
  }
  .qualityBox:nth-child(2) {
    border-right: none;
  }

  .contImageMenu {
    width: 40%;
  }
  .ulSectors {
    width: calc(48% - 10px);
  }
}

@media only screen and (max-width: 768px) {
  .siteSection {
    padding-bottom: 40px;
  }
  .wrapperImgText {
    flex-wrap: wrap;
  }
  .leftTextSide,
  .rightImgSide {
    width: 100%;
  }

  .leftTextSide {
    order: 2;
    padding: 50px;
  }

  .rightImgSide {
    orphans: 1;
  }

  .innerImgSideRight {
    height: auto;
  }

  .imgLeaderWrapper {
    width: 100%;
  }
  .imgLeaderWrapper .innerImg {
    aspect-ratio: 4 / 2;
  }

  .textLeaderWrapper {
    width: 100%;
    bottom: 0px;
    margin-left: 0;
  }
  .containerImtTextLeader {
    flex-wrap: wrap;
  }
  .sectorsWrapper {
    gap: 0 20px;
    justify-content: center;
  }

  .ulSectors {
    width: 100%;
  }

  .contianerContact {
    flex-wrap: wrap;
  }

  .leftSideContact {
    width: 100%;
    order: 2;
  }

  .rightSideContact {
    width: 100%;
    order: 1;
    margin-bottom: 50px;
  }

  .contactSection {
    padding: 50px 0;
  }

  .burger {
    width: 30px;
    height: 30px;
  }
  .containerLeader .subtitleFont {
    margin-bottom: 0;
  }

  .filterSection {
    position: fixed;
    top: 65px;
    left: 0;
    z-index: 10;
    height: 60px;
    padding-bottom: 0;
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
  }

  .filterSection.scroll {
    visibility: visible;
    opacity: 1;
  }

  .filterSection.active {
    height: calc(100% - 65px);
  }

  .filterSection.active .arrowFilter {
    transform: rotateZ(0deg);
  }

  .containerFilterSection {
    width: 100%;
    height: 100%;
  }

  .filterProducts {
    width: 100%;
    padding: 0px 5%;
    height: 100%;
    overflow-y: auto;
    background-color: #154733;
  }

  .categoryFilterli a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }

  .textFilter {
    width: 100%;
  }

  .categoryFilterli .lineBefore {
    width: 20px;
    order: 2;
  }
  .wrapperPdfCatalogue {
    padding: 0;
  }
  .ulFilterProducts {
    height: 100%;
    overflow-y: auto;
  }
  .labelFilterBox {
    display: flex;
    position: sticky;
    top: 0px;
    left: 0;
    background-color: #154733;
    z-index: 1;
  }

  .labelFilterBox .bodyFont {
    margin-bottom: 0;
  }

  .containerHeroContact {
    flex-wrap: wrap;
  }
  .imgHeroContact {
    width: 100%;
  }

  .imgHeroContact .innerImg {
    height: calc(50vh - 75px);
    width: 100vw;
    max-width: initial;
    left: calc(-5% - 2.5px);
    position: relative;
  }

  .imgHeroContact {
    margin-bottom: 50px;
  }

  .textHeroContact {
    width: 100%;
  }

  .groupContactText {
    width: 100%;
    margin-bottom: 40px;
  }

  .groupContactText:last-of-type {
    margin-bottom: 0;
  }

  .heroSection {
    z-index: 3;
  }

  .transparentBoxContent {
    width: 100%;
  }
  .containerProducts {
    padding: 0;
    width: 100%;
  }
  .groupProductContainer {
    padding: 20px 0;
  }
  .whiteBoxProducts {
    left: 0;
    width: 100%;
    padding: 30px 10px;
  }

  .imgProductsContainer {
    gap: 15px;
  }

  .imgProduct {
    width: calc(33.333% - 10px);
  }
  .containerProducts::before {
    left: calc(-5% - 5px);
  }

  .prevSlick {
    left: 5px;
  }

  .nextSlick {
    right: 5px;
  }

  .wrapperFeatures {
    justify-content: center;
  }

  .feature {
    width: 100%;
  }

  .containerOurHistory .titleTextContainer {
    width: 100%;
  }

  .featureHistory {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .featuresHistory:before {
    right: 0%;
  }

  .featuresHistory {
    padding: 50px 0;
  }

  .whiteBoxHistory {
    width: 100%;
    order: 2;
  }
  .featureHistoryImg {
    order: 1;
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
  }

  .qualityBox {
    width: 100%;
  }
  .qualityBox:nth-child(2) {
    border-right: none;
    border-left: none;
  }

  .policySection .pdfItemCatalogue {
    width: calc(50% - 20px);
  }
  .textServiceBox {
    width: 100%;
  }
  .featureHistory {
    padding: 0;
  }

  .mailLogo {
    width: 35px;
    height: 35px;
  }
  .contImageMenu {
    display: none;
  }
}

@media only screen and (max-width: 520px) {
  .preLine {
    width: 30px;
    margin-right: 20px;
  }
  .innerDopDownMenu {
    padding-left: 50px;
    font-size: 18px;
  }

  .innerDopDownMenu a {
    padding: 5px 0;
  }
  .containerHero {
    align-items: flex-end;
    width: 100%;
    height: 100vh;
  }

  body {
    font-size: 14px;
  }

  .feature {
    width: 100%;
  }

  .whiteBoxHistory {
    padding: 20px;
  }

  .qualityBox {
    width: 100%;
    padding: 0;
  }
  .qualityBox:nth-child(2) {
    border-left: none;
  }

  .logoFooter {
    width: 100px;
    height: 30px;
  }
  .contactSection {
    margin-bottom: 0;
  }

  .topFooter {
    gap: 20px;
    margin-bottom: 30px;
  }
  .lineFooter {
    width: calc(50% - 70px);
  }

  .footerNav {
    gap: 10px;
    margin-bottom: 30px;
    justify-content: flex-start;
  }
  .innerFooterNav {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .legalNavContainer {
    flex-direction: column;
    gap: 20px;
  }
  .containerAboutSection > .titleTextContainer {
    margin-bottom: 40px;
  }
  .leftTextSide,
  .textLeaderWrapper {
    padding: 20px;
  }
  .containerLeader .subtitleFont {
    width: 100%;
  }
  .pdfItemCatalogue {
    width: 100%;
  }

  .groupProductContainer .titleTextContainer {
    margin-bottom: 40px;
  }
  .logo {
    width: calc(50% - 10px);
  }
  .imgProduct {
    width: calc(50% - 10px);
  }

  .logosContainer {
    margin-bottom: 30px;
  }

  .policySection .pdfItemCatalogue {
    width: 100%;
  }

  .imgServiceBox {
    margin-bottom: 0;
  }

  .serviceBox {
    margin-bottom: 40px;
  }

  .serviceBox:last-of-type {
    margin-bottom: 0;
  }

  .imgServiceBox .innerImg {
    aspect-ratio: 16/9;
  }

  .textServiceBox {
    left: 0;
    padding: 20px;
  }
}

.contChildMenuLateral {
  margin-left: 20px;
  font-size: 13px;
  font-weight: 100;
  line-height: 2;
  transition: font-size 0.5s ease;
}
.itemChildMenuLateral:hover {
  font-size: 14px;
  font-weight: bold;
}
