@charset "UTF-8";
:root {
  --color-black: #000;
  --color-white: #fff;
  --accent-color: #15bab1;
  --accent-color-2: #063735;
  --color-primary: #063735;
  --color-primary-dark: #042a29;
  --color-secondary: #15bab1;
  --color-secondary-dark: #11928e;
  --color-bg: #ffffff;
  --color-text: #232323;
  --color-grey: #ededed;
  --color-accent: #15bab1;
  --color-accent-dark: #11928e;
  --color-border: #dadada;
  --accent-background-color: #e8ebeb;
  --page-max-width: 1920px;
  --container-padding: 123px;
  --fancybox-bg: rgba(24, 24, 27, 0.5);
  --input-error-background-color: #fce7e7;
  --input-error-border-color: #faababbd;
  --tooltip-background-color: #fff;
  --hs-menu-line-color: #da2127;
  --font-family-main: "Outfit", sans-serif;
  --font-family-accent: "Outfit", sans-serif;
}

@media (max-width: 1600px) {
  :root {
    --container-padding: 5%;
  }
}
@media (max-width: 1500px) {
  :root {
    --container-padding: 3%;
  }
}
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family-main);
}

body {
  margin: 0;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

main {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

p {
  font-family: var(--font-family-main);
}

.site-container {
  min-height: 400px;
}

.is-hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

/* Header Start */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header.header--index .header__main {
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.header--index.header--scrolled .header__main {
  background: rgba(56, 56, 56, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header__top {
  background: #2b2b2b;
  padding: 12px 0;
}
@media (max-width: 1100px) {
  .header__top {
    display: none;
  }
}
.header__top-content {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}
.header__top-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header__top-link svg {
  flex-shrink: 0;
}
.header__top-link:hover {
  color: var(--color-accent);
}
.header__top-link--login {
  margin-left: 16px;
}
.header__top-link--login svg {
  fill: none;
}
.header__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}
.header__social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.3s ease;
}
.header__social:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}
.header__social svg {
  width: 32px;
  height: 32px;
}
.header__main {
  background: #383838;
  padding: 20px 0;
  position: relative;
  z-index: 1001;
}
.header__main-content {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header__logo:hover {
  opacity: 0.8;
}
.header__logo-icon {
  width: 48px;
  height: auto;
}
@media (max-width: 1100px) {
  .header__logo-icon {
    width: 40px;
  }
}
.header__logo-text {
  height: 32px;
  width: auto;
}
@media (max-width: 1100px) {
  .header__logo-text {
    height: 28px;
  }
}
@media (max-width: 576px) {
  .header__logo-text {
    display: none;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1100px) {
  .header__right {
    display: none;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav-link {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.header__nav-link:hover {
  color: var(--color-accent);
}
.header__nav-link:hover::after {
  width: 100%;
}
.header__nav-link--active {
  color: var(--color-accent);
}
.header__nav-link--active::after {
  width: 100%;
}
.header__cta {
  padding: 12px 28px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.header__cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 186, 177, 0.3);
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  width: 28px;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__burger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.header__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: #383838;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding-top: 75px;
}
.header__mobile-menu.is-open {
  transform: translateX(0);
}
@media (min-width: 1101px) {
  .header__mobile-menu {
    display: none;
  }
}
.header__mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.header__mobile-link {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
}
.is-open .header__mobile-link {
  opacity: 1;
  transform: translateX(0);
}
.is-open .header__mobile-link:nth-child(1) {
  transition-delay: 0.05s;
}
.is-open .header__mobile-link:nth-child(2) {
  transition-delay: 0.1s;
}
.is-open .header__mobile-link:nth-child(3) {
  transition-delay: 0.15s;
}
.is-open .header__mobile-link:nth-child(4) {
  transition-delay: 0.2s;
}
.is-open .header__mobile-link:nth-child(5) {
  transition-delay: 0.25s;
}
.is-open .header__mobile-link:nth-child(6) {
  transition-delay: 0.3s;
}
.is-open .header__mobile-link:nth-child(7) {
  transition-delay: 0.35s;
}
.is-open .header__mobile-link:nth-child(8) {
  transition-delay: 0.4s;
}
.header__mobile-link:hover {
  color: var(--color-accent);
  padding-left: 8px;
}
.header__mobile-link--active {
  color: var(--color-accent);
}
.header__mobile-link--login {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__mobile-link--login svg {
  flex-shrink: 0;
}
.header__mobile-cta {
  margin-top: 24px;
  padding: 14px 28px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
}
.is-open .header__mobile-cta {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}
.header__mobile-cta:hover {
  background: var(--color-accent-dark);
}
@media (min-width: 1101px) {
  .header {
    max-height: 190px;
    overflow: hidden;
  }
}
@media (min-width: 1101px) and (max-width: 1350px) {
  .header__main-content {
    gap: 28px;
  }
  .header__nav {
    gap: 24px;
  }
  .header__right {
    gap: 28px;
  }
  .header__nav-link {
    font-size: 18px;
  }
  .header__logo-icon, .header__logo-text {
    height: 64px;
    width: auto;
  }
}
@media (min-width: 1351px) {
  .header__nav-link {
    font-size: 20px;
  }
  .header__logo-icon, .header__logo-text {
    height: 80px;
    width: auto;
  }
}

/* Header End */
/* Header Spacer Start */
.header-spacer {
  height: 176px;
}
@media (min-width: 1101px) and (max-width: 1350px) {
  .header-spacer {
    height: 160px;
  }
}
@media (max-width: 1100px) {
  .header-spacer {
    height: 76.36px;
  }
}

/* Header Spacer End */
/* [_paragraph start] */
.par {
  display: grid;
  --par-gap: 5%;
  grid-template-columns: calc((100% - var(--par-gap)) * 0.454545) calc((100% - var(--par-gap)) * 0.545455);
  grid-template-areas: "par__img par__txt";
  -moz-column-gap: var(--par-gap);
  column-gap: var(--par-gap);
  padding-block: 20px;
  max-width: var(--page-max-width);
  margin: auto;
}
.par.par--bg-accent .par__txt {
  background-color: var(--accent-color);
  color: #fff;
}
.par.par--bg-accent .par__txt ul li {
  color: #fff;
}
.par.par--bg-accent .par__txt p {
  color: #fff;
}
.par.par--bg-accent .par__txt .par__txt-footer a {
  color: #fff;
}
.par.par--bg-accent .par__txt .par__text-link {
  color: #fff;
  border-color: #fff;
}
.par.par--bg-accent .par__txt .par__text-link:hover {
  background-color: #fff;
  color: var(--accent-color);
}
.par.par--bg-accent .par__txt .par__subttl {
  color: #fff;
}
.par.par--bg-accent .par__txt .par__subttl::after {
  background-color: var(--accent-color-2);
}
.par.par--bg-accent .par__txt ul li::after {
  background-color: #fff;
}
.par__txt {
  grid-area: par__txt;
  min-width: 0;
  display: flex;
  flex-direction: column;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 150%;
}
.par__txt ul:not(.styled-list) {
  padding: 30px 0 30px 30px;
}
.par__txt-footer {
  border-top: 1px solid #bdbdbd;
  margin-bottom: 25px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 20px;
}
.par__txt-footer__item {
  text-transform: uppercase;
  font-size: clamp(12px, 1vw, 18px);
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
.par__txt-footer__item a {
  color: #000;
}
.par__txt-footer__item svg {
  color: var(--accent-color-2);
}
.par__img {
  grid-area: par__img;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.par__img > img {
  display: block;
  margin: 0 auto;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  position: -webkit-sticky;
  position: sticky;
  top: 230px;
}
.par__swiper-main {
  width: 100%;
  position: relative;
}
.par__swiper-main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.par__swiper-main .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.par__swiper-main .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.par__swiper-main .swiper-button-prev,
.par__swiper-main .swiper-button-next {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.par__swiper-main .swiper-button-prev::after,
.par__swiper-main .swiper-button-next::after {
  font-size: 20px;
}
.par__swiper-main .swiper-button-prev:hover,
.par__swiper-main .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.7);
}
.par__swiper-thumbs {
  width: 100%;
  margin-top: 16px;
}
.par__swiper-thumbs .swiper-slide {
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: 3px solid transparent;
}
.par__swiper-thumbs .swiper-slide:hover {
  opacity: 0.7;
}
.par__swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--accent-color, #15bab1);
}
.par__swiper-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .par__swiper-thumbs .swiper-slide {
    height: 60px;
  }
}
.par__ttl,
.par .title {
  margin-bottom: 10px;
}
.par__subttl {
  color: var(--color-black, #000);
  font-family: var(--font-family-accent);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.par__subttl--center {
  text-align: center;
}
.par__subttl--center::after {
  left: 50%;
  transform: translateX(-50%);
}
.par__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  margin-top: 40px;
  padding-bottom: 25px;
}
.par__text > img {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.par__text-link {
  margin-top: 35px;
  display: inline-block;
  border: 1px solid var(--accent-color);
  padding: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: var(--accent-color);
  transition: 0.3s ease-in-out;
}
.par__text-link:hover {
  background-color: var(--accent-color);
  color: var(--color-white);
}
@media (max-width: 768px) {
  .par__text {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .par {
    grid-template-columns: 100% !important;
    grid-template-areas: "par__img" "par__txt" !important;
    row-gap: unset;
  }
  .par .par__txt {
    padding-top: 5%;
  }
  .par .par__img {
    display: block;
  }
  .par .par__img img {
    display: block;
    margin: 0 auto;
  }
}

.par.par--left {
  grid-template-columns: calc((100% - var(--par-gap)) * 0.454545) calc((100% - var(--par-gap)) * 0.545455);
  grid-template-areas: "par__img par__txt";
}

.par.par--right {
  grid-template-columns: calc((100% - var(--par-gap)) * 0.545455) calc((100% - var(--par-gap)) * 0.454545);
  grid-template-areas: "par__txt par__img";
}

.par.par--center {
  grid-template-columns: 100%;
  grid-template-areas: "par__img" "par__txt ";
}
.par.par--center .par__img {
  display: block;
  margin: 0 auto;
}
.par.par--center .par__img img {
  display: block;
  margin: 0 auto;
}
.par.par--center .par__txt {
  padding: 0;
}

.par__txt.par__txt--center {
  justify-content: center;
}

/* [_paragraph end] */
/* Footer Start */
.footer {
  background-color: #2b2b2b;
  color: #ffffff;
  font-family: var(--font-family-main);
}
.footer__main {
  padding: clamp(48px, 6vw, 80px) var(--container-padding) clamp(32px, 4.5vw, 60px);
}
@media (max-width: 768px) {
  .footer__main {
    padding: 60px var(--container-padding) 40px;
  }
}
.footer__content {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.5fr) minmax(0, 0.5fr) minmax(0, 2fr);
  gap: clamp(28px, 4vw, 60px);
}
@media (max-width: 1200px) {
  .footer__content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 60px;
}
@media (max-width: 768px) {
  .footer__brand {
    gap: 24px;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__logo-icon {
  width: 60px;
  height: auto;
}
.footer__logo-text {
  height: 60px;
  width: auto;
}
.footer__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__social-link:hover {
  background-color: var(--color-accent);
  color: #ffffff;
  transform: translateY(-3px);
}
.footer__social-link svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .footer__social-link {
    width: 36px;
    height: 36px;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
@media (max-width: 1200px) {
  .footer__column--contact {
    grid-column: 1/-1;
  }
}
.footer__column-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 5px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
  overflow-wrap: anywhere;
}
.footer__link:hover {
  color: var(--color-accent);
}
.footer__contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 40px;
}
@media (max-width: 1024px) {
  .footer__contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }
}
@media (max-width: 768px) {
  .footer__contact {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.footer__contact-item {
  display: flex;
  gap: 16px;
  min-width: 0;
  align-items: flex-start;
}
.footer__contact-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  width: 34px;
  height: 34px;
}
@media (max-width: 768px) {
  .footer__contact-icon {
    width: 30px;
    height: 30px;
  }
}
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__contact-label {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}
.footer__contact-value {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.footer__contact-value a {
  transition: color 0.3s ease;
}
.footer__contact-value a:hover {
  color: var(--color-accent);
}
.footer__bottom {
  background-color: #000000;
  padding: 20px var(--container-padding);
}
.footer__bottom-content {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .footer__bottom-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
.footer__copyright {
  font-size: 13px;
}
.footer__credit {
  font-size: 13px;
}
.footer__credit-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__credit-link:hover {
  color: var(--color-accent);
}

/* Footer End */
:root {
  --bg-table-stripe: var(--accent-color-3);
  --b-table: #e3e3e2;
  --caption: #242423;
}

table {
  background-color: transparent;
  border-collapse: collapse;
  font-family: Arial, Helvetica, sans-serif;
}

th {
  text-align: left;
}

.dcf-txt-center {
  text-align: center !important;
}

.dcf-txt-left {
  text-align: left !important;
}

.dcf-txt-right {
  text-align: right !important;
}

.dcf-table caption {
  color: var(--caption);
  font-size: 1.13em;
  font-weight: 700;
  padding-bottom: 0.56rem;
}

.dcf-table thead {
  font-size: 0.84em;
}

.dcf-table tbody {
  border-bottom: 1px solid var(--b-table);
  border-top: 1px solid var(--b-table);
  font-size: 0.84em;
}

.dcf-table tfoot {
  font-size: 0.84em;
}

.dcf-table td,
.dcf-table th {
  padding-right: 1.78em;
}

.dcf-table-bordered,
.dcf-table-bordered td,
.dcf-table-bordered th {
  border: 1px solid var(--b-table);
}

.dcf-table-bordered td,
.dcf-table-bordered th,
.dcf-table-striped td,
.dcf-table-striped th {
  padding-left: 1em;
  padding-right: 1em;
}

.dcf-table-bordered tr:not(:last-child),
.dcf-table-striped tr:not(:last-child) {
  border-bottom: 1px solid var(--b-table);
}

.dcf-table-striped tbody tr:nth-of-type(2n) {
  background-color: var(--bg-table-stripe);
}

.dcf-table thead td,
.dcf-table thead th {
  padding-top: 21px;
  padding-bottom: 11px;
  vertical-align: bottom;
  background-color: #dddddd;
  color: #000;
  font-weight: 400;
  font-size: clamp(12px, 2vw, 14px);
  line-height: 120%;
  text-transform: uppercase;
}

.dcf-table tbody td,
.dcf-table tbody th,
.dcf-table tfoot td,
.dcf-table tfoot th {
  padding-top: 0.75em;
  vertical-align: middle;
  background-color: var(--accent-color-3);
  border-color: #fff;
}

.dcf-table tbody td,
.dcf-table tbody th {
  padding-bottom: 0.75em;
}

.dcf-table-bordered thead th {
  padding-top: 1.33em;
}

.dcf-wrapper-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-bottom: 1em;
  position: relative;
  right: 50%;
  width: 100vw;
}

@media only screen and (max-width: 800px) {
  .dcf-table-responsive thead {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    white-space: nowrap;
  }

  .dcf-table-responsive tr {
    display: block;
  }

  .dcf-table-responsive td {
    -moz-column-gap: 3.16vw;
    column-gap: 3.16vw;
    display: grid;
    grid-template-columns: 1fr 2fr;
    text-align: left !important;
  }

  .dcf-table-responsive.dcf-table-bordered,
.dcf-table-responsive.dcf-table-bordered thead th {
    border-width: 0;
  }

  .dcf-table-responsive.dcf-table-bordered tbody td {
    border-top-width: 0;
  }

  .dcf-table-responsive:not(.dcf-table-bordered) tbody tr {
    padding-bottom: 0.75em;
  }

  .dcf-table-responsive:not(.dcf-table-bordered) tbody td {
    padding-bottom: 0;
  }

  .dcf-table-responsive:not(.dcf-table-bordered):not(.dcf-table-striped) tbody td {
    padding-right: 0;
  }

  .dcf-table-responsive.dcf-table-bordered tbody tr:last-child td:last-child {
    border-bottom-width: 0;
  }

  .dcf-table-responsive tbody td:before {
    content: attr(data-label);
    float: left;
    font-weight: 700;
    padding-right: 1.78em;
  }
}
.dcf-overflow-x-auto {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

.dcf-w-100\% {
  width: 100% !important;
}

.quote-popup {
  padding: 0;
  width: min(1200px, 92vw);
  background-color: var(--accent-background-color);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.283);
  border-radius: 0;
}
.quote-popup__inner {
  padding: clamp(40px, 5vw, 90px) clamp(20px, 4vw, 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote-popup__title {
  font-family: var(--font-family-accent);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 50px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: clamp(28px, 4vw, 55px);
  text-align: center;
}
.quote-popup__form {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote-popup__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  align-items: start;
}
@media (max-width: 700px) {
  .quote-popup__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.quote-popup__input, .quote-popup__textarea,
.quote-popup .jfilestyle input {
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 20px 22px;
  font-family: var(--font-family-main);
  font-size: 20px;
  line-height: 1.2;
}
.quote-popup__input::-moz-placeholder, .quote-popup__textarea::-moz-placeholder, .quote-popup .jfilestyle input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.55);
}
.quote-popup__input:-ms-input-placeholder, .quote-popup__textarea:-ms-input-placeholder, .quote-popup .jfilestyle input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.55);
}
.quote-popup__input::placeholder, .quote-popup__textarea::placeholder,
.quote-popup .jfilestyle input::placeholder {
  color: rgba(0, 0, 0, 0.55);
}
@media (max-width: 550px) {
  .quote-popup__input, .quote-popup__textarea,
.quote-popup .jfilestyle input {
    font-size: 18px;
    padding: 18px 18px;
  }
}
.quote-popup__textarea {
  grid-column: 1/-1;
  min-height: 180px;
  resize: vertical;
}
@media (max-width: 700px) {
  .quote-popup__textarea {
    grid-column: auto;
  }
}
.quote-popup__file {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 700px) {
  .quote-popup__file {
    grid-column: auto;
  }
}
.quote-popup__file-label {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.85);
}
.quote-popup__submit {
  margin-top: clamp(18px, 3vw, 45px);
  margin-inline: auto;
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--color-white);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  padding: 18px 42px;
}
.quote-popup__submit svg {
  color: currentColor;
}
.quote-popup.fancybox__content {
  --carousel-button-svg-width: 14px;
  --carousel-button-svg-height: 14px;
}
.quote-popup.fancybox__content > .carousel__button.is-close {
  top: 20px;
  right: 20px;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.45);
}

.login-popup {
  padding: 0;
  width: min(1200px, 92vw);
  background-color: var(--accent-background-color);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.283);
  border-radius: 0;
}
.login-popup__inner {
  padding: clamp(40px, 5vw, 90px) clamp(20px, 4vw, 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-popup__title {
  font-family: var(--font-family-accent);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 50px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: clamp(28px, 4vw, 55px);
  text-align: center;
}
.login-popup__subtitle {
  font-family: var(--font-family-accent);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 10px;
}
.login-popup__form {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: stretch;
}
.login-popup__input {
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 20px 22px;
  font-family: var(--font-family-main);
  font-size: 20px;
  line-height: 1.2;
}
.login-popup__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.55);
}
.login-popup__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.55);
}
.login-popup__input::placeholder {
  color: rgba(0, 0, 0, 0.55);
}
@media (max-width: 550px) {
  .login-popup__input {
    font-size: 18px;
    padding: 18px 18px;
  }
}
.login-popup__hint {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.55);
}
.login-popup__hint a {
  color: inherit;
  text-decoration: underline;
}
.login-popup__submit {
  margin-top: clamp(18px, 3vw, 45px);
  margin-inline: auto;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--color-white);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  padding: 18px 42px;
}
.login-popup__submit svg {
  color: currentColor;
}
.login-popup.fancybox__content {
  --carousel-button-svg-width: 14px;
  --carousel-button-svg-height: 14px;
}
.login-popup.fancybox__content > .carousel__button.is-close {
  top: 20px;
  right: 20px;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.45);
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-family-main);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 128, 35, 0.3);
}
.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 128, 35, 0.3);
}
.btn--outline {
  background: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}
.btn--outline:hover {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 128, 35, 0.3);
}
@media (max-width: 768px) {
  .btn {
    padding: 12px 30px;
    font-size: 0.8rem;
  }
}

.btn.btn--flex {
  display: flex;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.btn.btn--disabled {
  background: #ccc;
  color: #fff;
  border: 1px solid #ccc;
  pointer-events: none;
  cursor: not-allowed;
}

.btn.btn--loading {
  position: relative;
  pointer-events: none;
}
.btn.btn--loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1em;
  height: 1em;
  -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
  animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}
.btn.btn--loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: inherit;
}

@-webkit-keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%, 95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%, 59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%, 95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%, 59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@-webkit-keyframes round {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes round {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Home Hero Section Start */
.home-hero {
  position: relative;
  width: 100%;
  height: 800px;
  max-height: 800px;
  min-height: 600px;
  overflow: hidden;
}
.home-hero__slider {
  width: 100%;
  height: 100%;
}
.home-hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--page-max-width);
  width: 100%;
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  will-change: transform, opacity;
  transform: translateZ(0);
}
.swiper-slide-active .home-hero__content {
  -webkit-animation: fadeInUp 0.8s ease-out both;
  animation: fadeInUp 0.8s ease-out both;
}
.home-hero__text {
  margin-bottom: 40px;
}
.home-hero__title {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -2.4px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  .home-hero__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .home-hero__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .home-hero__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
.home-hero__description {
  max-width: 900px;
  margin: 0 auto;
}
.home-hero__description p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
@media (max-width: 768px) {
  .home-hero__description p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .home-hero__description p {
    font-size: 14px;
  }
}
.home-hero__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 480px) {
  .home-hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
}
.home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: capitalize;
}
@media (max-width: 480px) {
  .home-hero__btn {
    width: 100%;
    padding: 14px 32px;
    font-size: 15px;
  }
}
.home-hero__btn--primary {
  background-color: var(--color-accent);
  color: #ffffff;
  border: 2px solid var(--color-accent);
}
.home-hero__btn--primary:hover {
  background-color: transparent;
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 186, 177, 0.3);
}
.home-hero__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.home-hero__btn--secondary:hover {
  background-color: #ffffff;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
.home-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.home-hero__nav:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
.home-hero__nav svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.home-hero__nav--prev {
  left: 40px;
}
@media (max-width: 768px) {
  .home-hero__nav--prev {
    left: 20px;
  }
}
@media (max-width: 480px) {
  .home-hero__nav--prev {
    left: 10px;
  }
}
.home-hero__nav--next {
  right: 40px;
}
@media (max-width: 768px) {
  .home-hero__nav--next {
    right: 20px;
  }
}
@media (max-width: 480px) {
  .home-hero__nav--next {
    right: 10px;
  }
}
@media (max-width: 480px) {
  .home-hero__nav {
    width: 40px;
    height: 40px;
  }
  .home-hero__nav svg {
    width: 32px;
    height: 32px;
  }
}
.home-hero .home-hero__pagination {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .home-hero .home-hero__pagination {
    bottom: 50px;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .home-hero .home-hero__pagination {
    bottom: 40px;
    gap: 16px;
  }
}

.home-hero__pagination .swiper-pagination-bullet {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0;
  opacity: 1;
  transition: background-color 0.25s ease;
  cursor: pointer;
  margin: 0 !important;
}
@media (max-width: 768px) {
  .home-hero__pagination .swiper-pagination-bullet {
    width: 80px;
  }
}
@media (max-width: 480px) {
  .home-hero__pagination .swiper-pagination-bullet {
    width: 56px;
  }
}
.home-hero__pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.9);
}

.home-hero__pagination .swiper-pagination-bullet-active {
  background: var(--color-accent);
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Home Hero Section End */
/* START: Home Solutions Section */
.home-solutions {
  background-color: var(--color-primary);
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .home-solutions {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .home-solutions {
    padding: 60px 0;
  }
}
.home-solutions__container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
@media (max-width: 1366px) {
  .home-solutions__container {
    padding: 0 5%;
  }
}
@media (max-width: 1024px) {
  .home-solutions__container {
    padding: 0 3%;
  }
}
@media (max-width: 768px) {
  .home-solutions__container {
    padding: 0 20px;
  }
}
.home-solutions__header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}
@media (max-width: 768px) {
  .home-solutions__header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
}
.home-solutions__header-content {
  max-width: 800px;
  text-align: center;
}
@media (max-width: 768px) {
  .home-solutions__header-content {
    width: 100%;
  }
}
.home-solutions__subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .home-solutions__subtitle {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
.home-solutions__title {
  font-size: 48px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 1024px) {
  .home-solutions__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .home-solutions__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.home-solutions__description p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
@media (max-width: 768px) {
  .home-solutions__description p {
    font-size: 14px;
  }
}
.home-solutions__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .home-solutions__controls {
    position: static;
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
}
.home-solutions__nav {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.home-solutions__nav:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}
.home-solutions__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.home-solutions__nav:disabled:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}
.home-solutions__nav svg {
  width: 24px;
  height: 24px;
}
.home-solutions__view-all {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.home-solutions__view-all:hover {
  color: var(--color-accent);
}
.home-solutions__slider {
  margin: 0 calc(var(--container-padding) * -1);
}
@media (max-width: 1366px) {
  .home-solutions__slider {
    margin: 0 -5%;
  }
}
@media (max-width: 1024px) {
  .home-solutions__slider {
    margin: 0 -3%;
  }
}
@media (max-width: 768px) {
  .home-solutions__slider {
    margin: 0 -20px;
  }
}
.home-solutions__slider .swiper {
  padding: 0 var(--container-padding);
}
@media (max-width: 1366px) {
  .home-solutions__slider .swiper {
    padding: 0 5%;
  }
}
@media (max-width: 1024px) {
  .home-solutions__slider .swiper {
    padding: 0 3%;
  }
}
@media (max-width: 768px) {
  .home-solutions__slider .swiper {
    padding: 0 20px;
  }
}
.home-solutions__slider .swiper-slide {
  height: auto;
}
.home-solutions__card {
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.home-solutions__card:hover {
  transform: translateY(-5px);
}
.home-solutions__card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .home-solutions__card-image {
    height: 220px;
  }
}
.home-solutions__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.home-solutions__card-image .home-solutions__card-image-link {
  display: block;
  width: 100%;
  height: 100%;
}
.home-solutions__card:hover .home-solutions__card-image img {
  transform: scale(1.05);
}
.home-solutions__card-content {
  padding: 40px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .home-solutions__card-content {
    padding: 30px 20px;
  }
}
.home-solutions__card-title {
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .home-solutions__card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.home-solutions__card-text {
  flex: 1;
  margin-bottom: 25px;
}
.home-solutions__card-text p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
@media (max-width: 768px) {
  .home-solutions__card-text p {
    font-size: 14px;
  }
}
.home-solutions__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.home-solutions__card-link svg {
  transition: transform 0.3s ease;
}
.home-solutions__card-link:hover {
  color: var(--color-accent);
}
.home-solutions__card-link:hover svg {
  transform: translateX(4px);
}

/* END: Home Solutions Section */
/* Why Us Section Start */
.why-us {
  background-color: #e8e8e8;
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .why-us {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .why-us {
    padding: 60px 0;
  }
}
.why-us__container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.why-us__header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .why-us__header {
    margin-bottom: 60px;
  }
}
.why-us__subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}
.why-us__header .title {
  margin-bottom: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .why-us__header .title {
    margin-bottom: 20px;
  }
}
.why-us__description {
  font-size: 18px;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .why-us__description {
    font-size: 16px;
  }
}
.why-us__description p {
  margin: 0;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
@media (max-width: 1024px) {
  .why-us__grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.why-us__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-us__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us__icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .why-us__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }
}
.why-us__item-title {
  font-size: 24px;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .why-us__item-title {
    font-size: 22px;
  }
}
.why-us__item-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #333;
}
.why-us__item-description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .why-us__item-description {
    font-size: 15px;
  }
}
.why-us__item-description p {
  margin: 0;
}
.why-us__link {
  font-size: 16px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.why-us__link:hover {
  color: var(--color-accent);
}

/* Why Us Section End */
/* START: Certifications Section */
.certifications {
  padding: 80px 0;
  background-color: var(--color-white);
}
@media (max-width: 768px) {
  .certifications {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .certifications {
    padding: 40px 0;
  }
}
.certifications__container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1024px) {
  .certifications__container {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .certifications__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.certifications__container > .title {
  white-space: nowrap;
  flex-shrink: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .certifications__container > .title {
    white-space: normal;
  }
}
.certifications__logos {
  display: grid;
  grid-template-columns: repeat(3, 1FR);
  max-width: 1400px;
  gap: 40px;
  justify-items: end;
}
@media (max-width: 1024px) {
  .certifications__logos {
    gap: 30px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .certifications__logos {
    justify-items: start;
    gap: 25px;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
@media (max-width: 480px) {
  .certifications__logos {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.certifications__logo {
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.certifications__logo img {
  display: block;
  max-width: 100%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 768px) {
  .certifications__logo img {
    max-height: 50px;
  }
}
@media (max-width: 480px) {
  .certifications__logo img {
    max-height: 40px;
  }
}
.certifications__logo:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}

/* END: Certifications Section */
/* START: CTA Section */
.cta {
  background-color: var(--color-primary);
  padding: 80px 0;
}
@media (max-width: 991px) {
  .cta {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .cta {
    padding: 50px 0;
  }
}
.cta__container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
@media (max-width: 1440px) {
  .cta__container {
    padding: 0 5%;
  }
}
@media (max-width: 991px) {
  .cta__container {
    padding: 0 3%;
  }
}
@media (max-width: 767px) {
  .cta__container {
    padding: 0 20px;
  }
}
.cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 991px) {
  .cta__content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}
.cta__content > .title {
  flex: 0 0 45%;
  font-size: clamp(32px, 4vw, 50px);
}
@media (max-width: 991px) {
  .cta__content > .title {
    flex: 1;
  }
}
.cta__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 991px) {
  .cta__right {
    align-items: center;
  }
}
.cta__text-wrapper p {
  font-family: var(--font-family-main);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
@media (max-width: 767px) {
  .cta__text-wrapper p {
    font-size: 15px;
  }
}
.cta__actions {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .cta__actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
}
.cta__btn {
  padding: 16px 40px;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}
@media (max-width: 767px) {
  .cta__btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 15px;
  }
}
.cta__btn--primary {
  background-color: var(--color-accent);
  color: #ffffff;
  border: 2px solid var(--color-accent);
}
.cta__btn--primary:hover {
  background-color: transparent;
  color: var(--color-accent);
}
.cta__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.cta__btn--secondary:hover {
  background-color: #ffffff;
  color: var(--color-primary);
}

/* END: CTA Section */
/* Facility Section Start */
.facility {
  background-color: var(--color-primary);
  padding: 80px 0;
}
@media (max-width: 768px) {
  .facility {
    padding: 60px 0;
  }
}
.facility__container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.facility__title {
  font-family: var(--font-family-main);
  font-size: 48px;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}
@media (max-width: 1500px) {
  .facility__title {
    font-size: 42px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .facility__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.facility__gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1500px) {
  .facility__gallery {
    gap: 15px;
  }
}
@media (max-width: 1200px) {
  .facility__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .facility__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.facility__image {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.facility__image:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.facility__image:hover .facility__play-button {
  transform: translate(-50%, -50%) scale(1.1);
}
.facility__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.facility__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  transition: transform 0.3s ease;
}
.facility__play-button svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Swiper Pagination Styling */
.facility-pagination {
  position: relative;
  bottom: 0 !important;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .facility-pagination {
    margin-top: 40px;
  }
}

.facility-pagination .swiper-pagination-bullet {
  width: 60px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 0;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 !important;
}
@media (max-width: 768px) {
  .facility-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 2px;
  }
}

.facility-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-accent);
  width: 60px;
}
@media (max-width: 768px) {
  .facility-pagination .swiper-pagination-bullet-active {
    width: 40px;
  }
}

/* Facility Section End */
/* Contact Map Start */
.contact-map {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.contact-map__link {
  display: block;
  position: relative;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
}
.contact-map__image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 768px) {
  .contact-map__image {
    max-height: 400px;
  }
}
.contact-map__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 74, 70, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.contact-map__marker {
  background: #ffffff;
  padding: 24px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
  .contact-map__marker {
    padding: 20px 24px;
  }
}
.contact-map__marker-logo {
  width: 80px;
  height: auto;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .contact-map__marker-logo {
    width: 60px;
    margin-bottom: 12px;
  }
}
.contact-map__marker-address {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  font-weight: 600;
}
@media (max-width: 576px) {
  .contact-map__marker-address {
    font-size: 14px;
  }
}

/* Contact Map End */
/* Contact Section Start */
.contact-section {
  /* Left Column - Info */
  /* Right Column - Form */
}
.contact-section__container {
  max-width: var(--page-max-width);
  margin: 0 auto;
}
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 992px) {
  .contact-section__grid {
    grid-template-columns: 1fr;
  }
}
.contact-section__info {
  padding: 80px 60px;
}
@media (max-width: 1100px) {
  .contact-section__info {
    padding: 60px 40px;
  }
}
@media (max-width: 992px) {
  .contact-section__info {
    padding: 60px var(--container-padding);
  }
}
@media (max-width: 768px) {
  .contact-section__info {
    padding: 50px var(--container-padding);
  }
}
.contact-section__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 40px 0;
  color: #000000;
}
@media (max-width: 768px) {
  .contact-section__title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}
.contact-section__items-row {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .contact-section__items-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
}
.contact-section__item {
  display: flex;
  gap: 16px;
}
@media (max-width: 992px) {
  .contact-section__item {
    margin-bottom: 32px;
  }
}
@media (max-width: 576px) {
  .contact-section__item {
    margin-bottom: 28px;
  }
}
.contact-section__item-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent-color, #15bab1);
}
.contact-section__item-icon svg {
  width: 100%;
  height: 100%;
}
.contact-section__item-content {
  flex: 1;
}
.contact-section__item-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}
.contact-section__item-text {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}
.contact-section__item-text a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-section__item-text a:hover {
  color: var(--accent-color, #15bab1);
}
.contact-section__item-text strong {
  font-weight: 600;
}
.contact-section__description {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin: 32px 0;
}
@media (max-width: 576px) {
  .contact-section__description {
    font-size: 15px;
  }
}
.contact-section__social {
  margin-top: 40px;
}
.contact-section__social-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
}
.contact-section__social-links {
  display: flex;
  gap: 12px;
}
.contact-section__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #b8bfc1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.3s ease;
}
.contact-section__social-link svg {
  width: 20px;
  height: 20px;
}
.contact-section__social-link:hover {
  background: var(--accent-color, #15bab1);
}
.contact-section__form-wrapper {
  background: #084a46;
  padding: 80px 60px;
}
@media (max-width: 1100px) {
  .contact-section__form-wrapper {
    padding: 60px 40px;
  }
}
@media (max-width: 992px) {
  .contact-section__form-wrapper {
    padding: 60px var(--container-padding);
  }
}
@media (max-width: 768px) {
  .contact-section__form-wrapper {
    padding: 50px var(--container-padding);
  }
}
.contact-section__form-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 40px 0;
}
@media (max-width: 768px) {
  .contact-section__form-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

/* Contact Form */
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
}
.contact-form__field--full {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-form__field--full {
    margin-bottom: 16px;
  }
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-family: var(--font-family-main);
  border: none;
  background: #ffffff;
  color: #000000;
  transition: all 0.3s ease;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #666666;
}
.contact-form__input:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder {
  color: #666666;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #666666;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: 2px solid var(--accent-color, #15bab1);
  outline-offset: 0;
}
@media (max-width: 576px) {
  .contact-form__input, .contact-form__textarea {
    padding: 14px 16px;
    font-size: 15px;
  }
}
.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__file-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .contact-form__file-wrapper {
    margin-bottom: 24px;
  }
}
.contact-form__file-label {
  display: block;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 12px;
}
.contact-form__file-btn {
  background: #ffffff;
  border: none;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #084a46;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form__file-btn:hover {
  background: var(--accent-color, #15bab1);
  color: #ffffff;
}
@media (max-width: 576px) {
  .contact-form__file-btn {
    padding: 10px 24px;
  }
}
.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .contact-form__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact-form__required-note {
  font-size: 14px;
  color: #ffffff;
  text-align: right;
}
.contact-form__submit {
  background: transparent;
  border: 2px solid #ffffff;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.contact-form__submit svg {
  width: 20px;
  height: 20px;
}
.contact-form__submit:hover {
  background: var(--accent-color, #15bab1);
  border-color: var(--accent-color, #15bab1);
}
@media (max-width: 576px) {
  .contact-form__submit {
    padding: 10px 24px;
    font-size: 15px;
  }
}

/* Contact Section End */
.finishing-nav {
  background-color: #e8e8e8;
  padding: 0;
}
.finishing-nav__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 20px 40px;
}
@media (max-width: 1100px) {
  .finishing-nav__container {
    gap: 40px;
    padding: 16px 24px;
  }
}
@media (max-width: 768px) {
  .finishing-nav__container {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }
}
.finishing-nav__link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #666666;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .finishing-nav__link {
    font-size: 13px;
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }
}
.finishing-nav__link:hover {
  color: #333333;
}
.finishing-nav__link--active {
  color: #333333;
  border-bottom-color: #333333;
}

/* Career Header Start */
.career-header__container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 992px) {
  .career-header__container {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .career-header__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.career-header__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 530px;
}
.career-header__subttl {
  color: var(--color-black, #000);
  font-family: var(--font-family-accent);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.career-header__right p {
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  margin: 0;
}

/* Career Header End */
/* Career Positions Start */
.career-positions {
  padding: 60px 0;
  background-color: #e8e8e8;
}
@media (max-width: 768px) {
  .career-positions {
    padding: 40px 0;
  }
}
.career-positions__container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 768px) {
  .career-positions__container {
    gap: 60px;
  }
}
.career-positions__department {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .career-positions__department {
    gap: 32px;
  }
}
.career-positions__dept-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  margin: 0;
}
@media (max-width: 768px) {
  .career-positions__dept-title {
    font-size: 28px;
  }
}
.career-positions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .career-positions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .career-positions__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.career-positions__card {
  background: #ffffff;
  padding: 40px 32px;
  border-left: 4px solid var(--accent-color, #15bab1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .career-positions__card {
    padding: 32px 24px;
  }
}
.career-positions__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-left-width: 6px;
}
.career-positions__card:hover .career-positions__card-link {
  color: var(--accent-color, #15bab1);
}
.career-positions__card:hover .career-positions__card-link svg {
  transform: translateX(4px);
}
.career-positions__card:hover .career-positions__card-title {
  color: var(--accent-color, #15bab1);
}
.career-positions__card:active {
  transform: translateY(-2px);
}
.career-positions__card-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: #000000;
  margin: 0;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .career-positions__card-title {
    font-size: 22px;
  }
}
.career-positions__card-text {
  font-size: 16px;
  line-height: 150%;
  color: #666666;
  margin: 0;
  flex: 1;
}
.career-positions__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #666666;
  text-transform: uppercase;
  margin-top: 8px;
  transition: color 0.3s ease;
}
.career-positions__card-link svg {
  transition: transform 0.3s ease;
}

/* Career Positions End */
/* Career Post Start */
.career-post__container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 768px) {
  .career-post__container {
    gap: 48px;
  }
}
.career-post__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.career-post__dept {
  color: var(--color-black, #000);
  font-family: var(--font-family-accent);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.career-post__title {
  margin: 0;
  text-transform: uppercase;
}
.career-post__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .career-post__content {
    gap: 32px;
  }
}
.career-post__section-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 16px 0;
}
.career-post__section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin: 0;
}
.career-post__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.career-post__section ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  padding-left: 24px;
  position: relative;
}
.career-post__section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #000000;
  font-weight: 700;
}
.career-post__footer {
  display: flex;
  gap: 16px;
  padding-top: 20px;
}
@media (max-width: 576px) {
  .career-post__footer {
    flex-direction: column;
  }
}
.career-post__apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--accent-color, #15bab1);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.career-post__apply-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.career-post__apply-btn:hover {
  background: var(--accent-color-dark, #129d95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 186, 177, 0.3);
}
.career-post__apply-btn:active {
  transform: translateY(0);
}
@media (max-width: 576px) {
  .career-post__apply-btn {
    width: 100%;
  }
}
.career-post__back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  background: transparent;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.career-post__back-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.career-post__back-btn:hover {
  background: #000000;
  color: var(--color-white);
}
.career-post__back-btn:hover svg {
  transform: translateX(-4px);
}
.career-post__back-btn:active {
  transform: scale(0.98);
}
@media (max-width: 576px) {
  .career-post__back-btn {
    width: 100%;
  }
}

/* Career Post End */
/* Job Application Popup Start */
.job-application-popup__subtitle {
  color: var(--color-black, #000);
  font-family: var(--font-family-accent);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 8px;
  text-align: center;
}
.job-application-popup__title {
  margin-bottom: 32px;
}

/* Job Application Popup End */
/* FAQ Section Start */
.faq-section__container {
  max-width: var(--page-max-width);
  margin: 0 auto;
}
.faq-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-section__header .title {
  margin-bottom: 16px;
}
.faq-section__description {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}
.faq-section__search-wrapper {
  max-width: 500px;
  margin: 0 auto 60px;
  position: relative;
}
@media (max-width: 768px) {
  .faq-section__search-wrapper {
    margin-bottom: 48px;
  }
}
.faq-section__search {
  width: 100%;
  padding: 16px 56px 16px 20px;
  font-size: 16px;
  border: 1px solid #cccccc;
  background: #ffffff;
  transition: border-color 0.3s ease;
}
.faq-section__search::-moz-placeholder {
  color: #999999;
}
.faq-section__search:-ms-input-placeholder {
  color: #999999;
}
.faq-section__search::placeholder {
  color: #999999;
}
.faq-section__search:focus {
  outline: none;
  border-color: var(--accent-color, #15bab1);
}
@media (max-width: 576px) {
  .faq-section__search {
    padding: 14px 50px 14px 16px;
    font-size: 15px;
  }
}
.faq-section__search-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 56px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.faq-section__search-btn:hover {
  color: var(--accent-color, #15bab1);
}
@media (max-width: 576px) {
  .faq-section__search-btn {
    width: 50px;
  }
}
.faq-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: start;
}
@media (max-width: 992px) {
  .faq-section__grid {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .faq-section__grid {
    grid-template-columns: 1fr;
  }
}
.faq-section__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 992px) {
  .faq-section__column {
    gap: 24px;
  }
}
.faq-section__no-results {
  text-align: center;
  padding: 60px 20px;
  color: #666666;
  font-size: 16px;
  grid-column: 1/-1;
}

/* FAQ Item Start */
.faq-item {
  border: 1px solid #d9d9d9;
  background: #ffffff;
  transition: all 0.3s ease;
}
.faq-item.is-hidden {
  display: none;
}
.faq-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  background: #e8e8e8;
  padding: 24px 32px;
}
@media (max-width: 576px) {
  .faq-item__header {
    gap: 16px;
    padding: 20px 24px;
  }
}
.faq-item__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #000000;
  margin: 0;
  flex: 1;
}
@media (max-width: 576px) {
  .faq-item__title {
    font-size: 16px;
  }
}
.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--accent-color, #15bab1);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.faq-item__icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.faq-item.is-expanded .faq-item__icon svg {
  transform: rotate(45deg);
}
.faq-item__content {
  position: relative;
  background: #ffffff;
  padding: 24px 32px;
}
@media (max-width: 576px) {
  .faq-item__content {
    padding: 20px 24px;
  }
}
.faq-item__text {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin: 0 0 16px 0;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.faq-item.is-expanded .faq-item__text {
  display: block;
  -webkit-line-clamp: unset;
}
@media (max-width: 576px) {
  .faq-item__text {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
.faq-item__toggle-btn {
  background: transparent;
  border: none;
  color: #435c88;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: opacity 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.faq-item__toggle-btn:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.faq-item__toggle-btn::after {
  content: "read more";
}
.faq-item.is-expanded .faq-item__toggle-btn::after {
  content: "read less";
}

/* FAQ Item End */
/* FAQ Section End */
/* [MAIN CSS START] */
.relative {
  position: relative;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.back-to-top:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

.main-container--margin {
  margin-top: 175px;
}

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

.text-block {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  line-height: 150%;
}
.text-block__text {
  margin-top: 30px;
}
.text-block__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.text-block__links > a {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 10px;
  border: 1px solid var(--color-name-200, #9daac1);
  color: #000;
  transition: 0.2s ease;
}
.text-block__links > a.active {
  background-color: var(--color-name-200, #9daac1);
}
.text-block__links > a:hover {
  background-color: var(--color-name-200, #9daac1);
}

.container {
  margin: 0 auto;
  max-width: var(--page-max-width);
}
.container.container--block {
  display: block;
  margin: 0;
}
.container--mar-b-80 {
  margin-bottom: var(--container-margin-bottom);
}

.pa-inline {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.pa-block {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pa-before-footer {
  padding-bottom: 200px;
}

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

.bg-accent-2 {
  background-color: var(--accent-background-color-2);
}

.bg-accent-3 {
  background-color: var(--accent-background-color-3);
}

.bg-accent-4 {
  background-color: #005ea610;
}

input.error {
  border-color: var(--input-error-border-color);
  background-color: var(--input-error-background-color);
}

input,
select,
textarea {
  border: none;
  padding: 15px;
  width: 100%;
}

input:disabled,
select:disabled,
textarea:disabled {
  background-color: #eee;
  border: 1px solid #bdbdbd;
  opacity: 0.8;
}

.title {
  color: var(--color-black, #000);
  text-align: left;
  font-family: var(--font-family-main);
  font-size: clamp(32px, 4vw, 60px);
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  letter-spacing: -2.4px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .title {
    letter-spacing: -1.2px;
  }
}
.title > span {
  color: var(--accent-color);
}
.title--center {
  text-align: center;
}
.title--left {
  text-align: left;
}
.title--right {
  text-align: right;
}
.title--light {
  color: var(--color-white, #fff);
}
.title--large {
  font-size: clamp(40px, 4vw, 72px);
}
.title--small {
  font-weight: 600;
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 5px;
}
.title--mar {
  margin-bottom: 40px;
}

.fc-accent {
  color: var(--accent-color);
}

.fc-white {
  color: var(--color-white);
}

.fc-black {
  color: var(--color-black);
}

.subtitle {
  color: var(--accent-color-2);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nowrap {
  white-space: nowrap;
}

.back-btn {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  color: #61769b;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.2s ease;
}
.back-btn:hover {
  color: var(--accent-color-2);
}

.line-clamp {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  position: relative;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-1 {
  -webkit-line-clamp: 1;
  height: 1.2em;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
  height: 2.4em;
}

.line-clamp-3 {
  -webkit-line-clamp: 3;
  height: 3.6em;
}

.line-clamp-4 {
  -webkit-line-clamp: 4;
  height: 4.8em;
}

.line-clamp-5 {
  -webkit-line-clamp: 5;
  height: 6em;
}

/* End required CSS. */
/* [Pretty checkbox adjustments] */
.pretty {
  white-space: normal;
}
.pretty .state.p-padding label {
  padding-left: 31px;
}
.pretty .state label {
  text-indent: 0;
}
.pretty .state label:after, .pretty .state label:before {
  top: 0;
  background-color: #fff;
  border-radius: 3px;
}
.pretty input:checked ~ .state.p-primary label:after {
  background-color: var(--accent-color) !important;
}
.pretty.p-default input:checked ~ .state label:after {
  background-color: var(--accent-color) !important;
}

.divider {
  border: none;
  border-bottom: 1px solid #bdbdbd;
}

.select2.select2-container .select2-choice {
  padding: 5px 10px;
}

.select2-container--default .select2-selection--single {
  border: none;
  height: 100%;
  padding: 15px;
}

.select2-container--default .select2-selection--single.select2--small {
  padding: 11px 15px;
}

.select2-container--default .select2-selection--single.select2--bordered {
  border: 1px solid #bdbdbd;
  border-radius: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  font-size: 14px;
  line-height: 1;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: linear-gradient(#e0e0e0, #e0e0e0);
  width: 28px;
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #222222 #222222 #222222 #222222;
  border: 1px solid #222222;
  border-width: 0px 2px 2px 0px;
  width: 8px;
  height: 8px;
  margin: 0;
  position: relative;
  top: unset;
  left: unset;
  transform: rotate(45deg);
  transition: 0.3s ease;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: #222222 #222222 #222222 #222222;
  border: 1px solid #222222;
  border-width: 0px 2px 2px 0px;
  width: 8px;
  height: 8px;
  margin: 0;
  position: relative;
  top: unset;
  left: unset;
  transform: rotate(-135deg);
  transition: 0.3s ease;
}

.not-found-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.not-found-page__title {
  font-weight: 500;
  font-size: clamp(25px, 4vw, 38px);
  color: var(--accent-color-4);
  line-height: 100%;
  margin-bottom: 15px;
  padding-left: 20px;
  line-height: 100%;
  position: relative;
}
.not-found-page__subtitle {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-bottom: 30px;
}

/* [MAIN CSS END] */
/* [TOOLTIPS START] */
.tippy-box {
  background-color: #fff;
  color: #000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.tippy-box__inner {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 25px;
}
.tippy-box__image {
  margin-bottom: 15px;
}
.tippy-box__text {
  text-align: center;
}

.tippy-arrow {
  color: #fff;
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 14px 0 14px 14px;
  right: -13px;
  filter: drop-shadow(4px 0px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -13px;
  border-width: 14px 14px 14px 0;
  filter: drop-shadow(-4px 0px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
  border-width: 14px 14px 0;
  bottom: -13px;
  filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  border-width: 0 14px 14px;
  top: -13px;
  filter: drop-shadow(0px -4px 5px rgba(0, 0, 0, 0.1));
}

/* [TOOLTIPS END] */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.video-wrapper.video-wrapper--sm {
  max-width: 950px;
  margin: 0 auto;
  padding-bottom: 40%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}