@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

@font-face {
  font-family: "Leleka";
  font-weight: 400;
  src: url("../fonts/Leleka.eot");
  src: url("../fonts/Leleka.eot?#iefix") format("embedded-opentype"), url("../fonts/Leleka.ttf") format("truetype"), url("../fonts/Leleka.woff") format("woff"), url("../fonts/Leleka.woff2") format("woff2");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  src: url("../fonts/Gilroy-Regular.eot");
  src: url("../fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Regular.ttf") format("truetype"), url("../fonts/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  src: url("../fonts/Gilroy-Medium.eot");
  src: url("../fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Medium.ttf") format("truetype"), url("../fonts/Gilroy-Medium.woff") format("woff"), url("../fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 600;
  src: url("../fonts/Gilroy-SemiBold.eot");
  src: url("../fonts/Gilroy-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-SemiBold.ttf") format("truetype"), url("../fonts/Gilroy-SemiBold.woff") format("woff"), url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 999;
  transition: opacity 0.1s ease;
  padding: 50px;
}
@media only screen and (max-width: 1024px) {
  .modal {
    padding: 60px 0;
  }
}

.modal__overlay {
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.success-popup-content {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  background: var(--white, #fff);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  z-index: 3;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 666px) {
  .success-popup-content {
    width: 95%;
  }
}

.success-popup-close {
  position: absolute;
  right: 0;
  top: -55px;
}

.success-popup-icon {
  width: 250px;
  margin-bottom: 50px;
}
.success-popup-icon img {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .success-popup-icon {
    width: 200px;
    margin-bottom: 40px;
  }
}

.success-popup-icon2 {
  width: 96px;
  margin-bottom: 50px;
}
.success-popup-icon2 img {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .success-popup-icon2 {
    width: 64px;
    margin-bottom: 40px;
  }
}

.success-popup-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 666px) {
  .success-popup-title {
    font-size: 24px;
  }
}

.success-popup-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 50px;
  text-align: center;
}
.success-popup-text a {
  color: #0000b4;
}

.success-popup-victory {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.relevant-popup-content {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 64px;
  background: #f6f6f6;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  z-index: 3;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-content {
    padding: 40px;
    width: 95%;
    border-radius: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .relevant-popup-content {
    padding: 24px;
  }
}

.relevant-popup-top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-top {
    margin-bottom: 40px;
  }
}

.relevant-popup-title {
  width: 50.929054%; /* 603/1184 */
  color: #000;
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-title {
    width: 90%;
  }
}
@media only screen and (max-width: 666px) {
  .relevant-popup-title {
    font-size: 30px;
  }
}

.relevant-popup-down {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-down {
    flex-direction: column;
  }
}

.relevant-popup-down-left {
  width: 50.929054%; /* 603/1184 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-down-left {
    width: 100%;
    margin-bottom: 40px;
  }
}

.relevant-popup-down-left-text {
  color: #000;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-down-left-text {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .relevant-popup-down-left-text {
    font-size: 18px;
  }
}

.relevant-popup-down-left-btn {
  color: var(--white, #fff);
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 99999px;
  background: var(--brand-blue, #0000b4);
  padding: 16px 64px;
}
@media only screen and (max-width: 666px) {
  .relevant-popup-down-left-btn {
    width: 100%;
  }
}

.relevant-popup-down-right {
  width: 35.557432%; /* 421/1184 */
  height: 372px;
}
.relevant-popup-down-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-down-right {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .relevant-popup-down-right {
    height: 197px;
  }
  .relevant-popup-down-right img {
    border-radius: 20px;
  }
}

.new-expert-popup-content {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  background: var(--white, #fff);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  z-index: 3;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 666px) {
  .new-expert-popup-content {
    width: 95%;
  }
}

.new-expert-popup-close {
  position: absolute;
  top: -49px;
  right: 0px;
}

.menu-wrapper {
  width: 100%;
  height: 100dvh;
  position: fixed;
  left: 100%;
  top: 0;
  z-index: 30;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  background: #fff;
}
.menu-wrapper.show {
  left: 0;
}

.menu-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 24px;
}

.menu-content-top {
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.menu-search {
  padding: 16px;
  border-radius: 99999px;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.menu-search img {
  flex-shrink: 0;
}
.menu-search input {
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border: none;
  outline: none;
  width: 100%;
}
.menu-search input::-moz-placeholder {
  color: #000;
}
.menu-search input::placeholder {
  color: #000;
}

.menu-accordeon-item {
  padding: 24px 0;
  border-bottom: 1px solid #e6e6e6;
}

.menu-accordeon-item-head {
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.322px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-accordeon-item-body {
  margin-top: 18px;
  display: none;
}

.menu-accordeon-item-body-link {
  display: block;
  margin-bottom: 18px;
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.322px;
  text-transform: uppercase;
}
.menu-accordeon-item-body-link:last-child {
  margin-bottom: 0;
}

.menu-link {
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid #e6e6e6;
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.322px;
  text-transform: uppercase;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  padding: 16px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
}
@media only screen and (max-width: 1024px) {
  .header {
    padding: 16px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .header {
    padding: 16px;
  }
}

.header-logo {
  display: block;
}
@media only screen and (max-width: 666px) {
  .header-logo {
    width: 96px;
  }
  .header-logo img {
    width: 100%;
  }
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 19px;
}
@media only screen and (max-width: 1024px) {
  .header-menu {
    display: none;
  }
}

.header-menu-nesting {
  position: relative;
  cursor: pointer;
}
.header-menu-nesting:hover .header-menu-nesting-dropdown {
  display: block;
}
.header-menu-nesting:hover .header-menu-nesting-name-arrow {
  transform: rotate(180deg);
}

.header-menu-nesting-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.322px;
  height: 27px;
}

.header-menu-nesting-name-arrow {
  transition: all 0.3s ease-in-out;
}

.header-menu-nesting-dropdown {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px var(--space-s, 24px) var(--space-s, 24px) var(--space-s, 24px);
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
  padding: 24px;
  position: absolute;
  left: 0;
  top: 26px;
  display: none;
  z-index: 5;
}

.header-menu-nesting-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.322px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 16px;
}
.header-menu-nesting-dropdown-item:hover span {
  text-decoration: underline;
}
.header-menu-nesting-dropdown-item:last-child {
  margin-bottom: 0;
}

.header-menu-link {
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 21px */
  letter-spacing: -0.322px;
}
.header-menu-link:hover {
  text-decoration: underline;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-relevant {
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.322px;
  text-transform: uppercase;
  border-radius: 99999px;
  border: 1px solid #e6e6e6;
  cursor: pointer;
}
.header-relevant:hover {
  color: #0000b4;
  border: 1px solid #0000b4;
}
@media only screen and (max-width: 666px) {
  .header-relevant {
    display: none;
  }
}

.header-relevant-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0000b4;
}

.header-search {
  padding: 10px;
  border-radius: 99999px;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.header-search.open {
  gap: 8px;
}
.header-search.open .header-search-input {
  width: 114px;
}
.header-search:hover {
  border: 1px solid #0000b4;
}
@media only screen and (max-width: 1024px) {
  .header-search {
    display: none;
  }
}

.header-search-icon {
  cursor: pointer;
}

.header-search-input {
  width: 0px;
  transition: all 0.3s ease-in-out;
}
.header-search-input input {
  width: 100%;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border: none;
}

.header-lang {
  padding: 10px;
  border-radius: 99999px;
  border: 1px solid #e6e6e6;
}
.header-lang span {
  color: #000;
}
.header-lang span a {
  color: #000;
}
.header-lang a {
  color: #000;
}
.header-lang:hover {
  color: #0000d0;
  border: 1px solid #0000b4;
}
.header-lang:hover a {
  color: #0000b4;
}
@media only screen and (max-width: 666px) {
  .header-lang {
    display: none;
  }
}

.header-lang-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.322px;
  text-transform: uppercase;
}
.header-lang-top a {
  color: #000;
}

.header-sign {
  color: #fff;
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  padding: 8px 16px;
  border-radius: 99999px;
  background: #0000b4;
  border: 1px solid #0000b4;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.header-sign:hover {
  color: #0000d0;
  background: #fff;
}
@media only screen and (max-width: 1024px) {
  .header-sign {
    padding: 10px 16px;
  }
}

.header-burger {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .header-burger {
    display: block;
    padding: 10px;
    border-radius: 99999px;
    border: 1px solid #e6e6e6;
  }
}

.footer {
  width: 100%;
  padding: 96px 64px;
  border-top: 1px solid #e6e6e6;
  position: relative;
  z-index: 3;
  background: #fff;
}
@media only screen and (max-width: 1024px) {
  .footer {
    padding: 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .footer {
    padding: 64px 16px;
  }
}

.footer-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .footer-top {
    flex-direction: column;
  }
}

.footer-input-email {
  width: 77.151561%; /* 1013/1313 */
}
.footer-input-email input {
  padding: 16px 24px;
  width: 100%;
  border-radius: 99999px;
  border: 1px solid #e6e6e6;
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
}
.footer-input-email.error input {
  border-color: #e71317;
  color: #e71317;
}
@media only screen and (max-width: 1024px) {
  .footer-input-email {
    width: 58%;
  }
}
@media only screen and (max-width: 666px) {
  .footer-input-email {
    width: 100%;
    margin-bottom: 24px;
  }
}

.footer-input-btn {
  cursor: pointer;
  border: none;
  width: 21.020564%; /* 276/1313 */
  border-radius: 99999px;
  background: #0000b4;
  color: #fff;
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 6;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  padding: 16px;
  border: 1px solid #0000b4;
}
.footer-input-btn:hover {
  background: #fff;
  color: #0000b4;
}
@media only screen and (max-width: 1024px) {
  .footer-input-btn {
    width: 38%;
  }
}
@media only screen and (max-width: 666px) {
  .footer-input-btn {
    width: 100%;
  }
}

.footer-center {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .footer-center {
    flex-direction: column;
  }
}

.footer-left {
  width: 13%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-social {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .footer-social {
    margin: 64px 0;
  }
}

.footer-social-item {
  cursor: pointer;
  display: block;
}

.footer-menu {
  width: 70.373191%; /* 924/1313 */
  display: flex;
  align-items: flex-start;
  gap: 2.708333vw; /* 39/1440 */
}
@media only screen and (max-width: 1024px) {
  .footer-menu {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .footer-menu {
    gap: 40px;
  }
}

.footer-menu-col a {
  color: #000;
}
@media only screen and (max-width: 666px) {
  .footer-menu-col {
    width: 100%;
  }
}

.footer-menu-col-title {
  color: #000;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.322px;
  margin-bottom: 16px;
}

.footer-menu-col-link {
  display: block;
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.322px;
  margin-bottom: 16px;
}
.footer-menu-col-link:hover {
  text-decoration: underline;
}

.home-page {
  width: 100%;
}

.home-main {
  width: 100%;
}

.home-hero {
  width: 100%;
  height: 100vh;
}

.home-hero-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.home-hero-slider-arrows {
  width: 112px;
  height: 60px;
  position: absolute;
  bottom: 45px;
  right: 24px;
  z-index: 10;
  padding: 8px;
  border-radius: 99999px;
  border: 1px solid var(--border, #d9d9d9);
  background: var(--white, #fff);
}
.home-hero-slider-arrows .slick-prev {
  cursor: pointer;
  position: absolute;
  top: 29px;
  left: 8px;
  width: 44px;
  height: 44px;
  border-radius: 99999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0000b4;
}
.home-hero-slider-arrows .slick-prev svg path {
  stroke: var(--brand-blue, #0000b4);
}
.home-hero-slider-arrows .slick-prev:hover {
  background: var(--brand-blue, #0000b4);
}
.home-hero-slider-arrows .slick-prev:hover svg path {
  stroke: #fff;
}
.home-hero-slider-arrows .slick-prev::before {
  display: none;
}
.home-hero-slider-arrows .slick-prev svg {
  width: 100%;
}
.home-hero-slider-arrows .slick-next {
  position: absolute;
  top: 29px;
  right: 8px;
  width: 44px;
  height: 44px;
  border-radius: 99999px;
  border: 1px solid #0000b4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero-slider-arrows .slick-next svg path {
  stroke: var(--brand-blue, #0000b4);
}
.home-hero-slider-arrows .slick-next:hover {
  background: var(--brand-blue, #0000b4);
}
.home-hero-slider-arrows .slick-next:hover svg path {
  stroke: #fff;
}
.home-hero-slider-arrows .slick-next::before {
  display: none;
}
.home-hero-slider-arrows .slick-next svg {
  width: 100%;
}

.home-hero-slide1 {
  width: 100%;
  display: flex;
  overflow-y: auto;
  padding: 155px 0px 64px 64px;
}
.home-hero-slide1::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide1 {
    padding: 170px 24px 60px;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slide1 {
    padding: 153px 16px 64px;
  }
}

.home-hero-slide1-left {
  width: 52%; /* 755/1312 */
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide1-left {
    width: 100%;
  }
}

.home-hero-slide1-left-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.home-hero-slide1-left-title span {
  color: #0000b4;
}
@media only screen and (max-width: 666px) {
  .home-hero-slide1-left-title {
    font-size: 40px;
  }
}

.home-hero-slide1-left-description {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}

.home-hero-slide1-btn {
  cursor: pointer;
  width: 285px;
  height: 60px;
  border-radius: 99999px;
  background: var(--brand-blue, #0000b4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white, #fff);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border: 1px solid #0000b4;
}
.home-hero-slide1-btn:hover {
  background: #fff;
  color: #0000b4;
}

.home-hero-slide1-right {
  position: relative;
  width: 48%;
  aspect-ratio: 1/1;
  z-index: 1;
}
.home-hero-slide1-right img {
  position: absolute;
  top: -70px;
  right: 0;
  width: 49vw;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide1-right {
    display: none;
  }
}

.home-hero-slide2 {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow-y: auto;
  padding: 155px 64px 64px 64px;
}
.home-hero-slide2::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide2 {
    height: 100vh;
    padding: 170px 24px 60px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slide2 {
    padding: 153px 16px 64px;
  }
}

.home-hero-slide2-left {
  width: 57.545732%;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide2-left {
    width: 100%;
  }
}

.home-hero-slide2-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .home-hero-slide2-title {
    font-size: 40px;
  }
}

.home-hero-slide2-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}

.home-hero-slide2-btn {
  width: 285px;
  height: 60px;
  border-radius: 99999px;
  background: var(--brand-blue, #0000b4);
  color: var(--white, #fff);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0000b4;
}
.home-hero-slide2-btn:hover {
  background: #fff;
  color: #0000b4;
}
@media only screen and (max-width: 666px) {
  .home-hero-slide2-btn {
    width: 100%;
  }
}

.home-hero-slide2-right {
  width: 32.088415%;
}
.home-hero-slide2-right img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide2-right {
    width: 100%;
    margin-top: 40px;
  }
}

.home-hero-slide3 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-y: auto;
  padding: 155px 64px 64px 64px;
}
.home-hero-slide3::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide3 {
    height: 100vh;
    padding: 170px 24px 60px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slide3 {
    padding: 153px 16px 64px;
  }
}

.home-hero-slide3-left {
  width: 66.082317%; /* 867/1312 */
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide3-left {
    width: 100%;
  }
}

.youtube-video {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.youtube-video iframe {
  border-radius: 40px;
  background: var(--border, #d9d9d9);
  aspect-ratio: 16/9;
  width: 100%;
  z-index: 2;
  position: relative;
}

.home-hero-slide3-right {
  width: 23.628049%; /* 310/1312 */
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide3-right {
    margin-top: 40px;
    width: 100%;
  }
}

.home-hero-slide4 {
  width: 100%;
  overflow-y: auto;
  padding: 155px 285px 64px 64px;
}
.home-hero-slide4::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide4 {
    height: 100vh;
    padding: 170px 24px 60px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slide4 {
    padding: 153px 16px 64px;
  }
}

.home-hero-slide4-top {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide4-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.home-hero-slide4-top-title {
  width: 69.266055%; /* 755/1090 */
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide4-top-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slide4-top-title {
    font-size: 40px;
  }
}

.home-hero-slide4-top-link {
  color: var(--brand-blue, #0000b4);
  text-align: center;
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 99999px;
  padding: 8px 30px;
}
.home-hero-slide4-top-link:hover {
  border: 1px solid #0000b4;
}

.home-hero-slide4-bottom {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide4-bottom.six {
    flex-direction: column-reverse;
  }
  .home-hero-slide4-bottom.six .home-hero-slide4-bottom-img1 {
    width: 100%;
  }
  .home-hero-slide4-bottom.six .home-hero-slide4-bottom-img2 {
    width: 100%;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slide4-bottom {
    flex-direction: column;
  }
}

.home-hero-slide4-bottom-img1 {
  width: 38.623853%;
  min-height: 327px;
  position: relative;
}
.home-hero-slide4-bottom-img1 img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 666px) {
  .home-hero-slide4-bottom-img1 {
    width: 100%;
    margin-bottom: 24px;
  }
}

.home-hero-slide4-bottom-img2 {
  width: 59.082569%;
  min-height: 327px;
  position: relative;
}
.home-hero-slide4-bottom-img2 img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-hero-slide4-bottom-img2 .youtube-video iframe {
  aspect-ratio: 16/8;
}
@media only screen and (max-width: 666px) {
  .home-hero-slide4-bottom-img2 {
    width: 100%;
  }
  .home-hero-slide4-bottom-img2 .youtube-video iframe {
    aspect-ratio: 16/12;
  }
}

.home-hero-slide5 {
  width: 100%;
  width: 100%;
  overflow-y: auto;
  padding: 155px 64px 64px 64px;
}
.home-hero-slide5::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide5 {
    height: 100vh;
    padding: 170px 24px 80px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slide5 {
    padding: 153px 16px 64px;
  }
}

.home-hero-slide5-img {
  width: 100%;
  height: 532px;
  position: relative;
}
.home-hero-slide5-img img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide5-img {
    height: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slide5-img {
    height: 510px;
  }
}

.home-hero-slide5-img-capture {
  position: absolute;
  bottom: 56px;
  left: 40px;
  color: var(--white, #fff);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}
@media only screen and (max-width: 666px) {
  .home-hero-slide5-img-capture {
    bottom: 31px;
    left: 19px;
    font-size: 18px;
  }
}

.home-hero-slide5-link {
  cursor: pointer;
  padding: 16px 64px;
  border-radius: 99999px;
  background: #fff;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 40px;
  bottom: 40px;
}
.home-hero-slide5-link:hover {
  background: #0000b4;
  color: #fff;
}
@media only screen and (max-width: 666px) {
  .home-hero-slide5-link {
    right: 24px;
    bottom: 24px;
    padding: 10px 21px;
  }
}

.home-hero-slide7 {
  width: 100%;
  width: 100%;
  overflow-y: auto;
  padding: 155px 64px 64px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.home-hero-slide7::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide7 {
    height: 100vh;
    padding: 170px 24px 60px;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slide7 {
    padding: 153px 16px 64px;
  }
}

.home-hero-slide7-left {
  width: 66%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide7-left {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slide7-left {
    margin-top: 40px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.home-hero-slide7-left-item {
  width: 100%;
  height: 250px;
}
.home-hero-slide7-left-item img {
  width: 100%;
  height: 250px;
  border-radius: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-hero-slide7-right {
  width: 23.323171%; /* 306/1312 */
}
@media only screen and (max-width: 1024px) {
  .home-hero-slide7-right {
    width: 100%;
  }
}

.home-hero-slide7-right-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 64px;
}

.home-hero-slide7-right-link {
  color: var(--brand-blue, #0000b4);
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 99999px;
  padding: 8px 30px;
}
.home-hero-slide7-right-link:hover {
  border: 1px solid #0000b4;
}

.home-who {
  width: 100%;
  padding: 96px 64px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--border, #d9d9d9);
  border-bottom: 1px solid var(--border, #d9d9d9);
  background: var(--brand-blue, #0000b4);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .home-who {
    padding: 80px 24px 0 24px;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 666px) {
  .home-who {
    flex-direction: column-reverse;
    padding: 64px 16px 0 16px;
  }
}

.home-who-left {
  width: 46%;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .home-who-left {
    width: 100%;
  }
}

.home-who-left-photo {
  position: relative;
  z-index: 2;
  width: 100%;
}
.home-who-left-photo img {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .home-who-left-photo {
    margin-top: 60px;
  }
}

.home-who-left-bg {
  width: 100%;
  position: absolute;
  top: -190px;
  left: 0;
  transform: rotate(-9deg);
  z-index: 1;
}
.home-who-left-bg img {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .home-who-left-bg {
    top: -121px;
  }
}

.home-who-right {
  width: 48.932927%; /* 642/1312 */
  padding: 40px;
  border-radius: 40px;
  background: var(--white, #fff);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .home-who-right {
    width: 100%;
    margin-bottom: 130px;
  }
}
@media only screen and (max-width: 666px) {
  .home-who-right {
    padding: 24px 24px 50px 24px;
  }
}

.home-who-title {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #000;
  text-align: center;
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 48px;
}
@media only screen and (max-width: 666px) {
  .home-who-title {
    font-size: 32px;
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}

.home-who-text {
  color: #000;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 50px;
}

.home-who-more {
  color: #0000b4;
  text-align: center;
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 99999px;
  padding: 8px 24px;
  width: -moz-fit-content;
  width: fit-content;
}
.home-who-more:hover {
  border: 1px solid #0000b4;
}

.home-news {
  width: 100%;
  padding: 96px 0px 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .home-news {
    padding: 80px 0 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .home-news {
    padding: 64px 16px 64px 16px;
  }
}

.home-news-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  padding-right: 200px;
}
@media only screen and (max-width: 666px) {
  .home-news-top {
    margin-bottom: 40px;
    padding-right: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.home-news-top-title {
  color: #000;
  text-align: center;
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 666px) {
  .home-news-top-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .home-news-top-title img {
    width: 80px;
    height: 48px;
  }
}

.home-news-top-btn {
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 99999px;
  border: 1px solid #0000b4;
  color: #0000b4;
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
}
.home-news-top-btn:hover {
  background: #0000b4;
  color: #fff;
}
.home-news-wrapper {
  width: 100%;
  position: relative;
}

.home-news-slider-arrows {
  width: 112px;
  height: 44px;
  position: absolute;
  top: -127px;
  right: 45px;
  z-index: 10;
  border-radius: 99999px;
}
.home-news-slider-arrows .slick-prev {
  position: absolute;
  top: 29px;
  left: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-news-slider-arrows .slick-prev::before {
  display: none;
}
.home-news-slider-arrows .slick-prev svg {
  width: 100%;
}
.home-news-slider-arrows .slick-next {
  position: absolute;
  top: 29px;
  right: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-news-slider-arrows .slick-next::before {
  display: none;
}
.home-news-slider-arrows .slick-next svg {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .home-news-slider-arrows {
    right: auto;
    left: 130px;
    top: -97px;
  }
}

.home-news-slider .slick-track {
  margin-left: -28vw;
}
.home-news-slider .slick-slide {
  margin: 0 12px;
}
@media only screen and (max-width: 1024px) {
  .home-news-slider .slick-track {
    margin-left: -25vw;
  }
}
@media only screen and (max-width: 666px) {
  .home-news-slider .slick-track {
    margin-left: 0;
  }
}

.home-news-item-link {
  display: block;
  margin-top: 24px;
  color: var(--brand-blue, #0000b4);
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
}
.home-news-item-link:hover {
  text-decoration: underline;
}

.home-news-item-image {
  aspect-ratio: 2/1.3;
  position: relative;
  margin-bottom: 23px;
}
.home-news-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}

.home-news-item-tag {
  padding: 8px 24px;
  position: absolute;
  top: 40px;
  left: 40px;
  border-radius: 9999px;
  background: #fff;
  color: #000;
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
}

.home-news-item-date {
  color: #777;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.352px;
  margin-bottom: 16px;
}

.home-news-item-name {
  color: #000;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}

.home-news-mob-link {
  display: none;
}
@media only screen and (max-width: 666px) {
  .home-news-mob-link {
    display: flex;
    height: 60px;
    width: 100%;
    padding: var(--space-xs, 16px) var(--space-xl, 48px);
    justify-content: center;
    align-items: center;
    border-radius: 99999px;
    border: 1px solid #0000b4;
    color: #0000b4;
    text-align: center;
    font-family: Gilroy;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
    letter-spacing: -0.308px;
    margin-top: 40px;
  }
}

.home-programs {
  width: 100%;
  padding: 96px 0 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .home-programs {
    padding: 80px 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .home-programs {
    padding: 64px 16px 64px 16px;
  }
}

.home-programs-title {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 60px;
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 60px;
  color: #000;
  text-align: center;
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-right: 64px;
}
@media only screen and (max-width: 1024px) {
  .home-programs-title {
    margin-right: 24px;
  }
}
@media only screen and (max-width: 666px) {
  .home-programs-title {
    font-size: 32px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .home-programs-title img {
    width: 88px;
    height: 48px;
  }
}

.home-programs-slider-wrapper {
  width: 100%;
  position: relative;
}

.home-programs-slider-arrows {
  width: 112px;
  position: absolute;
  right: 64px;
  top: 17px;
  z-index: 10;
}
.home-programs-slider-arrows .slick-prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 99999px;
  border: 1px solid #0000b4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-programs-slider-arrows .slick-prev::before {
  display: none;
}
.home-programs-slider-arrows .slick-prev img {
  width: 100%;
}
.home-programs-slider-arrows .slick-next {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 99999px;
  border: 1px solid #0000b4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-programs-slider-arrows .slick-next::before {
  display: none;
}
.home-programs-slider-arrows .slick-next img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .home-programs-slider-arrows {
    right: 0;
  }
}

.home-programs-slider-title {
  color: #000;
  font-family: Gilroy;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 32px */
  letter-spacing: -0.64px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .home-programs-slider-title {
    font-size: 24px;
    margin-bottom: 41px;
  }
}

.home-programs-slider {
  margin-left: 0;
}
.home-programs-slider .slick-track {
  margin-left: -28vw;
}
.home-programs-slider .slick-slide {
  margin: 0 12px;
}
@media only screen and (max-width: 1024px) {
  .home-programs-slider .slick-track {
    margin-left: 0;
  }
}
@media only screen and (max-width: 666px) {
  .home-programs-slider .slick-slide {
    margin: 0 4px;
  }
}

.home-programs-slider-item-image {
  width: 100%;
  margin-bottom: 21px;
}
.home-programs-slider-item-image img {
  width: 100%;
  border-radius: 40px;
}

.home-programs-slider-item-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}

.home-grants {
  width: 100%;
  padding: 0 0 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .home-grants {
    padding: 0 24px;
  }
}
@media only screen and (max-width: 666px) {
  .home-grants {
    padding: 0 16px 64px 16px;
  }
}

.home-grants-title {
  color: #000;
  font-family: Gilroy;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 32px */
  letter-spacing: -0.64px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .home-grants-title {
    font-size: 24px;
    margin-bottom: 100px;
  }
}

.home-grants-slider-wrapper {
  width: 100%;
  position: relative;
}

.home-grants-slider-arrows {
  width: 112px;
  position: absolute;
  right: 64px;
  top: -63px;
  z-index: 10;
}
.home-grants-slider-arrows .slick-prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 99999px;
  border: 1px solid #0000b4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-grants-slider-arrows .slick-prev::before {
  display: none;
}
.home-grants-slider-arrows .slick-prev img {
  width: 100%;
}
.home-grants-slider-arrows .slick-next {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 99999px;
  border: 1px solid #0000b4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-grants-slider-arrows .slick-next::before {
  display: none;
}
.home-grants-slider-arrows .slick-next img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .home-grants-slider-arrows {
    right: 0;
  }
}
@media only screen and (max-width: 666px) {
  .home-grants-slider-arrows {
    right: auto;
    left: 0;
    top: -52px;
  }
}

.home-grants-slider {
  margin-left: 0;
}
.home-grants-slider .slick-track {
  margin-left: 0;
}
.home-grants-slider .slick-slide {
  margin: 0 12px;
}

.home-social {
  border-top: 1px solid var(--border, #d9d9d9);
  width: 100%;
  padding: 96px 64px 0 64px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .home-social {
    padding: 80px 24px 0 24px;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 666px) {
  .home-social {
    overflow: hidden;
  }
}

.home-social-left {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .home-social-left {
    width: 100%;
    height: 456px;
  }
}
@media only screen and (max-width: 666px) {
  .home-social-left {
    height: 287px;
  }
}

.home-social-bg {
  position: absolute;
  top: -64px;
  left: -64px;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-social-bg img {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .home-social-bg {
    width: 130%;
    top: 12px;
  }
}

.home-social-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 641px;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 1024px) {
  .home-social-title {
    display: none;
  }
}

.home-social-image {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .home-social-image {
    width: 100%;
  }
  .home-social-image img {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .home-social-image {
    width: 111%;
  }
}

.home-social-right {
  width: 49%;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .home-social-right {
    width: 100%;
  }
}

.home-social-item {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 40px;
  border: 1px solid var(--border, #d9d9d9);
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  margin-bottom: 24px;
}
.home-social-item:hover {
  border: 1px solid #0000b4;
}
.home-social-item:hover .home-social-arrow {
  transform: translateX(11px);
}
.home-social-item:hover .home-social-item-left {
  color: #0000b4;
}
@media only screen and (max-width: 666px) {
  .home-social-item {
    padding: 24px;
    border-radius: 24px;
  }
}

.home-social-item-left {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}
@media only screen and (max-width: 666px) {
  .home-social-item-left {
    font-size: 16px;
  }
  .home-social-item-left img {
    width: 36px;
  }
}

.home-social-arrow {
  transition: all 0.4s ease-in-out;
}

.home-social-mobile-title {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .home-social-mobile-title {
    display: block;
    color: var(--brand-black, #000);
    font-family: Leleka;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 48px */
    letter-spacing: -0.96px;
    text-transform: uppercase;
    margin-bottom: 64px;
  }
}
@media only screen and (max-width: 666px) {
  .home-social-mobile-title {
    font-size: 32px;
  }
}

.home-main {
  width: 100%;
}

.scholarships-hero {
  width: 100%;
  padding: 180px 64px 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .scholarships-hero {
    padding: 170px 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .scholarships-hero {
    padding: 154px 16px 64px 16px;
  }
}

.scholarships-hero-top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .scholarships-hero-top {
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .scholarships-hero-top {
    margin-bottom: 40px;
  }
}

.scholarships-hero-top-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  width: 54.64939%; /* 717/1312 */
}
@media only screen and (max-width: 1024px) {
  .scholarships-hero-top-title {
    width: 100%;
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 666px) {
  .scholarships-hero-top-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}

.scholarships-hero-top-text {
  width: 37.652439%; /* 494/1312 */
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
@media only screen and (max-width: 1024px) {
  .scholarships-hero-top-text {
    width: 100%;
  }
}

.scholarships-hero-image {
  width: 100%;
  position: relative;
}
.scholarships-hero-image img {
  width: 100%;
}
.scholarships-hero-image-icon {
  position: absolute;
  left: 64px;
  top: -49px;
}
@media only screen and (max-width: 1024px) {
  .scholarships-hero-image-icon {
    width: 145px;
    left: auto;
    right: 24px;
    top: -28px;
  }
  .scholarships-hero-image-icon img {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .scholarships-hero-image-icon {
    width: 72px;
  }
}

.scholarships-second {
  width: 100%;
  padding: 96px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.scholarships-second.reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1024px) {
  .scholarships-second {
    padding: 80px 24px;
    flex-direction: column-reverse;
  }
  .scholarships-second.reverse {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 666px) {
  .scholarships-second {
    padding: 64px 16px;
  }
}

.scholarships-second-left {
  width: 50%;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .scholarships-second-left {
    width: 100%;
  }
}

.scholarships-second-image {
  width: 100%;
}
.scholarships-second-image img {
  width: 100%;
  border-radius: 40px;
}

.scholarships-second-left-bg {
  position: absolute;
  right: 20px;
  top: -47px;
}
@media only screen and (max-width: 1024px) {
  .scholarships-second-left-bg {
    left: auto;
    right: 20px;
    top: -67px;
  }
}
@media only screen and (max-width: 666px) {
  .scholarships-second-left-bg {
    right: 29px;
    top: -32px;
  }
  .scholarships-second-left-bg img {
    width: 65px;
  }
}

.scholarships-second-right {
  width: 43%;
}
@media only screen and (max-width: 1024px) {
  .scholarships-second-right {
    width: 100%;
    margin-bottom: 64px;
  }
}

.scholarships-second-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .scholarships-second-title {
    font-size: 32px;
  }
}

.scholarships-second-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}

.scholarships-second-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--white, #fff);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 99999px;
  border: 1px solid var(--brand-blue, #0000b4);
  background: var(--brand-blue, #0000b4);
  padding: 16px;
}

.scholarships-second-left-bg2 {
  position: absolute;
  left: -60px;
  top: 40px;
}
@media only screen and (max-width: 1024px) {
  .scholarships-second-left-bg2 {
    left: auto;
    right: 20px;
    top: -67px;
  }
}
@media only screen and (max-width: 666px) {
  .scholarships-second-left-bg2 {
    right: 29px;
    top: -32px;
  }
  .scholarships-second-left-bg2 img {
    width: 65px;
  }
}

.scholarships-second-left-bg3 {
  position: absolute;
  left: 62px;
  top: -78px;
}
@media only screen and (max-width: 1024px) {
  .scholarships-second-left-bg3 {
    left: auto;
    right: 20px;
    top: -67px;
  }
}
@media only screen and (max-width: 666px) {
  .scholarships-second-left-bg3 {
    right: 29px;
    top: -32px;
  }
  .scholarships-second-left-bg3 img {
    width: 65px;
  }
}

.scholarships-second-left-bg4 {
  position: absolute;
  right: 52px;
  top: -74px;
}
@media only screen and (max-width: 1024px) {
  .scholarships-second-left-bg4 {
    left: auto;
    right: 20px;
    top: -67px;
  }
}
@media only screen and (max-width: 666px) {
  .scholarships-second-left-bg4 {
    right: 29px;
    top: -32px;
  }
  .scholarships-second-left-bg4 img {
    width: 65px;
  }
}

.scholarships-second-left-bg5 {
  position: absolute;
  right: 52px;
  top: -56px;
}
@media only screen and (max-width: 1024px) {
  .scholarships-second-left-bg5 {
    left: auto;
    right: 20px;
    top: -67px;
  }
}
@media only screen and (max-width: 666px) {
  .scholarships-second-left-bg5 {
    right: 29px;
    top: -32px;
  }
  .scholarships-second-left-bg5 img {
    width: 65px;
  }
}

.future-subscribe {
  width: 100%;
  padding: 96px 64px;
  background: var(--brand-blue, #0000b4);
}
@media only screen and (max-width: 666px) {
  .future-subscribe {
    padding: 64px 16px;
  }
}

.future-subscribe-content {
  width: 100%;
  border-radius: 40px;
  border: 1px solid var(--border, #d9d9d9);
  background: #fff;
  padding: 64px;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 666px) {
  .future-subscribe-content {
    padding: 40px 24px;
  }
}

.future-subscribe-left {
  width: 40.709459%; /* 482/1184 */
}
.future-subscribe-left img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .future-subscribe-left {
    display: none;
  }
}

.future-subscribe-right {
  width: 53.885135%; /* 638/1184 */
}
@media only screen and (max-width: 1024px) {
  .future-subscribe-right {
    width: 100%;
  }
}

.future-subscribe-right-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .future-subscribe-right-title {
    font-size: 45px;
  }
}
@media only screen and (max-width: 666px) {
  .future-subscribe-right-title {
    font-size: 32px;
  }
}

.future-subscribe-right-input {
  width: 100%;
  margin-bottom: 40px;
}
.future-subscribe-right-input input {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.352px;
  width: 100%;
  padding-bottom: 24px;
  background: #fff;
  border: none;
  border-bottom: 1px solid var(--border, #d9d9d9);
}
.future-subscribe-right-input.error input {
  border-color: #e71317;
  color: #e71317;
}

.future-subscribe-right-btn {
  display: block;
  margin-left: auto;
  padding: 16px;
  border-radius: 99999px;
  border: 1px solid var(--brand-blue, #0000b4);
  background: var(--brand-blue, #0000b4);
  color: var(--white, #fff);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
}
@media only screen and (max-width: 666px) {
  .future-subscribe-right-btn {
    width: 100%;
  }
}

.holders-main {
  width: 100%;
}

.holders-hero {
  width: 100%;
  padding: 186px 64px 96px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .holders-hero {
    padding: 170px 24px 80px 24px;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 666px) {
  .holders-hero {
    padding: 155px 16px 64px 16px;
  }
}

.holders-hero-left {
  width: 45.503049%; /* 597/1312 */
}
.holders-hero-left img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .holders-hero-left {
    width: 100%;
  }
}

.holders-hero-right {
  width: 49.618902%; /* 651/1312 */
}
@media only screen and (max-width: 1024px) {
  .holders-hero-right {
    width: 100%;
  }
}

.holders-hero-right-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .holders-hero-right-title {
    font-size: 40px;
  }
}

.holders-hero-right-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}

.holders-list {
  width: 100%;
  position: relative;
  padding: 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .holders-list {
    padding: 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .holders-list {
    padding: 64px 16px;
  }
}

.holders-list-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .holders-list-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}

.holders-list-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
}
@media only screen and (max-width: 666px) {
  .holders-list-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}

.year-selector {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  height: 40px;
  border: 2px solid #0000b4;
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  background: #fff;
  cursor: pointer;
  padding: 16px;
  border-radius: 9999px;
}

.dropdown-button .arrow {
  padding-top: 4px;
  transition: transform 0.3s ease-in-out;
}

.dropdown-list {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  max-height: 150px;
  overflow-y: auto;
  border: 2px solid #0000b4;
  border-radius: 20px;
  background-color: white;
  list-style: none;
  margin: 0;
  padding: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.dropdown-list::-webkit-scrollbar {
  display: none;
}
.dropdown-list.hidden {
  display: none;
}

.dropdown-list li {
  padding: 10px;
  color: var(--brand-blue, #0000b4);
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  cursor: pointer;
}
.dropdown-list li a {
  color: #0000b4;
}
.dropdown-list li a:active {
  color: #0000b4;
}
.dropdown-list li a:visited {
  color: #0000b4;
}
.dropdown-list li a:hover {
  color: #0000b4;
}

.dropdown-list li:hover {
  background-color: #d9d9ff;
}

.hidden {
  display: none;
}

.holders-list-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 24px;
}
@media only screen and (max-width: 666px) {
  .holders-list-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.holders-list-item-photo {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 40px;
}
.holders-list-item-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}

.holders-list-item-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}

.holders-list-more-btn {
  margin-top: 40px;
  color: var(--brand-blue, #0000b4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
  cursor: pointer;
}
.holders-list-more-btn span {
  display: block;
}

.subpage-main {
  width: 100%;
  padding: 115px 0;
}

.breadcrumbs {
  width: 100%;
  padding: 0 64px;
  gap: 8px;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1024px) {
  .breadcrumbs {
    padding: 0 24px;
  }
}
@media only screen and (max-width: 666px) {
  .breadcrumbs {
    padding: 0 16px;
  }
}

.breadcrumbs-item {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  letter-spacing: -0.368px;
  display: block;
}
.breadcrumbs-item.active {
  color: #0000b4;
}

.subpage-hero {
  width: 100%;
  padding: 0 64px 96px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .subpage-hero {
    padding: 0 24px 64px 24px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .subpage-hero {
    padding: 0 16px 64px 16px;
  }
}

.subpage-hero-left {
  width: 49.618902%; /* 651/1312 */
}
@media only screen and (max-width: 1024px) {
  .subpage-hero-left {
    width: 100%;
  }
}

.subpage-hero-left-icon {
  margin-bottom: 40px;
}

.subpage-hero-left-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .subpage-hero-left-title {
    font-size: 40px;
  }
}

.subpage-hero-left-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}

.subpage-hero-right {
  width: 45.503049%; /* 597/1312 */
}
.subpage-hero-right img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .subpage-hero-right {
    width: 100%;
  }
}

.subpage-second {
  width: 100%;
  background: var(--brand-teal, #92ebeb);
  padding: 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .subpage-second {
    padding: 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .subpage-second {
    padding: 64px 16px;
  }
}

.subpage-second-slider-wrapper {
  width: 100%;
  position: relative;
  border-radius: 80px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
}
@media only screen and (max-width: 666px) {
  .subpage-second-slider-wrapper {
    border-radius: 24px;
  }
}

.subpage-second-slider-arrows {
  width: 112px;
  position: absolute;
  left: 51.013514%; /* 604/1184 */
  bottom: 154px;
  z-index: 10;
}
.subpage-second-slider-arrows .slick-prev {
  position: absolute;
  top: 0;
  left: 0px;
  width: 44px;
  height: 44px;
}
.subpage-second-slider-arrows .slick-prev::before {
  display: none;
}
.subpage-second-slider-arrows .slick-prev img {
  width: 100%;
}
.subpage-second-slider-arrows .slick-next {
  position: absolute;
  top: 0;
  right: 0px;
  width: 44px;
  height: 44px;
}
.subpage-second-slider-arrows .slick-next::before {
  display: none;
}
.subpage-second-slider-arrows .slick-next img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .subpage-second-slider-arrows {
    display: none;
  }
}

.subpage-second-slider .slick-dots {
  width: 100%;
  padding: 0 64px;
  bottom: 44px;
  display: flex;
}
.subpage-second-slider .slick-dots li {
  width: 100%;
  margin: 0 12px;
}
.subpage-second-slider .slick-dots li button:before {
  width: 100%;
  height: 3px;
  content: "";
  border-radius: 20px;
  background: #fff;
  opacity: 1;
}
.subpage-second-slider .slick-dots li.slick-active button:before {
  background: #000;
}
@media only screen and (max-width: 666px) {
  .subpage-second-slider .slick-dots {
    padding: 0 16px;
    bottom: 28px;
  }
}

.subpage-second-slider-item {
  padding: 64px 64px 128px 64px;
}
@media only screen and (max-width: 666px) {
  .subpage-second-slider-item {
    padding: 24px 24px 80px 24px;
  }
}

.subpage-second-slider-item-inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .subpage-second-slider-item-inner {
    flex-direction: column;
  }
}

.subpage-second-slider-item-left {
  width: 45.608108%; /* 540/1184 */
  aspect-ratio: 1/1;
}
.subpage-second-slider-item-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .subpage-second-slider-item-left {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .subpage-second-slider-item-left img {
    border-radius: 12px;
  }
}

.subpage-second-slider-item-right {
  width: 48.986486%; /* 580/1184 */
}
@media only screen and (max-width: 1024px) {
  .subpage-second-slider-item-right {
    width: 100%;
  }
}

.subpage-second-slider-item-right-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .subpage-second-slider-item-right-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}

.subpage-second-slider-item-right-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
@media only screen and (max-width: 666px) {
  .subpage-second-slider-item-right-text {
    font-size: 16px;
  }
}

.subpage-conditions {
  width: 100%;
  padding: 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .subpage-conditions {
    padding: 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .subpage-conditions {
    padding: 64px 16px;
  }
}

.subpage-conditions-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 60px;
}
@media only screen and (max-width: 666px) {
  .subpage-conditions-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.subpage-conditions-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 1024px) {
  .subpage-conditions-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.subpage-conditions-item {
  padding: 40px;
  border-radius: 40px;
  border: 1px solid var(--border, #d9d9d9);
  background: var(--white, #fff);
}

.subpage-conditions-item-icon {
  margin-bottom: 90px;
}

.subpage-conditions-item-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}

.subpage-last {
  width: 100%;
  padding: 96px 0px 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .subpage-last {
    padding: 80px 0 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .subpage-last {
    padding: 64px 16px 64px 16px;
  }
}

.subpage-last-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  padding-right: 200px;
}
@media only screen and (max-width: 1024px) {
  .subpage-last-top {
    margin-bottom: 40px;
    padding-right: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.subpage-last-top-title {
  color: #000;
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 1024px) {
  .subpage-last-top-title {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 666px) {
  .subpage-last-top-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .subpage-last-top-title img {
    width: 80px;
    height: 48px;
  }
}

.subpage-last-top-btn {
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 99999px;
  border: 1px solid #0000b4;
  color: #0000b4;
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
}
.subpage-last-wrapper {
  width: 100%;
  position: relative;
}

.subpage-last-slider-arrows {
  width: 112px;
  height: 44px;
  position: absolute;
  top: -117px;
  right: 45px;
  z-index: 10;
  border-radius: 99999px;
}
.subpage-last-slider-arrows .slick-prev {
  position: absolute;
  top: 29px;
  left: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subpage-last-slider-arrows .slick-prev::before {
  display: none;
}
.subpage-last-slider-arrows .slick-prev svg {
  width: 100%;
}
.subpage-last-slider-arrows .slick-next {
  position: absolute;
  top: 29px;
  right: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subpage-last-slider-arrows .slick-next::before {
  display: none;
}
.subpage-last-slider-arrows .slick-next svg {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .subpage-last-slider-arrows {
    right: 24px;
    top: -96px;
  }
}
@media only screen and (max-width: 666px) {
  .subpage-last-slider-arrows {
    right: 16px;
    top: -97px;
  }
}

.subpage-last-slider .slick-track {
  margin-left: -28vw;
}
.subpage-last-slider .slick-slide {
  margin: 0 12px;
}
@media only screen and (max-width: 1024px) {
  .subpage-last-slider .slick-track {
    margin-left: 0;
  }
}
@media only screen and (max-width: 666px) {
  .subpage-last-slider .slick-track {
    margin-left: 0;
  }
}

.subpage-last-item-link {
  display: block;
  margin-top: 24px;
  color: var(--brand-blue, #0000b4);
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
}

.subpage-last-item-image {
  aspect-ratio: 1/1;
  position: relative;
  margin-bottom: 40px;
}
.subpage-last-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}

.subpage-last-item-tag {
  padding: 8px 24px;
  position: absolute;
  top: 40px;
  left: 40px;
  border-radius: 9999px;
  background: #fff;
  color: #000;
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
}

.subpage-last-item-name {
  color: #000;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}

.subpage-doc {
  width: 100%;
  padding: 96px 64px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .subpage-doc {
    padding: 80px 24px 0;
    flex-direction: column;
  }
}

.subpage-doc-left {
  width: 31.631098%; /* 415/1312 */
}
@media only screen and (max-width: 1024px) {
  .subpage-doc-left {
    width: 100%;
  }
}

.subpage-doc-left-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1024px) {
  .subpage-doc-left-title {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 666px) {
  .subpage-doc-left-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.subpage-doc-left-img {
  width: 100%;
}
.subpage-doc-left-img img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .subpage-doc-left-img {
    display: none;
  }
}

.subpage-doc-right {
  width: 63.490854%; /* 833/1312 */
}
@media only screen and (max-width: 1024px) {
  .subpage-doc-right {
    width: 100%;
  }
}

.subpage-doc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--border, #d9d9d9);
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .subpage-doc-item {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}

.subpage-doc-item-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}
@media only screen and (max-width: 666px) {
  .subpage-doc-item-name {
    font-size: 18px;
  }
}

.subpage-doc-item-btn {
  color: var(--brand-blue, #0000b4);
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  padding: 8px 16px;
  border-radius: 99999px;
  border: 1px solid var(--brand-blue, #0000b4);
}

.archive-main {
  width: 100%;
  padding: 180px 64px 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .archive-main {
    padding: 170px 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .archive-main {
    padding: 154px 16px 60px 16px;
  }
}

.archive-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .archive-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}

.archive-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 24px;
}
@media only screen and (max-width: 1024px) {
  .archive-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .archive-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.archive-item-image {
  width: 100%;
  aspect-ratio: 16/10.5;
  margin-bottom: 24px;
}
.archive-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}

.archive-item-date {
  color: var(--gray, #797979);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.352px;
  margin-bottom: 16px;
}

.archive-item-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}

.archive-item-more {
  color: var(--brand-blue, #0000b4);
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
}

.show-more-btn {
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 90px;
  color: var(--brand-blue, #0000b4);
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
}
@media only screen and (max-width: 666px) {
  .show-more-btn {
    margin-top: 43px;
  }
}

.initiatives-main {
  width: 100%;
}

.initiatives-hero {
  width: 100%;
  padding: 185px 64px 100px;
}
@media only screen and (max-width: 1024px) {
  .initiatives-hero {
    padding: 170px 24px 100px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .initiatives-hero {
    padding: 154px 16px 80px 16px;
  }
}

.initiatives-hero-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .initiatives-hero-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}

.initiatives-hero-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .initiatives-hero-content {
    flex-direction: column;
  }
}

.initiatives-hero-left {
  width: 40.625%; /* 533/1312 */
  position: relative;
}
.initiatives-hero-left img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .initiatives-hero-left {
    width: 100%;
    height: 590px;
    margin-bottom: 40px;
  }
  .initiatives-hero-left img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 666px) {
  .initiatives-hero-left {
    height: 345px;
  }
}

.initiatives-hero-left-icon {
  position: absolute;
  top: -66px;
  right: -35px;
}
@media only screen and (max-width: 1024px) {
  .initiatives-hero-left-icon {
    right: 54px;
  }
}
@media only screen and (max-width: 666px) {
  .initiatives-hero-left-icon {
    width: 96px;
    top: -43px;
    right: 19px;
  }
  .initiatives-hero-left-icon img {
    width: 100%;
  }
}

.initiatives-hero-right {
  width: 54.496951%; /* 715/1312 */
}
.initiatives-hero-right img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .initiatives-hero-right {
    width: 100%;
  }
}

.initiatives-hero-right-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 63px;
}

.one-initiative-main {
  width: 100%;
  padding: 115px 0;
}

.one-initiative-hero {
  padding: 0 64px 96px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .one-initiative-hero {
    flex-direction: column;
    padding: 0 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .one-initiative-hero {
    padding: 0 16px 64px 16px;
  }
}

.one-initiative-hero-left {
  width: 49.618902%; /* 651/1312 */
}
@media only screen and (max-width: 1024px) {
  .one-initiative-hero-left {
    width: 100%;
  }
}

.one-initiative-hero-left-icon {
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .one-initiative-hero-left-icon img {
    width: 47px;
  }
}

.one-initiative-hero-left-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .one-initiative-hero-left-title {
    font-size: 40px;
  }
}

.one-initiative-hero-left-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}
.one-initiative-hero-left-text:first-of-type {
  padding-bottom: 40px;
  border-bottom: 1px solid #d9d9d9;
}

.one-initiative-hero-right {
  width: 45.503049%; /* 597/1312 */
}
.one-initiative-hero-right img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .one-initiative-hero-right {
    width: 100%;
  }
}

.one-initiative-second {
  padding: 96px 64px;
  background: #92ebeb;
}
@media only screen and (max-width: 1024px) {
  .one-initiative-second {
    padding: 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .one-initiative-second {
    padding: 64px 16px;
  }
}

.one-initiative-second-content {
  border-radius: 80px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
}
@media only screen and (max-width: 666px) {
  .one-initiative-second-content {
    border-radius: 24px;
  }
}

.one-initiative-slider-wrapper {
  position: relative;
  width: 100%;
}

.one-initiative-slider-arrows {
  width: 112px;
  height: 44px;
  position: absolute;
  bottom: 106px;
  right: 39%;
  z-index: 7;
}
.one-initiative-slider-arrows .slick-prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
}
.one-initiative-slider-arrows .slick-prev::before {
  display: none;
}
.one-initiative-slider-arrows .slick-prev svg {
  width: 100%;
}
.one-initiative-slider-arrows .slick-next {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
}
.one-initiative-slider-arrows .slick-next::before {
  display: none;
}
.one-initiative-slider-arrows .slick-next svg {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .one-initiative-slider-arrows {
    right: auto;
    left: 64px;
  }
}
@media only screen and (max-width: 666px) {
  .one-initiative-slider-arrows {
    left: 24px;
    bottom: 79px;
  }
}

.one-initiative-slider {
  width: 100%;
}
.one-initiative-slider .slick-dots {
  width: 100%;
  bottom: 44px;
  padding: 0 64px;
  display: flex;
  gap: 24px;
}
.one-initiative-slider .slick-dots li {
  width: 100%;
}
.one-initiative-slider .slick-dots li button:before {
  width: 100%;
  height: 3px;
  content: "";
  border-radius: 20px;
  background: #fff;
  opacity: 1;
}
.one-initiative-slider .slick-dots li.slick-active button:before {
  background: #000;
}
@media only screen and (max-width: 666px) {
  .one-initiative-slider .slick-dots {
    padding: 0 16px;
    bottom: 28px;
  }
}

.one-initiative-slider-item {
  padding-bottom: 64px;
}

.one-initiative-slider-item-inner {
  padding: 64px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
@media only screen and (max-width: 1024px) {
  .one-initiative-slider-item-inner {
    grid-template-columns: repeat(1, 1fr);
    padding: 64px 64px 148px 64px;
  }
}
@media only screen and (max-width: 666px) {
  .one-initiative-slider-item-inner {
    padding: 24px 24px 124px 24px;
    gap: 40px;
  }
}

.one-initiative-slider-item-left img {
  width: 100%;
  border-radius: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 666px) {
  .one-initiative-slider-item-left img {
    border-radius: 24px;
  }
}

.one-initiative-slider-item-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.one-initiative-slider-item-right-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .one-initiative-slider-item-right-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}

.one-initiative-slider-item-right-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
@media only screen and (max-width: 666px) {
  .one-initiative-slider-item-right-text {
    font-size: 16px;
  }
}

.one-initiative-goals {
  width: 100%;
  padding: 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .one-initiative-goals {
    padding: 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .one-initiative-goals {
    padding: 64px 16px;
  }
}

.one-initiative-goals-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .one-initiative-goals-title {
    margin-bottom: 40px;
    font-size: 32px;
  }
}

.one-initiative-goals-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 1024px) {
  .one-initiative-goals-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 64px;
  }
}

.one-initiative-goals-item {
  border-radius: 40px;
  border: 2px solid var(--border, #d9d9d9);
  padding: 40px;
}
.one-initiative-goals-item.small {
  grid-column: span 13;
}
.one-initiative-goals-item.large {
  grid-column: span 17;
}
@media only screen and (max-width: 1024px) {
  .one-initiative-goals-item.small {
    grid-column: unset;
  }
  .one-initiative-goals-item.large {
    grid-column: unset;
  }
}
@media only screen and (max-width: 666px) {
  .one-initiative-goals-item {
    padding: 24px;
  }
}

.one-initiative-goals-item-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}

.one-initiative-goals-item-text {
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.one-initiative-work {
  width: 100%;
  padding: 96px 64px 0;
}
@media only screen and (max-width: 1024px) {
  .one-initiative-work {
    padding: 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .one-initiative-work {
    padding: 64px 16px;
  }
}

.one-initiative-work-title {
  color: var(--brand-black, #000);
  text-align: center;
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .one-initiative-work-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.one-initiative-work-container {
  max-width: 916px;
  margin: 0 auto;
  width: 100%;
}

.one-initiative-work-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 96px;
  position: relative;
}
.one-initiative-work-item::before {
  content: "";
  position: absolute;
  left: 47px;
  top: 0;
  width: 1px;
  height: calc(100% + 96px);
  display: block;
  border-right: 2px dotted #c3c3e7;
  z-index: 1;
}
.one-initiative-work-item:last-child::before {
  display: none;
}
@media only screen and (max-width: 666px) {
  .one-initiative-work-item {
    margin-bottom: 40px;
  }
  .one-initiative-work-item::before {
    content: none;
    display: none;
  }
}

.one-initiative-work-item-num {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  background: #0000b4;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
@media only screen and (max-width: 666px) {
  .one-initiative-work-item-num {
    display: none;
  }
}

.one-initiative-work-item-right {
  width: 82.423581%; /* 755/916 */
  padding: 40px;
  border-radius: 40px;
  border: 2px solid var(--border, #d9d9d9);
}
@media only screen and (max-width: 666px) {
  .one-initiative-work-item-right {
    padding: 24px;
    width: 100%;
  }
}

.one-initiative-work-item-right-q {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--brand-black, #000);
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 99999px;
  border: 1px solid var(--brand-teal, #92ebeb);
  background: rgba(146, 235, 235, 0.2);
  padding: 12px 16px;
  position: absolute;
  top: 25px;
  right: 25px;
}

.one-initiative-work-item-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 40px;
}

.one-initiative-work-item-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.one-initiative-work-item-right-mobnum {
  display: none;
}
@media only screen and (max-width: 666px) {
  .one-initiative-work-item-right-mobnum {
    display: block;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: Leleka;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 48px */
    background: #0000b4;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    margin-bottom: 24px;
  }
}

.search-result-main {
  width: 100%;
  padding: 115px 0;
}
@media only screen and (max-width: 666px) {
  .search-result-main {
    padding: 115px 0 20px 0;
  }
}

.search-result-content {
  padding: 0 64px;
}
@media only screen and (max-width: 1024px) {
  .search-result-content {
    padding: 0 24px;
  }
}

.search-result-title {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .search-result-title {
    margin-bottom: 40px;
  }
}

.search-result-title-text {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
}
@media only screen and (max-width: 666px) {
  .search-result-title-text {
    font-size: 40px;
  }
}

.search-result-title-quantity {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}

.search-result-h2 {
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}

.search-result-item {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.search-result-item-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.search-result-item-top-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}
@media only screen and (max-width: 666px) {
  .search-result-item-top-name {
    font-size: 16px;
  }
}

.search-result-item-top-btn {
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  padding: 8px 16px;
  border-radius: 99999px;
  border: 1px solid var(--brand-blue, #0000b4);
}

.search-result-item-content {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
.search-result-item-content span {
  color: #0000b4;
}
@media only screen and (max-width: 666px) {
  .search-result-item-content {
    font-size: 16px;
  }
}

.about-page {
  width: 100%;
}

.about-main {
  width: 100%;
  padding: 115px 0;
}
@media only screen and (max-width: 666px) {
  .about-main {
    padding: 150px 0 0px;
  }
}

.about-hero {
  padding: 96px 64px 96px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .about-hero {
    flex-direction: column;
    padding: 0 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .about-hero {
    padding: 0 16px 64px 16px;
  }
}

.about-hero-left {
  width: 49.618902%; /* 651/1312 */
}
.about-hero-left p {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}
.about-hero-left p:first-of-type {
  padding-bottom: 40px;
  border-bottom: 1px solid #d9d9d9;
}
@media only screen and (max-width: 1024px) {
  .about-hero-left {
    width: 100%;
  }
}

.about-hero-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .about-hero-title {
    font-size: 40px;
  }
}

.about-hero-right {
  width: 45.503049%; /* 597/1312 */
}
.about-hero-right img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .about-hero-right {
    width: 100%;
  }
}

.about-mission {
  width: 100%;
  padding: 96px 64px;
  background: var(--brand-teal, #92ebeb);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
@media only screen and (max-width: 1024px) {
  .about-mission {
    padding: 80px 24px;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 666px) {
  .about-mission {
    padding: 64px 16px;
    gap: 40px;
  }
}

.about-mission-item {
  position: relative;
  border-radius: 40px;
  padding: 64px 64px 0px 64px;
  overflow: hidden;
}
.about-mission-item.second .about-mission-item-bg {
  top: 80%;
}
@media only screen and (max-width: 1024px) {
  .about-mission-item {
    flex-direction: column;
    display: flex;
    padding: 64px;
  }
  .about-mission-item.second .about-mission-item-bg {
    top: 47%;
  }
}
@media only screen and (max-width: 666px) {
  .about-mission-item {
    padding: 24px;
  }
}

.about-mission-item-title {
  position: relative;
  z-index: 3;
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .about-mission-item-title {
    order: 1;
  }
}
@media only screen and (max-width: 666px) {
  .about-mission-item-title {
    font-size: 32px;
  }
}

.about-mission-item-description {
  position: relative;
  z-index: 3;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .about-mission-item-description {
    order: 2;
  }
}
@media only screen and (max-width: 666px) {
  .about-mission-item-description {
    margin-bottom: 40px;
  }
}

.about-mission-item-image {
  width: 100%;
  height: 350px;
  position: relative;
  z-index: 3;
  margin-bottom: 64px;
}
.about-mission-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
@media only screen and (max-width: 1024px) {
  .about-mission-item-image {
    order: 3;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 666px) {
  .about-mission-item-image {
    height: 295px;
  }
}

.about-mission-item-bg {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 1;
}
.about-mission-item-bg img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .about-mission-item-bg {
    top: 47%;
  }
}

.about-mission-item-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
}

.team-main {
  width: 100%;
  padding: 170px 0 0;
}
@media only screen and (max-width: 666px) {
  .team-main {
    padding: 150px 0 0px;
  }
}

.team-hero {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 64px 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .team-hero {
    flex-direction: column-reverse;
    padding: 0 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .team-hero {
    padding: 0 16px 64px 16px;
  }
}

.team-hero-left {
  width: 45.503049%; /* 597/1312 */
}
.team-hero-left img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .team-hero-left {
    width: 100%;
  }
}

.team-hero-right {
  width: 49.618902%; /* 651/1312 */
}
.team-hero-right p {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}
.team-hero-right p:first-of-type {
  padding-bottom: 40px;
  border-bottom: 1px solid #d9d9d9;
}
@media only screen and (max-width: 1024px) {
  .team-hero-right {
    width: 100%;
  }
}

.team-hero-right-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .team-hero-right-title {
    font-size: 40px;
  }
}

.team-list {
  width: 100%;
  padding: 96px 64px 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .team-list {
    padding: 0 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .team-list {
    padding: 0 16px 64px 16px;
  }
}

.team-list-top {
  margin-bottom: 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .team-list-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 666px) {
  .team-list-top {
    margin-bottom: 40px;
  }
}

.team-list-top-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .team-list-top-title {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 666px) {
  .team-list-top-title {
    font-size: 32px;
  }
}

.team-list-top-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media only screen and (max-width: 666px) {
  .team-list-top-tag {
    gap: 16px;
  }
}

.team-list-top-tag-item {
  width: 129px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue, #0000b4);
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 99999px;
  border: 1px solid var(--brand-blue, #0000b4);
}
.team-list-top-tag-item.active {
  color: #fff;
  background: var(--brand-blue, #0000b4);
}
.team-list-top-tag-item:hover {
  color: #fff;
  background: var(--brand-blue, #0000b4);
}

.team-list-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 24px;
}
@media only screen and (max-width: 1024px) {
  .team-list-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .team-list-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.team-list-item-photo {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}
.team-list-item-photo img {
  width: 100%;
  border-radius: 40px;
}

.team-list-item-tag {
  position: absolute;
  top: 40px;
  left: 40px;
  padding: 8px 24px;
  border-radius: 9999px;
  background: #fff;
  color: var(--brand-black, #000);
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
}
@media only screen and (max-width: 666px) {
  .team-list-item-tag {
    top: 25px;
    left: 25px;
  }
}

.team-list-item-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}

.team-list-item-post {
  color: var(--gray, #797979);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.352px;
}

.team-list-more {
  width: -moz-fit-content;
  width: fit-content;
  margin: 65px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--brand-blue, #0000b4);
  text-align: center;
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
}
@media only screen and (max-width: 666px) {
  .team-list-more {
    margin: 40px auto 0;
  }
}

.team-vacancies {
  width: 100%;
  padding: 96px 64px 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .team-vacancies {
    padding: 60px 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .team-vacancies {
    padding: 0 16px 64px 16px;
  }
}

.team-vacancies-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .team-vacancies-title {
    text-align: center;
  }
}
@media only screen and (max-width: 666px) {
  .team-vacancies-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.team-vacancies-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 24px;
}
@media only screen and (max-width: 1024px) {
  .team-vacancies-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.team-vacancies-item {
  padding: 40px;
  border-radius: 40px;
  border: 1px solid var(--border, #d9d9d9);
}
@media only screen and (max-width: 666px) {
  .team-vacancies-item {
    padding: 24px;
    border-radius: 20px;
  }
}

.team-vacancies-item-post {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 16px;
}

.team-vacancies-item-requirements {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.team-vacancies-item-requirements-tag {
  border-radius: 99999px;
  border: 1px solid var(--border, #d9d9d9);
  padding: 16px;
  color: var(--brand-black, #000);
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
}

.team-vacancies-item-description {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}

.team-vacancies-item-btn {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 99999px;
  border: 1px solid var(--brand-blue, #0000b4);
  background: var(--brand-blue, #0000b4);
  padding: 16px;
  cursor: pointer;
  color: var(--white, #fff);
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
}

.team-vacancies-more {
  width: -moz-fit-content;
  width: fit-content;
  margin: 65px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--brand-blue, #0000b4);
  text-align: center;
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
}

.new-experts-btn {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 99999px;
  background: var(--brand-blue, #0000b4);
  padding: 16px 64px;
  color: var(--white, #fff);
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .new-experts-btn {
    margin-bottom: 40px;
  }
}

.vacancies-main {
  width: 100%;
  padding: 180px 64px 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .vacancies-main {
    padding: 170px 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-main {
    padding: 154px 16px 64px 16px;
  }
}

.vacancies-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .vacancies-head {
    margin-bottom: 24px;
  }
}

.vacancies-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
}
@media only screen and (max-width: 666px) {
  .vacancies-title {
    font-size: 40px;
  }
}

.vacancies-quantity {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}

.vacancies-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .vacancies-content {
    flex-direction: column;
  }
}

.vacancies-filters {
  width: 310px;
  position: relative;
  padding: 40px;
  border-radius: 40px;
  border: 1px solid var(--border, #d9d9d9);
}
@media only screen and (max-width: 1024px) {
  .vacancies-filters {
    width: 100%;
    border: none;
    padding: 0;
  }
}

.vacancies-filters-positions {
  margin-bottom: 48px;
}

.vacancies-filters-positions-title {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  letter-spacing: -0.368px;
  margin-bottom: 24px;
}

.checkbox-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.322px;
  cursor: pointer;
}

.checkbox-label input {
  display: none;
}

.custom-checkbox {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.checkbox-label input:checked + .custom-checkbox {
  background-color: #0000b4;
  border-color: #0000b4;
}

.checkbox-label input:checked + .custom-checkbox::after {
  content: "✔";
  color: white;
  font-size: 16px;
}

.range_container {
  --_marker-border-clr: #0ea5e9;
  --_marker-size: 15px;
  --_track-heigt: 3px;
  --_tooltip-bg-clr: rgba(0, 0, 0, 0.4);
  --_tooltip-txt-clr: var(--_marker-border-clr);
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

.sliders_control {
  position: relative;
}

.slider-tooltip {
  position: absolute;
  top: -3.5rem;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--_tooltip-bg-clr);
  color: var(--_tooltip-txt-clr);
  font-size: 0.8rem;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  text-align: center;
  translate: -50% 0;
}

.slider-tooltip::before {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  translate: -50% 0;
  width: 0.5rem;
  height: 0.5rem;
  rotate: 45deg;
  z-index: -1;
  background-color: inherit;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: var(--_marker-size);
  height: var(--_marker-size);
  background-color: var(--_marker-border-clr);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--_marker-border-clr);
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: var(--_marker-size);
  height: var(--_marker-size);
  background-color: var(--_marker-border-clr);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--_marker-border-clr);
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}

input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: var(--_track-heigt);
  width: 100%;
  position: absolute;
  background-color: var(--_marker-border-clr);
  pointer-events: none;
}

#fromSlider {
  height: 0;
  z-index: 1;
}

.scale {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  position: relative;
  width: calc(100% - var(--_marker-size));
  margin-inline: auto;
  font-size: 0.8rem;
}

.scale div {
  position: absolute;
  translate: -50% 0;
}

.scale div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -125%;
  width: 1px;
  height: 10px;
  background-color: #666;
}

.noUi-handle {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background: #0000b4;
  border: 4px solid #fff;
  box-shadow: none;
  cursor: pointer;
  outline: none;
}

.noUi-horizontal .noUi-handle {
  width: 24px;
  height: 24px;
  top: -10px;
}

.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

.noUi-connect {
  background: #0000b4;
  border-radius: 4px;
}

.noUi-target {
  border-radius: 0px;
  background: #d9d9d9;
  box-shadow: none;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-tooltip {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  letter-spacing: -0.368px;
  border: none;
}

.vacancies-filters-exp {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  letter-spacing: -0.368px;
  margin-bottom: 61px;
}

#slider {
  margin-bottom: 48px;
}

.vacancies-list {
  width: 60.138889vw; /* 866/1440 */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 1024px) {
  .vacancies-list {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.vacancies-filters-mob-head {
  width: 100%;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .vacancies-filters-mob-head {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 64px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-filters-mob-head {
    margin-bottom: 40px;
  }
}

.vacancies-filters-mob-head-item {
  cursor: pointer;
  border-radius: 99999px;
  border: 1px solid var(--brand-blue, #0000b4);
  padding: 16px;
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 666px) {
  .vacancies-filters-mob-head-item {
    padding: 8px 16px;
  }
}

@media only screen and (max-width: 1024px) {
  .vacancies-filters-positions,
  .vacancies-filters-experience,
  .vacancies-filters-department {
    display: none;
  }
  .vacancies-filters-positions.active,
  .vacancies-filters-experience.active,
  .vacancies-filters-department.active {
    display: block;
  }
}

@media only screen and (max-width: 1024px) {
  .vacancies-filters-positions {
    position: absolute;
    top: 72px;
    left: 0px;
    z-index: 3;
    width: 310px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border, #d9d9d9);
    background: var(--white, #fff);
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-filters-positions {
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .vacancies-filters-experience {
    position: absolute;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 310px;
    height: 148px;
    text-align: center;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border, #d9d9d9);
    background: var(--white, #fff);
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-filters-experience {
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .vacancies-filters-department {
    position: absolute;
    top: 72px;
    right: 0;
    z-index: 3;
    width: 310px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border, #d9d9d9);
    background: var(--white, #fff);
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-filters-department {
    width: 100%;
  }
}

.one-vacancy-page {
  width: 100%;
}
.one-vacancy-page .breadcrumbs {
  padding: 0;
}

.one-vacancy-main {
  width: 100%;
  padding: 114px 64px 80px 64px;
}
@media only screen and (max-width: 1024px) {
  .one-vacancy-main {
    padding: 114px 24px 80px 24px;
  }
}

.one-vacancy-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .one-vacancy-content {
    flex-direction: column;
  }
}

.one-vacancy-left {
  width: 57.545732%; /* 755/1312 */
}
.one-vacancy-left h1 {
  color: #000;
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .one-vacancy-left h1 {
    font-size: 40px;
  }
}
.one-vacancy-left h2 {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-top: 64px;
  margin-bottom: 48px;
}
@media only screen and (max-width: 666px) {
  .one-vacancy-left h2 {
    font-size: 32px;
  }
}
.one-vacancy-left h3 {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-top: 64px;
  margin-bottom: 48px;
}
@media only screen and (max-width: 666px) {
  .one-vacancy-left h3 {
    font-size: 24px;
  }
}
.one-vacancy-left p {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin: 48px 0;
}
.one-vacancy-left ul {
  margin-left: 25px;
}
.one-vacancy-left ul li {
  list-style: disc;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
.one-vacancy-left ul li a {
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.4px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}
@media only screen and (max-width: 1024px) {
  .one-vacancy-left {
    width: 100%;
  }
}

.one-vacancy-content-link1 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px;
  border-radius: 99999px;
  border: 1px solid var(--brand-blue, #0000b4);
  color: var(--brand-blue, #0000b4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  margin-top: 48px;
  margin-bottom: 64px;
}

.one-vacancy-content-quote {
  width: 100%;
  position: relative;
  padding: 24px 60px 24px 24px;
  border-radius: 24px;
  border: 1px solid var(--brand-teal, #92ebeb);
  background: rgba(146, 235, 235, 0.2);
}
@media only screen and (max-width: 666px) {
  .one-vacancy-content-quote {
    padding: 24px;
  }
}

.one-vacancy-content-quote-icon {
  position: absolute;
  top: -36px;
  right: 12px;
}

.one-vacancy-content-quote-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

.one-vacancy-content-quote-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}

.one-vacancy-content-quote-bottom-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}
.one-vacancy-content-quote-bottom-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.one-vacancy-content-quote-bottom-autor {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  letter-spacing: -0.368px;
}

.one-vacancy-content-link2 {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  padding: 16px;
  border-radius: 99999px;
  background: var(--brand-blue, #0000b4);
  margin-top: 48px;
}

.one-vacancy-right {
  width: 37.57622%; /* 493/1312 */
}
@media only screen and (max-width: 1024px) {
  .one-vacancy-right {
    width: 100%;
    margin-top: 48px;
  }
}

.one-vacancy-file-upload {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border, #d9d9d9);
}
.one-vacancy-file-upload .input-file-container {
  position: relative;
  width: 100%;
}
.one-vacancy-file-upload .input-file-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--brand-black, #000);
  text-align: center;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
.one-vacancy-file-upload .input-file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  padding: 14px 0;
  cursor: pointer;
}
.one-vacancy-file-upload .file-return {
  margin: 0;
}
.one-vacancy-file-upload .file-return:not(:empty) {
  margin: 1em 0 0 0;
}
.one-vacancy-file-upload .file-return {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
.one-vacancy-file-upload .file-return:not(:empty):before {
  content: "";
  font-style: normal;
  font-weight: normal;
}

.one-vacancy-form {
  width: 100%;
  border-radius: 40px;
  border: 24px solid #0000b4;
  padding: 24px;
}
@media only screen and (max-width: 666px) {
  .one-vacancy-form {
    border: 16px solid #0000b4;
    padding: 32px 16px 16px 16px;
  }
}

.one-vacancy-form-input {
  width: 100%;
  margin-bottom: 24px;
}
.one-vacancy-form-input input {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid var(--border, #d9d9d9);
  padding-bottom: 8px;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
.one-vacancy-form-input.error input {
  color: #e71317;
  border-bottom: 2px solid #e71317;
}

.one-vacancy-form-input-title {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 666px) {
  .one-vacancy-form-input-title {
    margin-bottom: 14px;
  }
}

.one-vacancy-radio-container {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.352px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--border, #d9d9d9);
}
.one-vacancy-radio-container .question {
  font-size: 20px;
  margin-bottom: 10px;
}
.one-vacancy-radio-container .radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.one-vacancy-radio-container label {
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}
.one-vacancy-radio-container input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid black;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.one-vacancy-radio-container input[type=radio]:checked::before {
  content: "";
  width: 14px;
  height: 14px;
  background: black;
  border-radius: 50%;
  position: absolute;
}

.one-vacancy-form-btn {
  margin-top: 64px;
  width: 100%;
  border-radius: 99999px;
  background: var(--brand-blue, #0000b4);
  color: var(--white, #fff);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  padding: 16px 64px;
}

.contacts-main {
  width: 100%;
  padding-top: 186px;
}
@media only screen and (max-width: 1024px) {
  .contacts-main {
    padding-top: 170px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-main {
    padding-top: 154px;
  }
}

.contacts-title {
  width: 100%;
  padding: 0 64px 96px;
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .contacts-title {
    padding: 0 24px 80px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-title {
    padding: 0 16px 64px;
    font-size: 40px;
  }
}

.contacts-info {
  width: 100%;
  padding: 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .contacts-info {
    padding: 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-info {
    padding: 64px 16px;
  }
}

.contacts-info-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .contacts-info-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.contacts-info-container {
  width: 100%;
}

.contacts-info-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 2px solid #d9d9d9;
}
.contacts-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contacts-info-item-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.contacts-documents {
  width: 100%;
  padding: 96px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .contacts-documents {
    padding: 80px 24px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-documents {
    padding: 64px 16px;
  }
}

.contacts-documents-left {
  width: 31.631098%; /* 415/1312 */
}
@media only screen and (max-width: 1024px) {
  .contacts-documents-left {
    width: 100%;
  }
}

.contacts-documents-left-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .contacts-documents-left-title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-documents-left-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.contacts-documents-left-image {
  width: 100%;
}
.contacts-documents-left-image img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .contacts-documents-left-image {
    display: none;
  }
}

.contacts-documents-right {
  width: 63.490854%; /* 833/1312 */
}
@media only screen and (max-width: 1024px) {
  .contacts-documents-right {
    width: 100%;
  }
}

.contacts-documents-right-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 2px solid #d9d9d9;
}
.contacts-documents-right-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contacts-documents-right-item-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}
@media only screen and (max-width: 666px) {
  .contacts-documents-right-item-name {
    font-size: 16px;
  }
}

.contacts-documents-right-item-btn {
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  padding: 13px 16px;
  border-radius: 9999px;
  border: 1px solid var(--brand-blue, #0000b4);
}

.public-page {
  width: 100%;
}

.public-main {
  width: 100%;
  padding: 176px 64px 96px 0;
}
@media only screen and (max-width: 1024px) {
  .public-main {
    padding: 170px 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .public-main {
    padding: 155px 16px 64px 16px;
  }
}

.public-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}
@media only screen and (max-width: 1024px) {
  .public-content {
    flex-direction: column;
  }
}

.public-left {
  width: 36.737805%; /* 482/1312 */
}
@media only screen and (max-width: 1024px) {
  .public-left {
    width: 100%;
  }
}

.public-left-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-left: 63px;
}
@media only screen and (max-width: 1024px) {
  .public-left-title {
    margin-left: 0;
  }
}
@media only screen and (max-width: 666px) {
  .public-left-title {
    font-size: 40px;
  }
}

.public-left-gif {
  width: 100%;
}
.public-left-gif img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .public-left-gif {
    display: none;
  }
}

.public-right {
  width: 61%;
}
@media only screen and (max-width: 1024px) {
  .public-right {
    width: 100%;
  }
}

.public-accordeon-item {
  padding-bottom: 40px;
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 40px;
}
.public-accordeon-item:has(.public-accordeon-item-head.in) {
  border-bottom: 2px solid #0000b4;
}
.public-accordeon-item-head {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  gap: 24px;
}
.public-accordeon-item-head.in .public-accordeon-item-head-name {
  color: #0000b4;
}
.public-accordeon-item-head.in .public-accordeon-item-head-arrow {
  transform: rotate(90deg);
}
.public-accordeon-item-head.in .public-accordeon-item-head-arrow svg path {
  stroke: #0000b4;
}

.public-accordeon-item-head-arrow {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
.public-accordeon-item-head-arrow svg {
  width: 100%;
}

.public-accordeon-item-head-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  transition: all 0.3s ease;
}

.public-accordeon-item-drop {
  display: none;
  margin-top: 24px;
}
.public-accordeon-item-drop p {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 666px) {
  .public-accordeon-item-drop p {
    font-size: 16px;
  }
}

.public-accordeon-item-drop-el {
  padding-left: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media only screen and (max-width: 666px) {
  .public-accordeon-item-drop-el {
    flex-direction: column;
    align-items: flex-start;
  }
}

.public-accordeon-item-drop-el-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
@media only screen and (max-width: 666px) {
  .public-accordeon-item-drop-el-name {
    margin-bottom: 24px;
  }
}

.public-accordeon-item-drop-el-download {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 99999px;
  border: 1px solid var(--brand-blue, #0000b4);
  padding: 8px 16px;
}
.public-accordeon-item-drop-el-download:hover {
  background: var(--brand-blue, #0000b4);
  color: var(--white, #fff);
}
@media only screen and (max-width: 666px) {
  .public-accordeon-item-drop-el-download {
    width: 100%;
  }
}

.faq-page {
  width: 100%;
}

.media-kit-page {
  width: 100%;
}
.media-kit-page .public-accordeon-item-drop-el {
  padding-left: 0;
}

.handbook-main {
  width: 100%;
  padding-top: 90px;
}

.handbook-hero {
  padding: 96px 64px 96px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .handbook-hero {
    flex-direction: column-reverse;
    padding: 80px 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .handbook-hero {
    padding: 64px 16px 64px 16px;
  }
}

.handbook-hero-left {
  width: 40.625%; /* 533/1312 */
}
.handbook-hero-left img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .handbook-hero-left {
    width: 100%;
  }
}

.handbook-hero-right-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .handbook-hero-right-title {
    font-size: 40px;
  }
}

.handbook-hero-right {
  width: 49.618902%; /* 651/1312 */
}
.handbook-hero-right p {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}
.handbook-hero-right p:first-of-type {
  padding-bottom: 40px;
  border-bottom: 1px solid #d9d9d9;
}
@media only screen and (max-width: 1024px) {
  .handbook-hero-right {
    width: 100%;
  }
}

.handbook-guides {
  width: 100%;
  padding: 96px 64px 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .handbook-guides {
    padding: 80px 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .handbook-guides {
    padding: 64px 16px 64px 16px;
  }
}

.handbook-guides-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .handbook-guides-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
  }
}

.handbook-guides-top-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
}
@media only screen and (max-width: 666px) {
  .handbook-guides-top-title {
    margin-bottom: 24px;
  }
}

.handbook-guides-top-filters {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 666px) {
  .handbook-guides-top-filters {
    flex-direction: column;
    align-items: flex-start;
  }
}

.handbook-guides-top-filters-item {
  color: var(--brand-blue, #0000b4);
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  display: block;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid #0000b4;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.handbook-guides-top-filters-item:hover {
  background: #0000b4;
  color: #fff;
}
.handbook-guides-top-filters-item.active {
  background: #0000b4;
  color: #fff;
}
.handbook-guides-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 24px;
}
@media only screen and (max-width: 1024px) {
  .handbook-guides-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 666px) {
  .handbook-guides-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.handbook-guides-container-item-image {
  height: 281px;
  position: relative;
  overflow: hidden;
  padding: 40px;
  margin-bottom: 24px;
}
.handbook-guides-container-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.handbook-guides-container-item-tag {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  border-radius: 9999px;
  background: var(--white, #fff);
  padding: 8px 16px;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  z-index: 2;
}

.handbook-guides-container-item-date {
  color: var(--gray, #797979);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.352px;
  margin-bottom: 16px;
}

.handbook-guides-container-item-name {
  overflow: hidden;
  color: var(--brand-black, #000);
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}

.handbook-guides-container-item-link {
  color: var(--brand-blue, #0000b4);
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
}
.handbook-guides-container-item-link:hover {
  text-decoration: underline;
}

.guid-page {
  width: 100%;
  padding-top: 114px;
}

.guid-main {
  width: 100%;
}

.guid-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  padding: 0 64px 96px;
}
@media only screen and (max-width: 1024px) {
  .guid-content {
    padding: 0 24px 70px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .guid-content {
    padding: 0 16px 64px;
  }
}

.guid-content-left {
  width: 37.57622%; /* 493/1312 */
}
.guid-content-left h1 {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .guid-content-left {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .guid-content-left h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }
}

.guid-content-left-anchors {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border, #d9d9d9);
  background: var(--white, #fff);
}
@media only screen and (max-width: 666px) {
  .guid-content-left-anchors {
    border-radius: 24px;
    border: 1px solid var(--border, #d9d9d9);
    background: var(--white, #fff);
    padding: 24px;
  }
}

.guid-content-left-anchors-heading {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}

.guid-content-left-anchors-item {
  display: block;
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
.guid-content-left-anchors-item:hover {
  text-decoration: underline;
}

.guid-content-right {
  width: 57.545732%; /* 755/1312 */
}
.guid-content-right h2 {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin: 64px 0;
}
.guid-content-right h3 {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin: 64px 0;
}
.guid-content-right p {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin: 64px 0;
}
.guid-content-right p a {
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.4px;
  text-decoration-line: underline;
}
.guid-content-right ul {
  margin-left: 24px;
}
.guid-content-right ul li {
  list-style: disc;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin: 16px 0;
}
.guid-content-right ul li a {
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.4px;
  text-decoration-line: underline;
}
.guid-content-right ol {
  margin-left: 24px;
}
.guid-content-right ol li {
  list-style: decimal;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin: 16px 0;
}
.guid-content-right ol li a {
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.4px;
  text-decoration-line: underline;
}
@media only screen and (max-width: 1024px) {
  .guid-content-right {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .guid-content-right h2 {
    font-size: 32px;
    margin: 32px 0;
  }
  .guid-content-right h3 {
    margin: 32px 0;
  }
  .guid-content-right p {
    margin: 32px 0;
  }
  .guid-content-right ul {
    margin-left: 16px;
  }
  .guid-content-right ul li {
    margin: 8px 0;
  }
  .guid-content-right ol {
    margin-left: 16px;
  }
  .guid-content-right ol li {
    margin: 8px 0;
  }
}

.guid-content-image {
  margin-bottom: 64px;
}
.guid-content-image img {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .guid-content-image {
    margin-bottom: 40px;
  }
}

.guid-content-quote {
  width: 100%;
  position: relative;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--brand-teal, #92ebeb);
  background: rgba(146, 235, 235, 0.2);
}

.guid-content-quote-icon {
  position: absolute;
  top: -36px;
  right: 12px;
}

.guid-content-quote-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

.guid-content-quote-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guid-content-quote-autor-avatar img {
  border-radius: 10px;
}

.guid-content-quote-autor-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: -0.368px;
}

.guid-content-link {
  width: -moz-fit-content;
  width: fit-content;
  margin: 64px 0;
  display: block;
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 99999px;
  border: 1px solid var(--brand-blue, #0000b4);
  padding: 16px;
}
.guid-content-link:hover {
  background: var(--brand-blue, #0000b4);
  color: var(--white, #fff);
}
@media only screen and (max-width: 666px) {
  .guid-content-link {
    margin: 32px 0;
  }
}

.guid-content-link2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 64px 0;
  display: block;
  color: #fff;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 99999px;
  background: #0000b4;
  padding: 16px;
  border: 1px solid #0000b4;
}
.guid-content-link2:hover {
  background: #fff;
  color: #0000b4;
}
@media only screen and (max-width: 666px) {
  .guid-content-link2 {
    margin: 32px 0;
  }
}

.anchor-target:target {
  scroll-margin-top: 114px;
}

.guid-other {
  width: 100%;
  padding: 96px 0 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .guid-other {
    padding: 70px 0 70px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .guid-other {
    padding: 64px 16px;
  }
}

.guid-other-top {
  width: 100%;
}

.guid-other-top-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .guid-other-top-title {
    font-size: 32px;
    margin-bottom: 49px;
  }
}

.guid-other-wrapper {
  width: 100%;
  position: relative;
}

.guid-other-slider-arrows {
  width: 112px;
  height: 44px;
  position: absolute;
  top: -117px;
  right: 45px;
  z-index: 10;
  border-radius: 99999px;
}
.guid-other-slider-arrows .slick-prev {
  position: absolute;
  top: 29px;
  left: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guid-other-slider-arrows .slick-prev::before {
  display: none;
}
.guid-other-slider-arrows .slick-prev svg {
  width: 100%;
}
.guid-other-slider-arrows .slick-next {
  position: absolute;
  top: 29px;
  right: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guid-other-slider-arrows .slick-next::before {
  display: none;
}
.guid-other-slider-arrows .slick-next svg {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .guid-other-slider-arrows {
    right: 24px;
    top: -96px;
  }
}
@media only screen and (max-width: 666px) {
  .guid-other-slider-arrows {
    right: 16px;
    top: -97px;
  }
}

.guid-other-slider .slick-track {
  margin-left: -28vw;
}
.guid-other-slider .slick-slide {
  margin: 0 12px;
}
@media only screen and (max-width: 1024px) {
  .guid-other-slider .slick-track {
    margin-left: 0;
  }
}
@media only screen and (max-width: 666px) {
  .guid-other-slider .slick-track {
    margin-left: 0;
  }
}

.guid-other-item-image {
  position: relative;
  width: 100%;
  height: 281px;
  margin-bottom: 23px;
}
.guid-other-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

.guid-other-item-image-tag {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 9999px;
  background: var(--white, #fff);
  padding: 8px 24px;
  position: absolute;
  top: 35px;
  left: 35px;
}

.guid-other-item-date {
  color: var(--gray, #797979);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.352px;
  margin-bottom: 16px;
}

.guid-other-item-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}

.guid-other-item-link {
  color: var(--brand-blue, #0000b4);
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
}
.guid-other-item-link:hover {
  text-decoration: underline;
}

.news-main {
  width: 100%;
  padding-top: 90px;
}

.news-hero {
  padding: 96px 64px 96px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .news-hero {
    flex-direction: column-reverse;
    padding: 80px 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .news-hero {
    padding: 64px 16px 64px 16px;
  }
}

.news-hero-left {
  width: 40.625%; /* 533/1312 */
}
.news-hero-left img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .news-hero-left {
    width: 100%;
  }
}

.news-hero-right-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .news-hero-right-title {
    font-size: 40px;
  }
}

.news-hero-right {
  width: 49.618902%; /* 651/1312 */
}
.news-hero-right p {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}
.news-hero-right p:first-of-type {
  padding-bottom: 40px;
  border-bottom: 1px solid #d9d9d9;
}
@media only screen and (max-width: 1024px) {
  .news-hero-right {
    width: 100%;
  }
}

.news-guides {
  width: 100%;
  padding: 96px 64px 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .news-guides {
    padding: 80px 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .news-guides {
    padding: 64px 16px 64px 16px;
  }
}

.news-guides-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .news-guides-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
  }
}

.news-guides-top-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
}
@media only screen and (max-width: 666px) {
  .news-guides-top-title {
    margin-bottom: 24px;
  }
}

.news-guides-top-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.news-guides-top-filters-item {
  color: var(--brand-blue, #0000b4);
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  display: block;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid #0000b4;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.news-guides-top-filters-item:hover {
  background: #0000b4;
  color: #fff;
}
.news-guides-top-filters-item.active {
  background: #0000b4;
  color: #fff;
}
.news-guides-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 24px;
}
@media only screen and (max-width: 1024px) {
  .news-guides-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 666px) {
  .news-guides-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.news-guides-container-item-image {
  height: 281px;
  position: relative;
  overflow: hidden;
  padding: 40px;
  margin-bottom: 24px;
}
.news-guides-container-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.news-guides-container-item-tag {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  border-radius: 9999px;
  background: var(--white, #fff);
  padding: 8px 16px;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  z-index: 2;
}

.news-guides-container-item-date {
  color: var(--gray, #797979);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.352px;
  margin-bottom: 16px;
}

.news-guides-container-item-name {
  overflow: hidden;
  color: var(--brand-black, #000);
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}

.news-guides-container-item-link {
  color: var(--brand-blue, #0000b4);
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
}
.news-guides-container-item-link:hover {
  text-decoration: underline;
}

.one-news-page {
  width: 100%;
  padding-top: 114px;
}

.one-news-main {
  width: 100%;
}

.one-news-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  padding: 0 64px 96px;
}
@media only screen and (max-width: 1024px) {
  .one-news-content {
    padding: 0 24px 70px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .one-news-content {
    padding: 0 16px 64px;
  }
}

.one-news-content-left {
  width: 37.57622%; /* 493/1312 */
}
.one-news-content-left h1 {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .one-news-content-left {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .one-news-content-left h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }
}

.one-news-content-left-anchors {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border, #d9d9d9);
  background: var(--white, #fff);
}
@media only screen and (max-width: 666px) {
  .one-news-content-left-anchors {
    border-radius: 24px;
    border: 1px solid var(--border, #d9d9d9);
    background: var(--white, #fff);
    padding: 24px;
  }
}

.one-news-content-left-anchors-heading {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}

.one-news-content-left-anchors-item {
  display: block;
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
.one-news-content-left-anchors-item:hover {
  text-decoration: underline;
}

.one-news-content-right {
  width: 57.545732%; /* 755/1312 */
}
.one-news-content-right h2 {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin: 64px 0;
}
.one-news-content-right h3 {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin: 64px 0;
}
.one-news-content-right p {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin: 64px 0;
}
.one-news-content-right p a {
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.4px;
  text-decoration-line: underline;
}
.one-news-content-right ul {
  margin-left: 24px;
}
.one-news-content-right ul li {
  list-style: disc;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin: 16px 0;
}
.one-news-content-right ul li a {
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.4px;
  text-decoration-line: underline;
}
.one-news-content-right ol {
  margin-left: 24px;
}
.one-news-content-right ol li {
  list-style: decimal;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin: 16px 0;
}
.one-news-content-right ol li a {
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.4px;
  text-decoration-line: underline;
}
@media only screen and (max-width: 1024px) {
  .one-news-content-right {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .one-news-content-right h2 {
    font-size: 32px;
    margin: 32px 0;
  }
  .one-news-content-right h3 {
    margin: 32px 0;
  }
  .one-news-content-right p {
    margin: 32px 0;
  }
  .one-news-content-right ul {
    margin-left: 16px;
  }
  .one-news-content-right ul li {
    margin: 8px 0;
  }
  .one-news-content-right ol {
    margin-left: 16px;
  }
  .one-news-content-right ol li {
    margin: 8px 0;
  }
}

.one-news-content-image {
  margin-bottom: 64px;
}
.one-news-content-image img {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .one-news-content-image {
    margin-bottom: 40px;
  }
}

.one-news-content-quote {
  width: 100%;
  position: relative;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--brand-teal, #92ebeb);
  background: rgba(146, 235, 235, 0.2);
}

.one-news-content-quote-icon {
  position: absolute;
  top: -36px;
  right: 12px;
}

.one-news-content-quote-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

.one-news-content-quote-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.one-news-content-quote-autor-avatar img {
  border-radius: 10px;
}

.one-news-content-quote-autor-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: -0.368px;
}

.one-news-content-link {
  width: -moz-fit-content;
  width: fit-content;
  margin: 64px 0;
  display: block;
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 99999px;
  border: 1px solid var(--brand-blue, #0000b4);
  padding: 16px;
}
.one-news-content-link:hover {
  background: var(--brand-blue, #0000b4);
  color: var(--white, #fff);
}
@media only screen and (max-width: 666px) {
  .one-news-content-link {
    margin: 32px 0;
  }
}

.one-news-content-link2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 64px 0;
  display: block;
  color: #fff;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 99999px;
  background: #0000b4;
  padding: 16px;
  border: 1px solid #0000b4;
}
.one-news-content-link2:hover {
  background: #fff;
  color: #0000b4;
}
@media only screen and (max-width: 666px) {
  .one-news-content-link2 {
    margin: 32px 0;
  }
}

.anchor-target:target {
  scroll-margin-top: 114px;
}

.one-news-other {
  width: 100%;
  padding: 96px 0 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .one-news-other {
    padding: 70px 0 70px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .one-news-other {
    padding: 64px 16px;
  }
}

.one-news-other-top {
  width: 100%;
}

.one-news-other-top-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .one-news-other-top-title {
    font-size: 32px;
    margin-bottom: 49px;
  }
}

.one-news-other-wrapper {
  width: 100%;
  position: relative;
}

.one-news-other-slider-arrows {
  width: 112px;
  height: 44px;
  position: absolute;
  top: -117px;
  right: 45px;
  z-index: 10;
  border-radius: 99999px;
}
.one-news-other-slider-arrows .slick-prev {
  position: absolute;
  top: 29px;
  left: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.one-news-other-slider-arrows .slick-prev::before {
  display: none;
}
.one-news-other-slider-arrows .slick-prev svg {
  width: 100%;
}
.one-news-other-slider-arrows .slick-next {
  position: absolute;
  top: 29px;
  right: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.one-news-other-slider-arrows .slick-next::before {
  display: none;
}
.one-news-other-slider-arrows .slick-next svg {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .one-news-other-slider-arrows {
    right: 24px;
    top: -96px;
  }
}
@media only screen and (max-width: 666px) {
  .one-news-other-slider-arrows {
    right: 16px;
    top: -97px;
  }
}

.one-news-other-slider .slick-track {
  margin-left: -28vw;
}
.one-news-other-slider .slick-slide {
  margin: 0 12px;
}
@media only screen and (max-width: 1024px) {
  .one-news-other-slider .slick-track {
    margin-left: 0;
  }
}
@media only screen and (max-width: 666px) {
  .one-news-other-slider .slick-track {
    margin-left: 0;
  }
}

.one-news-other-item-image {
  position: relative;
  width: 100%;
  height: 281px;
  margin-bottom: 23px;
}
.one-news-other-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

.one-news-other-item-image-tag {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 9999px;
  background: var(--white, #fff);
  padding: 8px 24px;
  position: absolute;
  top: 35px;
  left: 35px;
}

.one-news-other-item-date {
  color: var(--gray, #797979);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.352px;
  margin-bottom: 16px;
}

.one-news-other-item-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}

.one-news-other-item-link {
  color: var(--brand-blue, #0000b4);
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
}
.one-news-other-item-link:hover {
  text-decoration: underline;
}

.community-page {
  width: 100%;
  padding-top: 91px;
}

.community-main {
  width: 100%;
}

.community-hero {
  width: 100%;
  padding: 96px 64px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 1024px) {
  .community-hero {
    padding: 80px 24px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 666px) {
  .community-hero {
    padding: 64px 16px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.community-title {
  grid-column: span 2;
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .community-title {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 666px) {
  .community-title {
    grid-column: span 2;
    font-size: 40px;
  }
}

.community-item {
  grid-column: span 1;
}
.community-item img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .community-item:nth-child(n+8) {
    display: none;
  }
}
@media only screen and (max-width: 666px) {
  .community-item:nth-child(n+6) {
    display: none;
  }
}

.community-second {
  width: 100%;
  padding: 96px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .community-second {
    padding: 80px 24px;
    flex-direction: column-reverse;
    gap: 64px;
  }
}
@media only screen and (max-width: 666px) {
  .community-second {
    padding: 64px 16px;
    gap: 0;
  }
}

.community-second-left {
  width: 45.503049%; /* 597/1312 */
}
.community-second-left img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .community-second-left {
    width: 100%;
  }
}

.community-second-right {
  width: 49.618902%; /* 651/1312 */
}
.community-second-right p {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .community-second-right {
    width: 100%;
  }
}

.community-second-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .community-second-title {
    font-size: 32px;
  }
}

.community-residents {
  width: 100%;
  padding: 96px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .community-residents {
    padding: 80px 24px;
    flex-direction: column;
    gap: 64px;
  }
}
@media only screen and (max-width: 666px) {
  .community-residents {
    padding: 64px 16px;
  }
}

.community-residents-left {
  width: 49.618902%; /* 651/1312 */
}
.community-residents-left p {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}
.community-residents-left p:first-child {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border, #d9d9d9);
}
@media only screen and (max-width: 1024px) {
  .community-residents-left {
    width: 100%;
  }
}

.community-residents-left-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .community-residents-left-title {
    font-size: 32px;
  }
}

.community-residents-left-btn {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 99999px;
  background: var(--brand-blue, #0000b4);
  border: 1px solid var(--brand-blue, #0000b4);
  color: var(--white, #fff);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  padding: 16px 64px;
}
.community-residents-left-btn:hover {
  cursor: pointer;
  background: #fff;
  color: var(--brand-blue, #0000b4);
}

.community-residents-right {
  width: 49.618902%; /* 651/1312 */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media only screen and (max-width: 1024px) {
  .community-residents-right {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .community-residents-right {
    grid-template-columns: repeat(2, 1fr);
  }
}

.community-residents-right-item img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .community-residents-right-item:nth-child(1) {
    display: none;
  }
  .community-residents-right-item:nth-child(4) {
    display: none;
  }
  .community-residents-right-item:nth-child(8) {
    display: none;
  }
}

.residents-list {
  width: 100%;
  padding: 96px 0 96px 64px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .residents-list {
    padding: 80px 24px 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .residents-list {
    padding: 64px 16px;
  }
}

.residents-list-top {
  width: 100%;
}

.residents-list-top-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .residents-list-top-title {
    font-size: 32px;
    margin-bottom: 49px;
  }
}

.residents-list-wrapper {
  width: 100%;
  position: relative;
}

.residents-list-slider-arrows {
  width: 112px;
  height: 44px;
  position: absolute;
  top: -98px;
  right: 60px;
  z-index: 10;
  border-radius: 99999px;
}
.residents-list-slider-arrows .slick-prev {
  position: absolute;
  top: 29px;
  left: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.residents-list-slider-arrows .slick-prev::before {
  display: none;
}
.residents-list-slider-arrows .slick-prev svg {
  width: 100%;
}
.residents-list-slider-arrows .slick-next {
  position: absolute;
  top: 29px;
  right: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.residents-list-slider-arrows .slick-next::before {
  display: none;
}
.residents-list-slider-arrows .slick-next svg {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .residents-list-slider-arrows {
    right: 24px;
    top: -96px;
  }
}
@media only screen and (max-width: 666px) {
  .residents-list-slider-arrows {
    right: 16px;
    top: -97px;
  }
}

.residents-list-slider .slick-track {
  margin-left: -28vw;
}
.residents-list-slider .slick-slide {
  margin: 0 12px;
}
@media only screen and (max-width: 1024px) {
  .residents-list-slider .slick-track {
    margin-left: 0;
  }
}
@media only screen and (max-width: 666px) {
  .residents-list-slider .slick-track {
    margin-left: 0;
  }
}

.residents-list-item-image {
  position: relative;
  width: 100%;
  height: 410px;
  margin-bottom: 23px;
}
.residents-list-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
@media only screen and (max-width: 666px) {
  .residents-list-item-image {
    height: 343px;
  }
}

.residents-list-item-image-tag {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 9999px;
  background: var(--white, #fff);
  padding: 8px 24px;
  position: absolute;
  top: 35px;
  left: 35px;
}

.residents-list-item-date {
  color: var(--gray, #797979);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.352px;
  margin-bottom: 16px;
}

.residents-list-item-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 16px;
}

.residents-list-item-job {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.352px;
  margin-bottom: 16px;
}

.residents-list-item-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.residents-list-more-btn {
  padding: 16px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border-radius: 99999px;
  border: 1px solid var(--brand-blue, #0000b4);
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  position: absolute;
  top: 0;
  right: 219px;
}
.residents-list-more-btn:hover {
  background: var(--brand-blue, #0000b4);
  color: var(--white, #fff);
}
@media only screen and (max-width: 1024px) {
  .residents-list-more-btn {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.community-events {
  width: 100%;
  padding: 96px 0 96px 64px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .community-events {
    padding: 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .community-events {
    padding: 64px 16px;
  }
}

.community-events-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .community-events-title {
    font-size: 32px;
    margin-bottom: 49px;
  }
}

.community-events-wrapper {
  width: 100%;
  position: relative;
}

.community-events-slider-arrows {
  width: 112px;
  height: 44px;
  position: absolute;
  top: -98px;
  right: 60px;
  z-index: 10;
  border-radius: 99999px;
}
.community-events-slider-arrows .slick-prev {
  position: absolute;
  top: 29px;
  left: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.community-events-slider-arrows .slick-prev::before {
  display: none;
}
.community-events-slider-arrows .slick-prev svg {
  width: 100%;
}
.community-events-slider-arrows .slick-next {
  position: absolute;
  top: 29px;
  right: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.community-events-slider-arrows .slick-next::before {
  display: none;
}
.community-events-slider-arrows .slick-next svg {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .community-events-slider-arrows {
    right: 24px;
    top: -96px;
  }
}
@media only screen and (max-width: 666px) {
  .community-events-slider-arrows {
    right: 16px;
    top: -97px;
  }
}

.community-events-slider .slick-track {
  margin-left: -28vw;
}
.community-events-slider .slick-slide {
  margin: 0 12px;
}
@media only screen and (max-width: 1024px) {
  .community-events-slider .slick-track {
    margin-left: 0;
  }
}
@media only screen and (max-width: 666px) {
  .community-events-slider .slick-track {
    margin-left: 0;
  }
}

.community-events-item-image {
  width: 100%;
  aspect-ratio: 421/280;
  margin-bottom: 24px;
}
.community-events-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.community-events-item-title {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 16px;
}

.community-events-item-description {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

.community-events-item-link {
  color: var(--brand-blue, #0000b4);
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
}
.community-events-item-link:hover {
  text-decoration: underline;
}

.community-galery {
  width: 100%;
  padding: 96px 0 96px 64px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .community-galery {
    padding: 80px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .community-galery {
    padding: 64px 16px;
  }
}

.community-galery-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .community-galery-title {
    width: 80%;
  }
}
@media only screen and (max-width: 666px) {
  .community-galery-title {
    width: 100%;
    font-size: 32px;
    margin-bottom: 109px;
  }
}

.community-galery-wrapper {
  width: 100%;
  position: relative;
}

.community-galery-slider-arrows {
  width: 112px;
  height: 44px;
  position: absolute;
  top: -98px;
  right: 60px;
  z-index: 10;
  border-radius: 99999px;
}
.community-galery-slider-arrows .slick-prev {
  position: absolute;
  top: 29px;
  left: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.community-galery-slider-arrows .slick-prev::before {
  display: none;
}
.community-galery-slider-arrows .slick-prev svg {
  width: 100%;
}
.community-galery-slider-arrows .slick-next {
  position: absolute;
  top: 29px;
  right: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.community-galery-slider-arrows .slick-next::before {
  display: none;
}
.community-galery-slider-arrows .slick-next svg {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .community-galery-slider-arrows {
    right: 24px;
    top: -145px;
  }
}
@media only screen and (max-width: 666px) {
  .community-galery-slider-arrows {
    right: 16px;
    top: -97px;
  }
}

.community-galery-slider .slick-track {
  margin-left: -41vw;
}
.community-galery-slider .slick-slide {
  margin: 0 12px;
}
@media only screen and (max-width: 1024px) {
  .community-galery-slider .slick-track {
    margin-left: 0;
  }
}
@media only screen and (max-width: 666px) {
  .community-galery-slider .slick-track {
    margin-left: 0;
  }
}

.community-galery-item-image {
  width: 100%;
  height: 420px;
  margin-bottom: 40px;
}
.community-galery-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media only screen and (max-width: 666px) {
  .community-galery-item-image {
    height: 278px;
  }
  .community-galery-item-image img {
    border-radius: 24px;
  }
}

.community-galery-item-title {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}

.custom-radio {
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

.future-subscribe-right-radio {
  margin-bottom: 40px;
}
.future-subscribe-right-radio p {
  margin-bottom: 17px;
}
.future-subscribe-right-radio [type=radio]:checked,
.future-subscribe-right-radio [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.future-subscribe-right-radio [type=radio]:checked + label,
.future-subscribe-right-radio [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 38px;
  cursor: pointer;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
@media only screen and (max-width: 666px) {
  .future-subscribe-right-radio [type=radio]:checked + label,
  .future-subscribe-right-radio [type=radio]:not(:checked) + label {
    padding-left: 28px;
    font-size: 16px;
  }
}
.future-subscribe-right-radio [type=radio]:checked + label:before,
.future-subscribe-right-radio [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
.future-subscribe-right-radio [type=radio]:checked + label:after,
.future-subscribe-right-radio [type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #0000b4;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  transition: all 0.2s ease;
}
.future-subscribe-right-radio [type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.future-subscribe-right-radio [type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.future-subscribe-right-radio [type=radio]:checked + label:before {
  border-color: #0000b4;
}

.future-subscribe-right-radio-title {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 666px) {
  .future-subscribe-right-radio-title {
    font-size: 16px;
  }
}

.community-galery-item-youtube {
  width: 100%;
  height: 420px;
  margin-bottom: 40px;
}
.community-galery-item-youtube iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media only screen and (max-width: 666px) {
  .community-galery-item-youtube {
    height: 278px;
  }
  .community-galery-item-youtube iframe {
    border-radius: 24px;
  }
}

.residents-page {
  width: 100%;
  padding-top: 90px;
}
@media only screen and (max-width: 1024px) {
  .residents-page .holders-list-title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 666px) {
  .residents-page .holders-list-title {
    font-size: 32px;
  }
}

.residents-main {
  width: 100%;
}

.residents-hero {
  width: 100%;
  padding: 96px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .residents-hero {
    padding: 80px 24px;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 666px) {
  .residents-hero {
    padding: 64px 16px;
  }
}

.residents-hero-left {
  width: 45.503049%; /* 597/1312 */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 34px;
}
@media only screen and (max-width: 1024px) {
  .residents-hero-left {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .residents-hero-left {
    gap: 19px;
  }
}

.residents-hero-left-item {
  height: 222px;
}
.residents-hero-left-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media only screen and (max-width: 666px) {
  .residents-hero-left-item {
    height: 161px;
  }
}

.residents-hero-right {
  width: 49.618902%; /* 651/1312 */
}
.residents-hero-right p {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .residents-hero-right {
    width: 100%;
    margin-bottom: 64px;
  }
}

.residents-hero-right-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 666px) {
  .residents-hero-right-title {
    font-size: 40px;
  }
}

.residents-hero-right-button {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--white, #fff);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 99999px;
  background: var(--brand-blue, #0000b4);
  border: 1px solid var(--brand-blue, #0000b4);
  padding: 16px 64px;
}
.residents-hero-right-button:hover {
  background: transparent;
  color: var(--brand-blue, #0000b4);
}

.award-selector {
  position: relative;
  display: inline-block;
}

.award-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 160px;
  height: 40px;
  border: 2px solid #0000b4;
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  background: #fff;
  cursor: pointer;
  padding: 16px;
  border-radius: 9999px;
}

.award-button .arrow {
  padding-top: 4px;
  transition: transform 0.3s ease-in-out;
}

.award-list {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  max-height: 150px;
  overflow-y: auto;
  border: 2px solid #0000b4;
  border-radius: 20px;
  background-color: white;
  list-style: none;
  margin: 0;
  padding: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.award-list::-webkit-scrollbar {
  display: none;
}
.award-list.hidden {
  display: none;
}

.award-list li {
  padding: 10px;
  color: var(--brand-blue, #0000b4);
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  cursor: pointer;
}
.award-list li a {
  color: #0000b4;
}
.award-list li a:active {
  color: #0000b4;
}
.award-list li a:visited {
  color: #0000b4;
}
.award-list li a:hover {
  color: #0000b4;
}

.award-list li:hover {
  background-color: #d9d9ff;
}

.hidden {
  display: none;
}

.award-list-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 24px;
}
@media only screen and (max-width: 666px) {
  .award-list-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.residents-list-filters {
  display: flex;
  align-items: center;
  gap: 24px;
}

.event-page {
  width: 100%;
  padding-top: 114px;
}

.event-main {
  width: 100%;
}

.event-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  padding: 0 64px 96px;
}
@media only screen and (max-width: 1024px) {
  .event-content {
    padding: 0 24px 70px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .event-content {
    padding: 0 16px 64px;
  }
}

.event-content-left {
  width: 37.57622%; /* 493/1312 */
}
.event-content-left h1 {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .event-content-left {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .event-content-left h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }
}

.event-content-left-anchors {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border, #d9d9d9);
  background: var(--white, #fff);
}
@media only screen and (max-width: 666px) {
  .event-content-left-anchors {
    border-radius: 24px;
    border: 1px solid var(--border, #d9d9d9);
    background: var(--white, #fff);
    padding: 24px;
  }
}

.event-content-left-anchors-heading {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}

.event-content-left-anchors-item {
  display: block;
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
.event-content-left-anchors-item:hover {
  text-decoration: underline;
}

.event-content-right {
  width: 57.545732%; /* 755/1312 */
}
.event-content-right h2 {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin: 64px 0;
}
.event-content-right h3 {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin: 64px 0;
}
.event-content-right p {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin: 64px 0;
}
.event-content-right p a {
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.4px;
  text-decoration-line: underline;
}
.event-content-right ul {
  margin-left: 24px;
}
.event-content-right ul li {
  list-style: disc;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin: 16px 0;
}
.event-content-right ul li a {
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.4px;
  text-decoration-line: underline;
}
.event-content-right ol {
  margin-left: 24px;
}
.event-content-right ol li {
  list-style: decimal;
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin: 16px 0;
}
.event-content-right ol li a {
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.4px;
  text-decoration-line: underline;
}
@media only screen and (max-width: 1024px) {
  .event-content-right {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .event-content-right h2 {
    font-size: 32px;
    margin: 32px 0;
  }
  .event-content-right h3 {
    margin: 32px 0;
  }
  .event-content-right p {
    margin: 32px 0;
  }
  .event-content-right ul {
    margin-left: 16px;
  }
  .event-content-right ul li {
    margin: 8px 0;
  }
  .event-content-right ol {
    margin-left: 16px;
  }
  .event-content-right ol li {
    margin: 8px 0;
  }
}

.event-content-image {
  margin-bottom: 64px;
}
.event-content-image img {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .event-content-image {
    margin-bottom: 40px;
  }
}

.event-content-quote {
  width: 100%;
  position: relative;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--brand-teal, #92ebeb);
  background: rgba(146, 235, 235, 0.2);
}

.event-content-quote-icon {
  position: absolute;
  top: -36px;
  right: 12px;
}

.event-content-quote-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

.event-content-quote-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-content-quote-autor-avatar img {
  border-radius: 10px;
}

.event-content-quote-autor-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: -0.368px;
}

.event-content-link {
  width: -moz-fit-content;
  width: fit-content;
  margin: 64px 0;
  display: block;
  color: var(--brand-blue, #0000b4);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 99999px;
  border: 1px solid var(--brand-blue, #0000b4);
  padding: 16px;
}
.event-content-link:hover {
  background: var(--brand-blue, #0000b4);
  color: var(--white, #fff);
}
@media only screen and (max-width: 666px) {
  .event-content-link {
    margin: 32px 0;
  }
}

.event-content-link2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 64px 0;
  display: block;
  color: #fff;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 99999px;
  background: #0000b4;
  padding: 16px;
  border: 1px solid #0000b4;
}
.event-content-link2:hover {
  background: #fff;
  color: #0000b4;
}
@media only screen and (max-width: 666px) {
  .event-content-link2 {
    margin: 32px 0;
  }
}

.anchor-target:target {
  scroll-margin-top: 114px;
}

.event-other {
  width: 100%;
  padding: 96px 0 96px 64px;
}
@media only screen and (max-width: 1024px) {
  .event-other {
    padding: 70px 0 70px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .event-other {
    padding: 64px 16px;
  }
}

.event-other-top {
  width: 100%;
}

.event-other-top-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media only screen and (max-width: 666px) {
  .event-other-top-title {
    font-size: 32px;
    margin-bottom: 49px;
  }
}

.event-other-wrapper {
  width: 100%;
  position: relative;
}

.event-other-slider-arrows {
  width: 112px;
  height: 44px;
  position: absolute;
  top: -117px;
  right: 45px;
  z-index: 10;
  border-radius: 99999px;
}
.event-other-slider-arrows .slick-prev {
  position: absolute;
  top: 29px;
  left: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-other-slider-arrows .slick-prev::before {
  display: none;
}
.event-other-slider-arrows .slick-prev svg {
  width: 100%;
}
.event-other-slider-arrows .slick-next {
  position: absolute;
  top: 29px;
  right: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-other-slider-arrows .slick-next::before {
  display: none;
}
.event-other-slider-arrows .slick-next svg {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .event-other-slider-arrows {
    right: 24px;
    top: -96px;
  }
}
@media only screen and (max-width: 666px) {
  .event-other-slider-arrows {
    right: 16px;
    top: -97px;
  }
}

.event-other-slider .slick-track {
  margin-left: -28vw;
}
.event-other-slider .slick-slide {
  margin: 0 12px;
}
@media only screen and (max-width: 1024px) {
  .event-other-slider .slick-track {
    margin-left: 0;
  }
}
@media only screen and (max-width: 666px) {
  .event-other-slider .slick-track {
    margin-left: 0;
  }
}

.event-other-item-image {
  position: relative;
  width: 100%;
  height: 281px;
  margin-bottom: 23px;
}
.event-other-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

.event-other-item-image-tag {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 9999px;
  background: var(--white, #fff);
  padding: 8px 24px;
  position: absolute;
  top: 35px;
  left: 35px;
}

.event-other-item-date {
  color: var(--gray, #797979);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.352px;
  margin-bottom: 16px;
}

.event-other-item-name {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}

.event-other-item-link {
  color: var(--brand-blue, #0000b4);
  font-family: Leleka;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  text-transform: uppercase;
}
.event-other-item-link:hover {
  text-decoration: underline;
}

html,
body {
  font-family: "M PLUS 1";
  font-weight: 400;
  background: #fff;
}
html.is-hidden,
body.is-hidden {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}
/*# sourceMappingURL=main.css.map */
