@charset "UTF-8";
:root {
  --primary: #040c32;
  --secondary: #edf2f5;
  --gray-primary: #576f84;
  --blue-light: #01b3ff;
  --blue-dark: #016fff;
  --blue-primary: #215dce;
}

@font-face {
  font-family: "Geometria";
  font-display: swap;
  src: url("../fonts/Geometria-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Geometria";
  font-display: swap;
  src: url("../fonts/Geometria-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Geometria";
  font-display: swap;
  src: url("../fonts/Geometria-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Mallory";
  font-display: swap;
  src: url("../fonts/Mallory-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Mallory";
  font-display: swap;
  src: url("../fonts/Mallory-BookItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Mallory";
  font-display: swap;
  src: url("../fonts/Mallory-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Mallory";
  font-display: swap;
  src: url("../fonts/Mallory-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 22px;
}
@media (max-width: 767.98px) {
  html {
    font-size: 16px;
  }
}

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

body {
  line-height: 1;
  font-family: Geometria, sans-serif;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: Geometria, sans-serif;
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body {
  font-family: Geometria, sans-serif;
  color: var(--primary);
  line-height: 1.3;
  scroll-behavior: smooth;
}
body._lock {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  direction: ltr !important;
  background: var(--secondary);
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.page {
  flex: 1 1 auto;
}

._container {
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 1420px) {
  ._container {
    max-width: none;
    padding: 0 30px;
  }
}
._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.tabs-block-js {
  display: none;
  opacity: 0;
  transition: all 0.3s ease 0s;
}

.tabs-block-js._active {
  display: block;
}

.tabs-block-js._opacity {
  opacity: 1;
  transform: translateY(0);
}

.title {
  font-size: 54px;
  font-family: Mallory, sans-serif;
  font-weight: 700;
  line-height: 114%; /* 61.56px */
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .title {
    font-size: 40px;
  }
}
@media (max-width: 767.98px) {
  .title {
    font-size: 24px;
  }
}
.title i,
.title span {
  font-weight: 400;
}

.btn-primary {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
  padding: 0 25px;
  border-radius: 10px;
  font-family: Mallory, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  overflow: hidden;
  background: linear-gradient(98deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.btn-primary::before, .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.btn-primary::before {
  background: linear-gradient(98deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
}
.btn-primary::after {
  background: linear-gradient(98deg, #3ac4ff 4.12%, #308aff 100%);
  opacity: 0;
}
.btn-primary > * {
  position: relative;
  z-index: 1;
}
@media (any-hover: hover) {
  .btn-primary:hover::after {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .btn-primary {
    height: 34px;
    padding: 0 20px;
    font-size: 14px;
  }
}
.btn-primary--black {
  background: linear-gradient(98deg, #3a3f41 4.12%, #222425 100%);
}
.btn-primary--black::before {
  background: linear-gradient(98deg, #3a3f41 4.12%, #222425 100%);
}
.btn-primary--black::after {
  background: linear-gradient(98deg, #4e585b 4.12%, #32383c 100%);
}
.btn-primary--white {
  color: var(--primary);
  background: #fff;
}
.btn-primary--white::before, .btn-primary--white::after {
  background: #fff;
}
.btn-primary--s {
  height: 34px;
  padding: 0 20px;
  font-size: 14px;
}
.btn-primary--s .btn-primary__icon {
  width: 18px;
  height: 18px;
}
.btn-primary__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .btn-primary__icon {
    width: 18px;
    height: 18px;
  }
}
.btn-primary__icon::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18.5 12H5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 18C13 18 19 13.5811 19 12C19 10.4188 13 6 13 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: block;
  width: 24px;
  height: 24px;
}
@media (max-width: 767.98px) {
  .btn-primary__icon::before {
    width: 18px;
    height: 18px;
  }
}

.custom-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.custom-select__btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 32px;
  padding-right: 38px;
  color: var(--primary);
  font-size: 20px;
  line-height: 160%;
  text-align: left;
  background: transparent;
  cursor: pointer;
}
.custom-select__btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  background: url("../img/icons/ico__arrow-down__2-102.svg") center/contain no-repeat;
  pointer-events: none;
  transform: translateY(-50%);
  transition: filter 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767.98px) {
  .custom-select__btn::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M5.5 8.25005C5.5 8.25005 9.55066 13.75 11 13.75C12.4494 13.75 16.5 8.25 16.5 8.25' stroke='%23040C32' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  }
}
.open .custom-select__btn::after {
  filter: drop-shadow(0 5px 8px rgba(1, 111, 255, 0.28));
  transform: translateY(-50%) rotate(180deg);
}
.custom-select__btn:focus {
  outline: none;
}
@media (max-width: 767.98px) {
  .custom-select__btn {
    min-height: 22px;
    padding-right: 30px;
    font-size: 14px;
    line-height: 150%;
  }
  .custom-select__btn::after {
    width: 22px;
    height: 22px;
  }
}
.custom-select__dropdown {
  position: absolute;
  left: 0px;
  right: 0px;
  top: calc(100% + 0px);
  z-index: 10;
  display: grid;
  gap: 0;
  max-height: 224px;
  padding: 0;
  border-radius: 0 0 15px 15px;
  background: #dee9f6;
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@-moz-document url-prefix() {
  .custom-select__dropdown {
    scrollbar-width: thin;
    scrollbar-color: #a8c5e3 rgba(4, 12, 50, 0.06);
  }
}
.custom-select__dropdown::-webkit-scrollbar {
  width: 5px;
}
.custom-select__dropdown::-webkit-scrollbar-button {
  display: none;
  width: 0;
  min-width: 0;
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: #dee9f6;
}
.custom-select__dropdown::-webkit-scrollbar-button:vertical {
  display: none;
  width: 0;
  min-width: 0;
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: #dee9f6;
}
.custom-select__dropdown::-webkit-scrollbar-button:vertical {
  display: none;
  width: 0;
  min-width: 0;
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: #dee9f6;
}
.custom-select__dropdown::-webkit-scrollbar-track {
  margin: 0 0 10px 0;
  border-radius: 10px;
  background: #dee9f6;
}
.custom-select__dropdown::-webkit-scrollbar-thumb {
  background: #dee9f6;
  border-radius: 10px;
  background: linear-gradient(96deg, rgba(119, 179, 228, 0.51) 4.12%, rgba(78, 143, 190, 0.51) 100%), #dee9f6;
}
.open .custom-select__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
@media (max-width: 767.98px) {
  .custom-select__dropdown {
    max-height: 174px;
  }
}
.custom-select__option {
  min-height: 41px;
  padding: 10px 25px;
  border-radius: 0;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 131%;
  text-align: left;
  background: #dee9f6;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}
.custom-select__option.active {
  color: var(--primary);
  background: linear-gradient(96deg, rgba(119, 179, 228, 0.51) 4.12%, rgba(78, 143, 190, 0.51) 100%), #dee9f6;
}
@media (any-hover: hover) {
  .custom-select__option:not(.active):hover {
    color: var(--primary);
    background: linear-gradient(96deg, rgba(119, 179, 228, 0.51) 4.12%, rgba(78, 143, 190, 0.51) 100%), #dee9f6;
  }
}
.custom-select__option:focus {
  outline: none;
  color: var(--primary);
  background: linear-gradient(96deg, rgba(119, 179, 228, 0.51) 4.12%, rgba(78, 143, 190, 0.51) 100%), #dee9f6;
}
.custom-select__option:empty {
  display: none;
}
@media (max-width: 767.98px) {
  .custom-select__option {
    min-height: 35px;
    padding: 8px 15px;
    font-size: 14px;
  }
}

.ellipse {
  position: absolute;
  border-radius: 50%;
  filter: blur(200px);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
  --scroll-progress: 0.5;
}

.lang-switcher-icon {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22C16.9458 22 21.053 18.4096 21.8573 13.693C21.9511 13.1427 22 12.5771 22 12C22 7.11857 18.5024 3.05405 13.8766 2.17579C13.2687 2.06039 12.6414 2 12 2C9.26969 2 6.79495 3.09421 4.99037 4.86802C3.14465 6.68227 2 9.20746 2 12C2 17.5228 6.47715 22 12 22ZM12 22C11.037 21.2864 11.1907 20.4555 11.6738 19.6247C12.4166 18.3474 12.4166 18.3474 12.4166 16.6444C12.4166 14.9414 13.4286 14.1429 17 14.8571C18.6047 15.1781 19.7741 12.9609 21.8573 13.693M4.99037 4.86802C5.83966 4.95765 6.31517 5.41264 7.10496 6.24716C8.6044 7.83152 10.1038 7.96372 11.1035 7.4356C12.6029 6.64343 11.3429 5.3603 13.1027 4.66298C14.1816 4.23551 14.3872 3.11599 13.8766 2.17579' stroke='white' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ui-slider-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .ui-slider-pagination {
    gap: 8px;
  }
}
.ui-slider-pagination span {
  border-radius: 5px;
  width: 20px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.ui-slider-pagination span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(91deg, #01b3ff -4.12%, #016fff 100%);
  opacity: 0;
  transition: all 0.3s ease;
}
.ui-slider-pagination span:hover::before {
  opacity: 0.3;
}
@media (max-width: 767.98px) {
  .ui-slider-pagination span {
    width: 10px;
    height: 3px;
  }
}
.ui-slider-pagination span.swiper-pagination-bullet-active {
  width: 40px;
  height: 6px;
  pointer-events: none;
}
.ui-slider-pagination span.swiper-pagination-bullet-active::before {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .ui-slider-pagination span.swiper-pagination-bullet-active {
    width: 20px;
    height: 4px;
  }
}

.ui-slider-prev,
.ui-slider-next {
  cursor: pointer;
  pointer-events: auto;
}
.ui-slider-prev::before,
.ui-slider-next::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60' fill='none'%3E%3Cpath d='M37.4999 15C37.4999 15 22.5 26.0473 22.5 30C22.5 33.953 37.5 45 37.5 45' stroke='%23040C32' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 60px;
  height: 60px;
  display: block;
}
.ui-slider-prev.swiper-navigation-disabled,
.ui-slider-next.swiper-navigation-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.ui-slider-next::before {
  transform: rotate(180deg);
}

.rounded-arrow-prev,
.rounded-arrow-next {
  border-radius: 50%;
  background: linear-gradient(91deg, #3a3f41 -4.12%, #222425 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media (max-width: 991.98px) {
  .rounded-arrow-prev,
  .rounded-arrow-next {
    width: 34px;
    height: 34px;
  }
}
.rounded-arrow-prev[disabled],
.rounded-arrow-next[disabled] {
  opacity: 0.8;
  pointer-events: none;
}
.rounded-arrow-prev::before,
.rounded-arrow-next::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M11.25 4.5C11.25 4.5 6.75 7.81418 6.75 9C6.75 10.1859 11.25 13.5 11.25 13.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: block;
  width: 24px;
  height: 24px;
  line-height: 0;
}
@media (max-width: 991.98px) {
  .rounded-arrow-prev::before,
  .rounded-arrow-next::before {
    width: 18px;
    height: 18px;
  }
}

.rounded-arrow-next::before {
  transform: rotate(180deg);
}

label.ui-checkbox,
.ui-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  line-height: 160%;
}
@media (max-width: 767.98px) {
  label.ui-checkbox,
  .ui-checkbox label {
    gap: 10px;
  }
}
label.ui-checkbox span,
.ui-checkbox label span {
  transition: color 0.3s ease;
}
label.ui-checkbox span a,
.ui-checkbox label span a {
  color: inherit;
  text-decoration: underline;
}
label.ui-checkbox span a:hover,
.ui-checkbox label span a:hover {
  text-decoration: none;
}
@media (any-hover: hover) {
  label.ui-checkbox:hover input:not(:checked) + b,
  .ui-checkbox label:hover input:not(:checked) + b {
    border-color: rgb(255, 255, 255);
  }
}
@media (max-width: 767.98px) {
  label.ui-checkbox,
  .ui-checkbox label {
    font-size: 14px;
    line-height: 150%;
  }
}

.ui-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ui-checkbox input + b {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: white;
  border-radius: 7px;
  line-height: 0;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .ui-checkbox input + b {
    width: 22px;
    height: 22px;
  }
}
.ui-checkbox input + b::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(91deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
  opacity: 0;
  border-radius: 7px;
  transition: opacity 0.3s ease;
}
.ui-checkbox input + b::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 11.5833L9.62162 17L20 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  position: relative;
  width: 24px;
  height: 24px;
}
@media (max-width: 767.98px) {
  .ui-checkbox input + b::after {
    width: 18px;
    height: 18px;
  }
}
.ui-checkbox input:checked + b {
  background: transparent;
}
.ui-checkbox input:checked + b::before {
  opacity: 1;
}
.ui-checkbox input:checked + b::after {
  opacity: 1;
  visibility: visible;
}
.ui-checkbox input:focus-visible + b {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.ui-text {
  color: var(--primary);
  font-size: 22px;
  line-height: 160%;
}
@media (max-width: 991.98px) {
  .ui-text {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .ui-text {
    font-size: 16px;
    line-height: 150%;
  }
}
.ui-text > * {
  margin: 0;
}
.ui-text > * + * {
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .ui-text > * + * {
    margin-top: 10px;
  }
}
.ui-text h2 {
  margin-top: 80px;
  font-family: Mallory, sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .ui-text h2 {
    margin-top: 50px;
    font-size: 40px;
  }
}
@media (max-width: 767.98px) {
  .ui-text h2 {
    margin-top: 30px;
    font-size: 24px;
  }
}
.ui-text figure {
  margin-top: 80px;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .ui-text figure {
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .ui-text figure {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.ui-text figure:first-child {
  margin-top: 0;
}
.ui-text figure + h2 {
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .ui-text figure + h2 {
    margin-top: 0;
  }
}
.ui-text img {
  display: block;
  width: 100%;
  border-radius: 20px;
  box-shadow: 2px 30px 50px 0 rgba(115, 141, 165, 0.26);
}
@media (max-width: 767.98px) {
  .ui-text img {
    border-radius: 15px;
  }
}
.ui-text ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 700px;
  padding: 10px 0;
}
@media (max-width: 767.98px) {
  .ui-text ul {
    gap: 10px;
  }
}
.ui-text ul li {
  position: relative;
  min-height: 30px;
  padding-left: 50px;
  line-height: 160%;
}
@media (max-width: 991.98px) {
  .ui-text ul li {
    padding-left: 40px;
  }
}
@media (max-width: 767.98px) {
  .ui-text ul li {
    min-height: 22px;
    padding-top: 3px;
    padding-left: 30px;
    line-height: 150%;
  }
}
.ui-text ul li strong {
  font-weight: 700;
}
.ui-text ul li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19' fill='none'%3E%3Cpath d='M15.8334 4.75L7.12508 13.4583L3.16675 9.5' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  top: 3px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(91deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
  line-height: 0;
}
@media (max-width: 767.98px) {
  .ui-text ul li::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 19 19' fill='none'%3E%3Cpath d='M15.8334 4.75L7.12508 13.4583L3.16675 9.5' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 22px;
    height: 22px;
  }
}
.ui-text blockquote {
  position: relative;
  z-index: 0;
  max-width: 800px;
  margin-top: 30px;
  padding: 40px 60px 40px 140px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  color: var(--gray-primary);
  font-size: 20px;
  font-style: italic;
  line-height: 160%;
}
@media (max-width: 991.98px) {
  .ui-text blockquote {
    padding: 35px 40px 35px 110px;
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .ui-text blockquote {
    margin-top: 20px;
    padding: 20px 25px 20px 53px;
    border-radius: 15px;
    font-size: 16px;
    line-height: 150%;
  }
}
.ui-text blockquote::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43 34' fill='none'%3E%3Cpath d='M13.9094 15.7971C15.5653 16.5257 16.8569 17.6186 17.7842 19.0758C18.7115 20.5329 19.1751 22.2551 19.1751 24.2421C19.1751 27.0902 18.2809 29.4085 16.4926 31.1968C14.7042 32.9189 12.4191 33.78 9.63724 33.78C6.85535 33.78 4.53712 32.8858 2.68253 31.0975C0.894177 29.3091 0 27.024 0 24.2421C0 22.9174 0.165588 21.5927 0.496765 20.268C0.827941 18.9433 1.55653 16.9562 2.68253 14.3068L8.445 0H18.2809L13.9094 15.7971ZM37.3567 15.7971C39.0126 16.5257 40.3042 17.6186 41.2315 19.0758C42.1588 20.5329 42.6224 22.2551 42.6224 24.2421C42.6224 27.0902 41.7282 29.4085 39.9399 31.1968C38.1515 32.9189 35.8664 33.78 33.0845 33.78C30.3027 33.78 27.9844 32.8858 26.1298 31.0975C24.3415 29.3091 23.4473 27.024 23.4473 24.2421C23.4473 22.9174 23.6129 21.5927 23.9441 20.268C24.2752 18.9433 25.0038 16.9562 26.1298 14.3068L31.8923 0H41.7282L37.3567 15.7971Z' fill='url(%23paint0_linear_3008_63413)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_3008_63413' x1='-1.79841' y1='4.04988e-07' x2='43.6298' y2='1.41392' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2301B3FF'/%3E%3Cstop offset='1' stop-color='%23016FFF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  position: absolute;
  top: 40px;
  left: 60px;
  width: 43px;
  height: 34px;
  padding-top: 8px;
}
@media (max-width: 991.98px) {
  .ui-text blockquote::after {
    left: 40px;
    top: 35px;
  }
}
@media (max-width: 767.98px) {
  .ui-text blockquote::after {
    width: 21px;
    height: 16px;
    left: 20px;
    top: 20px;
    padding-top: 3px;
  }
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  margin-top: -10px;
  position: absolute;
  display: block;
  width: 20px;
  height: 36px;
  top: 50%;
  transform: translate(0px, -50%);
  z-index: 1080;
}

.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
  color: #fff;
}

.lg-actions .lg-next {
  right: 20px;
  background: url("../img/icons/p-right.svg") 0 0/100% no-repeat;
}

.lg-actions .lg-prev {
  left: 20px;
  background: url("../img/icons/p-left.svg") 0 0/100% no-repeat;
}

@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.lg-toolbar .lg-icon:hover {
  color: #fff;
}

.lg-toolbar .lg-close {
  background: url("../img/icons/close.svg") center no-repeat;
}

.lg-toolbar .lg-download {
  display: none;
}

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #eee;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle;
}

.lg-toolbar,
.lg-prev,
.lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-outer .lg-thumb-outer {
  background-color: #0d0a0a;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px;
}

.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 4px;
  margin-bottom: 5px;
}

@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #a90707;
}

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}

.lg-outer .lg-toggle-thumb {
  background-color: #0d0a0a;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
}

.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}

.lg-outer .lg-toggle-thumb:hover {
  color: #fff;
}

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}

.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}

.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer;
}

.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}

.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}

.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  -moz-transition: opacity 0.08s ease 0s;
  -o-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "\e01d";
}

.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

#lg-zoom-in:after {
  content: "\e311";
}

#lg-actual-size {
  font-size: 20px;
}

#lg-actual-size:after {
  content: "\e033";
}

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}

#lg-zoom-out:after {
  content: "\e312";
}

.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #fff;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  width: 12px;
}

.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
  box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}

.lg-fullscreen:after {
  content: "\e20c";
}

.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transform: translate3d(0, 0px, 0);
  -o-transform: translate3d(0, 0px, 0);
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}

.lg-outer.lg-dropdown-active #lg-share {
  color: #fff;
}

.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -moz-transform: translate3d(0, 5px, 0);
  -o-transform: translate3d(0, 5px, 0);
  -ms-transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
}

.lg-outer .lg-dropdown:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #fff;
  right: 16px;
  top: -16px;
}

.lg-outer .lg-dropdown > li:last-child {
  margin-bottom: 0px;
}

.lg-outer .lg-dropdown > li:hover a,
.lg-outer .lg-dropdown > li:hover .lg-icon {
  color: #333;
}

.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}

.lg-outer #lg-share {
  position: relative;
}

.lg-outer #lg-share:after {
  content: "\e80d";
}

.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998;
}

.lg-outer #lg-share-facebook .lg-icon:after {
  content: "\e901";
}

.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced;
}

.lg-outer #lg-share-twitter .lg-icon:after {
  content: "\e904";
}

.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39;
}

.lg-outer #lg-share-googleplus .lg-icon:after {
  content: "\e902";
}

.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027;
}

.lg-outer #lg-share-pinterest .lg-icon:after {
  content: "\e903";
}

.group {
  *zoom: 1;
}

.group:before,
.group:after {
  display: table;
  content: "";
  line-height: 0;
}

.group:after {
  clear: both;
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}

.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}

.lg-outer .lg-item {
  background: url("../img/icons/loading.gif") no-repeat scroll center center transparent;
  display: none !important;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-empty-html {
  display: none;
}

.lg-outer.lg-hide-download #lg-download {
  display: none;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

/**
 * Swiper 12.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 29, 2026
 */
:root {
  --swiper-theme-color: #007aff;
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-slides-offset-before);
  scroll-margin-inline-start: var(--swiper-slides-offset-before);
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:last-child {
  margin-inline-end: var(--swiper-slides-offset-after);
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-slides-offset-before);
  scroll-margin-block-start: var(--swiper-slides-offset-before);
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:last-child {
  margin-block-end: var(--swiper-slides-offset-after);
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  height: var(--swiper-centered-offset-after);
  min-width: 1px;
  width: 100%;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.1490196078);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s linear infinite;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
  height: var(--swiper-virtual-size);
  width: 1px;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-horizontal .swiper-button-next,
.swiper-horizontal .swiper-button-prev,
.swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal ~ .swiper-button-prev {
  margin-left: 0;
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}
.swiper-horizontal.swiper-rtl .swiper-button-next, .swiper-horizontal.swiper-rtl ~ .swiper-button-next, .swiper-horizontal ~ .swiper-button-prev,
.swiper-horizontal .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-horizontal.swiper-rtl .swiper-button-prev, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev, .swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal .swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl .swiper-button-next ::slotted(.swiper-navigation-icon), .swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl ~ .swiper-button-next ::slotted(.swiper-navigation-icon), .swiper-horizontal ~ .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal ~ .swiper-button-prev ::slotted(.swiper-navigation-icon),
.swiper-horizontal .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal .swiper-button-prev ::slotted(.swiper-navigation-icon) {
  transform: rotate(180deg);
}
.swiper-horizontal.swiper-rtl .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl .swiper-button-prev ::slotted(.swiper-navigation-icon), .swiper-horizontal.swiper-rtl ~ .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl ~ .swiper-button-prev ::slotted(.swiper-navigation-icon) {
  transform: rotate(0deg);
}

.swiper-vertical .swiper-button-next,
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-next,
.swiper-vertical ~ .swiper-button-prev {
  left: var(--swiper-navigation-top-offset, 50%);
  margin-left: calc(0px - var(--swiper-navigation-size) / 2);
  margin-top: 0;
  right: auto;
}
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-prev {
  bottom: auto;
  top: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-vertical .swiper-button-prev .swiper-navigation-icon,
.swiper-vertical .swiper-button-prev ::slotted(.swiper-navigation-icon),
.swiper-vertical ~ .swiper-button-prev .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-prev ::slotted(.swiper-navigation-icon) {
  transform: rotate(-90deg);
}
.swiper-vertical .swiper-button-next,
.swiper-vertical ~ .swiper-button-next {
  bottom: var(--swiper-navigation-sides-offset, 4px);
  top: auto;
}
.swiper-vertical .swiper-button-next .swiper-navigation-icon,
.swiper-vertical .swiper-button-next ::slotted(.swiper-navigation-icon),
.swiper-vertical ~ .swiper-button-next .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-next ::slotted(.swiper-navigation-icon) {
  transform: rotate(90deg);
}

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
}
.swiper-scrollbar.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > .swiper-scrollbar {
  display: none !important;
}
.swiper-scrollbar.swiper-scrollbar-horizontal, .swiper-horizontal > .swiper-scrollbar {
  bottom: var(--swiper-scrollbar-bottom, 4px);
  height: var(--swiper-scrollbar-size, 4px);
  left: var(--swiper-scrollbar-sides-offset, 1%);
  position: absolute;
  top: var(--swiper-scrollbar-top, auto);
  width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  z-index: 50;
}
.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  left: var(--swiper-scrollbar-left, auto);
  position: absolute;
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  width: var(--swiper-scrollbar-size, 4px);
  z-index: 50;
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  backface-visibility: hidden;
  height: 100%;
  pointer-events: none;
  transform-origin: 0 0;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  background: #000;
  bottom: 0;
  content: "";
  filter: blur(50px);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  backface-visibility: hidden;
  pointer-events: none;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transform-origin: center bottom;
}

.scroll-reveal-item-js {
  opacity: 0;
  will-change: opacity, transform, clip-path;
}

.scroll-reveal-item-js:not([data-reveal=fade]) {
  transform: translateY(35px);
}

.show-reveal .scroll-reveal-item-js {
  animation: reveal-up var(--reveal-duration, 0.7s) ease forwards;
  animation-delay: calc(var(--reveal-delay, 0s) + var(--reveal-index, 0) * var(--reveal-stagger, 0.12s));
}

.scroll-reveal-item-js[data-reveal=left] {
  transform: translateX(-35px);
}

.show-reveal .scroll-reveal-item-js[data-reveal=left] {
  animation-name: reveal-left;
}

.scroll-reveal-item-js[data-reveal=right] {
  transform: translateX(100%);
}

.show-reveal .scroll-reveal-item-js[data-reveal=right] {
  animation-name: reveal-right;
}

.show-reveal .scroll-reveal-item-js[data-reveal=fade] {
  animation-name: reveal-fade;
}

.scroll-reveal-item-js[data-reveal=clip-left] {
  opacity: 1;
  transform: none;
  clip-path: inset(0 100% 0 0);
}

.show-reveal .scroll-reveal-item-js[data-reveal=clip-left] {
  animation-name: reveal-clip-left;
  animation-duration: 0.8s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
  }
}
@keyframes reveal-fade {
  to {
    opacity: 1;
    will-change: auto;
  }
}
@keyframes reveal-left {
  to {
    opacity: 1;
    transform: translateX(0);
    will-change: auto;
  }
}
@keyframes reveal-right {
  to {
    opacity: 1;
    transform: translateX(0);
    will-change: auto;
  }
}
@keyframes reveal-clip-left {
  to {
    clip-path: inset(var(--reveal-clip-top, 0) var(--reveal-clip-right, 0) var(--reveal-clip-bottom, 0) var(--reveal-clip-left, 0));
    will-change: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal-item-js,
  .scroll-reveal-item-js[data-reveal=left],
  .scroll-reveal-item-js[data-reveal=right],
  .scroll-reveal-item-js[data-reveal=fade],
  .scroll-reveal-item-js[data-reveal=clip-left] {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none;
  }
}
.header-sentinel {
  position: absolute;
  top: 1px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  transition: all 0.5s ease;
  height: 113px;
  display: flex;
  align-items: center;
  box-shadow: 0 12px 30px rgba(4, 12, 50, 0);
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #395698 0%, #243e78 100%);
  transition: all 0.5s ease;
  opacity: 0;
}
@media (max-width: 991.98px) {
  .header {
    height: 70px;
  }
}
.header.short {
  color: #fff;
  box-shadow: 0 12px 30px rgba(4, 12, 50, 0.14);
}
.header.short::before {
  opacity: 1;
}
@media (min-width: 992px) {
  .header.short {
    height: 90px;
  }
}
@media (max-width: 991.98px) {
  .header.short {
    height: 60px;
  }
}
.header__container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-grow: 1;
  max-width: 1660px;
  padding: 0 30px;
  transition: all 0.3s ease;
}
@media (max-width: 1420px) {
  .header__container {
    gap: 30px;
  }
}
@media (max-width: 991.98px) {
  .header__container {
    gap: 20px;
  }
}
.header__logo {
  position: relative;
  z-index: 2;
  display: block;
  width: 227px;
  height: 53px;
  flex-shrink: 0;
}
@media (max-width: 1420px) {
  .header__logo {
    width: 190px;
    height: 44px;
  }
}
@media (max-width: 991.98px) {
  .header__logo {
    width: 143px;
    height: 34px;
  }
}
.header__logo-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.3s ease;
}
.header__nav {
  flex: 1 1 auto;
}
@media (max-width: 991.98px) {
  .header__nav {
    display: none;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  top: 4px;
}
@media (max-width: 1420px) {
  .header__menu {
    gap: 30px;
  }
}
.header__menu > li {
  position: relative;
  display: flex;
}
.header__menu > li > a,
.header__menu > li .header__menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding-bottom: 12px;
  color: currentColor;
  font-family: Mallory, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  background: transparent;
  transition: all 0.3s ease;
}
@media (max-width: 1420px) {
  .header__menu > li > a,
  .header__menu > li .header__menu-link {
    font-size: 16px;
  }
}
.header__menu > li > a::after,
.header__menu > li .header__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.6);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.header__menu > li.active > a::after, .header__menu > li.active .header__menu-link::after {
  transform: scaleX(1);
  background: linear-gradient(98deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
}
@media (any-hover: hover) {
  .header__menu > li:hover > a::after, .header__menu > li:hover .header__menu-link::after {
    transform: scaleX(1);
  }
}
.header__menu > li:not(.header__menu-item--detailed) > ul {
  position: absolute;
  z-index: 5;
  top: calc(100% + 5.5px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  min-width: 175px;
  max-height: calc(100vh - 130px);
  border-radius: 0 15px 15px 15px;
  background: #fff;
  box-shadow: 5px 20px 50px rgba(23, 45, 91, 0.5);
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease;
}
.header__menu > li:not(.header__menu-item--detailed) > ul.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__menu > li:not(.header__menu-item--detailed) > ul li {
  position: relative;
  background: #dee9f6;
}
.header__menu > li:not(.header__menu-item--detailed) > ul li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #dee9f6;
  opacity: 0;
  background: linear-gradient(96deg, rgba(119, 179, 228, 0.51) 4.12%, rgba(78, 143, 190, 0.51) 100%), #dee9f6;
  transition: all 0.5s ease;
  z-index: 0;
}
@media (any-hover: hover) {
  .header__menu > li:not(.header__menu-item--detailed) > ul li:hover::before {
    opacity: 1;
  }
}
.header__menu > li:not(.header__menu-item--detailed) > ul a {
  display: block;
  min-height: 44px;
  padding: 10px 25px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 131%;
  white-space: nowrap;
  transition: background 0.3s ease;
  position: relative;
}
@media (max-width: 991.98px) {
  .header__menu > li:not(.header__menu-item--detailed) > ul {
    display: none;
  }
}
.header__menu > li:not(.header__menu-item--detailed):hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__menu-item--detailed > ul {
  display: grid;
  position: fixed;
  top: 85.5px;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  grid-template-columns: repeat(3, 380px);
  gap: 0;
  width: 1200px;
  max-width: calc(100vw - 60px);
  min-width: 0;
  padding: 20px 30px;
  border-radius: 20px;
  background: linear-gradient(171deg, rgba(255, 255, 255, 0.9) 6.9%, rgba(230, 234, 244, 0.86) 69.16%);
  box-shadow: 5px 20px 50px rgba(23, 45, 91, 0.5);
  backdrop-filter: blur(19px);
  overflow: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 1420px) {
  .header__menu-item--detailed > ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 945px;
    padding: 20px 30px;
  }
}
.header__menu-item--detailed > ul > li {
  background: transparent;
}
.header__menu-item--detailed > ul > li::before {
  display: none;
}
.header__menu-item--detailed > ul > li > a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 380px;
  max-width: 100%;
  min-height: 91px;
  padding: 20px 20px 20px 25px;
  border-radius: 20px;
  color: var(--primary);
  white-space: normal;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 1420px) {
  .header__menu-item--detailed > ul > li > a {
    gap: 16px;
    padding: 20px 18px;
  }
}
.header__menu-item--detailed > ul > li > a > img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  opacity: 0.7;
}
.header__menu-item--detailed > ul > li > a > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-top: 3px;
}
.header__menu-item--detailed > ul > li > a > span > span:first-child {
  width: 186px;
  max-width: 100%;
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 1420px) {
  .header__menu-item--detailed > ul > li > a > span > span:first-child {
    font-size: 18px;
  }
}
.header__menu-item--detailed > ul > li > a > span > span:last-child {
  color: #576f84;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 1420px) {
  .header__menu-item--detailed > ul > li > a > span > span:last-child {
    font-size: 15px;
  }
}
@media (any-hover: hover) {
  .header__menu-item--detailed > ul > li > a:hover {
    background: rgba(255, 255, 255, 0.38);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  }
}
.header__menu-item--detailed:hover > ul, .header__menu-item--detailed > ul.open {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
.header.short .header__menu-item--detailed > ul {
  top: 74px;
}
.header__right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991.98px) {
  .header__right {
    margin-left: auto;
    gap: 20px;
  }
}
.header__socials {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .header__socials {
    gap: 10px;
  }
}
.header__social {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.header__social img {
  display: block;
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .header__social:hover {
    filter: brightness(1.15);
  }
}
@media (max-width: 991.98px) {
  .header__lang {
    display: none;
  }
}
.header__burger {
  position: relative;
  z-index: 2;
  display: none;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: transparent;
  margin-left: 6px;
}
.header__burger span, .header__burger::before, .header__burger::after {
  content: "";
  position: absolute;
  left: 4px;
  height: 2px;
  border-radius: 2px;
  background: white;
  transition: width 0.3s ease, transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}
.header__burger::before {
  top: 5px;
  width: 14px;
}
.header__burger span {
  top: 11px;
  width: 16px;
}
.header__burger::after {
  top: 17px;
  width: 8px;
}
@media (max-width: 991.98px) {
  .header__burger {
    display: block;
  }
}

.lang-switcher {
  position: relative;
}
.lang-switcher__btn {
  display: flex;
  align-items: center;
  color: currentColor;
  font-size: 16px;
  font-weight: 500;
  line-height: 131%;
  background: transparent;
  transition: opacity 0.3s ease;
}
@media (max-width: 991.98px) {
  .lang-switcher__btn {
    font-size: 18px;
    font-weight: 700;
    line-height: 114%;
  }
}
.lang-switcher__btn::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6.00004C4 6.00004 6.94593 10 8 10C9.05413 10 12 6 12 6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 2px;
  display: block;
  transition: transform 0.3s ease;
}
@media (max-width: 991.98px) {
  .lang-switcher__btn::after {
    display: none;
  }
}
@media (any-hover: hover) {
  .lang-switcher__btn:hover {
    opacity: 0.8;
  }
}
.lang-switcher__btn span {
  position: relative;
  top: 2px;
}
.lang-switcher__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  margin-right: 8px;
}
@media (max-width: 991.98px) {
  .lang-switcher__icon {
    width: 19px;
    height: 19px;
  }
}
.lang-switcher__dropdown {
  position: absolute;
  z-index: 5;
  top: calc(100% + 12px);
  right: -9px;
  width: 106px;
  min-width: 106px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 5px 20px 50px rgba(23, 45, 91, 0.5);
  border-radius: 15px;
}
@media (max-width: 991.98px) {
  .lang-switcher__dropdown {
    position: fixed;
    inset: 0;
    z-index: 150;
    width: 100%;
    min-width: 0;
    transform: none;
    border-radius: 0;
  }
  .lang-switcher__dropdown > span {
    position: absolute;
    inset: 0;
    background: rgba(26, 49, 96, 0.8);
    z-index: 0;
    transition: opacity 0.6s ease;
    opacity: 0;
  }
  .lang-switcher__dropdown.open {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 991.98px) {
  .lang-switcher__dropdown.open .lang-switcher__list {
    transform: none;
  }
}
@media (max-width: 991.98px) {
  .lang-switcher__dropdown.open > span {
    opacity: 1;
  }
}
.lang-switcher__list {
  background: #dee9f6;
  overflow: hidden;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
@media (max-width: 991.98px) {
  .lang-switcher__list {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 118px;
    height: 100%;
    max-height: none;
    background: linear-gradient(180deg, #445e94 0%, #29478b 100%);
    overflow-y: auto;
    transform: translateX(100%);
  }
}
.lang-switcher__list li {
  position: relative;
}
.lang-switcher__list li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(93deg, rgba(119, 179, 228, 0.51) 4.12%, rgba(78, 143, 190, 0.51) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.lang-switcher__list li.active {
  background: linear-gradient(93deg, #77a7e4 4.12%, #4e7bbe 100%);
}
.lang-switcher__list li.active a {
  color: #fff;
}
@media (any-hover: hover) {
  .lang-switcher__list li:not(.active):hover::before {
    opacity: 1;
  }
}
.lang-switcher__list a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 25px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 131%;
  white-space: nowrap;
  position: relative;
}
@media (max-width: 991.98px) {
  .lang-switcher__list a {
    color: #fff;
  }
}
.lang-switcher__list a span {
  position: relative;
  top: 2px;
}
.lang-switcher {
  /* Desktop only: mobile fullscreen dropdown is toggled via .open (JS). Touch devices can keep :hover after tap and would leave an invisible fullscreen layer blocking clicks. */
}
@media (min-width: 992px) and (any-hover: hover) {
  .lang-switcher:hover .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.mobile-nav {
  position: fixed;
  z-index: 1000;
  inset: 0;
  height: 100vh;
  color: #fff;
  background: #334b85;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: all 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}
.mobile-nav__bg img {
  width: 100%;
}
.mobile-nav__inner {
  position: relative;
}
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 30px;
  position: relative;
}
.mobile-nav__logo {
  width: 143px;
  height: 34px;
}
.mobile-nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  position: fixed;
  line-height: 0;
  z-index: 1;
  top: 23px;
  right: 30px;
}
.mobile-nav__close::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 6L6.00081 17.9992M17.9992 18L6 6.00085' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  line-height: 0;
}
.mobile-nav__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-height: calc(100vh - 70px);
  min-height: calc(100dvh - 70px);
  padding: 30px;
  position: relative;
}
.mobile-nav__nav {
  width: 100%;
}
.mobile-nav__nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.mobile-nav__nav-list > li {
  width: 100%;
}
.mobile-nav__nav-list > li > a,
.mobile-nav__nav-list > li > div > a {
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
  color: #fff;
  font-family: Mallory, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
}
.mobile-nav__nav-list > li > div {
  display: flex;
  align-items: center;
}
.mobile-nav__nav-list > li > div > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  color: #fff;
  background: transparent;
}
.mobile-nav__nav-list > li > div > button::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M5.5 8.25005C5.5 8.25005 9.55066 13.75 11 13.75C12.4494 13.75 16.5 8.25 16.5 8.25' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: block;
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}
.mobile-nav__nav-list > li > ul {
  display: none;
  padding: 0 0 12px;
}
.mobile-nav__nav-list > li > ul a {
  display: block;
  width: 276px;
  max-width: 100%;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 150%;
}
.mobile-nav__nav-list > li.open > div > button:before {
  transform: rotate(-180deg);
}
.mobile-nav__lang {
  padding: 20px 0;
}
.mobile-nav__bottom {
  display: grid;
  gap: 15px;
}
.mobile-nav__address {
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-style: normal;
  line-height: 150%;
}
.mobile-nav__socials {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
}
.mobile-nav__socials-left, .mobile-nav__socials-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav__social {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}
.mobile-nav__social img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer {
  position: relative;
  padding: 80px 0 40px;
  color: #fff;
  background: linear-gradient(169deg, rgba(23, 63, 99, 0.96) 33.77%, rgba(1, 9, 20, 0.96) 106.58%);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .footer {
    padding: 30px 0;
    background: linear-gradient(122deg, rgb(23, 63, 99) 33.77%, rgb(1, 9, 20) 106.58%);
  }
}
.footer__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__bg-center {
  position: relative;
}
.footer__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
  position: absolute;
  top: -602px;
  left: -608px;
  width: 579.201px;
  height: 1392.163px;
  transform: rotate(-79.056deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  opacity: calc(0.3 + var(--scroll-progress) * 0.59);
  background: #02162e;
}
@media (max-width: 767.98px) {
  .footer__ellipse {
    top: -755px;
    left: 100px;
  }
}
.footer__container {
  position: relative;
  max-width: 1660px;
  padding: 0 30px;
}
.footer__top {
  display: grid;
  grid-template-columns: 227px 1fr auto;
  align-items: start;
  gap: 100px;
  margin-bottom: 80px;
}
@media (max-width: 1420px) {
  .footer__top {
    grid-template-columns: 200px 1fr;
    gap: 45px;
  }
}
@media (max-width: 991.98px) {
  .footer__top {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 35px;
    margin-bottom: 45px;
  }
}
@media (max-width: 767.98px) {
  .footer__top {
    gap: 30px;
    margin-bottom: 30px;
  }
}
.footer__logo {
  display: block;
  width: 227px;
}
.footer__logo img {
  display: block;
  width: 100%;
}
@media (max-width: 1420px) {
  .footer__logo {
    width: 200px;
  }
}
@media (max-width: 767.98px) {
  .footer__logo {
    width: 198px;
  }
}
.footer__nav {
  display: flex;
  gap: 40px;
  padding-top: 10px;
}
@media (max-width: 991.98px) {
  .footer__nav {
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .footer__nav {
    display: grid;
    gap: 30px;
    justify-items: center;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .footer__col {
    width: 100%;
  }
}
.footer__title {
  margin-bottom: 15px;
  font-family: Mallory, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .footer__title {
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
  }
}
.footer__list {
  display: grid;
  margin: -5px 0;
  color: #7ca1b1;
  font-size: 20px;
  line-height: 160%;
}
.footer__list a {
  display: block;
  padding: 5px 0;
  color: inherit;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .footer__list a:hover {
    color: #fff;
  }
}
@media (max-width: 767.98px) {
  .footer__list {
    justify-items: center;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
  }
}
.footer__socials {
  display: flex;
  align-self: end;
  gap: 10px;
  padding-top: 10px;
}
@media (max-width: 1420px) {
  .footer__socials {
    grid-column: 1/-1;
    justify-self: end;
  }
}
@media (max-width: 991.98px) {
  .footer__socials {
    justify-self: center;
  }
}
.footer__social {
  width: 34px;
  height: 34px;
  transition: transform 0.3s ease;
}
.footer__social img {
  display: block;
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .footer__social:hover {
    transform: translateY(-2px);
  }
}
@media (max-width: 767.98px) {
  .footer__social {
    width: 30px;
    height: 30px;
  }
}
.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  color: #4c6988;
}
.footer__bottom p {
  font-size: 20px;
  line-height: 160%;
}
.footer__bottom span {
  white-space: nowrap;
}
.footer__bottom strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .footer__bottom {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .footer__bottom {
    gap: 20px;
  }
  .footer__bottom p {
    font-size: 14px;
    line-height: 150%;
  }
  .footer__bottom strong {
    font-size: 16px;
  }
}

.intro {
  padding: 123px 0 75px;
  position: relative;
}
@media (max-width: 991.98px) {
  .intro {
    padding: 123px 0 50px;
  }
}
@media (max-width: 767.98px) {
  .intro {
    padding: 80px 0 40px;
  }
}
@media (max-width: 479.98px) {
  .intro {
    padding: 80px 0 25px;
  }
}
@media (max-width: 767.98px) {
  .intro--no-advantages {
    padding: 80px 0 120px;
  }
}
@media (max-width: 479.98px) {
  .intro--no-advantages {
    padding: 80px 0 40px;
  }
}
.intro__bg {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.intro__bg-absolute {
  position: absolute;
  right: 0;
  z-index: 2;
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.intro__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.intro__ellipse--1 {
  width: 1296.643px;
  height: 579.201px;
  transform: rotate(11deg);
  background: rgba(130, 171, 227, 0.89);
  left: 43%;
  bottom: -34%;
}
@media (max-width: 767.98px) {
  .intro__ellipse--1 {
    width: 600px;
    height: 400px;
    left: 43%;
    bottom: -19%;
  }
}
.intro__bg-img--desktop {
  width: 100%;
  height: 1100px;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767.98px) {
  .intro__bg-img--desktop {
    display: none;
  }
}
.intro__bg-img--desktop img {
  object-position: center top;
}
.intro__bg-img--mobile {
  display: none;
  position: relative;
  padding-bottom: 115%;
}
@media (max-width: 767.98px) {
  .intro__bg-img--mobile {
    display: block;
  }
  .intro__bg-img--mobile::before {
    content: "";
    position: absolute;
    left: -20px;
    bottom: -30px;
    right: -20px;
    height: 60px;
    /* border-radius: 1335px; */
    background: #2b4c8f;
    filter: blur(18px);
    z-index: 2;
  }
}
.intro__bg-img img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.intro__container {
  min-height: 728px;
  position: relative;
}
@media (max-width: 991.98px) {
  .intro__container {
    min-height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .intro__container {
    min-height: 0;
    justify-content: flex-start;
    padding-top: 70vw;
  }
}
@media (max-width: 479.98px) {
  .intro__container {
    padding-top: 65vw;
  }
}
@media (max-width: 767.98px) {
  .intro__container::before {
    content: "";
    position: absolute;
    left: -50vw;
    bottom: 100px;
    top: 65vw;
    width: 200vw;
    background: #2b4c8f;
    filter: blur(70px);
    z-index: 0;
  }
}
@media (max-width: 767.98px) {
  .intro--no-advantages .intro__container::before {
    bottom: -160px;
  }
}
@media (max-width: 479.98px) {
  .intro--no-advantages .intro__container::before {
    bottom: -100px;
  }
}
@media (max-width: 430px) {
  .intro--no-advantages .intro__container::before {
    bottom: -80px;
  }
}
@media (max-width: 400px) {
  .intro--no-advantages .intro__container::before {
    bottom: -50px;
  }
}
.intro__content {
  max-width: 700px;
  padding: 150px 0;
  display: grid;
  align-content: center;
}
@media (max-width: 991.98px) {
  .intro__content {
    max-width: 500px;
    padding: 100px 0;
  }
}
@media (max-width: 767.98px) {
  .intro__content {
    padding: 0;
    align-content: end;
  }
}
.intro__title {
  font-family: Mallory, sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
  color: #fff;
}
.intro__title i,
.intro__title span {
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .intro__title {
    font-size: 44px;
  }
}
@media (max-width: 767.98px) {
  .intro__title {
    font-size: 36px;
  }
}
@media (max-width: 479.98px) {
  .intro__title {
    font-size: 28px;
  }
}
.intro__text {
  margin-top: 20px;
  font-size: 22px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767.98px) {
  .intro__text {
    font-size: 18px;
  }
}
@media (max-width: 479.98px) {
  .intro__text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}
.intro__actions {
  display: flex;
  gap: 10px;
  padding-top: 30px;
}
@media (max-width: 767.98px) {
  .intro__actions {
    padding-top: 20px;
  }
}
@media (max-width: 479.98px) {
  .intro__actions {
    padding-top: 15px;
  }
}
.intro__btn {
  min-width: 230px;
}
.intro__btn--white {
  min-width: 224px;
}
.intro__btn--mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .intro__btn {
    min-width: auto;
  }
  .intro__btn.intro__btn--desktop {
    display: none;
  }
  .intro__btn.intro__btn--mobile {
    display: inline-flex;
  }
}
.intro__advantages-clip {
  --reveal-clip-top: -90px;
  --reveal-clip-right: -120px;
  --reveal-clip-bottom: -120px;
  --reveal-clip-left: -20px;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .intro__advantages-clip {
    --reveal-clip-top: -70px;
    --reveal-clip-right: -70px;
    --reveal-clip-bottom: -90px;
    --reveal-clip-left: -20px;
    margin-top: 40px;
  }
}
@media (max-width: 479.98px) {
  .intro__advantages-clip {
    margin-top: 30px;
  }
}
.intro__advantages {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(134deg, rgba(255, 255, 255, 0.71) 31.55%, rgba(230, 234, 244, 0.9) 65.72%);
  box-shadow: 48px 14px 81.1px rgba(45, 70, 123, 0.2);
  backdrop-filter: blur(3.5px);
}
@media (max-width: 1420px) {
  .intro__advantages {
    gap: 40px;
    padding-right: 60px;
  }
}
@media (max-width: 991.98px) {
  .intro__advantages {
    padding: 25px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .intro__advantages {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 25px;
    background: linear-gradient(96deg, rgba(255, 255, 255, 0.71) 31.55%, rgba(230, 234, 244, 0.9) 65.72%);
  }
}
.intro__advantage {
  --reveal-delay: 0.35s;
  --reveal-stagger: 0.18s;
  text-align: center;
}
@media (max-width: 767.98px) {
  .intro__advantage {
    position: relative;
    padding-left: 25px;
    text-align: left;
  }
  .intro__advantage::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -1px;
    width: 10px;
    height: 10px;
    border-radius: 1px;
    background: linear-gradient(91deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
    transform: rotate(45deg);
  }
}
@media (max-width: 479.98px) {
  .intro__advantage {
    padding-left: 20px;
  }
}
.intro__advantage-title {
  font-family: Mallory, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 114%;
}
@media (max-width: 991.98px) {
  .intro__advantage-title {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .intro__advantage-title {
    font-size: 16px;
  }
}
.intro__advantage-text {
  margin-top: 10px;
  font-size: 20px;
  line-height: 110%;
  color: var(--gray-primary);
}
@media (max-width: 991.98px) {
  .intro__advantage-text {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .intro__advantage-text {
    font-size: 16px;
  }
}

.service-card {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: 30px 50px 40px;
  border-radius: 20px;
  box-shadow: 2px 33px 50px rgba(115, 141, 165, 0);
  transition: box-shadow 0.3s ease;
  color: var(--primary);
}
@media (max-width: 767.98px) {
  .service-card {
    padding: 20px 30px 25px;
    border-radius: 15px;
    gap: 15px;
  }
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(144deg, rgba(255, 255, 255, 0.7) 33.77%, rgba(144, 166, 186, 0.7) 106.58%);
  backdrop-filter: blur(3.5px);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  backdrop-filter: blur(3.5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card.active {
  box-shadow: 2px 33px 50px rgba(115, 141, 165, 0.26);
  background: transparent;
}
.service-card.active::before {
  opacity: 0;
}
.service-card.active::after {
  opacity: 1;
}
.service-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card__name {
  font-family: Mallory, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 114%;
  flex-grow: 1;
}
@media (max-width: 1420px) {
  .service-card__name {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .service-card__name {
    font-size: 18px;
  }
}
.service-card__icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  opacity: 0.7;
  flex-shrink: 0;
}
.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767.98px) {
  .service-card__icon {
    width: 48px;
    height: 48px;
  }
}
.service-card__body {
  position: relative;
  z-index: 1;
}
.service-card__job-info {
  display: grid;
  gap: 5px;
  font-size: 18px;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .service-card__job-info {
    font-size: 16px;
    line-height: 140%;
  }
}
.service-card__job-info li {
  display: flex;
  gap: 10px;
}
.service-card__job-info li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 767.98px) {
  .service-card__job-info li svg {
    width: 18px;
    height: 18px;
  }
}
.service-card__list {
  display: grid;
  gap: 5px;
  font-size: 18px;
  line-height: 150%;
}
.service-card__list li {
  position: relative;
  padding-left: 34px;
}
.service-card__list li::before, .service-card__list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17L4 12' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17L4 12' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.service-card__list li::before {
  background: #576f84;
}
.service-card__list li::after {
  background: linear-gradient(98deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
  opacity: 0;
}
.service-card.active .service-card__list li::after {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .service-card__list {
    font-size: 16px;
    line-height: 140%;
  }
  .service-card__list li {
    padding-left: 26px;
  }
  .service-card__list li::before, .service-card__list li::after {
    width: 18px;
    height: 18px;
  }
}
.service-card p {
  font-size: 18px;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .service-card p {
    font-size: 16px;
    line-height: 140%;
  }
}
.service-card__more {
  display: none;
  margin-top: 20px;
}
.service-card__more p {
  font-size: 18px;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .service-card__more p {
    font-size: 16px;
    line-height: 140%;
  }
}
.service-card__btn {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 25px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(97deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
  color: #fff;
  cursor: pointer;
  font-family: Mallory, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: filter 0.3s ease;
  margin-top: 20px;
}
.service-card__btn::after {
  content: "";
  width: 24px;
  height: 24px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18.5 12H5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 18C13 18 19 13.5811 19 12C19 10.4188 13 6 13 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.3s ease;
}
.service-card__btn--desktop {
  display: flex;
}
@media (max-width: 767.98px) {
  .service-card__btn--desktop {
    display: none;
  }
}
.service-card__btn--mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .service-card__btn--mobile {
    display: flex;
  }
}
@media (any-hover: hover) {
  .service-card__btn:hover {
    filter: brightness(1.05);
  }
  .service-card__btn:hover::after {
    transform: translateX(4px);
  }
}

.services {
  position: relative;
  padding: 75px 0;
}
@media (max-width: 991.98px) {
  .services {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .services {
    padding: 25px 0;
  }
}
.services__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 479.98px) {
  .services__bg {
    display: none;
  }
}
.services__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.services__ellipse--1 {
  width: 688px;
  height: 1726px;
  transform: rotate(-79deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  opacity: calc(0.3 + var(--scroll-progress) * 0.59);
  background: #6785af;
  left: 566px;
  top: -67px;
}
@media (max-width: 767.98px) {
  .services__ellipse--1 {
    left: 439px;
    top: -113px;
  }
}
.services__desc {
  margin-top: 20px;
  font-size: 22px;
  line-height: 160%;
}
@media (max-width: 767.98px) {
  .services__desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}
.services__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 991.98px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
}
.services__slider-wrap {
  position: relative;
  margin-top: 60px;
}
@media (max-width: 991.98px) {
  .services__slider-wrap {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .services__slider-wrap {
    margin-top: 20px;
  }
}
@media (max-width: 991.98px) {
  .services__slider {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.services__slide {
  height: auto;
}
.services__slide .service-card {
  height: 100%;
}
@media (max-width: 991.98px) {
  .services__slide {
    width: 380px;
  }
}
@media (max-width: 767.98px) {
  .services__slide {
    width: 250px;
  }
}
.services__controls {
  position: absolute;
  left: -120px;
  right: -120px;
  top: calc(50% - 40px);
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media (max-width: 1740px) {
  .services__controls {
    left: -100px;
    right: -100px;
  }
}
@media (max-width: 1560px) {
  .services__controls {
    left: -70px;
    right: -70px;
  }
}
@media (max-width: 1490px) {
  .services__controls {
    left: -55px;
    right: -55px;
  }
}
@media (max-width: 1420px) {
  .services__controls {
    display: none;
  }
}
.services__pagination {
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .services__pagination {
    margin-top: 20px;
  }
}
.services--single .services__grid {
  align-items: stretch;
}
.services--single .service-card, .services--single .service-card__body, .services--single .service-card__list {
  width: 100%;
}
@media (max-width: 767.98px) {
  .services--single .services__grid {
    justify-items: start;
  }
}
.services--careers .services__grid {
  display: block;
  overflow: visible;
}
.services--careers .services__grid .swiper-wrapper {
  align-items: stretch;
}
.services--careers .services__grid .swiper-slide {
  height: auto;
}
@media (min-width: 992px) {
  .services--careers .services__pagination {
    display: none;
  }
}
@media (min-width: 992px) {
  .services--careers .services__grid {
    overflow: visible;
  }
  .services--careers .services__grid .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    transform: none !important;
  }
  .services--careers .services__grid .swiper-slide {
    width: auto !important;
    margin-right: 0 !important;
  }
}

.providers {
  position: relative;
  padding: 75px 0;
}
@media (max-width: 991.98px) {
  .providers {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .providers {
    padding: 25px 0;
  }
}
.providers__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.providers__bg-center {
  width: 1px;
  height: 1px;
  position: relative;
}
.providers__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.providers__ellipse--1 {
  width: 579px;
  height: 1143px;
  opacity: calc(0.2 + var(--scroll-progress) * 0.8);
  transform: rotate(-79deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  background: #2f487c;
  left: -28px;
  top: -417px;
}
@media (max-width: 767.98px) {
  .providers__ellipse--1 {
    width: 166.873px;
    height: 329.35px;
    filter: blur(101px);
    left: 30px;
    top: -126px;
  }
}
.providers__ellipse--2 {
  width: 579.201px;
  height: 1123.209px;
  transform: rotate(-83deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  opacity: calc(0.2 + var(--scroll-progress) * 0.43);
  background: #16359a;
  top: -404px;
  left: 457px;
}
@media (max-width: 767.98px) {
  .providers__ellipse--2 {
    display: none;
  }
}
.providers__ellipse--3 {
  width: 498.03px;
  height: 1392.163px;
  opacity: calc(0.2 + var(--scroll-progress) * 0.8);
  transform: rotate(-79.056deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  background: #cce7ff;
  left: 171px;
  top: -841px;
}
@media (max-width: 767.98px) {
  .providers__ellipse--3 {
    display: none;
  }
}
.providers__ellipse--4 {
  width: 411.365px;
  height: 1336.622px;
  transform: rotate(-79.056deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  opacity: calc(0.2 + var(--scroll-progress) * 0.59);
  background: #032d51;
  left: -857px;
  top: -555px;
}
@media (max-width: 767.98px) {
  .providers__ellipse--4 {
    width: 186.248px;
    height: 605.162px;
    left: -177px;
    top: -191px;
  }
}
.providers__ellipse--5 {
  width: 579.201px;
  height: 1231.801px;
  transform: rotate(-64.51deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  opacity: calc(0.2 + var(--scroll-progress) * 0.5);
  background: #aecbe4;
  top: -236px;
  left: -18px;
}
@media (max-width: 767.98px) {
  .providers__ellipse--5 {
    display: none;
  }
}
.providers__container {
  position: relative;
  z-index: 2;
}
.providers__description {
  font-size: 22px;
  line-height: 160%;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .providers__description {
    margin-top: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}
.providers__sliders {
  display: grid;
  gap: 20px;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 8px;
}
@media (max-width: 991.98px) {
  .providers__sliders {
    margin-top: 40px;
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .providers__sliders {
    margin-top: 20px;
    gap: 10px;
  }
}
.providers__slider {
  width: 100%;
}
.providers__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.providers__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 1740px) {
  .providers__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1420px) {
  .providers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991.98px) {
  .providers__grid {
    margin-top: 40px;
    margin-bottom: 0;
    grid-template-columns: repeat(6, 1fr);
    margin-right: -30px;
    margin-left: -30px;
    padding-right: 30px;
    padding-left: 30px;
    overflow-x: auto;
  }
}
@media (max-width: 767.98px) {
  .providers__grid {
    margin-top: 20px;
    gap: 10px;
  }
}
.providers__item {
  height: 140px;
  padding: 20px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  backdrop-filter: blur(3.5px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .providers__item {
    width: 130px;
    height: 68px;
    padding: 5px 10px;
    border-radius: 15px;
  }
}
.providers__slider .providers__item {
  width: 210px;
}
@media (max-width: 767.98px) {
  .providers__slider .providers__item {
    width: 130px;
  }
}
.providers__logo {
  width: 190px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .providers__logo {
    width: 110px;
    height: 58px;
  }
}
.providers__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.faq {
  padding: 75px 0;
}
@media (max-width: 991.98px) {
  .faq {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .faq {
    padding: 25px 0 50px;
  }
}
.faq__container {
  position: relative;
}
.faq__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.faq__glow {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.faq__glow--1 {
  background: rgba(3, 45, 81, 0.79);
  height: 411px;
  width: 886px;
  left: -115px;
  bottom: -44px;
  opacity: calc(1 - var(--scroll-progress) * 0.8);
  transform: rotate(11deg) scale(calc(0.5 + var(--scroll-progress) * 0.8));
}
@media (max-width: 991.98px) {
  .faq__glow--1 {
    height: 312px;
    width: 673px;
    left: -115px;
    bottom: -44px;
  }
}
@media (max-width: 479.98px) {
  .faq__glow--1 {
    height: 212px;
    width: 573px;
    bottom: 100px;
    filter: blur(150px);
  }
}
.faq__glow--2 {
  background: #9fc0dd;
  width: 488.649px;
  height: 1392.163px;
  right: 90px;
  top: -335px;
  opacity: calc(0.1 + var(--scroll-progress) * 0.9);
  transform: rotate(-79.056deg) scale(calc(1.5 - var(--scroll-progress) * 0.9));
}
@media (max-width: 991.98px) {
  .faq__glow--2 {
    display: none;
  }
}
.faq__glow--3 {
  left: -129px;
  top: 168px;
  height: 579px;
  width: 1214px;
  background: rgba(120, 147, 204, 0.89);
  opacity: calc(1 - var(--scroll-progress) * 0.7);
  transform: translateZ(0) rotate(11deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
}
@media (max-width: 991.98px) {
  .faq__glow--3 {
    height: 354px;
    width: 743px;
    left: -129px;
    top: 96px;
  }
}
@media (max-width: 479.98px) {
  .faq__glow--3 {
    filter: blur(150px);
    height: 254px;
    width: 543px;
  }
}
.faq__title {
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  .faq__title {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .faq__title {
    margin-bottom: 20px;
  }
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
}
@media (max-width: 991.98px) {
  .faq__items {
    gap: 15px;
  }
}
@media (max-width: 767.98px) {
  .faq__items {
    gap: 10px;
  }
}
.faq__item {
  background-image: linear-gradient(167.65deg, rgba(255, 255, 255, 0.7) 33.77%, rgba(144, 166, 186, 0.7) 106.58%);
  backdrop-filter: blur(3.5px);
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  .faq__item {
    border-radius: 15px;
  }
}
.faq__item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 30px 45px 30px 50px;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .faq__item-header {
    padding: 25px 35px 25px 40px;
  }
}
@media (max-width: 767.98px) {
  .faq__item-header {
    padding: 20px 25px 20px 30px;
  }
}
.faq__item-title {
  flex: 1 0 0;
  font-family: Mallory, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
}
@media (max-width: 991.98px) {
  .faq__item-title {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .faq__item-title {
    font-size: 18px;
    line-height: 116%;
  }
}
.faq__item-icon {
  flex-shrink: 0;
  padding-top: 7px;
  transition: transform 0.3s ease;
  stroke: var(--primary);
}
@media (max-width: 991.98px) {
  .faq__item-icon {
    padding-top: 0;
  }
}
.faq__item-icon svg {
  display: block;
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}
._active .faq__item-icon svg {
  transform: rotate(180deg);
}
@media (max-width: 991.98px) {
  .faq__item-icon svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 767.98px) {
  .faq__item-icon svg {
    width: 22px;
    height: 22px;
  }
}
.faq__item-content {
  display: none;
  padding: 0 45px 30px 50px;
  margin-top: -10px;
}
@media (max-width: 991.98px) {
  .faq__item-content {
    padding: 0 35px 25px 40px;
  }
}
@media (max-width: 767.98px) {
  .faq__item-content {
    padding: 0 25px 20px 30px;
  }
}
.faq__item-text {
  line-height: 1.6;
  color: var(--gray-primary);
  margin: 0;
}
@media (max-width: 767.98px) {
  .faq__item-text {
    line-height: 150%;
  }
}

.summary {
  position: relative;
  padding: 150px 0 75px;
}
@media (max-width: 991.98px) {
  .summary {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .summary {
    padding: 25px 0;
  }
}
.summary__bg {
  --reveal-duration: 1.3s;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.summary__bg-img {
  position: absolute;
  width: 100%;
  height: 1200px;
}
.summary__bg-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}
.summary__bg-img--desktop {
  display: block;
  top: -200px;
  right: 0;
}
@media (max-width: 1420px) {
  .summary__bg-img--desktop {
    top: 0px;
    height: 800px;
  }
}
@media (max-width: 479.98px) {
  .summary__bg-img--desktop {
    display: none;
  }
}
.summary__bg-img--mobile {
  display: none;
}
@media (max-width: 479.98px) {
  .summary__bg-img--mobile {
    display: block;
    top: -135px;
  }
}
.summary__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.summary__ellipse--7 {
  height: 800px;
  width: 1800px;
  background: #163b6e;
  filter: blur(154px);
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
}
@media (max-width: 991.98px) {
  .summary__ellipse--7 {
    height: 400px;
    width: 800px;
  }
}
@media (max-width: 479.98px) {
  .summary__ellipse--7 {
    height: 300px;
    width: 500px;
  }
}
.summary__ellipse--1 {
  height: 379.429px;
  width: 1345.185px;
  opacity: 0.67;
  background: #163b6e;
  filter: blur(154px);
  bottom: 0;
  right: -89px;
  transform: rotate(-2deg);
}
@media (max-width: 991.98px) {
  .summary__ellipse--1 {
    width: 600px;
    right: 0;
    height: 300px;
  }
}
.summary__ellipse--2 {
  height: 368.759px;
  width: 1048.942px;
  transform: rotate(11deg);
  opacity: 0.3;
  background: #163b6e;
  filter: blur(154px);
  bottom: 68px;
  right: 45vw;
}
@media (max-width: 991.98px) {
  .summary__ellipse--2 {
    bottom: 50px;
    left: -36px;
    width: 820px;
    right: auto;
  }
}
@media (max-width: 767.98px) {
  .summary__ellipse--2 {
    display: none;
  }
}
.summary__ellipse--3 {
  height: 469.406px;
  width: 1048.942px;
  transform: rotate(11deg);
  background: #163b6e;
  filter: blur(140px);
  bottom: -38px;
  right: 45vw;
}
@media (max-width: 991.98px) {
  .summary__ellipse--3 {
    left: auto;
    bottom: -60px;
    left: -19px;
    width: 820px;
  }
}
@media (max-width: 479.98px) {
  .summary__ellipse--3 {
    bottom: 50px;
    left: -150px;
  }
}
.summary__ellipse--5 {
  height: 119.914px;
  background: rgba(40, 79, 113, 0.35);
  filter: blur(27.5px);
  top: 70%;
  left: 100px;
  right: 0;
}
@media (max-width: 991.98px) {
  .summary__ellipse--5 {
    top: 80%;
  }
}
.summary__content {
  min-height: 800px;
  display: grid;
  align-content: end;
}
@media (max-width: 1420px) {
  .summary__content {
    min-height: 650px;
  }
}
@media (max-width: 991.98px) {
  .summary__content {
    min-height: 550px;
  }
}
@media (max-width: 767.98px) {
  .summary__content {
    min-height: 0;
    padding-top: 220px;
  }
}
@media (max-width: 479.98px) {
  .summary__content {
    padding-top: 320px;
  }
}
.summary__title {
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .summary__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .summary__title {
    margin-bottom: 20px;
  }
}
.summary__body-wrap {
  position: relative;
}
.summary__body-clip {
  --reveal-clip-top: -90px;
  --reveal-clip-right: -120px;
  --reveal-clip-bottom: -120px;
  --reveal-clip-left: -20px;
}
.summary__body {
  background: linear-gradient(177deg, rgba(255, 255, 255, 0.95) 7.22%, rgba(192, 213, 226, 0.95) 83.51%);
  backdrop-filter: blur(3.5px);
  border-radius: 20px;
  padding: 30px 80px 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1420px) {
  .summary__body {
    padding: 30px 40px;
    gap: 20px;
  }
}
@media (max-width: 991.98px) {
  .summary__body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .summary__body {
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(95deg, rgba(255, 255, 255, 0.71) 31.55%, rgba(230, 234, 244, 0.9) 65.72%);
    box-shadow: 48px 14px 81.1px 0 rgba(45, 70, 123, 0.2);
    gap: 10px;
    padding: 25px 30px;
  }
}
@media (max-width: 479.98px) {
  .summary__body {
    grid-template-columns: 1fr;
    padding: 20px 25px;
  }
}
.summary__item {
  --reveal-delay: 0.55s;
  --reveal-stagger: 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex: 1 1 auto;
  max-width: 140px;
}
@media (max-width: 991.98px) {
  .summary__item {
    max-width: none;
  }
}
@media (max-width: 479.98px) {
  .summary__item {
    align-items: flex-start;
    text-align: left;
    gap: 3px;
    padding-left: 24px;
    position: relative;
  }
  .summary__item::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    aspect-ratio: 1/1;
    border-radius: 1px;
    background: var(--Blue-Primary__grad, linear-gradient(91deg, #01b3ff -4.12%, #016fff 100%));
    position: absolute;
    top: 4px;
    left: 2px;
  }
}
.summary__value {
  font-family: Mallory, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.14;
}
@media (max-width: 1420px) {
  .summary__value {
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  .summary__value {
    font-size: 20px;
  }
}
@media (max-width: 479.98px) {
  .summary__value {
    font-size: 16px;
  }
}
.summary__text {
  font-size: 20px;
  line-height: 1.1;
  color: var(--gray-primary);
}
@media (max-width: 1420px) {
  .summary__text {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .summary__text {
    font-size: 16px;
  }
}
@media (max-width: 479.98px) {
  .summary__text {
    line-height: 1.5;
  }
}

.img-text {
  position: relative;
  padding: 75px 0;
}
.img-text--reverse .img-text__body {
  grid-template-columns: 700px 1fr;
}
@media (max-width: 1420px) {
  .img-text--reverse .img-text__body {
    gap: 50px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991.98px) {
  .img-text--reverse .img-text__body {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.img-text--reverse .img-text__image-wrap {
  margin-left: 0;
  margin-right: -100px;
}
.img-text--reverse .img-text__content {
  order: -1;
}
@media (max-width: 991.98px) {
  .img-text--reverse .img-text__content {
    order: 1;
  }
}
.img-text--no-image .img-text__body {
  grid-template-columns: 1fr;
}
.img-text.main .img-text__content {
  padding-bottom: 120px;
}
@media (max-width: 991.98px) {
  .img-text.main .img-text__content {
    padding-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .img-text {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .img-text {
    padding: 25px 0;
  }
}
.img-text__body {
  display: grid;
  grid-template-columns: 1fr 700px;
  gap: 80px;
  position: relative;
}
@media (max-width: 1420px) {
  .img-text__body {
    gap: 50px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991.98px) {
  .img-text__body {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.img-text__body-ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
  position: absolute;
  top: 38px;
  right: 251px;
  background: #c1cfda;
  opacity: calc(0.3 + var(--scroll-progress) * 0.59);
  width: 579px;
  height: 1392px;
  transform: rotate(-79deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  z-index: -1;
}
@media (max-width: 991.98px) {
  .img-text__body-ellipse {
    top: 501px;
    right: auto;
    left: 460px;
  }
}
@media (max-width: 767.98px) {
  .img-text__body-ellipse {
    top: 0;
    right: auto;
    left: 580px;
  }
}
.img-text__image-wrap {
  position: relative;
  top: 25px;
  margin-bottom: -100px;
  margin-left: -100px;
}
@media (max-width: 1420px) {
  .img-text__image-wrap {
    margin-bottom: -50px;
    margin-left: -50px;
  }
}
@media (max-width: 991.98px) {
  .img-text__image-wrap {
    margin-bottom: -30px;
    margin-left: -30px;
    margin-right: -30px;
    top: 0;
  }
}
.img-text__img-ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
  position: absolute;
  top: -130px;
  left: 58px;
  width: 558px;
  height: 824px;
  transform: rotate(-76deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  opacity: calc(0.12 + var(--scroll-progress) * 0.24);
  background: #21468c;
}
@media (max-width: 991.98px) {
  .img-text__img-ellipse {
    top: -41px;
    left: 177px;
  }
}
@media (max-width: 767.98px) {
  .img-text__img-ellipse {
    top: -85px;
    left: 88px;
  }
}
.img-text__image {
  padding-bottom: 100%;
  position: relative;
}
.img-text__image--desktop {
  display: block;
}
@media (max-width: 479.98px) {
  .img-text__image--desktop {
    display: none;
  }
}
.img-text__image--mobile {
  display: none;
}
@media (max-width: 479.98px) {
  .img-text__image--mobile {
    display: block;
  }
}
.img-text__image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center;
  position: absolute;
  inset: 0;
}
.img-text__text-block:not(:first-child) {
  margin-top: 60px;
}
@media (max-width: 991.98px) {
  .img-text__text-block:not(:first-child) {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .img-text__text-block:not(:first-child) {
    margin-top: 30px;
  }
}
.img-text__text-block > h2:not(:first-child) {
  margin-top: 60px;
}
@media (max-width: 991.98px) {
  .img-text__text-block > h2:not(:first-child) {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .img-text__text-block > h2:not(:first-child) {
    margin-top: 30px;
  }
}
.img-text__text {
  font-size: 22px;
  line-height: 1.6;
  margin-top: 20px;
  margin-top: 50px;
  display: grid;
  gap: 20px;
}
.img-text__text:first-of-type {
  margin-top: 20px;
}
@media (max-width: 991.98px) {
  .img-text__text {
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .img-text__text {
    margin-top: 20px;
  }
}
.img-text__text h3 {
  font-size: 42px;
  font-family: Mallory, sans-serif;
  font-weight: 700;
  line-height: 114%; /* 61.56px */
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .img-text__text h3 {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .img-text__text h3 {
    font-size: 20px;
  }
}
.img-text__text h3 i,
.img-text__text h3 span {
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .img-text__text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    margin-top: 15px;
  }
}
@media (max-width: 767.98px) {
  .img-text__text {
    margin-top: 10px;
  }
}
.img-text ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .img-text ul {
    gap: 10px;
  }
}
.img-text ul li {
  line-height: 160%;
  position: relative;
  gap: 15px;
  padding-left: 50px;
}
@media (max-width: 991.98px) {
  .img-text ul li {
    padding-left: 40px;
  }
}
@media (max-width: 767.98px) {
  .img-text ul li {
    padding-left: 30px;
  }
}
.img-text ul li strong {
  font-weight: 500;
}
.img-text ul li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19' fill='none'%3E%3Cpath d='M15.8334 4.75L7.12508 13.4583L3.16675 9.5' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: linear-gradient(91deg, #01b3ff -4.12%, #016fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
  position: absolute;
  top: 2px;
  left: 0;
}
@media (max-width: 767.98px) {
  .img-text ul li::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 19 19' fill='none'%3E%3Cpath d='M15.8334 4.75L7.12508 13.4583L3.16675 9.5' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    top: 2px;
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 767.98px) {
  .img-text ul li {
    line-height: 150%;
    padding-top: 3px;
  }
}

.request {
  position: relative;
  padding: 75px 0;
}
@media (max-width: 991.98px) {
  .request {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .request {
    padding: 25px 0;
  }
}
.request__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.request__bg-img--desktop {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 130%;
}
@media (max-width: 479.98px) {
  .request__bg-img--desktop {
    display: none;
  }
}
.request__bg-img--desktop img {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 991.98px) {
  .request__bg-img--desktop img {
    object-fit: cover;
    height: 120%;
  }
}
.request__bg-img--mobile {
  display: none;
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media (max-width: 479.98px) {
  .request__bg-img--mobile {
    display: block;
  }
}
.request__bg-img--mobile img {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.request__woman {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -413px;
  width: 927px;
  pointer-events: none;
}
.request__woman img {
  display: block;
  width: 100%;
}
@media (max-width: 1650px) {
  .request__woman {
    bottom: -286px;
    width: 600px;
  }
}
@media (max-width: 1350px) {
  .request__woman {
    bottom: -164px;
    width: 366px;
  }
}
@media (max-width: 991.98px) {
  .request__woman {
    display: none;
  }
}
.request__container {
  position: relative;
  z-index: 2;
}
.request__content {
  max-width: 800px;
}
@media (max-width: 767.98px) {
  .request__content {
    max-width: none;
  }
}
.request__head {
  max-width: 700px;
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  .request__head {
    margin-bottom: 40px;
  }
}
@media (max-width: 479.98px) {
  .request__head {
    max-width: 201px;
    margin-bottom: 30px;
  }
}
.request__title {
  color: #fff;
}
@media (max-width: 767.98px) {
  .request__title {
    font-size: 24px;
  }
}
.request__text {
  font-size: 22px;
  line-height: 160%;
  margin-top: 20px;
  opacity: 0.8;
  color: #fff;
}
@media (max-width: 991.98px) {
  .request__text {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .request__text {
    font-size: 16px;
    line-height: 150%;
    margin-top: 10px;
  }
}

.request-contacts {
  position: relative;
  padding: 75px 0 100px;
  color: var(--primary);
}
@media (max-width: 991.98px) {
  .request-contacts {
    padding: 50px 0 70px;
  }
}
@media (max-width: 767.98px) {
  .request-contacts {
    padding: 40px 0 50px;
  }
}
.request-contacts__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.request-contacts__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.request-contacts__ellipse--1 {
  left: 17%;
  top: 55%;
  height: 579.201px;
  width: 1392.163px;
  transform: rotate(11deg);
  background: rgba(193, 207, 218, 0.89);
}
@media (max-width: 767.98px) {
  .request-contacts__ellipse--1 {
    height: 460.54px;
    width: 661.208px;
    left: -36%;
    top: 32%;
  }
}
.request-contacts__container {
  position: relative;
  z-index: 1;
}
.request-contacts__grid {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(360px, 1fr);
  gap: 150px;
  align-items: start;
}
@media (max-width: 1420px) {
  .request-contacts__grid {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}
@media (max-width: 991.98px) {
  .request-contacts__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.request-contacts__head {
  max-width: 700px;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .request-contacts__head {
    margin-bottom: 10px;
  }
}
.request-contacts__text {
  margin-top: 20px;
  font-size: 22px;
  line-height: 160%;
}
@media (max-width: 767.98px) {
  .request-contacts__text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}
.request-contacts__contacts {
  max-width: 700px;
}
.request-contacts__list {
  display: grid;
  gap: 5px;
}
@media (max-width: 767.98px) {
  .request-contacts__list {
    gap: 0;
  }
}
.request-contacts__item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-size: 22px;
  line-height: 160%;
}
@media (max-width: 767.98px) {
  .request-contacts__item {
    gap: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}
.request-contacts__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 3px 2px 1px 0;
  flex: 0 0 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(91deg, #3a3f41 4.12%, #222425 100%);
}
@media (max-width: 767.98px) {
  .request-contacts__icon {
    margin: 3px 3px 1px 0;
  }
}
.request-contacts__icon svg {
  display: block;
  width: 26px;
  height: 26px;
}
.request-contacts__icon--clean {
  background: transparent;
}
.request-contacts__icon--clean svg {
  width: 42px;
  height: 42px;
}
@media (max-width: 767.98px) {
  .request-contacts__icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .request-contacts__icon svg {
    width: 16px;
    height: 16px;
  }
  .request-contacts__icon--clean svg {
    width: 30px;
    height: 30px;
  }
}
.request-contacts__link {
  padding-top: 8px;
  color: var(--blue-primary);
  position: relative;
}
.request-contacts__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  right: 0;
  height: 1.5px;
  background-color: var(--blue-primary);
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .request-contacts__link:hover::after {
    transform: scaleX(0);
  }
}
.request-contacts__address {
  display: grid;
  padding-top: 8px;
  font-style: normal;
}
@media (max-width: 767.98px) {
  .request-contacts__address {
    flex: 1 1 auto;
    min-width: 0;
  }
}
.request-contacts__socials {
  max-width: 700px;
  padding-top: 60px;
}
@media (max-width: 767.98px) {
  .request-contacts__socials {
    padding-top: 30px;
  }
}
.request-contacts__socials-title {
  font-family: Mallory, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .request-contacts__socials-title {
    font-size: 18px;
  }
}
.request-contacts__socials-list {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  padding-top: 20px;
}
@media (max-width: 767.98px) {
  .request-contacts__socials-list {
    gap: 10px;
    padding-top: 10px;
  }
}
.request-contacts__social {
  display: block;
  width: 42px;
  height: 42px;
  line-height: 0;
  transition: transform 0.3s ease;
}
.request-contacts__social svg {
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .request-contacts__social:hover {
    transform: translateY(-2px);
  }
}
@media (max-width: 767.98px) {
  .request-contacts__social {
    width: 30px;
    height: 30px;
  }
}

.request-form {
  display: grid;
  gap: 15px;
  max-width: 800px;
  padding: 50px 60px;
  border-radius: 20px;
  background: linear-gradient(144deg, rgba(106, 139, 181, 0.89) 33.77%, rgba(47, 78, 118, 0.89) 106.58%);
  backdrop-filter: blur(3.5px);
}
@media (max-width: 991.98px) {
  .request-form {
    max-width: 620px;
    padding: 35px;
  }
}
@media (max-width: 767.98px) {
  .request-form {
    gap: 10px;
    max-width: none;
    padding: 20px 30px;
    border-radius: 15px;
  }
}
.request-form--contacts {
  max-width: 800px;
  width: 100%;
  background: linear-gradient(134deg, rgba(58, 93, 137, 0.89) 33.77%, rgba(47, 78, 118, 0.89) 106.58%);
}
@media (max-width: 1420px) {
  .request-form--contacts {
    padding: 30px 40px;
  }
}
@media (max-width: 991.98px) {
  .request-form--contacts {
    max-width: none;
  }
}
@media (max-width: 479.98px) {
  .request-form--contacts {
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .request-form--contacts .request-form__btn {
    width: fit-content !important;
  }
}
@media (max-width: 767.98px) {
  .request-form--contacts .request-form__actions {
    display: flex;
    justify-content: flex-end;
  }
}
.request-form__field {
  position: relative;
  display: grid;
  gap: 0;
  padding: 9px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary);
  transition: all 0.3s ease;
}
.request-form__field::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  filter: blur(16px);
  transition: opacity 0.3s ease;
}
.request-form__field.open {
  z-index: 5;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 15px 15px 0 0;
}
.request-form__field.open::before {
  opacity: 1;
}
.request-form__field > span {
  color: var(--gray-primary);
  font-size: 16px;
  line-height: 160%;
}
.request-form__field > span b {
  color: #ca4d5e;
}
.request-form__field input,
.request-form__field textarea {
  width: 100%;
  min-height: 32px;
  color: var(--primary);
  font-size: 20px;
  line-height: 160%;
  background: transparent;
}
.request-form__field input:focus,
.request-form__field textarea:focus,
.request-form__field button:focus {
  outline: none;
}
.request-form__field textarea {
  height: 64px;
  resize: none;
}
@media (max-width: 767.98px) {
  .request-form__field {
    padding: 4px 15px;
    border-radius: 10px;
  }
  .request-form__field > span {
    font-size: 13px;
  }
  .request-form__field input,
  .request-form__field textarea {
    min-height: 22px;
    font-size: 14px;
    line-height: 150%;
  }
  .request-form__field textarea {
    height: 22px;
  }
}
.request-form__checkbox .ui-checkbox {
  width: 100%;
}
.request-form__error {
  align-self: flex-end;
  width: fit-content;
  color: white;
  font-size: 14px;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 10px 10px 0 10px;
  background: #ca4d5e;
  margin-left: auto;
  position: relative;
  margin-bottom: 16px;
}
.request-form__error[hidden] {
  display: none;
}
@media (max-width: 479.98px) {
  .request-form__error {
    width: 100%;
    justify-content: center;
  }
}
.request-form__error::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 17V13M12 9.25H12.125M13.9248 21H10.0752C5.44476 21 3.12955 21 2.27636 19.4939C1.42317 17.9879 2.60736 15.9914 4.97574 11.9985L6.90057 8.75333C9.17559 4.91778 10.3131 3 12 3C13.6869 3 14.8244 4.91777 17.0994 8.75332L19.0243 11.9985C21.3926 15.9914 22.5768 17.9879 21.7236 19.4939C20.8704 21 18.5552 21 13.9248 21ZM12.25 9.25C12.25 9.11193 12.1381 9 12 9C11.8619 9 11.75 9.11193 11.75 9.25C11.75 9.38807 11.8619 9.5 12 9.5C12.1381 9.5 12.25 9.38807 12.25 9.25Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
}
@media (max-width: 767.98px) {
  .request-form__error::before {
    width: 18px;
    height: 18px;
  }
}
.request-form__error::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='16' viewBox='0 0 28 16' fill='none'%3E%3Cpath d='M0 0H27.5V16C24.1189 5.90239 17.5 0.5 0 0Z' fill='%23CA4D5E'/%3E%3C/svg%3E");
  position: absolute;
  top: 100%;
  right: -0.5px;
  z-index: -1;
}
.request-form__actions {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .request-form__actions {
    display: block;
  }
}
.request-form__btn {
  border: 0;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .request-form__btn {
    width: 100%;
  }
}

.left-img-block {
  position: relative;
  padding: 75px 0;
}
@media (max-width: 991.98px) {
  .left-img-block {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .left-img-block {
    padding: 25px 0 50px;
  }
}
.left-img-block__container {
  position: relative;
  display: grid;
  grid-template-columns: 380px minmax(0, 800px);
  gap: 130px;
  align-items: start;
}
@media (max-width: 1420px) {
  .left-img-block__container {
    grid-template-columns: 36% minmax(0, 1fr);
    gap: 80px;
  }
}
@media (max-width: 991.98px) {
  .left-img-block__container {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 45px;
  }
}
@media (max-width: 767.98px) {
  .left-img-block__container {
    display: block;
    min-height: 0;
  }
}
.left-img-block__visual {
  padding: 30px 0;
}
@media (max-width: 767.98px) {
  .left-img-block__visual {
    display: none;
  }
}
.left-img-block__coin {
  position: relative;
  padding-bottom: 100%;
}
.left-img-block__coin img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.left-img-block__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.left-img-block__ellipse--1 {
  height: 579.201px;
  width: 1213.971px;
  transform: rotate(11deg);
  background: rgba(120, 147, 204, 0.89);
  filter: blur(200px);
  z-index: -1;
  top: -44px;
  left: -184px;
}
.left-img-block__ellipse--2 {
  width: 115%;
  height: 100%;
  background: rgba(38, 66, 114, 0.75);
  filter: blur(60px);
  top: 15%;
  right: 3%;
}
.left-img-block__content {
  position: relative;
  z-index: 1;
}
.left-img-block__title {
  color: var(--primary);
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .left-img-block__title {
    white-space: normal;
    margin-bottom: 10px;
  }
}
.left-img-block__text {
  display: grid;
  gap: 20px;
  font-size: 22px;
  line-height: 160%;
}
@media (max-width: 767.98px) {
  .left-img-block__text {
    gap: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}

.screens {
  position: relative;
  padding: 75px 0;
}
@media (max-width: 991.98px) {
  .screens {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .screens {
    padding: 25px 0;
  }
}
.screens__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.screens__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.screens__ellipse--1 {
  background: rgba(193, 207, 218, 0.89);
  height: 579.201px;
  width: 1392.163px;
  transform: rotate(11deg) translateX(-50%);
  top: 509px;
  left: 50%;
}
@media (max-width: 991.98px) {
  .screens__ellipse--1 {
    top: 600px;
  }
}
@media (max-width: 767.98px) {
  .screens__ellipse--1 {
    top: 400px;
  }
}
@media (max-width: 479.98px) {
  .screens__ellipse--1 {
    height: 316.293px;
    width: 760.238px;
    top: 309px;
  }
}
.screens__ellipse--2 {
  background: rgba(33, 70, 140, 0.36);
  height: 107%;
  width: 144%;
  transform: rotate(-7deg);
  top: 21%;
  right: 10%;
}
.screens__vector {
  position: absolute;
  display: flex;
  align-items: flex-end;
  z-index: -1;
}
.screens__vector--6 {
  bottom: -29%;
  left: 1%;
  right: 2%;
  transform: scaleY(0.5);
}
.screens__vector--7 {
  bottom: -13%;
  left: 6%;
  right: 8%;
  transform: scaleY(0.4);
}
.screens__container {
  position: relative;
}
.screens__grid {
  display: grid;
  grid-template-columns: 600px 1fr;
  align-items: start;
}
@media (max-width: 1740px) {
  .screens__grid {
    grid-template-columns: 500px 1fr;
  }
}
@media (max-width: 1420px) {
  .screens__grid {
    grid-template-columns: 400px 1fr;
  }
}
@media (max-width: 991.98px) {
  .screens__grid {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
  }
}
.screens__col--laptop {
  margin-right: -95px;
}
@media (max-width: 1740px) {
  .screens__col--laptop {
    margin-right: 0;
  }
}
.screens__header {
  max-width: 500px;
}
@media (max-width: 991.98px) {
  .screens__header--desktop {
    display: none;
  }
}
.screens__header--mobile {
  display: none;
}
@media (max-width: 991.98px) {
  .screens__header--mobile {
    display: block;
    padding-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .screens__header--mobile {
    padding-bottom: 20px;
  }
}
.screens__text {
  margin-top: 20px;
  font-size: 22px;
  line-height: 160%;
}
@media (max-width: 767.98px) {
  .screens__text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}
.screens__description-slider {
  --reveal-delay: 2s;
  margin-top: 50px;
}
@media (max-width: 1420px) {
  .screens__description-slider {
    margin-top: 40px;
  }
}
@media (max-width: 991.98px) {
  .screens__description-slider {
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .screens__description-slider {
    margin-top: 33px;
  }
}
.screens__laptop {
  position: relative;
}
.screens__laptop > img {
  z-index: 1;
  width: 100%;
  display: block;
  position: relative;
}
.screens__slider-wrap {
  position: absolute;
  left: 10%;
  top: 6%;
  z-index: 0;
  right: 13%;
  bottom: 17%;
  background: #0b1323;
}
.screens__slider {
  position: absolute;
  inset: 0;
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.screens__controls {
  position: absolute;
  left: -120px;
  right: -120px;
  top: 267px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media (max-width: 1740px) {
  .screens__controls {
    left: -100px;
    right: -100px;
  }
}
@media (max-width: 1560px) {
  .screens__controls {
    left: -70px;
    right: -70px;
  }
}
@media (max-width: 1490px) {
  .screens__controls {
    left: -55px;
    right: -55px;
  }
}
@media (max-width: 1420px) {
  .screens__controls {
    display: none;
  }
}
.screens__pagination {
  margin-top: 62px;
}
@media (max-width: 991.98px) {
  .screens__pagination {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .screens__pagination {
    margin-top: 20px;
  }
}

.screens-description-slider {
  border-radius: 20px 0 20px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  box-shadow: 2px 33px 50px 0 rgba(115, 141, 165, 0.26);
  backdrop-filter: blur(3.5px);
  padding: 30px 50px;
  position: relative;
  overflow: visible !important;
  margin-right: 50px;
}
@media (max-width: 1420px) {
  .screens-description-slider {
    padding: 25px 40px;
  }
}
@media (max-width: 991.98px) {
  .screens-description-slider {
    padding: 20px 30px;
    border-radius: 15px;
    margin-right: 0;
  }
}
.screens-description-slider svg {
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
}
@media (max-width: 991.98px) {
  .screens-description-slider svg {
    display: none;
  }
}
.screens-description-slider__slide {
  display: grid;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .screens-description-slider__slide {
    gap: 10px;
  }
}
.screens-description-slider__title {
  font-family: Mallory;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 991.98px) {
  .screens-description-slider__title {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .screens-description-slider__title {
    font-size: 18px;
    line-height: 114%;
  }
}
.screens-description-slider p {
  color: var(--gray-primary);
  font-size: 20px;
  line-height: 160%;
}
@media (max-width: 991.98px) {
  .screens-description-slider p {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .screens-description-slider p {
    font-size: 14px;
    line-height: 150%;
  }
}

.laptop-slider__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  position: relative;
  padding: 75px 0;
}
@media (max-width: 991.98px) {
  .timeline {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .timeline {
    padding: 25px 0;
  }
}
.timeline__container {
  position: relative;
}
.timeline__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.timeline__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.timeline__ellipse--1 {
  left: 5%;
  top: 26%;
  height: 579.201px;
  width: 1392.163px;
  transform: rotate(11deg);
  background: rgba(193, 207, 218, 0.89);
}
@media (max-width: 767.98px) {
  .timeline__ellipse--1 {
    height: 460.54px;
    width: 661.208px;
    left: -36%;
    top: 16%;
  }
}
.timeline__ellipse--2 {
  left: 4%;
  top: 55%;
  background: rgba(193, 207, 218, 0.89);
  height: 579.201px;
  width: 1392.163px;
  transform: rotate(11deg);
  filter: blur(80px);
}
@media (max-width: 767.98px) {
  .timeline__ellipse--2 {
    height: 460.54px;
    width: 661.208px;
    left: -36%;
    top: 52%;
  }
}
.timeline__ellipse--3 {
  left: 4%;
  top: 64%;
  position: absolute;
  height: 579.201px;
  width: 1392.163px;
  transform: rotate(11deg);
  background: rgba(193, 207, 218, 0.89);
  filter: blur(80px);
}
@media (max-width: 767.98px) {
  .timeline__ellipse--3 {
    display: none;
  }
}
.timeline__ellipse--4 {
  left: -10%;
  top: 2%;
  background: rgba(33, 70, 140, 0.36);
  height: 557.653px;
  width: 824.346px;
  transform: rotate(11deg);
}
@media (max-width: 767.98px) {
  .timeline__ellipse--4 {
    display: none;
  }
}
.timeline__header {
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  .timeline__header {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .timeline__header {
    margin-bottom: 20px;
  }
}
.timeline__subtitle {
  font-size: 22px;
  line-height: 160%;
  margin-top: 20px;
  max-width: 800px;
}
@media (max-width: 767.98px) {
  .timeline__subtitle {
    font-size: 16px;
    line-height: 150%;
    margin-top: 10px;
  }
}
.timeline__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.timeline__step {
  position: relative;
  width: 50%;
}
@media (max-width: 991.98px) {
  .timeline__step {
    width: 70%;
  }
}
@media (max-width: 767.98px) {
  .timeline__step {
    width: 100%;
  }
}
.timeline__step::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: calc(100% - 30px);
  width: 120px;
  height: 120px;
  border-radius: 0 25px 0 0;
  border-top: 4px solid rgba(255, 255, 255, 0.6);
  border-right: 4px solid rgba(255, 255, 255, 0.6);
}
@media (max-width: 767.98px) {
  .timeline__step::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: auto;
    top: 100%;
    width: 4px;
    border-top: none;
    height: 30px;
    border-radius: 0;
  }
}
.timeline__step:nth-child(even) {
  align-self: flex-end;
  padding-left: 30px;
}
.timeline__step:nth-child(even)::before {
  left: auto;
  right: calc(100% - 30px);
  transform: rotate(-90deg);
}
@media (max-width: 767.98px) {
  .timeline__step:nth-child(even)::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
@media (max-width: 767.98px) {
  .timeline__step:nth-child(even) {
    padding-left: 0;
  }
}
.timeline__step:nth-child(odd) {
  align-self: flex-start;
  padding-right: 30px;
}
@media (max-width: 767.98px) {
  .timeline__step:nth-child(odd) {
    padding-right: 0;
  }
}
.timeline__step:last-child::before {
  display: none;
}
.timeline__card {
  border-radius: 20px;
  background: linear-gradient(144deg, rgba(255, 255, 255, 0.7) 33.77%, rgba(144, 166, 186, 0.7) 106.58%);
  backdrop-filter: blur(3.5px);
  padding: 30px 50px 40px 50px;
  display: flex;
  gap: 30px;
}
@media (max-width: 1420px) {
  .timeline__card {
    padding: 25px 40px 30px 40px;
  }
}
@media (max-width: 767.98px) {
  .timeline__card {
    padding: 20px 25px 25px 25px;
    gap: 20px;
    border-radius: 15px;
  }
}
.timeline__icon {
  flex-shrink: 0;
}
.timeline__icon img {
  width: 100px;
  height: 100px;
}
@media (max-width: 1420px) {
  .timeline__icon img {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 767.98px) {
  .timeline__icon img {
    width: 40px;
    height: 40px;
  }
}
.timeline__label {
  font-family: Mallory, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 114%; /* 18.24px */
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media (max-width: 767.98px) {
  .timeline__label {
    font-size: 13px;
    margin-bottom: 2px;
  }
}
.timeline__name {
  font-family: Mallory;
  font-size: 28px;
  font-weight: 700;
  line-height: 114%; /* 31.92px */
}
@media (max-width: 767.98px) {
  .timeline__name {
    font-size: 18px;
  }
}
.timeline__badge {
  margin-top: 10px;
  color: #fff;
  font-family: Mallory, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 114%;
  border-radius: 11px;
  background: #6f96b8;
  padding: 3px 10px;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .timeline__badge {
    font-size: 14px;
    margin-top: 6px;
    padding: 0 10px 0 10px;
    line-height: 21px;
  }
}
.timeline__text {
  padding-top: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
@media (max-width: 767.98px) {
  .timeline__text {
    padding-top: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}
.timeline--contacts .timeline__text {
  padding-top: 10px;
}
.timeline {
  /** Панель с описанием: скрыта до hover (desktop) / tap (mobile), раскрывается через HoverExpandCards */
}
.timeline .timeline-expand-panel-js {
  display: none;
}
@media (max-width: 767.98px) {
  .timeline .timeline-expand-panel-js {
    display: block !important;
  }
}

.start {
  position: relative;
  padding: 75px 0;
}
@media (max-width: 991.98px) {
  .start {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .start {
    padding: 25px 0;
  }
}
.start__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.start__bg-img {
  position: absolute;
}
.start__bg-img--desktop {
  top: 50%;
  right: 50%;
  transform: translateX(50%) translateY(-50%);
}
@media (max-width: 1920px) {
  .start__bg-img--desktop {
    right: 0;
    transform: translateY(-50%);
  }
}
@media (max-width: 1420px) {
  .start__bg-img--desktop {
    right: -100px;
  }
}
@media (max-width: 991.98px) {
  .start__bg-img--desktop {
    right: -300px;
  }
}
@media (max-width: 767.98px) {
  .start__bg-img--desktop {
    display: none;
  }
}
.start__bg-img--desktop img {
  width: 1920px;
}
.start__bg-img--mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .start__bg-img--mobile {
    top: -100px;
    display: block;
  }
}
@media (max-width: 479.98px) {
  .start__bg-img--mobile {
    top: 50%;
    transform: translateY(-50%);
  }
}
.start__bg-img--mobile img {
  width: 100%;
}
.start__content {
  max-width: 840px;
  min-height: 600px;
  display: grid;
  align-content: center;
}
@media (max-width: 1420px) {
  .start__content {
    min-height: 400px;
    max-width: 650px;
  }
}
@media (max-width: 991.98px) {
  .start__content {
    min-height: 0;
    max-width: 500px;
  }
}
@media (max-width: 767.98px) {
  .start__content {
    padding-top: 70vw;
    padding-bottom: 50px;
  }
}
@media (max-width: 479.98px) {
  .start__content {
    padding-top: 85vw;
  }
}
.start__title {
  color: #fff;
}
.start__desc {
  margin-top: 20px;
  color: #fff;
  font-size: 22px;
  line-height: 160%; /* 35.2px */
}
@media (max-width: 767.98px) {
  .start__desc {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
  }
}
.start__actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 767.98px) {
  .start__actions {
    margin-top: 20px;
    gap: 30px;
  }
}
.start__socials {
  display: flex;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .start__socials {
    gap: 10px;
  }
}
.start__social-link {
  transition: filter 0.3s ease;
}
.start__social-link svg {
  width: 40px;
  height: 40px;
}
@media (max-width: 767.98px) {
  .start__social-link svg {
    width: 34px;
    height: 34px;
  }
}
@media (any-hover: hover) {
  .start__social-link:hover {
    filter: brightness(1.15);
  }
}

.table-section {
  position: relative;
  padding: 75px 0;
}
@media (max-width: 991.98px) {
  .table-section {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .table-section {
    padding: 25px 0;
  }
}
.table-section__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.table-section__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.table-section__ellipse--1 {
  background: rgba(103, 133, 175, 0.89);
  height: 110%;
  width: 134%;
  left: -17%;
  top: 0%;
  transform: rotate(11deg);
}
@media (max-width: 767.98px) {
  .table-section__ellipse--1 {
    height: 229.473px;
    width: 681.502px;
    left: -37%;
    top: 25%;
  }
}
.table-section__header {
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  .table-section__header {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
  }
}
@media (max-width: 767.98px) {
  .table-section__header {
    margin-bottom: 20px;
  }
}
.table-section__header-inner {
  flex-grow: 1;
}
.table-section__nav {
  display: none;
}
@media (max-width: 991.98px) {
  .table-section__nav {
    display: flex;
    gap: 5px;
  }
}
.table-section__subtitle {
  font-size: 20px;
  line-height: 160%;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .table-section__subtitle {
    font-size: 16px;
    line-height: 150%;
    margin-top: 10px;
  }
}
.table-section__content {
  position: relative;
}
.table-section__table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
@media (max-width: 991.98px) {
  .table-section__table-wrap {
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    margin-right: -30px;
  }
}
.table-section__table-wrap::-webkit-scrollbar {
  display: none;
}

.compare-table {
  width: 100%;
  min-width: 960px;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  font-size: 22px;
  line-height: 1.6;
  border-radius: 20px;
}
@media (max-width: 991.98px) {
  .compare-table {
    min-width: 760px;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 15px;
    margin-right: 30px;
  }
}
@media (max-width: 767.98px) {
  .compare-table {
    min-width: 560px;
  }
}
.compare-table th,
.compare-table td {
  text-align: left;
  vertical-align: middle;
  padding: 20px 50px;
}
@media (max-width: 991.98px) {
  .compare-table th,
  .compare-table td {
    padding: 10px 20px;
  }
}
.compare-table thead {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(180deg, #3276a6 0%, #135688 100%);
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .compare-table thead {
    white-space: normal;
  }
}
.compare-table thead th:first-child {
  border-top-left-radius: 20px;
}
@media (max-width: 991.98px) {
  .compare-table thead th:first-child {
    border-top-left-radius: 15px;
  }
}
.compare-table thead th:last-child {
  border-top-right-radius: 20px;
}
@media (max-width: 991.98px) {
  .compare-table thead th:last-child {
    border-top-right-radius: 15px;
  }
}
.compare-table tbody tr td,
.compare-table tbody tr th {
  position: relative;
}
.compare-table tbody tr td::before,
.compare-table tbody tr th::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: 0;
}
.compare-table tbody tr th::after {
  content: "";
  position: absolute;
  /* inset: 0; */
  left: 100%;
  top: 0;
  bottom: 0;
  width: 10px;
  z-index: -1;
  pointer-events: none;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(103, 133, 175, 0.1490196078) 0%, transparent 100%);
}
.compare-table tbody tr:last-child > td:last-child::before {
  border-bottom-right-radius: 20px;
}
@media (max-width: 991.98px) {
  .compare-table tbody tr:last-child > td:last-child::before {
    border-bottom-right-radius: 15px;
  }
}
.compare-table tbody tr:last-child > th::before {
  border-bottom-left-radius: 20px;
}
@media (max-width: 991.98px) {
  .compare-table tbody tr:last-child > th::before {
    border-bottom-left-radius: 15px;
  }
}
.compare-table tbody tr:nth-child(odd) > td::before {
  background: rgba(243, 247, 251, 0.95);
}
.compare-table tbody tr:nth-child(odd) > th::before {
  background: rgba(243, 247, 251, 0.95);
}
@media (max-width: 991.98px) {
  .compare-table tbody tr:nth-child(odd) > th::before {
    background: rgb(243, 247, 251);
  }
}
.compare-table tbody tr:nth-child(even) > td::before {
  background: rgba(229, 236, 249, 0.95);
}
.compare-table tbody tr:nth-child(even) > th::before {
  background: rgba(229, 236, 249, 0.95);
}
@media (max-width: 991.98px) {
  .compare-table tbody tr:nth-child(even) > th::before {
    background: rgb(229, 236, 249);
  }
}
@media (max-width: 991.98px) {
  .compare-table {
    overflow: visible;
  }
  .compare-table tr > :first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    max-width: 42vw;
    min-width: 0;
    background-clip: padding-box;
  }
  .compare-table thead tr > :first-child {
    z-index: 3;
    background: linear-gradient(180deg, #3276a6 0%, #135688 100%);
  }
}

.events-slider {
  position: relative;
  padding: 75px 0;
}
@media (max-width: 991.98px) {
  .events-slider {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .events-slider {
    padding: 25px 0;
  }
}
.events-slider__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.events-slider__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.events-slider__ellipse--1 {
  width: 75%;
  height: 62%;
  right: 7%;
  top: 55%;
  background: rgba(193, 207, 218, 0.89);
  transform: rotate(11deg);
}
@media (max-width: 991.98px) {
  .events-slider__ellipse--1 {
    width: 84%;
    height: 60%;
    right: -15%;
    top: 44%;
  }
}
@media (max-width: 767.98px) {
  .events-slider__ellipse--1 {
    width: 798px;
    height: 332px;
    right: -100%;
    top: 60%;
  }
}
.events-slider__ellipse--2 {
  width: 69%;
  height: 58%;
  left: 4%;
  top: 39%;
  background: rgba(33, 70, 140, 0.36);
  transform: rotate(10deg);
}
@media (max-width: 991.98px) {
  .events-slider__ellipse--2 {
    width: 78%;
    height: 64%;
    left: -10%;
    top: 36%;
  }
}
@media (max-width: 767.98px) {
  .events-slider__ellipse--2 {
    width: 580px;
    height: 215px;
    left: -10%;
    top: 36%;
  }
}
.events-slider__container {
  position: relative;
}
.events-slider__header {
  max-width: 700px;
  margin-bottom: 60px;
}
@media (max-width: 767.98px) {
  .events-slider__header {
    margin-bottom: 20px;
  }
}
.events-slider__title {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .events-slider__title {
    margin-bottom: 10px;
  }
}
.events-slider__subtitle {
  max-width: 800px;
  font-size: 22px;
  line-height: 160%;
}
@media (max-width: 767.98px) {
  .events-slider__subtitle {
    font-size: 16px;
    line-height: 150%;
  }
}
.events-slider__body {
  position: relative;
}
.events-slider__slider {
  overflow: hidden;
}
@media (max-width: 1420px) {
  .events-slider__slider {
    margin-right: -30px;
    padding-right: 30px;
    margin-left: -30px;
    padding-left: 30px;
  }
}
.events-slider__slide {
  height: auto;
}
.events-slider__slide .event-card {
  height: 100%;
}
@media (max-width: 767.98px) {
  .events-slider__slide {
    width: 300px;
  }
}
@media (max-width: 479.98px) {
  .events-slider__slide {
    width: 250px;
  }
}
.events-slider__controls {
  position: absolute;
  left: -120px;
  right: -120px;
  top: 220px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 1740px) {
  .events-slider__controls {
    left: -100px;
    right: -100px;
  }
}
@media (max-width: 1560px) {
  .events-slider__controls {
    left: -70px;
    right: -70px;
  }
}
@media (max-width: 1490px) {
  .events-slider__controls {
    left: -55px;
    right: -55px;
  }
}
@media (max-width: 1420px) {
  .events-slider__controls {
    display: none;
  }
}
.events-slider__pagination {
  margin-top: 60px;
}
@media (max-width: 991.98px) {
  .events-slider__pagination {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .events-slider__pagination {
    margin-top: 20px;
  }
}

.event-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.5) 33.77%, rgba(144, 166, 186, 0.5) 106.58%), linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  backdrop-filter: blur(3.5px);
}
@media (max-width: 767.98px) {
  .event-card {
    border-radius: 15px;
  }
}
.event-card__image {
  height: 220px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .event-card__image {
    height: 200px;
  }
}
@media (max-width: 479.98px) {
  .event-card__image {
    height: 150px;
  }
}
.event-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 50px;
}
@media (max-width: 767.98px) {
  .event-card__content {
    padding: 20px 30px;
  }
}
.event-card__title {
  margin-bottom: 15px;
  font-family: Mallory, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767.98px) {
  .event-card__title {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 114%;
  }
}
.event-card__list {
  display: grid;
  gap: 5px;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .event-card__list {
    gap: 2px;
  }
}
.event-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .event-card__item {
    font-size: 16px;
  }
}
@media (max-width: 479.98px) {
  .event-card__item {
    font-size: 14px;
  }
}
.event-card__item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
@media (max-width: 767.98px) {
  .event-card__item svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}
.event-card__button {
  width: 100%;
  margin-top: auto;
}

.media-slider {
  position: relative;
  padding: 75px 0;
}
@media (max-width: 991.98px) {
  .media-slider {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .media-slider {
    padding: 25px 0;
  }
}
.media-slider__bg {
  position: absolute;
  inset: 50% 50%;
}
.media-slider__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.media-slider__ellipse--2 {
  width: 1322px;
  height: 491px;
  transform: rotate(10deg);
  background: rgba(33, 70, 140, 0.36);
  right: -426px;
  bottom: -262px;
}
@media (max-width: 767.98px) {
  .media-slider__ellipse--2 {
    width: 723px;
    height: 268px;
    right: -108px;
    bottom: -171px;
  }
}
.media-slider__header {
  display: flex;
  gap: 20px;
}
.media-slider__header-inner {
  flex-grow: 1;
}
.media-slider__desc {
  font-size: 22px;
  line-height: 160%;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .media-slider__desc {
    font-size: 16px;
    line-height: 150%;
    margin-top: 10px;
  }
}
.media-slider__nav {
  display: flex;
  gap: 10px;
  align-self: flex-end;
}
@media (max-width: 991.98px) {
  .media-slider__nav {
    display: none;
  }
}
.media-slider__body {
  margin-top: 60px;
}
@media (max-width: 991.98px) {
  .media-slider__body {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .media-slider__body {
    margin-top: 20px;
  }
}
.media-slider__slider {
  overflow: visible;
}
.media-slider__slides {
  overflow: visible;
}
.media-slider__slide {
  width: 340px;
}
@media (max-width: 767.98px) {
  .media-slider__slide {
    width: 250px;
  }
}
.media-slider__slide-inner {
  border-radius: 20px;
  border: 10px solid #e7edf1;
  overflow: hidden;
  position: relative;
  display: block;
  background: linear-gradient(144deg, rgba(255, 255, 255, 0.5) 33.77%, rgba(144, 166, 186, 0.5) 106.58%), linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  box-shadow: 0 50px 150px 0 rgba(38, 73, 122, 0.67);
  backdrop-filter: blur(3.5px);
}
.media-slider__slide-image {
  padding-bottom: 88.2352941176%;
}
.media-slider__slide-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.media-slider__slide-desc {
  position: absolute;
  color: white;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  padding: 25px 35px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
.media-slider__slide-desc > div {
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}
.media-slider__slide-desc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(181deg, rgba(28, 64, 115, 0) 12.44%, #173257 89.45%);
  opacity: 0;
  transition: opacity 0.7s ease;
}
.media-slider__slide-inner:hover .media-slider__slide-desc > div {
  transform: none;
  opacity: 1;
}
.media-slider__slide-inner:hover .media-slider__slide-desc::before {
  opacity: 1;
}
.media-slider__pagination {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .media-slider__pagination {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .media-slider__pagination {
    margin-top: 20px;
  }
}

.page-header {
  padding-top: 180px;
  padding-bottom: 60px;
  position: relative;
}
@media (max-width: 767.98px) {
  .page-header {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
}
.page-header__bg-img {
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.page-header__bg-img img {
  width: 100%;
  min-width: 1200px;
}
.page-header__ellipse--1 {
  width: 5293px;
  height: 366px;
  background: #c6d3e0;
  filter: blur(100px);
  bottom: -183px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .page-header__ellipse--1 {
    width: 2540px;
    height: 175px;
    filter: blur(50px);
    bottom: -85px;
  }
}
.page-header__content {
  color: white;
  max-width: 1000px;
}
.page-header__breadcrumbs {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .page-header__breadcrumbs {
    margin-bottom: 5px;
  }
}
.page-header__title {
  color: white;
  font-size: 58px;
}
@media (max-width: 991.98px) {
  .page-header__title {
    font-size: 40px;
  }
}
@media (max-width: 767.98px) {
  .page-header__title {
    font-size: 26px;
  }
}

.breadcrumbs {
  color: white;
  width: 100%;
}
.breadcrumbs > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.breadcrumbs > span:first-child a {
  margin-top: 1px;
}
.breadcrumbs > span > span:first-child a::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M13.2923 19.7077V15.5827C13.2923 14.726 13.2923 14.2976 13.1081 13.9785C12.9874 13.7695 12.8138 13.5959 12.6048 13.4753C12.2857 13.291 11.8574 13.291 11.0007 13.291C10.1439 13.291 9.71558 13.291 9.39648 13.4753C9.18748 13.5959 9.01388 13.7695 8.8932 13.9785C8.70898 14.2976 8.70898 14.726 8.70898 15.5827V19.7077M11.8187 2.57502L19.6976 8.7952C19.9943 9.02939 20.1673 9.38647 20.1673 9.76441C20.1673 10.4465 19.6145 10.9993 18.9324 10.9993H18.334V14.2077C18.334 16.8004 18.334 18.0967 17.5285 18.9022C16.723 19.7077 15.4267 19.7077 12.834 19.7077H9.16732C6.57459 19.7077 5.27823 19.7077 4.47277 18.9022C3.66732 18.0967 3.66732 16.8004 3.66732 14.2077V10.9993H3.06888C2.38687 10.9993 1.83398 10.4465 1.83398 9.76441C1.83398 9.38647 2.00705 9.02939 2.30368 8.7952L10.1826 2.57502C10.4155 2.39107 10.7037 2.29102 11.0007 2.29102C11.2976 2.29102 11.5858 2.39107 11.8187 2.57502Z' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 22px;
  height: 22px;
  display: block;
  position: relative;
  top: 2px;
}
@media (max-width: 767.98px) {
  .breadcrumbs > span > span:first-child a::before {
    width: 16px;
    height: 16px;
    top: 1px;
  }
}
.breadcrumbs > span > span:first-child a:hover {
  opacity: 0.8;
}
.breadcrumbs > span > span:not(:first-child) > a {
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
.breadcrumbs > span > span:not(:first-child) > a:hover {
  border-color: white;
}
.breadcrumbs > span > span, .breadcrumbs > span > span > a {
  color: white;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%; /* 21px */
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .breadcrumbs > span > span, .breadcrumbs > span > span > a {
    font-size: 12px;
  }
}
.breadcrumbs > span > span:not(:first-child) {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.breadcrumbs > span > span:not(:first-child)::before {
  content: "";
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
  display: block;
  flex-shrink: 0;
  border-radius: 1px;
  background: white;
  opacity: 0.8;
  position: relative;
  bottom: 1px;
}
@media (max-width: 767.98px) {
  .breadcrumbs > span > span:not(:first-child)::before {
    width: 6px;
    height: 6px;
    bottom: 2px;
  }
}

.pagination {
  width: 100%;
}
@media (max-width: 767.98px) {
  .pagination {
    width: 330px;
    max-width: 100%;
  }
}
.pagination .nav-links {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.pagination .page-numbers,
.pagination .ppage-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  font-family: Mallory, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  background: #fff;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767.98px) {
  .pagination .page-numbers,
  .pagination .ppage-numbers {
    height: 34px;
    min-width: 40px;
    font-size: 14px;
  }
}
.pagination .page-numbers {
  padding: 0 10px;
}
@media (max-width: 767.98px) {
  .pagination .page-numbers:nth-child(4), .pagination .page-numbers:nth-child(5), .pagination .page-numbers:nth-child(6) {
    display: none;
  }
}
.pagination .page-numbers.current {
  color: #fff;
  background: linear-gradient(91deg, #3a3f41 4.12%, #222425 100%);
  pointer-events: none;
}
.pagination .page-numbers:nth-last-child(2) {
  min-width: 54px;
}
@media (max-width: 767.98px) {
  .pagination .page-numbers:nth-last-child(2) {
    min-width: 50px;
  }
}
.pagination .ppage-numbers.prev,
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  width: 40px;
  flex: 0 0 40px;
  padding: 0;
  background: linear-gradient(91deg, #01b3ff 4.12%, #016fff 100%);
  font-size: 0;
}
.pagination .ppage-numbers.prev::before,
.pagination .page-numbers.prev::before,
.pagination .page-numbers.next::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14.5 6C14.5 6 8.5 10.4188 8.5 12C8.5 13.5812 14.5 18 14.5 18' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (max-width: 767.98px) {
  .pagination .ppage-numbers.prev::before,
  .pagination .page-numbers.prev::before,
  .pagination .page-numbers.next::before {
    width: 18px;
    height: 18px;
  }
}
.pagination .ppage-numbers.prev,
.pagination .page-numbers.prev {
  margin-right: auto;
}
.pagination .page-numbers.next {
  margin-left: auto;
}
.pagination .page-numbers.next::before {
  transform: rotate(180deg);
}
.pagination .вщеы {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  padding: 0 10px;
  border-radius: 10px;
  font-family: Mallory, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  background: #fff;
}
@media (max-width: 767.98px) {
  .pagination .вщеы {
    height: 34px;
    min-width: 40px;
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .pagination a:hover {
    transform: translateY(-2px);
  }
}

.blog-archive {
  position: relative;
  padding: 0 0 85px;
}
@media (max-width: 991.98px) {
  .blog-archive {
    padding: 0 0 55px;
  }
}
.blog-archive__container {
  position: relative;
  isolation: isolate;
}
.blog-archive__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.blog-archive__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.blog-archive__ellipse--1 {
  width: 1380px;
  height: 422px;
  transform: rotate(4deg);
  background: rgba(103, 133, 175, 0.89);
  left: -200px;
  top: 10%;
}
@media (max-width: 991.98px) {
  .blog-archive__ellipse--1 {
    left: -300px;
  }
}
.blog-archive__ellipse--2 {
  width: 1380px;
  height: 422px;
  transform: rotate(4deg);
  background: rgba(103, 133, 175, 0.89);
  left: -200px;
  top: 35%;
}
@media (max-width: 991.98px) {
  .blog-archive__ellipse--2 {
    left: -300px;
  }
}
.blog-archive__ellipse--3 {
  width: 1380px;
  height: 422px;
  transform: rotate(4deg);
  background: rgba(103, 133, 175, 0.89);
  left: -200px;
  top: 55%;
}
@media (max-width: 991.98px) {
  .blog-archive__ellipse--3 {
    left: -300px;
  }
}
.blog-archive__ellipse--4 {
  width: 1380px;
  height: 422px;
  transform: rotate(4deg);
  background: rgba(103, 133, 175, 0.89);
  left: -200px;
  bottom: 5%;
}
@media (max-width: 991.98px) {
  .blog-archive__ellipse--4 {
    left: -300px;
  }
}
.blog-archive__ellipse--5 {
  width: 520px;
  height: 420px;
  transform: rotate(4deg);
  background: rgba(174, 198, 232, 0.89);
  filter: blur(150px);
  left: -120px;
  top: -100px;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .blog-archive__ellipse--5 {
    display: none;
  }
}
.blog-archive__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 80px;
}
@media (max-width: 1420px) {
  .blog-archive__body {
    gap: 40px;
  }
}
@media (max-width: 991.98px) {
  .blog-archive__body {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.blog-archive__content {
  position: relative;
  min-width: 0;
  z-index: 1;
}
.blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 991.98px) {
  .blog-archive__grid {
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .blog-archive__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.blog-archive__categories {
  width: 100%;
  position: relative;
  z-index: 1;
}
.blog-archive__pagination {
  margin-top: 60px;
}
@media (max-width: 991.98px) {
  .blog-archive__pagination {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .blog-archive__pagination {
    margin-top: 30px;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(139deg, rgba(255, 255, 255, 0.5) 33.77%, rgba(144, 166, 186, 0.5) 106.58%), linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  backdrop-filter: blur(3.5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 767.98px) {
  .blog-card {
    border-radius: 15px;
  }
}
@media (any-hover: hover) {
  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 2px 33px 50px rgba(115, 141, 165, 0.26);
  }
}
.blog-card__image {
  position: relative;
  display: block;
  padding-bottom: 62.5%;
  overflow: hidden;
  background: #d9d9d9;
}
@media (max-width: 1420px) {
  .blog-card__image {
    height: 260px;
  }
}
@media (max-width: 767.98px) {
  .blog-card__image {
    height: 210px;
  }
}
.blog-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
@media (any-hover: hover) {
  .blog-card:hover .blog-card__image img {
    transform: scale(1.02);
  }
}
.blog-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 50px;
  color: var(--primary);
}
@media (max-width: 1420px) {
  .blog-card__content {
    padding: 25px 35px;
  }
}
@media (max-width: 767.98px) {
  .blog-card__content {
    padding: 20px 30px 25px;
  }
}
.blog-card__title {
  font-family: Mallory, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767.98px) {
  .blog-card__title {
    font-size: 18px;
    line-height: 114%;
  }
}
.blog-card__title a {
  color: inherit;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .blog-card__title a:hover {
    color: var(--blue-primary);
  }
}
.blog-card__desc {
  font-size: 18px;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .blog-card__desc {
    font-size: 16px;
  }
}

.blog-categories-select {
  display: none;
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 400px;
  padding: 0 20px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  box-shadow: 2px 33px 50px rgba(115, 141, 165, 0.26);
  backdrop-filter: blur(3.5px);
}
@media (max-width: 991.98px) {
  .blog-categories-select {
    display: block;
  }
}
.blog-categories-select__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 0;
  font-family: Mallory, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  text-align: left;
  text-transform: uppercase;
  background: transparent;
  transition: color 0.3s ease;
}
.blog-categories-select__toggle._active {
  color: var(--blue-dark);
}
.blog-categories-select__dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 20px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(224, 231, 235, 0.95) 100%);
  box-shadow: 2px 33px 50px rgba(115, 141, 165, 0.26);
  backdrop-filter: blur(3.5px);
}
.blog-categories-select__dropdown[hidden] {
  display: none;
}
.blog-categories-select__item {
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  font-family: Mallory, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.blog-categories-select__item._active {
  color: var(--blue-dark);
}
@media (any-hover: hover) {
  .blog-categories-select__item:hover {
    color: var(--blue-dark);
  }
}
.blog-categories-select__icon {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  position: relative;
  top: -1px;
}
.blog-categories-select__icon svg {
  width: 100%;
  height: 100%;
}
.blog-categories-select__title {
  flex-grow: 1;
}
.blog-categories-select__arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75 9 11.25l4.5-4.5' stroke='%23040C32' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.3s ease;
}
.blog-categories-select__toggle._active .blog-categories-select__arrow {
  transform: rotate(180deg);
}

.blog-categories-list {
  position: sticky;
  top: 110px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 50px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  box-shadow: 2px 33px 50px rgba(115, 141, 165, 0.26);
  backdrop-filter: blur(3.5px);
}
@media (max-width: 991.98px) {
  .blog-categories-list {
    display: none;
  }
}
.blog-categories-list__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 24px;
  font-family: Mallory, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.blog-categories-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 1px;
  background: var(--gray-primary);
  transform: translateY(-50%) rotate(45deg);
}
.blog-categories-list__item._active {
  color: var(--blue-dark);
}
.blog-categories-list__item._active::before {
  background: linear-gradient(91deg, #01b3ff 4.12%, #016fff 100%);
}
@media (any-hover: hover) {
  .blog-categories-list__item:hover {
    color: var(--blue-dark);
  }
}

.other-blog {
  position: relative;
  padding: 80px 0 75px;
}
@media (max-width: 991.98px) {
  .other-blog {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .other-blog {
    padding: 30px 0 25px;
  }
}
.other-blog__bg {
  position: absolute;
  inset: 50%;
  z-index: -1;
  pointer-events: none;
  width: 1px;
  height: 1px;
}
.other-blog__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.other-blog__ellipse--1 {
  width: 1308px;
  height: 522px;
  transform: rotate(5deg);
  background: rgba(103, 133, 175, 0.89);
  left: -688px;
  top: -133px;
}
@media (max-width: 767.98px) {
  .other-blog__ellipse--1 {
    width: 849px;
    height: 339px;
    left: -400px;
    top: -65px;
  }
}
.other-blog__slider-wrap {
  position: relative;
  margin-top: 60px;
}
@media (max-width: 991.98px) {
  .other-blog__slider-wrap {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .other-blog__slider-wrap {
    margin-top: 20px;
  }
}
@media (max-width: 991.98px) {
  .other-blog__slider {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.other-blog__slide {
  height: auto;
}
.other-blog__slide .blog-card {
  height: 100%;
}
@media (max-width: 991.98px) {
  .other-blog__slide {
    width: 380px;
  }
}
@media (max-width: 767.98px) {
  .other-blog__slide {
    width: 280px;
  }
}
.other-blog__controls {
  position: absolute;
  left: -120px;
  right: -120px;
  top: calc(50% - 40px);
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media (max-width: 1740px) {
  .other-blog__controls {
    left: -100px;
    right: -100px;
  }
}
@media (max-width: 1560px) {
  .other-blog__controls {
    left: -70px;
    right: -70px;
  }
}
@media (max-width: 1490px) {
  .other-blog__controls {
    left: -55px;
    right: -55px;
  }
}
@media (max-width: 1420px) {
  .other-blog__controls {
    display: none;
  }
}
.other-blog__pagination {
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .other-blog__pagination {
    margin-top: 20px;
  }
}

.blog-single {
  padding-bottom: 80px;
}
@media (max-width: 991.98px) {
  .blog-single {
    padding-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .blog-single {
    padding-bottom: 30px;
  }
}
.blog-single__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.blog-single__ellipse--1 {
  width: 520px;
  height: 420px;
  transform: rotate(4deg);
  background: rgba(174, 198, 232, 0.89);
  filter: blur(150px);
  left: -120px;
  top: -100px;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .blog-single__ellipse--1 {
    display: none;
  }
}
.blog-single__ellipse--2 {
  transform: rotate(1deg);
  background: rgba(103, 133, 175, 0.89);
  left: -180px;
  right: -140px;
  top: -15px;
  bottom: -110px;
  z-index: -1;
}
.blog-single__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 80px;
}
@media (max-width: 1420px) {
  .blog-single__grid {
    gap: 40px;
  }
}
@media (max-width: 991.98px) {
  .blog-single__grid {
    display: block;
  }
}
.blog-single__share {
  position: relative;
  margin-top: 80px;
}
@media (max-width: 991.98px) {
  .blog-single__share {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .blog-single__share {
    margin-top: 20px;
  }
}
.blog-single__sidebar {
  position: relative;
}
@media (max-width: 991.98px) {
  .blog-single__sidebar {
    display: none;
  }
}
.blog-single__start {
  margin-bottom: 85px;
}
@media (max-width: 991.98px) {
  .blog-single__start {
    margin-top: 55px;
    margin-bottom: 55px;
  }
}
@media (max-width: 767.98px) {
  .blog-single__start {
    margin-top: 0;
    margin-bottom: 5px;
  }
}

.article-share {
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  box-shadow: 2px 30px 50px 0 rgba(115, 141, 165, 0.26);
  padding: 10px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  gap: 20px;
}
@media (max-width: 1420px) {
  .article-share {
    padding: 10px 40px;
  }
}
@media (max-width: 767.98px) {
  .article-share {
    padding: 10px 25px;
    border-radius: 15px;
    align-items: end;
  }
}
.article-share__socials {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .article-share__socials {
    gap: 8px;
    flex-direction: column;
  }
}
.article-share__socials span {
  font-family: Mallory, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%; /* 31.2px */
}
@media (max-width: 1420px) {
  .article-share__socials span {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .article-share__socials span {
    font-size: 18px;
  }
}
.article-share__socials-list {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 1420px) {
  .article-share__socials-list {
    gap: 8px;
  }
}
@media (max-width: 767.98px) {
  .article-share__socials-list {
    gap: 5px;
  }
}
.article-share__social-link {
  transition: filter 0.3s ease;
  line-height: 0;
}
.article-share__social-link:hover {
  filter: brightness(1.15);
}
.article-share__social-link svg {
  width: 36px;
  height: 36px;
}
@media (max-width: 1420px) {
  .article-share__social-link svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767.98px) {
  .article-share__social-link svg {
    width: 28px;
    height: 28px;
  }
}
.article-share__date {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .article-share__date {
    gap: 5px;
  }
}
.article-share__date svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 767.98px) {
  .article-share__date svg {
    width: 18px;
    height: 18px;
  }
}
.article-share__date date {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .article-share__date date {
    font-size: 14px;
    font-weight: 400;
  }
}

.designs {
  position: relative;
  padding: 75px 0 125px;
}
@media (max-width: 1420px) {
  .designs {
    padding: 50px 0 100px;
  }
}
@media (max-width: 767.98px) {
  .designs {
    padding: 25px 0 75px;
  }
}
.designs__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.designs__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
  width: 1726px;
  height: 687px;
  transform: rotate(11deg);
  background: rgba(103, 133, 175, 0.89);
  left: -200px;
}
@media (max-width: 767.98px) {
  .designs__ellipse {
    width: 960px;
    height: 382px;
  }
}
.designs__ellipse--1 {
  top: 8%;
}
.designs__ellipse--2 {
  top: 25%;
}
.designs__ellipse--3 {
  top: 40%;
}
.designs__ellipse--4 {
  top: 55%;
}
.designs__ellipse--5 {
  bottom: 0%;
}
.designs__container {
  position: relative;
  z-index: 2;
}
.designs__content {
  position: relative;
}
.designs__title {
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  .designs__title {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .designs__title {
    margin-bottom: 20px;
  }
}
.designs__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1420px) {
  .designs__list {
    gap: 24px;
  }
}
@media (max-width: 991.98px) {
  .designs__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .designs__list {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }
}
.designs__more {
  min-width: 145px;
  margin: 40px auto 0;
  display: none;
}
@media (max-width: 767.98px) {
  .designs__more {
    display: block;
    width: 100%;
    margin-top: 20px;
    height: 40px;
  }
}

.design-card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(3.5px);
  background: linear-gradient(131deg, rgba(255, 255, 255, 0.5) 33.77%, rgba(144, 166, 186, 0.5) 106.58%), linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
}
.design-card__image {
  position: relative;
  padding-bottom: 111.9047619048%;
  overflow: hidden;
}
.design-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.design-card__body {
  padding: 30px 50px;
}
.design-card__name {
  margin: 0;
  font-family: Mallory, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
.design-card__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}
.design-card__colors li {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(4, 12, 50, 0.18);
}
@media (max-width: 1420px) {
  .design-card__body {
    padding: 24px 30px;
  }
  .design-card__name {
    font-size: 22px;
  }
}
@media (max-width: 991.98px) {
  .design-card__body {
    padding: 20px 24px 24px;
  }
  .design-card__name {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .design-card__body {
    padding: 20px 30px 25px;
  }
  .design-card__name {
    font-size: 18px;
    line-height: 114%;
  }
}

.providers-page {
  position: relative;
  padding: 75px 0 125px;
}
@media (max-width: 1420px) {
  .providers-page {
    padding: 50px 0 100px;
  }
}
@media (max-width: 767.98px) {
  .providers-page {
    padding: 25px 0 75px;
  }
}
.providers-page__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.providers-page__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}
.providers-page__ellipse--1 {
  width: 1726px;
  height: 687px;
  transform: rotate(11deg);
  background: rgba(103, 133, 175, 0.89);
  left: -200px;
  top: 10%;
}
@media (max-width: 991.98px) {
  .providers-page__ellipse--1 {
    width: 960px;
    height: 382px;
    left: -300px;
    top: 0%;
  }
}
.providers-page__ellipse--2 {
  display: none;
  transform: rotate(11deg);
  background: rgba(103, 133, 175, 0.89);
}
@media (max-width: 991.98px) {
  .providers-page__ellipse--2 {
    width: 960px;
    height: 382px;
    display: block;
    top: 40%;
    left: -300px;
  }
}
.providers-page__ellipse--3 {
  width: 1726px;
  height: 687px;
  transform: rotate(11deg);
  background: rgba(103, 133, 175, 0.89);
  left: -200px;
  bottom: 0%;
}
@media (max-width: 991.98px) {
  .providers-page__ellipse--3 {
    width: 960px;
    height: 382px;
    left: -300px;
  }
}
.providers-page__title {
  text-transform: uppercase;
}
.providers-page__title span {
  font-style: italic;
  font-weight: 400;
}
.providers-page__content {
  margin-top: 40px;
  position: relative;
}
@media (max-width: 767.98px) {
  .providers-page__content {
    margin-top: 20px;
  }
}
.providers-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
@media (max-width: 1420px) {
  .providers-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 991.98px) {
  .providers-page__grid {
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .providers-page__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }
}
.providers-page__pagination {
  margin-top: 60px;
}
@media (max-width: 991.98px) {
  .providers-page__pagination {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .providers-page__pagination {
    margin-top: 30px;
  }
}

.providers-page-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 325px;
  padding: 30px 50px 40px;
  border-radius: 20px;
  backdrop-filter: blur(3.5px);
  background: linear-gradient(151deg, rgba(255, 255, 255, 0.7) 33.77%, rgba(144, 166, 186, 0.7) 106.58%);
}
@media (max-width: 991.98px) {
  .providers-page-item {
    gap: 20px;
    padding: 20px 30px 25px;
    min-height: 0;
  }
}
.providers-page-item__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 230px;
  border-radius: 20px;
  box-shadow: 0 22px 12.5px rgba(134, 157, 179, 0.1), 0 12px 25px rgba(134, 157, 179, 0.15);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.41) 0%, rgba(224, 231, 235, 0.41) 100%), #fff;
}
@media (max-width: 767.98px) {
  .providers-page-item__logo {
    max-width: 100%;
  }
}
.providers-page-item__logo-img {
  position: relative;
  padding-bottom: 49.1304347826%;
  width: 100%;
}
.providers-page-item__logo-img img {
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: contain;
  position: absolute;
}
.providers-page-item__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.providers-page-item__title {
  margin: 0;
  font-family: Mallory, sans-serif;
  font-size: 28px;
  line-height: 114%;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .providers-page-item__title {
    font-size: 18px;
  }
}
.providers-page-item__features {
  display: grid;
  gap: 2px;
}
.providers-page-item__line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 30px;
}
.providers-page-item__feature {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 10px;
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 991.98px) {
  .providers-page-item__feature {
    font-size: 14px;
    line-height: 150%;
  }
}
.providers-page-item__feature--dot {
  padding-left: 18px;
}
@media (max-width: 991.98px) {
  .providers-page-item__feature--dot {
    padding-left: 16px;
  }
}
.providers-page-item__feature--dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  transform: translateY(-50%) rotate(-45deg);
  background: linear-gradient(91deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
}

.swiper-fade .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
  transition: opacity 0.7s ease-in-out;
}