/*-------------------------|
|          FONTS           |
|-------------------------*/
@import url("https://fonts.cdnfonts.com/css/univers-lt-std");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;800&family=Spectral:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;800&display=swap");
/*-------------------------|
|           PAGE           |
|-------------------------*/
:root {
  --section-width: 1195px;
  --header-height: 85px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  outline: none;
}

.container {
  max-width: var(--section-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

html {
  width: 100vw;
  overflow-x: hidden;
}

.noscroll {
  overflow: hidden !important;
}

/*-------------------------|
|         CLASSES          |
|-------------------------*/
*.hide {
  display: none !important;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: auto;
}
.breadcrumb a {
  color: white;
  opacity: 0.7;
  font-family: Univers LT Std;
  font-size: 14px;
}
.breadcrumb a.current {
  opacity: 1;
}
.breadcrumb span {
  color: white;
}

/*-------------------------|
|        ANIMATIONS        |
|-------------------------*/
@keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header {
  background: linear-gradient(135deg, #652682 7.29%, #CC1F5A 72.92%, #EB1787 100%);
  box-shadow: 0px 4px 16.8099994659px 0px rgba(0, 0, 0, 0.15);
  padding: 0 20px;
  height: var(--header-height);
  display: flex;
  align-items: center;
}
header .main_header {
  position: relative;
  max-width: var(--section-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .main_header img.logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .main_header nav {
  display: flex;
  align-items: center;
  gap: 44px;
}
header .main_header nav a {
  color: #FFF;
  font-family: Univers LT Std;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.5px;
  position: relative;
  opacity: 0.8;
  transition: 0.15s;
}
header .main_header nav a:hover {
  opacity: 1;
}
header .main_header nav a.active {
  font-weight: 700;
}
header .main_header nav a.active::after {
  content: "";
  width: 45%;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 100%;
  left: 0;
}
header .main_header .icons {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}
header .main_header .icons i {
  color: white;
  font-size: 18px;
}
header .main_header .icons i.fa-magnifying-glass {
  margin-right: 16px;
}
header .main_header .menu_bars {
  display: none;
}

@media (max-width: 1024px) {
  header {
    position: relative;
    width: 100vw;
  }
  header .main_header {
    height: 100%;
    width: 100%;
    position: unset;
    z-index: 99999 !important;
  }
  header .main_header img.logo {
    left: 20px;
  }
  header .main_header nav {
    position: absolute;
    top: var(--header-height);
    /*border-top: 3px dashed white;*/
    left: 0;
    width: 100%;
    align-items: flex-start;
    padding: 20px;
    padding-top: 50px;
    flex-direction: column;
    background: linear-gradient(135deg, #652682 7.29%, #CC1F5A 72.92%, #EB1787 100%);
    height: calc(100vh - var(--header-height));
    transition: 0.3s;
  }
  header .main_header nav a {
    text-transform: capitalize;
  }
  header .main_header nav.menu_hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
  }
  header .main_header .icons {
    height: calc(100vh - var(--header-height));
    pointer-events: none;
    top: var(--header-height);
    transform: unset;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10vh 20px;
    overflow: hidden;
  }
  header .main_header .icons.icons_hidden a {
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
  }
  header .main_header .icons a {
    pointer-events: all;
    padding-bottom: 10px;
    border-bottom: 1px solid white;
    transition: 0.3s;
  }
  header .main_header .icons a:last-child {
    border-bottom: 0;
  }
  header .main_header .icons i.fa-magnifying-glass {
    margin-right: 0;
  }
  header .main_header .menu_bars {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    display: block;
    cursor: pointer;
  }
}
footer {
  background: #1F1F1F;
  padding: 45px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
footer .footer_links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
footer .footer_links img.footer_log {
  width: 180px;
}
footer .footer_links .links_side {
  width: 75%;
  display: flex;
  gap: 10px;
}
footer .footer_links .links_side .links_col {
  width: 100%;
}
footer .footer_links .links_side .links_col .links_container .col_title {
  color: #FFF;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
  line-height: 60px;
}
footer .footer_links .links_side .links_col .links_container .col_links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer_links .links_side .links_col .links_container .col_links a {
  color: rgba(255, 255, 255, 0.5333333333);
  font-family: Univers LT Std;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.225px; /* 144.462% */
  letter-spacing: 0.28px;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
}
footer .footer_links .links_side .links_col .links_container .col_links a:hover {
  color: white;
}
footer hr {
  width: 100%;
  border-top: 1px solid #F4F4F4;
}
footer .copyright {
  font-family: Univers LT Std;
  text-align: center;
  letter-spacing: 0.24px;
  color: rgba(255, 255, 255, 0.612);
}

@media (max-width: 1024px) {
  footer .container {
    gap: 20px;
  }
  footer .footer_links {
    flex-direction: column;
  }
  footer .footer_links img.footer_log {
    width: 45%;
  }
  footer .footer_links .links_side {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
  footer .footer_links .links_side .links_col {
    width: 100%;
  }
  footer .footer_links .links_side .links_col .col_title {
    position: relative;
    cursor: pointer;
  }
  footer .footer_links .links_side .links_col .col_title::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    top: 50%;
    transform: translateY(-50%);
    line-height: 20px !important;
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    color: white;
    transition: 0.1s;
  }
  footer .footer_links .links_side .links_col .links_container {
    height: 60px;
    overflow: hidden;
    border-bottom: 1px solid #333;
    transition: 0.3s;
  }
  footer .footer_links .links_side .links_col .links_container.acc_open .col_title::after {
    transform: rotate(180deg);
  }
  footer .footer_links .links_side .links_col:last-child {
    border-bottom: 0;
  }
  footer .footer_links .links_side .links_col:last-child .links_container:last-child {
    border-bottom: 0;
  }
  footer hr {
    display: none;
  }
  footer .copyright {
    padding-top: 40px;
    border-top: 1px solid #333;
    font-size: 12px;
    width: 100%;
  }
}
.hero {
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding-bottom: 20vh;
  background: rgb(64, 43, 112);
  background: linear-gradient(45deg, rgb(64, 43, 112) 0%, rgb(24, 1, 57) 26%);
  overflow-x: hidden;
}
.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-transform: uppercase;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 95px;
  font-weight: 800;
}
.hero h1 span {
  font-size: 56px;
  font-weight: 300;
}
.hero p {
  max-width: 551px;
  font-family: "Spectral", sans-serif;
  color: white;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.1;
}

@media (max-width: 1024px) {
  .hero h1 {
    gap: 0;
    font-size: 54px;
    line-height: 1;
  }
  .hero h1 span {
    font-size: 29px;
    line-height: 1;
  }
  .hero p {
    font-size: 12.5px;
    margin-top: 16px;
  }
}
.section_slider {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f4f4f4;
  overflow: hidden;
  gap: 24px;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
.section_slider::after {
  content: "";
  height: 100%;
  width: calc(100vw - var(--section-width));
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(-90deg, #F4F4F4 0%, rgba(244, 244, 244, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.section_slider small {
  color: var(--2-grey-disabled, #7E7E7E);
  font-family: Univers LT Std;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 89%; /* 12.46px */
  letter-spacing: 5px;
  text-transform: uppercase;
}
.section_slider h2 {
  color: var(--eerie-black, #1F1F1F);
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 98%;
  text-transform: uppercase;
  margin-top: 15px;
}
.section_slider h2 span.gradient_txt {
  background: var(--gradient-color, linear-gradient(135deg, #652682 7.29%, #CC1F5A 72.92%, #EB1787 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
  text-transform: uppercase;
}
.section_slider h2 span.bold_txt {
  color: var(--eerie-black, #1F1F1F);
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
  text-transform: uppercase;
}
.section_slider .swiper-container {
  margin-top: 24px;
}
.section_slider .swiper-container .swiper-slide {
  width: 100%;
  display: flex;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}
.section_slider .swiper-container .swiper-slide .text_side {
  width: 70%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.section_slider .swiper-container .swiper-slide .text_side .category {
  color: #CBCBCB;
  font-family: Univers LT Std;
  font-size: 24px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.section_slider .swiper-container .swiper-slide .text_side .slide_title {
  color: #1F1F1F;
  font-family: "Spectral", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 99.7%;
}
.section_slider .swiper-container .swiper-slide .text_side .slide_title span {
  position: relative;
  font: inherit;
}
.section_slider .swiper-container .swiper-slide .text_side .slide_title span::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 6px);
  height: 50%;
  background: #e4ccef;
  z-index: -1;
}
.section_slider .swiper-container .swiper-slide .text_side p {
  color: rgba(31, 31, 31, 0.75);
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.section_slider .swiper-container .swiper-slide .text_side .button_nobg {
  color: #7900B1;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  display: flex;
  align-items: center;
}
.section_slider .swiper-container .swiper-slide .text_side .button_nobg i {
  font-size: 0.75em;
}
.section_slider .swiper-container .swiper-slide .slide_img {
  width: 30%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section_slider .swiper-container .custom_navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}
.section_slider .swiper-container .custom_navigation i {
  color: #CBCBCB;
  transition: 0.3s;
  cursor: pointer;
}
.section_slider .swiper-container .custom_navigation i:hover {
  color: black;
}
.section_slider .swiper-container .custom_navigation .swiper-pagination {
  position: unset;
  max-width: 200px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  margin-top: -3px;
}
.section_slider .swiper-container .custom_navigation .swiper-pagination .swiper-pagination-bullet {
  border-radius: 5px;
  transition: 0.3s;
}
.section_slider .swiper-container .custom_navigation .swiper-pagination .swiper-pagination-bullet-active {
  width: 40px;
  background-color: #7900B1;
}

@media (max-width: 1024px) {
  .section_slider::after {
    width: 15vw;
  }
  .section_slider small {
    font-size: 10px;
  }
  .section_slider h2 {
    font-size: 32px;
  }
  .section_slider h2 span.bold_txt,
  .section_slider h2 span.gradient_txt {
    font-size: 32px;
  }
  .section_slider .swiper-container {
    width: 90%;
  }
  .section_slider .swiper-container .swiper-slide {
    flex-direction: column-reverse;
  }
  .section_slider .swiper-container .swiper-slide .text_side {
    gap: 16px;
    padding: 16px 24px;
    width: 100%;
  }
  .section_slider .swiper-container .swiper-slide .text_side .category {
    color: #7E7E7E;
    font-size: 10px;
    font-weight: 400;
  }
  .section_slider .swiper-container .swiper-slide .text_side .slide_title {
    font-size: 24px;
  }
  .section_slider .swiper-container .swiper-slide .text_side p {
    font-size: 14px;
  }
  .section_slider .swiper-container .swiper-slide .text_side .button_nobg {
    font-size: 14px;
  }
  .section_slider .swiper-container .swiper-slide .slide_img {
    width: 100%;
    height: 157px;
  }
}
.section_garantee {
  padding: 70px 0;
}
.section_garantee small {
  font-family: "Spectral", sans-serif;
  color: #7E7E7E;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
}
.section_garantee .section_content {
  display: flex;
  gap: 0;
  align-items: flex-start;
  margin-top: 40px;
}
.section_garantee .section_content .left_side {
  width: 30%;
  /*display: flex;*/
  flex-direction: column;
}
.section_garantee .section_content .left_side img {
  margin-bottom: 50px;
  max-width: 250px;
}
.section_garantee .section_content .left_side .nav_heading {
  color: #7E7E7E;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 10px;
  transition: 0.3s;
  cursor: pointer;
}
.section_garantee .section_content .left_side .nav_heading:hover, .section_garantee .section_content .left_side .nav_heading.active {
  color: black;
}
.section_garantee .section_content .left_side .nav_heading i {
  font-size: 0.7em;
}
.section_garantee .section_content .right_side {
  width: 70%;
  padding-left: 30px;
}
.section_garantee .section_content .right_side .tab_content {
  max-width: 645px;
  animation: fade_in 0.8s;
}
.section_garantee .section_content .right_side .tab_content h2 {
  color: var(--eerie-black, #1F1F1F);
  font-family: Montserrat;
  font-size: 43px;
  font-style: normal;
  font-weight: 300;
  line-height: 98%;
  text-transform: uppercase;
  margin-top: 15px;
}
.section_garantee .section_content .right_side .tab_content h2 span.gradient_txt {
  background: var(--gradient-color, linear-gradient(135deg, #652682 7.29%, #CC1F5A 72.92%, #EB1787 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
  text-transform: uppercase;
}
.section_garantee .section_content .right_side .tab_content h2 span.bold_txt {
  color: var(--eerie-black, #1F1F1F);
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
  text-transform: uppercase;
}
.section_garantee .section_content .right_side .tab_content p {
  color: rgba(31, 31, 31, 0.75);
  font-family: Univers LT Std;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 30px 0;
}
.section_garantee .section_content .right_side .tab_content .certifications {
  display: flex;
  align-items: center;
  gap: 25px;
}
.section_garantee .section_content .right_side .tab_content .certifications .vertical_divider {
  height: 100%;
  min-height: 35px;
  width: 1px;
  background: black;
}

@media (max-width: 1024px) {
  .section_garantee {
    padding: 70px 0;
  }
  .section_garantee small {
    font-size: 12px;
  }
  .section_garantee .section_content {
    flex-direction: column;
  }
  .section_garantee .section_content .left_side {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  .section_garantee .section_content .left_side img {
    width: 100%;
  }
  .section_garantee .section_content .left_side .nav_heading {
    width: 48%;
    padding: 5px;
    font-size: 9.5px;
    border-radius: 5px;
    color: black;
    position: relative;
  }
  .section_garantee .section_content .left_side .nav_heading i {
    margin-left: auto;
    margin-right: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    right: 0;
  }
  .section_garantee .section_content .left_side .nav_heading.active {
    background: black;
    color: white !important;
  }
  .section_garantee .section_content .right_side {
    width: 100%;
    padding-left: 0;
  }
  .section_garantee .section_content .right_side .tab_content h2 {
    font-size: 32px;
    margin-top: 0;
  }
  .section_garantee .section_content .right_side .tab_content h2 span.gradient_txt {
    font-size: 32px;
  }
  .section_garantee .section_content .right_side .tab_content h2 span.bold_txt {
    font-size: 32px;
  }
  .section_garantee .section_content .right_side .tab_content p {
    font-size: 13px;
  }
  .section_garantee .section_content .right_side .tab_content .certifications img {
    max-width: 35%;
  }
}
.section_purple {
  background: #502861;
  padding: 80px 0;
}
.section_purple .container {
  display: flex;
  justify-content: space-between;
}
.section_purple .container .left_side {
  width: 50%;
  max-width: 450px;
}
.section_purple .container .left_side .subtitle {
  color: #D780FF;
  font-family: "Spectral", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 98%;
}
.section_purple .container .left_side h2 {
  color: #F4F4F4;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
  margin: 30px 0;
}
.section_purple .container .left_side p {
  color: var(--pure-white, #FFF);
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.section_purple .container .right_side {
  width: 50%;
  max-width: 486px;
}
.section_purple .container .right_side .feature {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 30px;
}
.section_purple .container .right_side .feature .feature_txt .feature_title {
  color: #D780FF;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
}
.section_purple .container .right_side .feature .feature_txt p.feature_p {
  color: #FFF;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.36px;
}

@media (max-width: 1024px) {
  .section_purple {
    background: #502861;
    padding: 80px 0;
  }
  .section_purple .container {
    flex-direction: column;
  }
  .section_purple .container .left_side {
    width: 100%;
  }
  .section_purple .container .left_side .subtitle {
    font-size: 18px;
  }
  .section_purple .container .left_side h2 {
    font-size: 42px;
  }
  .section_purple .container .left_side p {
    font-size: 14px;
  }
  .section_purple .container .right_side {
    width: 100%;
  }
  .section_purple .container .right_side .feature {
    gap: 20px;
  }
  .section_purple .container .right_side .feature .feature_txt .feature_title {
    font-size: 16px;
  }
  .section_purple .container .right_side .feature .feature_txt p.feature_p {
    font-size: 13px;
  }
}
.section_compromiso {
  background: rgb(74, 13, 93);
  background: linear-gradient(245deg, rgb(74, 13, 93) 0%, rgb(50, 6, 78) 100%);
  padding: 86px 0;
}
.section_compromiso small {
  color: #D780FF;
  font-family: "Spectral", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 98%;
}
.section_compromiso h2 {
  color: var(--cultured-white, #F4F4F4);
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
}
.section_compromiso .section_content {
  display: flex;
  margin-top: 25px;
  width: 100%;
  justify-content: space-between;
}
.section_compromiso .section_content .slide_imgs {
  width: 40%;
}
.section_compromiso .section_content .slide_imgs img {
  width: 100%;
  transform: translateX(-3%);
  max-height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.section_compromiso .section_content .swiper-container {
  width: 50%;
  overflow: hidden;
}
.section_compromiso .section_content .swiper-container .swiper-slide h3 {
  color: #F4F4F4;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 400;
  max-width: 407px;
}
.section_compromiso .section_content .swiper-container .swiper-slide h3 span {
  color: #D780FF;
  font-weight: 700;
  display: block;
}
.section_compromiso .section_content .swiper-container .swiper-slide p {
  margin: 32px 0;
  color: #F4F4F4;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.section_compromiso .section_content .swiper-container .swiper_navigation {
  transform: translateY(calc(-100% - 20px));
  position: relative;
  z-index: 10;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .arrows {
  display: flex;
  align-items: center;
  gap: 15px;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .arrows i {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  transition: 0.3s;
  cursor: pointer;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .arrows i.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .arrows i.swiper-button-disabled:hover {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .arrows i.next_slide:hover {
  padding-left: 10px;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .arrows i.prev_slide:hover {
  padding-right: 4px;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .swiper_counters {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .swiper_counters .current {
  color: white;
  text-align: right;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.737px;
  text-transform: uppercase;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .swiper_counters .total,
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .swiper_counters span {
  color: #7E7E7E;
  font-family: Montserrat;
  font-size: 36.855px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
  letter-spacing: -0.737px;
  text-transform: uppercase;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .swiper_counters span {
  font-size: 25px;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_pagination {
  display: flex;
  margin-top: 10px;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_pagination .swiper-pagination-bullet {
  width: 100%;
  border-radius: 0;
  background: #69466D;
  transition: 0.3s;
  height: 2.513px;
  opacity: 1 !important;
}
.section_compromiso .section_content .swiper-container .swiper_navigation .swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #D780FF;
}

@media (max-width: 1024px) {
  .section_compromiso small {
    font-size: 14px;
  }
  .section_compromiso h2 {
    font-size: 32px;
  }
  .section_compromiso .section_content {
    flex-direction: column;
  }
  .section_compromiso .section_content .slide_imgs {
    width: 100%;
  }
  .section_compromiso .section_content .slide_imgs img {
    transform: unset;
    max-height: 360px;
  }
  .section_compromiso .section_content .swiper-container {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
  .section_compromiso .section_content .swiper-container .swiper-wrapper {
    order: 2;
  }
  .section_compromiso .section_content .swiper-container .swiper-wrapper .swiper-slide h3 {
    font-size: 24px;
  }
  .section_compromiso .section_content .swiper-container .swiper-wrapper .swiper-slide p {
    font-size: 14px;
  }
  .section_compromiso .section_content .swiper-container .swiper_navigation {
    order: 1;
    transform: unset;
  }
  .section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .arrows {
    gap: 10px;
  }
  .section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .arrows i {
    height: 38px;
    width: 38px;
    font-size: 12px;
  }
  .section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .swiper_counters {
    gap: 10px;
  }
  .section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .swiper_counters .current {
    font-size: 32px;
  }
  .section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .swiper_counters .total,
  .section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .swiper_counters span {
    font-size: 32px;
  }
  .section_compromiso .section_content .swiper-container .swiper_navigation .swiper_navigation_top .swiper_counters span {
    font-size: 19px;
  }
  .section_compromiso .section_content .swiper-container .swiper_navigation .swiper_pagination {
    margin-top: 10px;
  }
}
.section_newsletter {
  background: #F4F4F4;
  padding: 80px 0;
}
.section_newsletter .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section_newsletter .container h2 {
  color: #1F1F1F;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 53px;
  letter-spacing: 0.96px;
}
.section_newsletter .container p {
  color: #1F1F1F;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.652px; /* 159.176% */
  letter-spacing: 0.36px;
}
.section_newsletter .container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 487px;
}
.section_newsletter .container form input {
  border-radius: 20px;
  background: white;
  border: 1px solid transparent;
  font-size: 16px;
  color: black;
  font-family: Univers LT Std;
  padding: 18px 20px;
  transition: 0.3s;
}
.section_newsletter .container form input::-moz-placeholder {
  color: #CBCBCB;
}
.section_newsletter .container form input::placeholder {
  color: #CBCBCB;
}
.section_newsletter .container form input:focus {
  border: 1px solid #652682;
}
.section_newsletter .container form button {
  background: #7900B1;
  border-radius: 25px;
  padding: 12px 35px;
  border: 0;
  color: white;
  font-family: Univers LT Std;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: 0.3s;
}
.section_newsletter .container form button:hover {
  background: #652682;
}

@media (max-width: 1024px) {
  .section_newsletter {
    padding: 50px 0;
  }
  .section_newsletter .container {
    gap: 20px;
  }
  .section_newsletter .container h2 {
    font-size: 32px;
  }
  .section_newsletter .container p {
    font-size: 14px;
    line-height: 1.3em;
  }
  .section_newsletter .container form input {
    font-size: 14px;
    padding: 12px 15px;
  }
  .section_newsletter .container form button {
    padding: 9px 35px;
  }
}
.team_hero {
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding-bottom: 20vh;
  background-image: url(../images/grupo_logo_logo.png);
  background-attachment: fixed;
  background-position: top;
  overflow-x: hidden;
  position: relative;
}
.team_hero .container {
  height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 44px;
  position: relative;
  z-index: 1;
}
.team_hero h1 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-transform: uppercase;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 95px;
  font-weight: 800;
}
.team_hero h1 span {
  font-size: 56px;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .team_hero h1 {
    gap: 0;
    margin-top: auto;
    font-size: 54px;
    line-height: 1;
  }
  .team_hero h1 span {
    font-size: 29px;
    line-height: 1;
  }
}

.team_hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), linear-gradient(135deg, rgba(101, 38, 130, 0.5) 7.29%, rgba(204, 31, 90, 0.5) 72.92%, rgba(235, 23, 135, 0.5) 100%);
}

.section_directors {
  padding: 64px 0;
}
.section_directors small {
  color: #1F1F1F;
  font-family: "Spectral", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 98%;
  margin-bottom: 10px;
}
.section_directors h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%; /* 47.04px */
  background: linear-gradient(135deg, #652682 7.29%, #CC1F5A 72.92%, #EB1787 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section_directors .team {
  margin-top: 64px;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.section_directors .team .single_teammate {
  position: relative;
  overflow: hidden;
}
.section_directors .team .single_teammate img {
  width: 100%;
  height: 212px;
  margin-bottom: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.section_directors .team .single_teammate:hover .team_content {
  transform: translateY(-100%);
}
.section_directors .team .single_teammate .team_content {
  position: absolute;
  top: 100%;
  transition: 0.3s;
  background: white;
}
.section_directors .team .single_teammate .team_content .top {
  position: absolute;
  bottom: 100%;
  width: 100%;
  height: 60px;
  display: flex;
  background: white;
  flex-direction: column;
  justify-content: center;
  transform: translateY(1px);
}
.section_directors .team .single_teammate .team_content .top .team_name {
  color: #3B9199;
  font-family: "Spectral", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 99.7%;
}
.section_directors .team .single_teammate .team_content .top .team_role {
  color: rgba(31, 31, 31, 0.75);
  font-family: Univers LT Std;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.section_directors .team .single_teammate .team_content p {
  color: rgba(31, 31, 31, 0.75);
  font-family: Univers LT Std;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}

@media (max-width: 1024px) {
  .section_directors .team {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .section_directors .team {
    grid-template-columns: 1fr;
  }
}
.section_installatie {
  background: #1F1F1F;
  padding: 54px 0;
}
.section_installatie .container {
  display: flex;
  justify-content: space-between;
}
.section_installatie .container .left_side {
  width: 40%;
  height: 430px;
  display: flex;
  flex-direction: column;
}
.section_installatie .container .left_side small {
  color: #F05D5E;
  font-family: "Spectral", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 98%; /* 23.52px */
}
.section_installatie .container .left_side h2 {
  color: #F4F4F4;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%; /* 47.04px */
}
.section_installatie .container .left_side p {
  color: #F4F4F4;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
  margin-top: 24px;
  margin-bottom: 50px;
}
.section_installatie .container .left_side .view_gallery_btn {
  color: #ededed;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.1s;
}
.section_installatie .container .left_side .view_gallery_btn i {
  font-size: 13px;
  transition: 0.3s;
}
.section_installatie .container .left_side .view_gallery_btn.active {
  color: white;
}
.section_installatie .container .left_side .view_gallery_btn.active i {
  transform: rotate(180deg);
}
.section_installatie .container .left_side .view_gallery_btn:hover {
  color: white;
}
.section_installatie .container .left_side .gallery_arrows {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}
.section_installatie .container .left_side .gallery_arrows i {
  font-size: 20px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.section_installatie .container .left_side .gallery_arrows i:hover {
  color: #dc565e;
}
.section_installatie .container .right_side {
  width: 55%;
  display: flex;
  justify-content: space-between;
  gap: 0;
}
.section_installatie .container .right_side.is_open .swiper-container {
  width: 0;
  opacity: 0;
  pointer-events: none;
}
.section_installatie .container .right_side.is_open .thumbnail {
  width: 100%;
}
.section_installatie .container .right_side .thumbnail {
  width: 77%;
  height: 430px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.section_installatie .container .right_side .swiper-container {
  transition: 0.3s;
  width: 20%;
  overflow: hidden;
  height: 430px;
  position: relative;
}
.section_installatie .container .right_side .swiper-container .swiper-wrapper .swiper-slide {
  height: 166px;
}
.section_installatie .container .right_side .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.section_installatie .container .right_side .swiper-container .next_slide,
.section_installatie .container .right_side .swiper-container .prev_slide {
  position: absolute;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: calc(33.3% - 13px);
  border-radius: 10px;
  font-size: 25px;
  cursor: pointer;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_installatie .container .right_side .swiper-container .prev_slide {
  top: unset;
  bottom: 0;
}
.section_installatie .container .gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  margin-top: 48px;
  animation: fade_in 2s;
}
.section_installatie .container .gallery img {
  height: 211px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}
.section_installatie .container .gallery img.current {
  -o-object-position: left top;
     object-position: left top;
  border: 2px solid white;
}

@media (max-width: 1024px) {
  .section_installatie .container {
    flex-direction: column;
    gap: 20px;
  }
  .section_installatie .container .left_side {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_installatie .container .left_side small {
    font-size: 20px;
  }
  .section_installatie .container .left_side h2 {
    font-size: 38px;
  }
  .section_installatie .container .left_side p {
    font-size: 16px;
  }
  .section_installatie .container .left_side .gallery_arrows {
    margin-top: 20px;
  }
  .section_installatie .container .right_side {
    width: 100%;
    flex-direction: column;
  }
  .section_installatie .container .right_side.is_open .swiper-container {
    height: 0;
    width: 100%;
  }
  .section_installatie .container .right_side .thumbnail {
    width: 100%;
    height: 250px;
  }
  .section_installatie .container .right_side .swiper-container {
    width: 100%;
    overflow: hidden;
    height: 80px;
    position: relative;
    margin-top: 20px;
  }
  .section_installatie .container .right_side .swiper-container .swiper-wrapper .swiper-slide {
    height: 80px;
  }
  .section_installatie .container .right_side .swiper-container .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
  .section_installatie .container .right_side .swiper-container .next_slide,
  .section_installatie .container .right_side .swiper-container .prev_slide {
    height: 100%;
    width: 30%;
  }
  .section_installatie .container .right_side .swiper-container .next_slide::before,
  .section_installatie .container .right_side .swiper-container .prev_slide::before {
    transform: rotate(-90deg);
  }
  .section_installatie .container .right_side .swiper-container .prev_slide {
    right: 0;
  }
  .section_installatie .container .gallery {
    margin-top: 0;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
  .section_installatie .container .gallery img {
    height: 130px;
  }
}
.section_publications {
  background: #F4F4F4;
}
.section_publications .container {
  padding: 64px 0;
}
.section_publications .container small {
  color: #3B9199;
  font-family: "Spectral", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 98%; /* 23.52px */
}
.section_publications .container h2 {
  color: #1F1F1F;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
  margin-top: 10px;
}
.section_publications .container .publications {
  margin-top: 64px;
}
.section_publications .container .publications .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  background: white;
}
.section_publications .container .publications .swiper-slide .slide_img {
  height: 160px;
  width: 100%;
  position: relative;
}
.section_publications .container .publications .swiper-slide .slide_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section_publications .container .publications .swiper-slide .slide_img .badge {
  position: absolute;
  bottom: 15px;
  font-size: 12px;
  left: 15px;
  border-radius: 24px;
  background: #E4CCEF;
  padding: 3px 16px 5px 16px;
}
.section_publications .container .publications .swiper-slide h3, .section_publications .container .publications .swiper-slide p {
  padding: 16px;
}
.section_publications .container .publications .swiper-slide p {
  padding-top: 0;
}
.section_publications .container .publications .swiper-slide h3 {
  color: #3E3E3E;
  font-family: "Spectral", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 99.7%; /* 23.928px */
}
.section_publications .container .publications .swiper-slide p {
  color: #3E3E3E;
  font-family: Univers LT Std;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}

@media (max-width: 1024px) {
  .section_publications .container small {
    font-size: 18px;
  }
  .section_publications .container h2 {
    font-size: 34px;
  }
  .section_publications .container .publications {
    margin-top: 25px;
  }
}
.investigation_hero {
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding-bottom: 20vh;
  background-image: url(../images/plantas.jpg);
  background-attachment: fixed;
  background-position: center;
  overflow-x: hidden;
  position: relative;
}
.investigation_hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), linear-gradient(135deg, rgba(101, 38, 130, 0.5) 7.29%, rgba(204, 31, 90, 0.5) 72.92%, rgba(235, 23, 135, 0.5) 100%);
}
.investigation_hero .container {
  height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 44px;
  position: relative;
  z-index: 1;
}
.investigation_hero h1 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-transform: uppercase;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 95px;
  font-weight: 800;
}
.investigation_hero h1 span {
  font-size: 56px;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .investigation_hero h1 {
    gap: 0;
    margin-top: auto;
    font-size: 54px;
    line-height: 1;
  }
  .investigation_hero h1 span {
    font-size: 29px;
    line-height: 1;
  }
}
section.investigation_tab_nav {
  background-color: #F4F4F4;
}
section.investigation_tab_nav .container {
  display: flex;
  align-items: center;
  gap: 40px;
}
section.investigation_tab_nav .container .nav_heading {
  color: #7E7E7E;
  padding: 24px 0;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
  position: relative;
  cursor: pointer;
}
section.investigation_tab_nav .container .nav_heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: gray;
  transition: 0.3s;
  height: 2px;
}
section.investigation_tab_nav .container .nav_heading.active::after, section.investigation_tab_nav .container .nav_heading:hover::after {
  width: 100%;
}
section.investigation_tab_nav .container .nav_heading.active::after {
  background: black;
  height: 3px;
}

@media (max-width: 1024px) {
  section.investigation_tab_nav .container {
    padding: 0 11px !important;
    gap: 15px;
  }
  section.investigation_tab_nav .container .nav_heading {
    font-size: 10px;
  }
}
section.investigation_tab_content {
  background: white;
}
section.investigation_tab_content .tab_content .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 70px 0;
}
section.investigation_tab_content .tab_content .container small {
  color: #7E7E7E;
  font-family: "Spectral", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 98%;
}
section.investigation_tab_content .tab_content .container h2 {
  color: #F05D5E;
  font-family: "Montserrat", sans-serif;
  font-size: 43px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
}
section.investigation_tab_content .tab_content .container .cols {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin: 30px 0;
}
section.investigation_tab_content .tab_content .container .cols p {
  color: #3E3E3E;
  font-family: Univers LT Std;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
}
section.investigation_tab_content .tab_content .container .button {
  color: #7900B1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  transition: 0.3s;
}
section.investigation_tab_content .tab_content .container .button:hover {
  gap: 9px;
}
section.investigation_tab_content .tab_content .container .button i {
  font-size: 13px;
}
section.investigation_tab_content .tab_content .full_width_chimique {
  background-image: url(../images/chimic_investigations.jpeg);
  background-size: cover;
  padding: 60px 0;
  min-height: 400px;
  position: relative;
}
section.investigation_tab_content .tab_content .full_width_chimique::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.445);
}
section.investigation_tab_content .tab_content .full_width_chimique .container {
  position: relative;
  z-index: 1;
}
section.investigation_tab_content .tab_content .full_width_chimique h4 {
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
  max-width: 490px;
}
section.investigation_tab_content .tab_content .full_width_chimique p {
  color: #FFF;
  font-family: Univers LT Std;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.32px;
  max-width: 510px;
}
section.investigation_tab_content .tab_content .full_width_chimique i {
  margin: 30px auto;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  color: white;
  border-radius: 50%;
}

@media (max-width: 1024px) {
  section.investigation_tab_content .tab_content .container {
    padding: 30px 0;
  }
  section.investigation_tab_content .tab_content .container small {
    font-size: 18px;
  }
  section.investigation_tab_content .tab_content .container h2 {
    font-size: 29px;
  }
  section.investigation_tab_content .tab_content .container .cols {
    flex-direction: column;
  }
  section.investigation_tab_content .tab_content .container .cols p {
    font-size: 12px;
  }
  section.investigation_tab_content .tab_content .full_width_chimique {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  section.investigation_tab_content .tab_content .full_width_chimique h4 {
    font-size: 20px;
  }
  section.investigation_tab_content .tab_content .full_width_chimique p {
    font-size: 12px;
  }
}
section.section_vanguardia {
  background: #F4F4F4;
  padding: 64px 0;
}
section.section_vanguardia small {
  color: #7E7E7E;
  font-family: "Spectral", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 98%;
}
section.section_vanguardia h2 {
  color: #3B9199;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
}
section.section_vanguardia .cols {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 30px 0;
}
section.section_vanguardia .accordion-container .ac {
  background-color: transparent !important;
  border: 0;
  border-bottom: 1px solid #CBCBCB;
  padding: 25px 30px;
}
section.section_vanguardia .accordion-container .ac.is-active .ac-header button::after {
  transform: rotate(180deg) translateY(50%) !important;
}
section.section_vanguardia .accordion-container .ac .ac-header button {
  display: flex;
  align-items: center;
  color: #1F1F1F;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
}
section.section_vanguardia .accordion-container .ac .ac-header button img {
  width: 53px;
  margin-right: 40px;
}
section.section_vanguardia .accordion-container .ac .ac-header button::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  transition: 0.3s;
}
section.section_vanguardia .accordion-container .ac .ac-panel {
  padding-left: 100px;
}

@media (max-width: 1024px) {
  section.section_vanguardia {
    padding: 34px 0;
  }
  section.section_vanguardia small {
    font-size: 20px;
  }
  section.section_vanguardia h2 {
    font-size: 29px;
  }
  section.section_vanguardia .cols {
    flex-direction: column;
    gap: 20px;
  }
  section.section_vanguardia .cols p {
    font-size: 12px;
  }
  section.section_vanguardia .accordion-container .ac {
    background-color: transparent !important;
    border: 0;
    border-bottom: 1px solid #CBCBCB;
    padding: 15px 0px;
  }
  section.section_vanguardia .accordion-container .ac .ac-header button {
    font-size: 16px;
  }
  section.section_vanguardia .accordion-container .ac .ac-header button img {
    width: 30px;
    margin-right: 20px;
  }
  section.section_vanguardia .accordion-container .ac .ac-panel {
    padding-left: 0;
  }
}
.contact_hero {
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding-bottom: 20vh;
  background-image: url(../images/contacto.jpeg);
  -o-object-position: top left;
     object-position: top left;
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}
.contact_hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), linear-gradient(135deg, rgba(101, 38, 130, 0.5) 7.29%, rgba(204, 31, 90, 0.5) 72.92%, rgba(235, 23, 135, 0.5) 100%);
}
.contact_hero .container {
  height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 44px;
  position: relative;
  z-index: 1;
}
.contact_hero h1 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-transform: uppercase;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 95px;
  font-weight: 800;
}
.contact_hero h1 span {
  font-size: 56px;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .contact_hero h1 {
    gap: 0;
    margin-top: auto;
    font-size: 54px;
    line-height: 1;
  }
  .contact_hero h1 span {
    font-size: 29px;
    line-height: 1;
  }
}
.contact_section {
  background: rgba(52, 0, 77, 0.75);
}
.contact_section .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 86px 0;
}
.contact_section .left_side {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact_section .left_side h2 {
  color: #F4F4F4;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
}
.contact_section .left_side p {
  color: #FFF;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.36px;
}
.contact_section .left_side .contact_details {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.contact_section .left_side .contact_details .details {
  color: #FFF;
  padding: 32px 0;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.contact_section .left_side .contact_details .details.phone_number {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #F4F4F4;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
}
.contact_section .left_side .contact_details .details.phone_number i {
  font-size: 32px;
}
.contact_section .left_side .contact_details .details.phone_number span {
  font-weight: 200;
}
.contact_section .right_side {
  width: 45%;
}
.contact_section .right_side form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact_section .right_side form .form_elm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact_section .right_side form .form_elm .telefono {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.contact_section .right_side form .form_elm .telefono::after {
  content: "";
  width: 100%;
  top: 50%;
  left: 0;
  height: 22px;
  position: absolute;
  transform: translateY(-50%);
  background: white;
}
.contact_section .right_side form .form_elm .telefono select {
  width: 20%;
  position: relative;
  z-index: 1;
}
.contact_section .right_side form .form_elm .telefono input {
  width: 79%;
  position: relative;
  z-index: 1;
}
.contact_section .right_side form .form_elm label {
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.28px;
  cursor: pointer;
}
.contact_section .right_side form .form_elm input,
.contact_section .right_side form .form_elm textarea,
.contact_section .right_side form .form_elm select {
  border-radius: 20px;
  height: 60px;
  padding: 0 20px;
  background: #FFF;
  font-family: Univers LT Std;
  font-size: 15px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.36px;
  color: black;
  border: 1px solid white;
  transition: 0.3s;
}
.contact_section .right_side form .form_elm input::-moz-placeholder, .contact_section .right_side form .form_elm textarea::-moz-placeholder, .contact_section .right_side form .form_elm select::-moz-placeholder {
  color: #CBCBCB;
}
.contact_section .right_side form .form_elm input::placeholder,
.contact_section .right_side form .form_elm textarea::placeholder,
.contact_section .right_side form .form_elm select::placeholder {
  color: #CBCBCB;
}
.contact_section .right_side form .form_elm input:focus,
.contact_section .right_side form .form_elm textarea:focus,
.contact_section .right_side form .form_elm select:focus {
  border-color: black;
}
.contact_section .right_side form .form_elm textarea {
  padding-top: 24px;
  height: 180px;
}
.contact_section .right_side form .form_elm select {
  color: #3E3E3E;
  font-size: 18px;
}
.contact_section .right_side form .send_message {
  display: flex;
  gap: 12px;
  align-items: center;
}
.contact_section .right_side form .send_message button {
  padding: 18px 40px;
  border-radius: 25px;
  color: #F4F4F4;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 88.889% */
  background: linear-gradient(135deg, #652682 7.29%, #CC1F5A 72.92%, #EB1787 100%);
  border: 1px solid #67407a;
  cursor: pointer;
  transition: 0.3s;
}
.contact_section .right_side form .send_message button:hover {
  border-color: white;
}
.contact_section .right_side form .send_message p {
  color: white;
  font-size: 12px;
  font-family: Univers LT Std;
  letter-spacing: 0.24px;
}

@media (max-width: 1024px) {
  .contact_section .container {
    flex-direction: column;
    padding: 36px 0;
    gap: 30px;
  }
  .contact_section .left_side {
    width: 100%;
  }
  .contact_section .left_side h2 {
    font-size: 29px;
  }
  .contact_section .left_side p {
    font-size: 12px;
  }
  .contact_section .left_side .contact_details {
    margin-top: 10px;
  }
  .contact_section .left_side .contact_details .details {
    color: #FFF;
    padding: 15px 0;
    font-size: 12px;
  }
  .contact_section .left_side .contact_details .details.phone_number {
    gap: 10px;
    font-size: 14px;
  }
  .contact_section .left_side .contact_details .details.phone_number i {
    font-size: 16px;
  }
  .contact_section .right_side {
    width: 100%;
  }
  .contact_section .right_side form .form_elm label {
    font-size: 14px;
  }
  .contact_section .right_side form .form_elm input,
  .contact_section .right_side form .form_elm textarea,
  .contact_section .right_side form .form_elm select {
    border-radius: 20px;
    height: 40px;
    padding: 0 10px;
    font-size: 13px;
    border-radius: 10px;
  }
  .contact_section .right_side form .form_elm textarea {
    padding-top: 14px;
    height: 130px;
  }
  .contact_section .right_side form .form_elm select {
    padding: 0;
    padding-left: 5px;
    font-size: 14px;
  }
  .contact_section .right_side form .send_message {
    gap: 5px;
  }
  .contact_section .right_side form .send_message button {
    padding: 15px 25px;
    border-radius: 20px;
    font-size: 14px;
  }
  .contact_section .right_side form .send_message p {
    font-size: 10px;
  }
}
.section_faqs {
  padding: 64px 0;
}
.section_faqs small {
  color: #7E7E7E;
  font-family: "Spectral", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 98%;
}
.section_faqs h2 {
  background: linear-gradient(135deg, #652682 7.29%, #CC1F5A 72.92%, #EB1787 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 47.04px */
}
.section_faqs p {
  color: #1F1F1F;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
}
.section_faqs .accordion-container .ac {
  background-color: transparent !important;
  border: 0;
  border-bottom: 1px solid #CBCBCB;
  padding: 25px 30px;
}
.section_faqs .accordion-container .ac.is-active .ac-header button::after {
  transform: rotate(180deg) translateY(50%) !important;
}
.section_faqs .accordion-container .ac .ac-header span.number {
  color: #7900B1;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
  width: 50px;
  text-align: left;
}
.section_faqs .accordion-container .ac .ac-header button {
  display: flex;
  align-items: center;
  color: #1F1F1F;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
}
.section_faqs .accordion-container .ac .ac-header button img {
  width: 53px;
  margin-right: 40px;
}
.section_faqs .accordion-container .ac .ac-header button::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  transition: 0.3s;
}
.section_faqs .accordion-container .ac .ac-panel {
  padding-left: 65px;
}

@media (max-width: 1024px) {
  section.section_faqs {
    padding: 34px 0;
  }
  section.section_faqs small {
    font-size: 20px;
  }
  section.section_faqs h2 {
    font-size: 25px;
    margin: 10px 0;
  }
  section.section_faqs p {
    font-size: 12px;
  }
  section.section_faqs .accordion-container .ac {
    background-color: transparent !important;
    border: 0;
    border-bottom: 1px solid #CBCBCB;
    padding: 15px 0px;
  }
  section.section_faqs .accordion-container .ac .ac-header button {
    font-size: 12px;
    align-items: flex-start;
  }
  section.section_faqs .accordion-container .ac .ac-header button .number {
    padding-right: 10px;
  }
  section.section_faqs .accordion-container .ac .ac-panel {
    padding-left: 0;
  }
}
.page_404 {
  padding: 80px 0;
}
.page_404 .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.page_404 small {
  color: #F05D5E;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 53.933px; /* 112.36% */
  letter-spacing: -0.96px;
}
.page_404 h2 {
  color: rgba(31, 31, 31, 0.75);
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 53.933px;
  letter-spacing: -0.96px;
  max-width: 692px;
}
.page_404 p {
  color: #1F1F1F;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.652px;
  letter-spacing: 0.36px;
  max-width: 692px;
}
.page_404 a {
  display: flex;
  align-items: center;
  color: #7900B1;
  font-family: Univers LT Std;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  gap: 10px;
}
.page_404 a i {
  transition: 0.3s;
  font-size: 14px;
}
.page_404 a:hover i {
  margin-left: 5px;
}

@media (max-width: 1024px) {
  .page_404 {
    padding: 40px 0;
  }
  .page_404 .container {
    gap: 20px;
  }
  .page_404 small {
    font-size: 32px;
  }
  .page_404 h2 {
    font-size: 25px;
    line-height: 1.2em;
  }
  .page_404 p {
    font-size: 14px;
  }
  .page_404 a {
    font-size: 16px;
    gap: 5px;
  }
}/*# sourceMappingURL=main.css.map */