@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  background: #F5F2EF;
}

body.noscroll {
  overflow: hidden;
}

a {
  text-decoration: none;
}

.video {
  position: absolute;
  inset: 0;
  top: 0;
  width: 100%;
  height: max-content;
  max-height: 1900px;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .video {
    height: 90vh;
  }
}

.video video {
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.purple {
  color: var(--primary-light, #877EFF);
  font-weight: 800;
}

.grey {
  color: var(--neutral-500, #767676);
}

.dark {
  color: #000;
}

.yellow {
  color: #FFE20E;
}

.green {
  color: #5EC776;
}

.orange {
  color: #C70C01;
}

.gradient {
  background: var(--primary-gradient, linear-gradient(90deg, #885FFF 0%, #6D31C0 34.13%, #107D74 70.19%, #15CBF1 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fontweight {
  font-weight: 700;
}

*, *::after, *::before {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1880px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .container {
    max-width: 480px;
    padding: 0px 16px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 100%;
  background: #484848;
}
@media screen and (max-width: 480px) {
  .header {
    border: none;
    background: #484848;
  }
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.header-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
}

.header-logo-mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .header-logo-mobile {
    display: block;
    border: none;
    /* Background Blur */
  }
}

.header-logo {
  height: 120px;
}
@media screen and (max-width: 480px) {
  .header-logo {
    display: none;
  }
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(8px, 2vw, 32px);
}

@media screen and (max-width: 480px) {
  .margin {
    margin-bottom: 20px;
  }
}

.header-link {
  position: relative;
  background: none;
  border: none;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.18px;
  text-decoration: none;
  cursor: pointer;
  transition: all 400ms ease-in-out;
}
@media screen and (max-width: 480px) {
  .header-link {
    font-size: 28px;
  }
}

.header-link:hover {
  opacity: 0.6;
}

.header-link-active {
  color: rgba(255, 227, 67, 0.9);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.18px;
}

.header-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  color: var(--000000, #000);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
  border: 1px solid var(--Style, #E7E7DB);
  cursor: pointer;
  background: #E7E7DB;
  overflow: hidden;
  transition: all 500ms ease-in-out;
}

.header-button:hover {
  border: 1px solid var(--4-d-4-d-4-d, #4D4D4D);
  background: var(--ffffff, rgba(255, 255, 255, 0.04));
  color: #fff;
}

.header-button span {
  position: relative;
  z-index: 2;
}

body.menu-open {
  overflow: hidden;
}

.burger {
  display: none;
}

.burger-close {
  display: none;
}

@media screen and (max-width: 480px) {
  .header-inner {
    position: relative;
    justify-content: space-between;
  }
  .burger {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    background: none;
    cursor: pointer;
  }
  .burger-close {
    display: flex;
    position: absolute;
    top: 26px;
    right: 24px;
    background: none;
    width: 38px;
    height: 38px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1002;
  }
  .header-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
    gap: 35px;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    max-height: 700px;
    border-top: 1px solid var(--neutral-devider, #212121);
    background: var(--blak-white-blak, #000);
    /* Card */
    backdrop-filter: blur(12.5px);
    z-index: 1000;
    padding-top: 130px;
    padding-bottom: 50px;
    padding: 130px 30px 50px 30px;
    transition: all 0.3s ease;
  }
  .open {
    display: flex !important;
  }
  .header-link {
    color: rgba(174, 174, 174, 0.9);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px; /* 125% */
    text-align: unset;
  }
  .header-link:not(:last-child) {
    padding-bottom: 34px;
    border-bottom: 1px solid var(--neutral-Card, #303030);
    width: 90%;
  }
  .header-buttons {
    display: none;
  }
}
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Вікно */
.popup {
  background: var(--neutral-800, #000);
  backdrop-filter: blur(6.5px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 90%;
  position: relative;
  animation: fadeIn 0.3s ease;
}
@media screen and (max-width: 480px) {
  .popup {
    padding: 16px;
    border: 1px solid var(--neutral-Card, #303030);
    background: var(--000000, #000);
    height: 98%;
    width: 97%;
  }
}

.popup-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 150px;
}

@media screen and (max-width: 480px) {
  .popup-img-big {
    display: none;
  }
}

.popup-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-context {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.popup-context h3 {
  color: var(--neutral-200, #FFF);
  font-family: Manrope;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.76px;
  text-align: center;
  margin-bottom: 16px;
  max-width: 645px;
}
@media screen and (max-width: 480px) {
  .popup-context h3 {
    font-size: 28px;
  }
}

.popup-context p {
  color: var(--neutral-400, #959595);
  text-align: center;
  font-family: Urbanist;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
  text-align: center;
  max-width: 645px;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .popup-context p {
    margin-bottom: 15px;
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .pop-text br {
    display: none;
  }
}

/* Форма */
.popup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 12px 0;
}
@media screen and (max-width: 480px) {
  .popup-form {
    width: 100%;
    gap: 10px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-field label {
  color: var(--neutral-700, #444);
  /* fontone */
  font-family: Outfit;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  margin-bottom: 4px;
}

.popup-form input, .popup-form textarea {
  border-radius: 12px;
  border: 1px solid var(--neutral-700, #1F1F1F);
  background: rgba(255, 255, 255, 0.06);
  /* Drop Shadow */
  padding: 14px 12px;
  color: var(--neutral-300, #C4C4C4);
  font-family: Urbanist;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 132%; /* 18.48px */
  outline: none;
  width: 100%;
  resize: none;
  transition: all 300ms ease-in-out;
}
@media screen and (max-width: 480px) {
  .popup-form input, .popup-form textarea {
    width: 100% !important;
  }
}

.popup-form input:focus, .popup-form textarea:focus {
  border-radius: 12px;
  border: 1px solid var(--primary-light, #877EFF);
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
  /* green */
}

.popup-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .popup-wrapper {
    width: 100%;
  }
}

/* Кнопка */
.popup-btn {
  width: 100%;
  margin-top: 12px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  color: var(--neutral-100, #FFF);
  font-family: Urbanist;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  background: var(--primary-dark, #5144FF);
  cursor: pointer;
  overflow: hidden;
  transition: all 400ms ease-in-out;
}
@media screen and (max-width: 480px) {
  .popup-btn {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }
}

.popup-btn span {
  position: relative;
  z-index: 2;
}

.popup-btn:hover {
  background: var(--neutral-200, #FFF);
  color: #000;
}

/* Закрити */
.close-popup {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
  color: #5C5A5B;
}

/* Показати */
.popup-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.message-popup-title {
  color: var(--primary-300, #3C3232);
  text-align: center;
  font-family: "Open Sans";
  font-size: clamp(30px, 2vw, 36px);
  font-style: normal;
  font-weight: 700;
  line-height: 1; /* 36px */
  text-transform: uppercase;
  margin-bottom: 48px;
  z-index: 10;
}

.message-popup-text {
  color: var(--primary-200, #4C4648);
  text-align: center;
  /* h2-medium */
  font-family: "Nunito Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 33px */
  z-index: 10;
}

.message-bg {
  position: absolute;
  bottom: 90px;
  left: 0;
  width: 100%;
}

/* контейнер */
.chk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font: 500 14px/1.5 "Inter", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: #2E3554;
}

/* ховаємо нативний чекбокс, але лишаємо його фокусним для доступності */
.chk__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip-path: inset(50%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* візуальна коробка */
.chk__box {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1.5px #96A5FF;
  background: #fff;
  position: relative;
  transition: box-shadow 0.18s ease, background 0.18s ease, transform 0.12s ease;
}
@media screen and (max-width: 480px) {
  .chk__box {
    width: 20px;
    height: 20px;
  }
}

/* галочка (псевдоелемент) */
.chk__box::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 6px;
  border: 2px solid #fff;
  border-top: 0; /* прибираємо верхню лінію */
  border-right: 0; /* прибираємо праву лінію */
  transform: rotate(-45deg) scale(0.6);
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
@media screen and (max-width: 480px) {
  .chk__box::after {
    top: -2px;
  }
}

.chk__input:checked + .chk__box::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

/* стан :checked — синя заливка та видима галочка */
.chk__input:checked + .chk__box {
  background: #5F86FF; /* базовий синій */
  box-shadow: none;
}

/* hover/active */
.chk:hover .chk__box {
  transform: translateY(-0.5px);
}

.chk:active .chk__box {
  transform: translateY(0);
}

/* клавіатурний фокус */
.chk__input:focus-visible + .chk__box {
  outline: 2px solid #7DA2FF;
  outline-offset: 2px;
}

/* disabled */
.chk__input:disabled + .chk__box {
  background: #f0f2f7;
  box-shadow: inset 0 0 0 1.5px #cfd5e6;
}

.chk__input:disabled ~ .chk__label {
  color: #9aa3bd;
  cursor: not-allowed;
}

@media screen and (max-width: 480px) {
  .chk__label {
    color: #22206D;
    font-family: "Onest";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    max-width: 275px;
    width: 100%;
  }
}

.hero {
  margin-top: 120px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .hero {
    margin-top: 87px;
  }
}

.hero-img {
  display: block;
  width: 100%;
  height: 510px;
  max-height: 510px;
  object-fit: cover;
  object-position: center;
}

.hero-title {
  color: #1C1C1C;
  text-align: center;
  font-family: Tektur;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  border-bottom: 1px solid #7E7E7E;
  padding-bottom: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 14px;
  }
}

.info {
  margin-top: 28px;
}

.info-list {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .info-list {
    justify-content: unset;
    margin-bottom: unset;
  }
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (max-width: 480px) {
  .info-row {
    flex-direction: column;
  }
}

.info-item {
  width: 49%;
}
@media screen and (max-width: 480px) {
  .info-item {
    width: 100%;
  }
}
.info-item:only-child {
  width: 49%;
  max-width: 520px;
  margin-inline: auto;
}
@media screen and (max-width: 480px) {
  .info-item:only-child {
    width: 100%;
    max-width: none;
  }
}

.info-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 400ms linear;
}

.info-item img:hover {
  opacity: 0.6;
}

.info-item-title {
  color: #000;
  font-family: Montserrat;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 117.647% */
  max-width: 455px;
  width: 100%;
  margin: 40px 0 18px 0;
}
@media screen and (max-width: 480px) {
  .info-item-title {
    font-size: 26px;
  }
}

.info-item-text {
  color: #000;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 152.941% */
  max-width: 520px;
  width: 100%;
  margin-bottom: 30px;
}

.info-item-link {
  color: #4662BF;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
  letter-spacing: 0.15px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: opacity 400ms ease-in-out;
}
@media screen and (max-width: 480px) {
  .info-item-link {
    display: inline-block;
    border-radius: 25.866px;
    border: 1.125px solid #9D9D9D;
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px; /* 138.889% */
    letter-spacing: 0.18px;
    padding: 12px 17px;
    text-decoration: none;
    margin-bottom: 35px;
  }
}

.info-item-link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 480px) {
  .info-item-link span {
    display: none;
  }
}

.info-item-links {
  display: flex;
  gap: 35px;
}
@media screen and (max-width: 480px) {
  .info-item-links {
    gap: 15px;
    align-items: flex-start;
  }
}

.info-item-pdf {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .info-item-pdf {
    border-radius: 25.866px;
    border: 1.125px solid #9D9D9D;
    padding: 12px 17px;
  }
}

.info-item-pdf a {
  color: #4662BF;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
  letter-spacing: 0.15px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: opacity 400ms ease-in-out;
}
@media screen and (max-width: 480px) {
  .info-item-pdf a {
    color: #000;
    font-family: Montserrat;
    font-size: clamp(13px, 4vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: 25px; /* 138.889% */
    text-decoration: none;
  }
}

.info-item-pdf a:hover {
  opacity: 0.6;
}

.info-item-video {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.info-item-video img,
.info-item-video video,
.info-item-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.article {
  padding-top: 160px;
  padding-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .article {
    padding-top: 110px;
    padding-bottom: 48px;
  }
}
.article .container {
  max-width: 1280px;
}

.article-layout {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
@media screen and (max-width: 900px) {
  .article-layout {
    flex-direction: column;
    gap: 56px;
  }
}

.article-main {
  flex: 1;
  min-width: 0;
  max-width: 780px;
}
@media screen and (max-width: 900px) {
  .article-main {
    max-width: 100%;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #7E7E7E;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.breadcrumbs a {
  color: #4662BF;
  transition: opacity 400ms ease-in-out;
}
.breadcrumbs a:hover {
  opacity: 0.7;
}
.breadcrumbs span:last-child {
  color: #7E7E7E;
}

.article-media {
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 4px;
  background: #1C1C1C;
  aspect-ratio: 16/9;
}
.article-media video,
.article-media iframe,
.article-media img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.article-content h1 {
  color: #000;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 58px; /* 120.833% */
  letter-spacing: -0.48px;
  margin: 0 0 28px;
}
@media screen and (max-width: 480px) {
  .article-content h1 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
  }
}
.article-content h2 {
  color: #1C1C1C;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  margin: 40px 0 20px;
}
@media screen and (max-width: 480px) {
  .article-content h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
.article-content h3 {
  color: #1C1C1C;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  margin: 32px 0 16px;
}
.article-content h4,
.article-content h5,
.article-content h6 {
  color: #1C1C1C;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  margin: 28px 0 12px;
}
.article-content p {
  color: #1C1C1C;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 20px;
}
.article-content p:last-child {
  margin-bottom: 0;
}
.article-content blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid #4662BF;
  background: rgba(70, 98, 191, 0.06);
  color: #1C1C1C;
  font-family: Montserrat;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 26px;
}
.article-content blockquote p {
  margin: 0;
}
.article-content ul,
.article-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
  color: #1C1C1C;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.article-content ul li,
.article-content ol li {
  margin-bottom: 8px;
}
.article-content ul li:last-child,
.article-content ol li:last-child {
  margin-bottom: 0;
}
.article-content ul {
  list-style: disc;
}
.article-content ol {
  list-style: decimal;
}
.article-content figure {
  margin: 28px 0;
}
.article-content figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.article-content figure figcaption {
  margin-top: 10px;
  color: #7E7E7E;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.article-content a {
  color: #4662BF;
  text-decoration: underline;
  transition: opacity 400ms ease-in-out;
}
.article-content a:hover {
  opacity: 0.7;
}
.article-content hr {
  border: 0;
  border-top: 1px solid #D4D0CB;
  margin: 32px 0;
}
.article-content strong {
  font-weight: 600;
}
.article-content em {
  font-style: italic;
}
.article-content .callout {
  position: relative;
  margin: 28px 0;
  padding: 52px 28px;
  display: flex;
  justify-content: center;
  background: #fff;
}
.article-content .callout > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 36px;
  flex-shrink: 0;
  pointer-events: none;
}
.article-content .callout p {
  margin: 0 0 12px;
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  line-height: 26px;
  max-width: 544px;
  width: 100%;
}
.article-content .callout p:last-child {
  margin-bottom: 0;
}
.article-content .callout ul,
.article-content .callout ol {
  margin-bottom: 0;
}
.article-content .callout--info::before {
  display: none;
}
.article-content .callout--warn {
  background: #F3E6D8;
  border-left: 4px solid #C45C26;
}
.article-content .callout--warn::before {
  display: none;
}

.article-sidebar {
  width: 360px;
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  .article-sidebar {
    width: 100%;
  }
}
.article-sidebar h2 {
  color: #1C1C1C;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #D4D0CB;
}
.article-sidebar hr {
  border: 0;
  border-top: 1px solid #D4D0CB;
  margin: 32px 0;
}

.sidebar-item h3 {
  color: #1C1C1C;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  margin: 20px 0 14px;
}
@media screen and (max-width: 480px) {
  .sidebar-item h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
.sidebar-item p {
  color: #1C1C1C;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 12px;
}
.sidebar-item p:last-of-type {
  margin-bottom: 18px;
}
@media screen and (max-width: 480px) {
  .sidebar-item .info-item-link {
    margin-bottom: 0;
  }
}

.sidebar-item-media {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #1C1C1C;
  aspect-ratio: 16/9;
}
.sidebar-item-media video,
.sidebar-item-media iframe,
.sidebar-item-media img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.quote {
  background: rgba(255, 227, 67, 0.9);
}

.quote-inner {
  display: flex;
  justify-content: center;
  padding: 47px 0;
}

.quote p {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 36px; /* 150% */
  max-width: 1031px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .quote p {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #000;
    font-size: 17px;
    line-height: 26px; /* 152.941% */
  }
}

.quote a {
  color: #4662BF;
  font-family: Montserrat;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 36px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-left: 13px;
  transition: opacity 400ms ease-in-out;
}
@media screen and (max-width: 480px) {
  .quote a {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 200% */
    border-radius: 30px;
    text-decoration: none;
    padding: 13px 20px;
    border: 1px solid rgba(131, 117, 33, 0.9);
  }
}

.quote a:hover {
  opacity: 0.6;
}

.quote svg {
  margin-bottom: -7px;
  margin-right: 10px;
}

.quote-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B2C3B2;
  box-sizing: border-box;
}
.quote-block p {
  margin: 0;
  color: #000;
  font-family: Montserrat;
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  line-height: 26px; /* 152.941% */
  text-align: center;
}

.quote-block--single {
  max-width: 700px;
  width: 100%;
  padding: 52px 48px 40px;
  margin: 40px 0;
  clip-path: polygon(0 22px, calc(100% - 26px) 22px, 100% 0, 100% 100%, 32px 100%, 0 calc(100% - 32px));
}

.quote-row--three {
  display: flex;
  align-items: stretch;
  gap: 12px;
  max-width: 700px;
  width: 100%;
  margin: 40px 0;
  padding-top: 18px;
}
.quote-row--three .quote-block {
  flex: 1;
  min-width: 0;
  padding: 32px 20px;
}
.quote-row--three .quote-block--left {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}
.quote-row--three .quote-block--right::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 18px 22px;
  border-color: transparent transparent #B2C3B2 transparent;
}
@media screen and (max-width: 560px) {
  .quote-row--three {
    flex-direction: column;
    gap: 8px;
    padding-top: 0;
  }
  .quote-row--three .quote-block--left {
    clip-path: none;
  }
  .quote-row--three .quote-block--right::before {
    display: none;
  }
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  max-width: 700px;
  width: 100%;
  margin: 40px 0;
  padding-top: 18px;
}
.quote-grid .quote-block {
  padding: 36px 28px;
}
.quote-grid .quote-block--grid-tl {
  clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%, 0 28px);
}
.quote-grid .quote-block--grid-tr::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 18px 22px;
  border-color: transparent transparent #B2C3B2 transparent;
}
.quote-grid .quote-block--grid-bottom {
  grid-column: 1/-1;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
}
@media screen and (max-width: 560px) {
  .quote-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .quote-grid .quote-block--grid-tl,
  .quote-grid .quote-block--grid-bottom {
    clip-path: none;
  }
  .quote-grid .quote-block--grid-tr::before {
    display: none;
  }
}

.quote-block--beige {
  max-width: 700px;
  width: 100%;
  padding: 36px 48px;
  margin: 58px 0 40px;
  background: #F5E0C3;
}
.quote-block--beige::before {
  content: "";
  position: absolute;
  top: -16px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 16px 20px;
  border-color: transparent transparent #F5E0C3 transparent;
}

.marked-text {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 13px;
  padding: 12px 17px;
  background: rgba(255, 227, 67, 0.9);
}

.marked-text p {
  color: #000;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 129.412% */
}

.text-highlight {
  background: #F5C98A;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.note-block {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 40px 0;
  padding: 48px 40px 40px;
  background: #fff;
  box-sizing: border-box;
}
.note-block > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 36px;
  pointer-events: none;
}
.note-block p,
.note-block li {
  margin: 0;
  color: #000;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.note-block .note-block__title {
  margin-bottom: 18px;
  font-weight: 400;
}
.note-block .note-block__title strong {
  font-weight: 700;
}
.note-block ul {
  margin: 0 0 18px;
  padding-left: 22px;
  list-style: disc;
}
.note-block li {
  margin-bottom: 8px;
}
.note-block li:last-child {
  margin-bottom: 0;
}

.policy {
  padding-top: 150px;
}

.policy-content {
  position: relative;
  width: 65%;
}
@media screen and (max-width: 480px) {
  .policy-content {
    width: 100%;
  }
}

.policy-title {
  text-align: start;
  color: var(--Style, #FFF);
  font-family: Manrope;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 115%; /* 46px */
  text-transform: uppercase;
}

.policy-text {
  color: var(--Style, #F8F8F8);
  font-family: Urbanist;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  max-width: 788px;
  width: 100%;
  margin-top: 24px;
}

.policy-inner {
  margin: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  max-width: 868px;
  width: 100%;
}

.policy-item-title {
  color: var(--Style, #FFF);
  font-family: Urbanist;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 115%; /* 27.6px */
  text-transform: uppercase;
  margin-bottom: 24px;
}

.policy-item-text {
  color: var(--bfbfbf, #BFBFBF);
  font-family: Urbanist;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  max-width: 788px;
  width: 100%;
}

.policy-item-text a {
  color: var(--Style, #FFF);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.footer {
  background: #3C3C3C;
  padding: 70px 0;
}

.footer .container {
  max-width: 1440px;
  padding-left: clamp(20px, 12vw, 360px);
  padding-right: clamp(20px, 12vw, 360px);
}

.footer-logos {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .footer-logos {
    display: none;
  }
}

.footer-text {
  color: #BFBFBF;
  font-family: Manrope;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 153.846% */
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .footer-text {
    display: none;
  }
}

.footer-mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .footer-mobile {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .footer-mobile-logos {
    display: flex;
    gap: 30px;
  }
}

.footer-mobile-text {
  color: #BFBFBF;
  font-family: Manrope;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px; /* 146.154% */
  margin-top: 15px;
}

.footer-mobile-text:not(:last-child) {
  margin-bottom: 30px;
}
