/**
*	ROOT
*	=======================================================================================================
**/

:root {
  --font-display: "kohinoor", sans-serif;
  --base-size-font: 16px;
  --color-blue: #003057;
  --color-red: #e1251b;
  --color-black: #000000;
  --color-gray: #b1b1b1;

  --container-width: 1200px;
  --shadow-soft: 0 22px 70px rgba(77, 77, 77, 0.08);
  --transition: all 0.35s ease;
}

/**
*	PRELOADER
*	=======================================================================================================
**/

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: preloader-rotate 7s linear infinite;
}

.preloader__logo {
  position: relative;
  z-index: 1;
  width: 68px;
  height: auto;
  animation: preloader-pulse 1.6s ease-in-out infinite;
}

@keyframes preloader-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloader-pulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.65;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

/**
*	BASE
*	=======================================================================================================
**/

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  font-size: var(--base-size-font);
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-black);
}

p {
  margin: 0 0 15px;
}
section {
    padding: 40px 0;
    overflow-x: clip!important;
}
/**
*	UTILIDADES
*	=======================================================================================================
**/

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.d-flex {
  display: flex;
}

.text-red {
  color: var(--color-red);
}

/**
*	CONTAINER
*	=======================================================================================================
**/

.container {
  position: relative;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/**
*	HEADER
*	=======================================================================================================
**/

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 45px;
}
.header__nav {
  display: none;
  align-items: center;
  gap: 5rem;
}
.header__menu {
  display: flex;
  gap: 45px;
}

.header__menu li a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: #fff;
  font-weight: 400;
  transition: var(--transition);
}

.header__menu li a:hover {
  color: var(--color-red);
}

.header__social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header__social a {
  display: flex;
  align-items: center;
}

.header__social img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header__nav {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
  .header__menu li a {
    font-size: 1rem;
  }
}

/**
*	NAV-DOTS
*	=======================================================================================================
**/

.nav-dots {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 80px;
  height: 100vh;
  z-index: 99;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--color-blue);
  transition: border-color var(--transition);
}

.nav-dots__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 180px;
  position: relative;
}

.nav-dots__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
  z-index: -1;
  transition: var(--transition);
}
.nav-dots__item {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: #fff;
    cursor: pointer;
    padding: 0;
    transform: scale(0.833);
    transition: transform var(--transition),
    background var(--transition),
    opacity var(--transition);
}

.nav-dots__item--active {
  background: var(--color-red);
  transform: scale(1);
}

.nav-dots__item:hover:not(.nav-dots__item--active) {
  opacity: 0.65;
}

/* Sobre fondo oscuro → borde y dots blancos */
.nav-dots--on-dark {
  border-right-color: rgba(255, 255, 255, 0.35);
}

/* Sobre fondo claro → borde azul, línea gris, dots azules */
.nav-dots--on-light {
  border-right-color: var(--color-blue);
}
.nav-dots--on-light .nav-dots__line {
  background: var(--color-blue);
}

.nav-dots--on-light .nav-dots__item {
  background: var(--color-blue);
}

.nav-dots--on-light .nav-dots__item--active {
  background: var(--color-red);
}

@media screen and (min-width: 980px) {
  .nav-dots {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	ISOLOGO FIJO
*	=======================================================================================================
**/

.isologo-fixed {
  position: fixed;
  top: 16px;
  left: 15px;
  z-index: 200;
  opacity: 0;
  transform: translateY(-8px);
  transition: var(--transition);
  pointer-events: none;
}

.isologo-fixed--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.isologo-fixed img {
  width: 48px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.isologo-fixed--on-light img {
  filter: none;
}

/**
*	SOCIAL FIJO
*	=======================================================================================================
**/

.social-fixed {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.social-fixed--visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

.social-fixed a {
  display: flex;
  align-items: center;
}

.social-fixed img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: var(--transition);
}

.social-fixed img:hover {
  opacity: 1;
}

/* Sobre fondo claro → íconos oscuros */
.social-fixed--on-light img {
  filter: brightness(0);
}

@media screen and (max-width: 979px) {
  .social-fixed {
    display: none;
  }
}

/**
*	HOME
*	=======================================================================================================
**/

/**
*	HAMBURGER
*	=======================================================================================================
**/

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 600;
}

.header__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-blue);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media screen and (min-width: 980px) {
  .header__burger {
    display: none;
  }
}

/**
*	MOBILE MENU
*	=======================================================================================================
**/

.mobile-menu {
  position: fixed;
  top: 145px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  background: var(--color-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.mobile-menu__link {
  font-size: 1.65rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 12px 32px;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
}

.mobile-menu__link:hover {
  color: var(--color-red);
}

.mobile-menu__social {
  display: flex;
  gap: 22px;
}

.mobile-menu__social a {
  display: flex;
  align-items: center;
}

.mobile-menu__social img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.mobile-menu__social img:hover {
  opacity: 1;
}

@media screen and (min-width: 980px) {
  .mobile-menu {
    display: none;
  }
}

/** HOME - HERO ============== **/
.block-white-header {
  position: relative;
  height: 130px;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  justify-content: space-between;
  margin: 0 -1.5rem;
}
.block-white-header img {
    width: 180px;
    height: auto;
}
.hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--color-blue);
  color: #fff;
  padding: 0;
}

.hero__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
}
.hero__content {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 0;
  justify-content: space-between;
}
.hero-item h1 {
    font-size: 2.7rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-item h1 strong {
  color: var(--color-red);
}

.hero-item p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.hero__image {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.hero-item {
  padding: 65px 0;
  text-align: center;
}
.hero__tagline {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px 0;
}
.hero__tagline p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .hero__inner {
    grid-template-columns: 47% 53%;
  }
  .hero__image {
    min-height: auto;
  }
  .hero__content {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: max(
      1.5rem,
      calc((100vw - var(--container-width)) / 2 + 1.5rem)
    );
  }

  .hero-item h1 {
    font-size: 3.2rem;
  }
  .block-white-header {
    height: 157px;
    padding: 0 1.5rem;
    justify-content: flex-start;
  }
  .hero-item {
    padding-right: 0 50px 0 0;
    text-align: left;
    margin-right: 30px;
}
  .hero-item p {
    max-width: 375px;
  }
  .hero__tagline {
    margin-right: 30px;
  }
  .block-white-header {
    width: 100%;
    height: 145px;
    margin: 0;
  }
  .block-white-header::before {
    background-color: #fff;
    content: "";
    position: absolute;
    width: 600px;
    height: 100%;
    left: -600px;
    top: 0;
  }
  .block-white-header img {
  width: 206px;
  height: auto;
}
}
@media screen and (min-width: 1280px) {
  .hero-item h1 {
    font-size: 3.3rem;
  }
}

/** HOME - SECCIÓN PRESENTACIÓN ============== **/

.presentation {
  background: #fff;
  padding: 0;
  overflow: visible;
  min-height: 100vh;
}

.presentation__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 60px;
  padding-bottom: 80px;
}

.presentation__content {
  padding-right: 0;
}
.presentation__title {
  font-size: 2.1rem;
  font-weight: 300;
  color: var(--color-blue);
  line-height: 1.3;
  margin-bottom: 24px;
}
.presentation__title strong {
  font-weight: 700;
}

.presentation__content p {
  font-size: 0.92rem;
  color: #333;
  line-height: 1.7;
}
.presentation__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  margin-top: 45px;
}
.presentation__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.presentation__feature img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.presentation__feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.5;
  color: #333;
  font-size: 0.92rem;
}
.presentation__feature-text strong {
  color: var(--color-blue);
  font-size: 0.92rem;
}

/* Contact form — flota sobre el hero */
.contact-form {
  background: var(--color-red);
  padding: 55px 45px;
  position: relative;
  z-index: 10;
  margin: 40px -1.5rem 0;
}
.contact-form h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
}
.contact-form__field {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}
.contact-form__field p{
  margin-bottom: 0;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  padding: 8px 0;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #fff;
}

.contact-form__field select option {
  color: var(--color-black);
  background: #fff;
}

.contact-form__field select {
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  width: 100%;
}

.contact-form__field--select {
  position: relative;
}

.contact-form__field--select::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.65);
  pointer-events: none;
}

.contact-form__field--textarea {
  border-bottom: none;
}
.contact-form__field--textarea textarea {
    resize: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    max-height: 150px;
}

.contact-form__btn {
  display: block;
  width: 100%;
  background: var(--color-blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: var(--transition);
}

.contact-form__btn:hover {
  background: #002040;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    color: #fff;
    margin: 0;
    font-size: 0.8rem;
    padding: 10px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .presentation__inner {
    grid-template-columns: 55% 45%;
    gap: 70px;
    padding-top: 60px;
    padding-bottom: 100px;
    align-items: start;
    min-height: 100vh;
}
  .presentation__content {
    padding-right: 60px;
    height: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
.contact-form {
    margin: -120px 0 0 0;
    position: sticky;
    top: calc(50% - 330px);
    padding: 60px 70px 40px;
}
  .presentation__features {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .presentation__feature-text {
    font-size: 0.82rem;
  }
  .presentation__feature-text strong {
    font-size: 0.85rem;
  }
  .presentation__title {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1280px) {
  .presentation__title {
    font-size: 2.5rem;
  }
}

/** HOME - SERVICIOS ============== **/

.services {
  padding: 0;
  overflow-x: clip;
  position: relative;
}
.services::after {
  content: "";
  position: absolute;
  top: -145px;
  right: -110px;
  width: 340px;
  height: 340px;
  background-image: url(../images/logo-lines.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.services__inner {
  display: grid;
  grid-template-columns: 1fr;
}
.services__image-col {
  height: 340px;
  overflow: hidden;
  position: relative;
}
.services__content-col {
    position: relative;
    z-index: 5;
    padding: 40px 0 0;
}

.services__title {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-red);
  margin-bottom: 12px;
}
.services__title strong {
  font-weight: 700;
}
.services__intro {
  font-size: 0.92rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0;
}
.service-list {
  background: var(--color-blue);
  color: #fff;
  padding: 30px 1.5rem;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.service-list__item {
    display: flex;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
    line-height: 1.5;
    padding: 18px 0 18px 0;
    width: 100%;
    flex-direction: column;
}
.service-list__item:last-child {
  border-bottom: none;
}
.service-list__name {
  font-weight: 600;
  min-width: auto;
  flex-shrink: 0;
  width: 100%;
}
.services__products-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.services-body__content {
  padding: 30px 1.5rem;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
	.services {
  min-height: 100vh;
}
  .services__inner {
    grid-template-columns: 40% 60%;
    min-height: 680px;
  }
  .services__image-col {
    height: 100%;
    max-height: calc(100vh - 90px);
    background-color: var(--color-blue);
    margin-left: 80px;
  }
  .services__content-col {
    padding: 0;
    margin: 0 0 0 -27px;
  }
  .services__products-image {
    min-height: calc((100vh - 163px) / 2);
    height: 220px;
  }
  .services-body__content {
    padding: 30px 176px 40px 105px;
  }
  .service-list {
    padding: 50px 75px;
    min-height: calc((100vh - 163px) / 2);
  }
  .service-list__item {
    align-items: flex-start;
    font-size: 0.88rem;
    padding: 18px 50px 18px 80px;
    flex-direction: row;
}
.service-list__name {
    width: 265px;
    flex-shrink: 0;
}
	
}
@media screen and (min-width: 1280px) {
  .services__title {
    font-size: 2.5rem;
  }

  .service-list__item {
    font-size: 0.95rem;
  }
}

/**
*	FOOTER
*	=======================================================================================================
**/
.footer {
    background: var(--color-blue);
    color: #fff;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 140px;
    padding: 100px 1.5rem 0;
    overflow-x: clip;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #043556;
}

.footer__logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo-col img {
  width: 115px;
  height: auto;
}
.footer__title {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 50px;
  text-align: center;
}
.footer__title span {
  color: var(--color-red);
  font-weight: 700;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.92rem;
  text-align: center;
}
.footer__contacts .footer__contact:last-child {
  border-right: 0;
}

.footer__contact-name {
  color: var(--color-red);
  font-size: 0.95rem;
  font-weight: 700;
}
.footer__contact a {
  color: #fff;
  transition: var(--transition);
}
.footer__contact a > span {
  color: var(--color-red);
}

/* Bloque de imagen con rectángulo rojo detrás */
.footer__image-col {
  position: relative;
  height: stretch;
}

.footer__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.footer__image-bg {
  position: relative;
  width: 234px;
  height: 100%;
  background: var(--color-red);
}
.footer__image-wrapper img {
  position: absolute;
  z-index: 1;
  width: 425px;
  height: 350px;
  object-fit: cover;
  object-position: center;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  display: none;
}
/* Copyright */
.footer__copyright {
  padding: 40px 0;
}

.footer__copyright-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer__copyright-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #fff;
}

.footer__copyright-left a {
  display: flex;
  align-items: center;
}

.footer__copyright-left img {
  height: 18px;
  width: auto;
}

.footer__copyright-center {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__copyright-center a {
  display: flex;
  align-items: center;
}

.footer__copyright-center img {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.footer__copyright-right {
  font-size: 0.8rem;
  color: #fff;
}

@media screen and (min-width: 580px) {
  .footer__contacts {
    flex-direction: row;
    gap: 80px;
    justify-content: center;
  }
}
@media screen and (min-width: 980px) {
  .footer {
    padding-top: 140px 0 0;
  }
  .footer__inner {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
  }
  .footer__logo-col {
    justify-content: center;
    align-items: center;
    min-height: 481px;
    width: 40%;
  }
  .footer__copyright-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer__content-col {
    width: 40%;
  }
  .footer__image-wrapper img {
    display: flex;
  }
  .footer__logo-col img {
    width: 230px;
  }
  .footer__title {
    font-size: 1.7rem;
    text-align: left;
    margin-bottom: 30px;
  }
  .footer__contacts {
    align-items: flex-start;
    gap: 40px;
  }
  .footer__contact {
    font-size: 0.85rem;
    padding-right: 40px;
    border-right: 1px solid #ffffff73;
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
  .footer__title {
    font-size: 3.3rem;
  }
}

/**
*	404
*	=======================================================================================================
**/

.error-404 {
    position: relative;
    background: var(--color-blue);
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}
.error-404__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.error-404__lines {
  width: 60vw;
  max-width: 600px;
  height: auto;
  opacity: 0.08;
  filter: brightness(0) invert(1);
}
.error-404__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 200px;
    padding-bottom: 0px;
    text-align: center;
}
.error-404__code {
  display: block;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-red);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.error-404__title {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.2;
}

.error-404__text {
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.error-404__btn {
  display: inline-block;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 16px 40px;
  text-decoration: none;
  transition: var(--transition);
}

.error-404__btn:hover {
  background: #c01e14;
}

/**
*	PARTNERS - HOME
*	=======================================================================================================
**/
#partners{
	padding:80px 0;
}
.partner__wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}
.partners__content{
	width: 100%;
}
.partners__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
}
.partners__grid img {
    max-width: 180px;
    display: flex;
    margin: 0 auto;
}
.partners__title {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-blue);
    line-height: 1.3;
    margin-bottom: 24px;
	text-align: center;
}
.partners__title strong {
    font-weight: 700;
}

@media screen and (min-width: 580px) {
	.partners__grid {
    grid-template-columns: repeat(3, 1fr);
}
}
@media screen and (min-width: 980px) {
	.partner__wrapper {
    flex-direction: row;
}
	.partners__content{
	width: 30%;
}
.partners__grid {
    width: 70%;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
.partners__title {
    font-size: 2.5rem;
    margin-bottom: 0;
	text-align: left;
}
}
@media screen and (min-width: 1280px) {
}



/**
*	CLIENTS - HOME
*	=======================================================================================================
**/
#clients{
	padding:0;
}
.clients__inner {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 680px;
}
.clients__image-col {
	height: 100%;
	max-height: calc(100vh - 90px);
}
.clients__content {
    padding: 60px 1.5rem;
}
.clients__title {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-blue);
    line-height: 1.3;
    margin-bottom: 40px;
	text-align: center;
}
.clients__title strong {
    font-weight: 700;
}
.clients__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.clients__grid img {
    max-width: 110px;
    display: flex;
    margin: 0 auto;
}

@media screen and (min-width: 580px) {
	.clients__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 60px;
}
}
@media screen and (min-width: 980px) {
	.clients__inner{
	grid-template-columns: 50% 50%;
}
.clients__title {
    font-size: 2.5rem;
	text-align: left;
}
	.clients__image-col {
	margin-left: 80px;
}
	.clients__content {
    padding: 60px;
    padding-right: max(1.5rem, calc((100vw - var(--container-width)) / 2 + 1.5rem));
}
}
@media screen and (min-width: 1280px) {
}


.wpcf7-not-valid-tip {
    color: #a9a9a9;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0;
    border: 1px solid #00a0d2;
    color: #fff;
    font-size: 0.9rem;
}