.text-center {
  text-align: center;
}

.text-underline {
  text-decoration: underline;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-responsive {
  text-align: center;
}
@media (min-width: 1024px) {
  .text-responsive {
    text-align: left;
  }
}

.fs-sm {
  font-size: 13px;
}

.fs-md {
  font-size: var(--fifth-text-font-size);
  line-height: 1.5rem;
}

.bolt {
  font-weight: 700;
}

.d-none {
  display: none;
}

@media (min-width: 1024px) {
  .md\:d-none {
    display: none;
  }
}

.d-block {
  display: block;
}

.d-responsive {
  display: block;
}
@media (min-width: 1024px) {
  .d-responsive {
    display: none;
  }
}

.d-responsive--reverse {
  display: none;
}
@media (min-width: 1024px) {
  .d-responsive--reverse {
    display: flex;
  }
}

.m-0 {
  margin: 0;
}

.m-md {
  margin: 2rem;
}

.mt-auto {
  margin-top: auto;
}

.mt-xlg {
  margin-top: 5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mx-responsive {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .mx-responsive {
    margin-left: 0;
    margin-right: 0;
  }
}

.my-scroll {
  margin-top: 7.063rem;
}
@media (min-width: 1024px) {
  .my-scroll {
    margin-top: 8.75rem;
  }
}
.my-scroll--1 {
  margin-top: 3.563rem;
}
@media (min-width: 1024px) {
  .my-scroll--1 {
    margin-top: 5.25rem;
  }
}

.md\:m-none {
  margin: none;
}

.scroll {
  background-color: var(--primary-theme-color);
}

.f-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.md\:f-elements--between {
  align-items: center;
  justify-content: center;
}

.gap-sm {
  gap: calc(var(--padding-section) * 0.5);
}

.gap-md {
  gap: var(--padding-section);
}

.gap-lg {
  gap: calc(var(--padding-section) * 2.5);
}

@media (min-width: 1024px) {
  .md\:gap-sm {
    gap: calc(var(--padding-section) * 0.5);
  }
}

.gap-responsive {
  gap: calc(var(--padding-section) * 1.5);
}
@media (min-width: 1024px) {
  .gap-responsive {
    gap: calc(var(--padding-section) * 2);
  }
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
  padding: 1rem;
  border-radius: 50%;
  z-index: 999999;
}
.p-fixed--primary {
  bottom: 1rem;
  right: 1rem;
  background-color: var(--secondary-button-color);
}
.p-fixed--secondary {
  bottom: 1rem;
  left: 1rem;
  background-color: #00CC94;
}

.py-sm {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-md {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .py-md {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.py-lg {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 1024px) {
  .py-lg {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.py-responsive {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}
@media (min-width: 1024px) {
  .py-responsive {
    padding-top: 13.5rem;
    padding-bottom: 13.5rem;
  }
}

.px-sm {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-md {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-lg {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.p-responsive {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
}
@media (min-width: 1024px) {
  .p-responsive {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.p-responsive--section {
  padding: 1.875rem;
}
@media (min-width: 1024px) {
  .p-responsive--section {
    padding: 4rem;
  }
}

.p-responsive--cta {
  padding-top: 95px;
  padding-bottom: 31px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 1024px) {
  .p-responsive--cta {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .md\:f-row {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .md\:f-row--reverse {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1024px) {
  .md\:f-col {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .md\:f-elements--start {
    justify-content: start;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .md\:f-elements--center {
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .md\:d-block {
    display: block;
  }
}

.bg-green {
  background-color: var(--primary-bg-color);
}

.bg-green .section__description {
  color: var(--primary-text-color);
}

.bg-dark-green {
  background-color: var(--secondary-bg-color);
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-silver {
  background-color: #F9FAFB;
}

.bg-light {
  background-color: var(--primary-theme-color);
}

.bg-light-green {
  background-color: #56B856;
}

.bg-slide {
  background-color: #F0F9F1;
  border-radius: 48px;
}

.bg-footer {
  background-color: #F0F9F1;
}

.bg-parallax {
  background-image: url("../../assets/img/bg-parallax-1.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  mix-blend-mode: luminosity;
}
@media (min-width: 1024px) {
  .bg-parallax {
    background-image: url("../../assets/img/bg-parallax-2.png");
    /* Full height */
    height: 18.375rem;
    width: 100%;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}

.bg-img {
  background-image: url("../../assets/img/new-bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.bg-img-cta {
  background-image: url("../../assets/img/cta/bg-img-cta.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  /*
  @include desktop{
      background-image: url("../../assets/img/bg-img-2.png");
  }
  */
}

.bg-img-wsp {
  background-image: url("../../assets/img/wsp-hero.png");
  background-size: 191px 266px;
  height: 335px;
  width: 208px;
  background-repeat: no-repeat;
  background-position: bottom 20px left;
}
@media (min-width: 1024px) {
  .bg-img-wsp {
    background-image: url("../../assets/img/wsp-hero-resp.png");
    background-size: 469px 100%;
    height: 518px;
    padding-bottom: 42px;
    background-position: 50% 100%;
  }
}

.w-100 {
  width: 100%;
}

.w-auto {
  width: auto;
}

@media (min-width: 1024px) {
  .md\:w-50 {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .md\:h-360 {
    height: 360px;
  }
}

.border {
  box-shadow: 0 0 0.125rem var(--primary-shadow-color), 0 0 0.25rem var(--primary-shadow-color);
  border-radius: var(--primary-border-radius);
  border: 0.125rem solid var(--reverse-primary-border-color);
  overflow: hidden;
  box-sizing: border-box;
}
.border__dotted {
  border-style: dotted;
  border-width: 0.2rem;
  border-color: var(--primary-theme-color);
}

.border-cta {
  box-sizing: border-box;
  border: 5px solid #FFFFFF;
  border-radius: 15px;
}

.border-rounded {
  box-sizing: border-box;
  border-radius: 24px;
}

.h-0 {
  height: calc(100% - 8.9rem);
  top: 8.9rem;
}

.h-1 {
  height: calc(100% - 5rem);
  top: 5rem;
}

.h-100vh {
  height: 100vh;
}

.h-100 {
  height: 100%;
}

.more {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 82.01%);
  height: 332px;
}

.m-negative {
  margin-top: -332px;
}

.link {
  font-family: var(--primary-font-family);
  font-style: normal;
  font-weight: 300;
  font-size: 28px;
  line-height: 34px;
  /* identical to box height */
  text-align: center;
  text-decoration-line: underline;
  color: #1F8949;
}
@media (min-width: 1024px) {
  .link {
    font-size: 30px;
    line-height: 36px;
  }
}

.link-nav {
  font-family: var(--primary-font-family);
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 34px;
  /* identical to box height */
  text-align: center;
  text-decoration-line: underline;
  color: #4A179D;
}
@media (min-width: 1024px) {
  .link-nav {
    font-size: 30px;
    line-height: 36px;
  }
}

.link-cta {
  font-family: var(--primary-font-family);
  font-style: normal;
  font-weight: 300;
  /* identical to box height */
  text-align: center;
  text-decoration-line: underline;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .link-cta {
    font-size: 30px;
    line-height: 36px;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.button-abs {
  margin: auto;
}
@media (min-width: 1024px) {
  .button-abs {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: 30px;
    z-index: 999;
  }
}

.swiper-auto {
  width: auto !important; /* Ajusta al contenido */
  display: inline-flex; /* No estira el ancho */
}

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

.section {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
}
.section__title {
  font-size: var(--third-text-font-size);
  line-height: 2.25rem;
  font-weight: 800;
}
@media (min-width: 1024px) {
  .section__title {
    font-size: var(--four-text-font-size);
    line-height: 3rem;
  }
}
.section__title--primary {
  text-align: center;
  color: var(--primary-p-color);
}
.section__title--secondary {
  text-align: left;
  color: var(--primary-p-color);
}
.section__title--third {
  text-align: center;
  color: var(--secondary-text-color);
  font-weight: 700;
}
.section__title--fourt {
  text-align: center;
  color: var(--primary-text-color);
  font-weight: 500;
}
@media (min-width: 1024px) {
  .section__title--fourt {
    text-align: left;
  }
}
.section__title--responsive {
  text-align: center;
  color: var(--primary-p-color);
  font-weight: 700;
}
@media (min-width: 1024px) {
  .section__title--responsive {
    text-align: left;
  }
}
.section__subtitle {
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  text-align: left;
}
.section__subtitle--primary {
  color: var(--secondary-text-color);
}
.section__subtitle--secondary {
  color: #80CE66;
}
.section__description {
  margin: 0;
}
.section__description--primary, .section__description--secondary {
  font-size: var(--primary-p-font-size);
  line-height: 1.125rem;
}
@media (min-width: 1024px) {
  .section__description--primary, .section__description--secondary {
    font-size: var(--secondary-p-font-size);
    line-height: 1.375rem;
  }
}
.section__description--primary, .section__description--secondary, .section__description--responsive, .section__description--fourth, .section__description--responsive-1 {
  color: var(--primary-p-color);
}
.section__description--primary {
  text-align: justify;
}
.section__description--secondary {
  text-align: center;
}
.section__description--third {
  text-align: center;
  color: #5a5a5a;
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .section__description--third {
    font-size: 30px;
    line-height: 36px;
  }
}
.section__description--fourth {
  text-align: center;
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .section__description--fourth {
    font-size: 34px;
    line-height: 40px;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.section__description--alternative--fourth {
  text-align: center;
  font-size: 21px;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  color: #1F8949;
}
@media (min-width: 1024px) {
  .section__description--alternative--fourth {
    text-align: center;
    font-family: Urbanist;
  }
}
.section__description--alternative-primary, .section__description--alternative-secondary {
  font-family: Urbanist;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.section__description--alternative-primary {
  color: var(--primary-p-color);
}
.section__description--alternative-secondary {
  color: var(--reverse-primary-text-color);
  text-transform: uppercase;
}
.section__description--responsive {
  text-align: center;
  font-size: 18px;
  font-weight: medium;
  line-height: normal;
}
@media (min-width: 1024px) {
  .section__description--responsive {
    text-align: left;
    font-size: 24px;
  }
}
.section__description--responsive-1 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
@media (min-width: 1024px) {
  .section__description--responsive-1 {
    text-align: left;
    font-size: 48px;
    line-height: 40px;
  }
}
.section__text {
  font-size: var(--fifth-text-font-size);
  line-height: 1.5rem;
  margin: 0;
}
@media (min-width: 1024px) {
  .section__text {
    font-size: var(--third-text-font-size);
    line-height: 2.25rem;
  }
}
.section__text--primary {
  text-align: center;
  color: var(--primary-text-color);
}
.section__text--secondary {
  text-align: left;
  color: var(--primary-text-color);
}
.section__text--alternative {
  text-align: center;
  color: var(--secondary-text-color);
}
.section__text--responsive {
  text-align: center;
  color: var(--primary-text-color);
}
@media (min-width: 1024px) {
  .section__text--responsive {
    text-align: left;
  }
}
.section__p {
  margin: 0;
  font-size: 1.563rem;
  color: var(--reverse-primary-text-color);
  line-height: 1.875rem;
  font-weight: 700;
  text-transform: capitalize;
}
.section__p--primary {
  color: var(--primary-text-color);
}
@media (min-width: 1024px) {
  .section__p {
    font-size: 1.625rem;
  }
}
.section__title, .section__subtitle, .section__description {
  margin: 0;
}
.section__img {
  width: 100%;
  max-width: 450px;
}
@media (min-width: 1024px) {
  .section__img {
    height: auto;
  }
}
.section__img-landing {
  width: 100%;
  max-width: 300px;
}
@media (min-width: 1024px) {
  .section__img-landing {
    max-height: 981px;
    max-width: 560px;
  }
}
.section__img-donacion {
  height: 150px;
}
@media (min-width: 1024px) {
  .section__img-donacion {
    height: auto;
    max-width: 450px;
  }
}
.section__icon {
  width: 160px;
  height: 160px;
}
@media (min-width: 1024px) {
  .section__icon {
    position: absolute;
    top: 20px;
    left: 7%;
    width: 90px;
    height: 90px;
  }
}
.section__list {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
}
.section__link {
  text-decoration: none;
}

.container {
  max-width: auto;
  margin: 0 auto;
  padding-left: var(--padding-container);
  padding-right: var(--padding-container);
}
@media (min-width: 1024px) {
  .container {
    padding-left: var(--padding-responsive);
    padding-right: var(--padding-responsive);
  }
}

.f-elements {
  display: flex;
}
.f-elements--between {
  align-items: center;
  justify-content: space-between;
}
.f-elements--center {
  align-items: center;
  justify-content: center;
}
.f-elements--end {
  align-items: center;
  justify-content: end;
}
.f-elements--responsive {
  flex-direction: column;
}
@media (min-width: 1024px) {
  .f-elements--responsive {
    flex-direction: row;
  }
}
.f-elements--responsive-1 {
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .f-elements--responsive-1 {
    align-items: start;
    justify-content: center;
  }
}
.f-elements--responsive-2 {
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .f-elements--responsive-2 {
    align-items: center;
    justify-content: space-between;
  }
}
.f-elements--responsive-3 {
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .f-elements--responsive-3 {
    align-items: start;
    justify-content: center;
  }
}

.g-elements {
  display: grid;
}
.g-elements--responsive {
  grid-template-columns: 100%;
}
@media (min-width: 1024px) {
  .g-elements--responsive {
    grid-template-columns: 1fr 1fr;
  }
}
.g-elements--center {
  align-items: center;
  justify-content: center;
  justify-items: center;
}

.g-template-columns {
  grid-template-columns: 100%;
}
@media (min-width: 1024px) {
  .g-template-columns {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .g-template-columns-3fr {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.g-order-responsive {
  order: 0;
}
@media (min-width: 1024px) {
  .g-order-responsive {
    order: 2;
  }
}

.header {
  position: fixed;
  box-shadow: 0 0 0.125rem 0.125rem var(--reverse-primary-shadow-color);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header__container {
  display: flex;
  flex-direction: column;
  position: relative;
}
.header__container-logo {
  margin: 0;
}
.header__container-nav {
  position: relative;
  background-color: var(--primary-theme-color);
}

.social {
  background-color: var(--primary-theme-color);
  box-sizing: border-box;
  padding: 1rem;
}
.social__description {
  color: var(--primary-text-color);
  font-size: 1rem;
  text-align: center;
  margin: 0;
}
@media (min-width: 1024px) {
  .social__description {
    font-size: var(--primary-text-font-size);
  }
}
.social__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.social__nav-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.social__nav-img {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.25s;
}
.social__nav-img:hover {
  transform: scale(1.25);
}

.nav {
  position: relative;
  --translate-list-header: 100%;
  --scale-menu:1;
  --scale-close:0;
  border: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 0rem;
  padding-right: 0rem;
}
.nav:target {
  --translate-list-header: 0; /* --test valor de la variable */
  --scale-menu:0;
  --scale-close:1;
}
@media (min-width: 1024px) {
  .nav:target {
    --scale-close: 0;
  }
}
.nav__logo {
  display: flex;
  max-width: 206px;
  width: 100%;
  height: 25px;
}
@media (min-width: 1024px) {
  .nav__logo {
    height: 36px;
  }
}
.nav__icon {
  position: absolute;
  right: var(--padding-container);
  color: var(--third-text-color);
  font-size: 1.75rem;
  text-decoration: none;
  transition: transform 0.25s;
}
.nav__icon--menu {
  transform: scale(var(--scale-menu));
}
.nav__icon--close {
  transform: scale(var(--scale-close));
}
@media (min-width: 1024px) {
  .nav {
    --translate-list-header: 0;
    --scale-menu:0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list--header {
  position: fixed;
  top: 7.063rem;
  left: 0;
  width: 100%;
  height: calc(100% - 7.063rem);
  background-color: var(--secondary-theme-color);
  transform: translateX(var(--translate-list-header));
  transition: transform 0.25s;
}
.list--header-scroll {
  height: calc(100% - 3.563rem);
  top: 3.563rem;
}
@media (min-width: 1024px) {
  .list--header {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
  }
}
.list__link {
  position: relative;
  color: var(--primary-text-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s;
  font-size: var(--primary-text-font-size);
}
.list__link--contact {
  color: var(--secondary-text-color);
  font-weight: 500;
  font-size: 1.125rem;
}
@media (min-width: 1024px) {
  .list__link--contact {
    font-size: 1.5rem !important;
  }
}
.list__link:hover {
  color: var(--primary-highlight-color);
}
.list__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125rem;
  width: 0;
  height: 0.0625rem;
  background-color: var(--primary-highlight-color);
  transition: width 0.25s;
}
.list__link:hover::before {
  width: 100%;
}
@media (min-width: 1024px) {
  .list__link {
    font-size: var(--nav-primary-font-size);
  }
}
.list__link--menu {
  position: relative;
  color: var(--secondary-text-color);
  text-decoration: none;
  transition: color 0.25s;
  font-size: 16px;
}
.list__link--menu:hover {
  color: var(--secondary-highlight-color);
}
.list__link--menu::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125rem;
  width: 0;
  height: 0.0625rem;
  background-color: var(--secondary-highlight-color);
  transition: width 0.25s;
}
.list__link--menu:hover::before {
  width: 100%;
}
@media (min-width: 1024px) {
  .list__link--menu {
    font-size: var(--nav-primary-font-size);
  }
}

.banner {
  --opacidad-negro: 0.5;
  background-image: url("../../assets/img/banners/banner-home.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  object-fit: cover;
  box-sizing: border-box;
  padding-bottom: 1.813rem;
  background-position: center;
}
.banner__social {
  background-image: linear-gradient(rgba(0, 0, 0, var(--opacidad-negro)), rgba(0, 0, 0, var(--opacidad-negro))), url("../../assets/img/banners/banner-home-2.webp");
}
@media (min-width: 1024px) {
  .banner {
    width: 100%;
  }
}
.banner__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 0;
}
@media (min-width: 1024px) {
  .banner__container {
    height: 35rem;
    width: 50%;
    align-items: flex-start;
    text-align: start;
  }
}
.banner__title, .banner__subtitle, .banner__description {
  margin: 0;
}
.banner__title {
  font-size: 2.125rem;
  color: var(--primary-text-color);
  line-height: 2.125rem;
  font-weight: 900;
}
@media (min-width: 1024px) {
  .banner__title {
    font-size: 6rem;
    line-height: 6.125rem;
  }
}
.banner__title-span {
  color: var(--span-text-color);
  font-size: 1.625rem;
  font-weight: 800;
}
@media (min-width: 1024px) {
  .banner__title-span {
    font-size: 2.125rem;
  }
}
.banner__subtitle {
  font-size: 1.938rem;
  line-height: 2.313rem;
  font-weight: 500;
  color: var(--primary-text-color);
}
@media (min-width: 1024px) {
  .banner__subtitle {
    font-size: 2.188rem;
    line-height: 2.625rem;
  }
}
.banner__description {
  font-size: 1.25rem;
  color: var(--primary-text-color);
}
@media (min-width: 1024px) {
  .banner__description {
    font-size: 1.225rem;
  }
}
.banner__img {
  margin: 0 auto;
  padding: 1rem;
  max-width: 250px;
}
@media (min-width: 1024px) {
  .banner__img {
    max-width: 100%;
  }
}
.banner__img-hero {
  width: 100%;
}

.button {
  background-color: var(--primary-theme-color);
  border: 0.0625rem solid var(--primary-theme-color);
  color: var(--primary-text-color);
  font-size: 1.125rem;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--primary-font-family);
  padding: 0.563rem 1.75rem;
  cursor: pointer;
  transition: box-shadow 0.25s, filter 0.25s, color 0.25s;
  text-align: center;
}
@media (min-width: 1024px) {
  .button {
    padding: 0.563rem 3rem;
  }
}
.button:hover {
  box-shadow: 0 0 0.125rem 0.125rem var(--primary-theme-color);
  filter: brightness(1.125);
  color: var(--reverse-primary-text-color);
}
.button--primary {
  background-color: var(--primary-button-color);
  color: var(--primary-text-color);
}
.button--primary:hover {
  box-shadow: 0 0 0.25rem 0.125rem var(--primary-highlight-color);
}
.button--secondary {
  background-color: var(--secondary-button-color);
  border: 0.0625rem solid var(--secondary-button-color);
  color: var(primary-text-color);
}
.button--secondary:hover {
  box-shadow: 0 0 0.25rem 0.125rem var(--secondary-button-color);
}
.button--cta {
  background-color: var(--primary-highlight-color);
  border: 1px solid #FFF;
  color: var(--primary-text-color);
}
.button--cta:hover {
  box-shadow: 0 0 0.25rem 0.125rem var(--primary-highlight-color);
  border: 0.0625rem solid var(--primary-highlight-color);
}
.button--nav {
  background-color: #F32828;
  border: 3px solid var(--reverse-primary-text-color);
  color: var(primary-text-color);
  font-size: 24px;
}
.button--nav:hover {
  box-shadow: 0 0 0.25rem 0.125rem var(--primary-highlight-color);
}
.button--alternative {
  background-color: #FFFFFF;
  border: 0.0625rem solid #FFFFFF;
  color: var(--primary-p-color);
}
.button--alternative:hover {
  box-shadow: 0 0 0.25rem 0.125rem #FFFFFF;
}
.button--outline-primary {
  background-color: transparent;
  border: 0.0625rem solid var(--primary-text-color);
  color: var(--primary-text-color);
}
.button--outline-primary:hover {
  box-shadow: 0 0 0.25rem 0 var(--primary-highlight-color);
}
.button--outline-secondary {
  background-color: var(--secondary-button-color);
  border: 0.0625rem solid var(--secondary-button-color);
  color: var(--reverse-primary-text-color);
}
.button--outline-secondary:hover {
  box-shadow: 0 0 0.25rem 0 var(--secondary-button-color);
}
.button--slide {
  font-size: 16px;
  font-weight: 500;
  background-color: #ffffff;
  border: 0.0625rem solid #ffffff;
  color: #00A01A;
}
@media (min-width: 1024px) {
  .button--slide {
    font-size: 24px;
  }
}
.button--slide:hover {
  box-shadow: 0 0 0.25rem 0 #ffffff;
}
.button--icon {
  margin: 0;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

@keyframes t-rotate {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.slider {
  width: 100%;
  overflow: hidden;
}

.swiper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.swiper-pagination {
  position: static !important;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  max-width: 360px;
  overflow: hidden;
  margin: auto;
  box-sizing: border-box;
  width: auto;
}
.card__slide {
  width: 268px;
  height: 241px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .card__slide {
    width: auto;
    height: 180px;
  }
}
.card__service {
  width: 100%;
  max-width: 328px;
}
.card__hover {
  transition: box-shadow 0.25s;
  transition: transform 0.25s;
}
.card__hover:hover {
  box-shadow: 0 0 0.25rem 0 var(--third-highlight-color);
  transform: scale(1.125);
}
.card__header, .card__footer {
  padding: 1rem;
}
.card__img {
  display: flex;
  width: 100%;
  height: 448px;
  object-fit: cover;
}
.card__img-service {
  display: flex;
  width: 100%;
  max-width: 100%;
  max-height: 328px;
  object-fit: cover;
}
.card__icon {
  width: 50px;
  height: 50px;
  color: var(--primary-text-color);
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .card__icon {
    width: 72px;
    height: 72px;
  }
}
.card__body {
  background-color: var(--reverse-secondary-shadow-color);
  padding: 1rem;
  height: 180px;
}
.card__body-services {
  color: var(--secondary-text-color);
}
.card__title {
  font-size: var(--secondary-text-font-size);
  margin: 0;
  font-weight: 600;
}
.card__title--primary {
  color: var(--primary-text-color);
  text-align: left;
}
.card__title--secondary {
  color: var(--secondary-text-color);
  text-align: center;
}
.card__subtitle {
  font-size: 1.125rem;
  text-align: center;
  margin: 0;
}
.card__text {
  font-size: var(--primary-p-font-size);
  text-align: center;
  margin: 0;
  color: var(--secondary-text-color);
  line-height: 1.125rem;
}
@media (min-width: 1024px) {
  .card__text {
    font-size: var(--secondary-text-font-size);
    line-height: 1.375rem;
  }
}

.icon {
  width: auto;
  height: 64px;
  animation: pulse 1s ease-in-out infinite;
}

.contact {
  padding-top: 28px;
  padding-bottom: 80px;
}
.contact__title, .contact__description {
  margin: 0;
  color: var(--secondary-text-color);
}
.contact__img {
  display: flex;
  max-width: 360px;
  width: 100%;
  height: 206px;
}
@media (min-width: 1024px) {
  .contact__img {
    max-width: 545px;
    width: 100%;
    height: 358px;
  }
}
.contact__title {
  font-size: var(--third-text-font-size);
  text-align: center;
  line-height: 2.25rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .contact__title {
    font-size: 2.813rem;
    line-height: 3.375rem;
  }
}
.contact__description {
  font-size: var(--primary-p-font-size);
  font-weight: 500;
  line-height: 1.125rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .contact__description {
    font-size: var(--fifth-text-font-size);
    line-height: 1.5rem;
  }
}

.form {
  font-family: var(--primary-font-family);
  padding: 1.125rem;
  width: 100%;
}
.form__img {
  max-width: 360px;
}
@media (min-width: 1024px) {
  .form__img {
    max-width: 450px;
  }
}
.form__legend {
  color: var(--primary-text-color);
  font-size: var(--primary-text-font-size);
  margin: 0;
}
.form__label {
  font-size: var(--primary-text-font-size);
  color: 0.313rem var(--primary-text-color);
}
.form__input, .form__textarea, .form__select {
  padding: 0.5rem;
  border: 1px solid #C4C4C4;
  background-color: #C4C4C4;
}
.form__input, .form__textarea {
  font-family: var(--primary-font-family);
  font-size: var(--nav-primary-font-size);
  color: var(--reverse-primary-text-color);
  font-weight: 500;
}
.form__textarea {
  height: 100px;
}
.form__input::placeholder, .form__textarea::placeholder {
  font-family: var(--primary-font-family);
  font-size: var(--nav-primary-font-size);
  color: #645C5C;
  font-weight: 500;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
}
.form__select {
  font-family: var(--primary-font-family);
  font-size: var(--nav-primary-font-size);
  font-weight: 500;
}
.form__select--disabled {
  color: var(--primary-input-color);
}
.form__select--active {
  color: var(--reverse-primary-text-color);
}

@media (min-width: 1024px) {
  .bg-color {
    background-color: var(--primary-theme-color);
    box-shadow: 0 0 0.125rem var(--primary-shadow-color), 0 0 0.25rem var(--primary-shadow-color);
    border-radius: var(--primary-border-radius);
    overflow: hidden;
    transition: box-shadow 0.25s;
    padding: 2rem 0 3rem 0rem;
    box-sizing: border-box;
  }
}
.bg-color:hover {
  box-shadow: 0 0 0.25rem 0 var(--primary-highlight-color);
}

.footer {
  box-sizing: border-box;
  padding: 0;
}
.footer__title {
  font-size: 1.563rem;
  font-weight: 700;
  color: var(--secondary-text-color);
}
@media (min-width: 1024px) {
  .footer__title {
    font-size: 2.188rem;
  }
}
.footer__title--primary {
  text-align: left;
}
.footer__title--secondary {
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__title--secondary {
    text-align: left;
  }
}
.footer__description {
  margin: 0;
}
.footer__description--primary {
  color: var(--secondary-text-color);
  font-size: 0.563rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__description--primary {
    font-size: var(--primary-text-font-size);
  }
}
.footer__description--secondary {
  font-size: 1rem;
  color: var(--secondary-text-color);
  text-align: center;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .footer__description--secondary {
    font-size: var(--secondary-text-font-size);
    text-align: left;
  }
}
.footer__description--alternative {
  color: var(--primary-text-color);
  font-size: 0.563rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__description--alternative {
    font-size: var(--primary-text-font-size);
  }
}
.footer__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__nav-img {
  width: 2rem;
  height: 2rem;
  transition: transform 0.25s;
}
.footer__nav-img:hover {
  transform: scale(1.25);
}
.footer__logo {
  mix-blend-mode: color-dodge;
}
.footer__new-logo {
  max-width: 320px;
}
.footer__link {
  text-decoration: none;
  font-weight: 700;
  color: var(--secondary-text-color);
}
.footer__link-secondary {
  text-decoration: none;
  font-weight: 700;
  color: var(--primary-text-color);
}

/*# sourceMappingURL=fe.css.map */
