:root {
  --accent: #0867fa;
  --link-hover: #83878b;
  --bg-primary: #100024;
  --bg-secondary: rgba(255, 255, 255, 0.04);
  --bg-black: #090114;
  --bg-gray: rgba(255, 255, 255, 0.07);
  --text-light-gray: #d9d9d9;
  --text-gray: #474e55;
  --text-gray2: #5e6c79;
  --border-color: rgba(255, 255, 255, 0.13);
}

._spoller-init .spollers__title::after {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.menu-mobile::before, .sub-menu, .header._header-scroll::before, .select__options {
  background: rgba(0, 0, 0, 0.21);
  backdrop-filter: blur(144px);
  -webkit-backdrop-filter: blur(144px);
}

.sub-menu, .select__options {
  border-right: 1px solid var(--bg-gray);
  border-bottom: 1px solid var(--bg-gray);
  border-left: 1px solid var(--bg-gray);
}

.spollers__item {
  line-height: 1.4;
  overflow: hidden;
}
.spollers__item:not(:last-child) {
  margin-bottom: 1rem;
}

.spollers__title {
  width: 100%;
  cursor: default;
  text-align: left;
  position: relative;
  list-style: none;
  font-weight: 500;
  background-color: var(--bg-secondary);
}
@media (min-width: 75em) {
  .spollers__title {
    padding: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (padding: clamp( 1.25rem , 1.1590909091rem  +  0.4545454545vw , 1.5rem )) {
    .spollers__title {
      padding: clamp( 1.25rem , 1.1590909091rem  +  0.4545454545vw , 1.5rem );
    }
  }
  @supports not (padding: clamp( 1.25rem , 1.1590909091rem  +  0.4545454545vw , 1.5rem )) {
    .spollers__title {
      padding: calc(1.25rem + 0.25 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .spollers__title {
    padding: 1.25rem;
  }
}
@media (min-width: 75em) {
  .spollers__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (font-size: clamp( 1.25rem , 1.1590909091rem  +  0.4545454545vw , 1.5rem )) {
    .spollers__title {
      font-size: clamp( 1.25rem , 1.1590909091rem  +  0.4545454545vw , 1.5rem );
    }
  }
  @supports not (font-size: clamp( 1.25rem , 1.1590909091rem  +  0.4545454545vw , 1.5rem )) {
    .spollers__title {
      font-size: calc(1.25rem + 0.25 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .spollers__title {
    font-size: 1.25rem;
  }
}
._spoller-init .spollers__title {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  justify-content: space-between;
  cursor: pointer;
}
._spoller-init .spollers__title::after {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\e903";
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--border-color);
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  transition: transform 0.4s ease 0s;
}
._spoller-init .spollers__title._spoller-active::after {
  transform: rotate(-180deg);
  border: 1.5px solid #fff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(75px);
  -webkit-backdrop-filter: blur(75);
  color: #fff;
}

.spollers__body {
  padding: 0.375rem 1.5rem 1.5rem;
  background-color: var(--bg-secondary);
}

.select {
  min-width: 0;
  position: relative;
}
@media (min-width: 47.99875em) {
  .select {
    transform: translate(0, -30%);
  }
}
@media (max-width: 47.99875em) {
  .select {
    order: 2;
    position: relative;
    z-index: 100;
  }
}
.select__body {
  position: relative;
  min-width: 4.375rem;
}
.select__title {
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.select__title::after {
  flex: 0 0 2rem;
  content: "";
  background: url("../../img/flags/eng.svg") center/2.125rem 2.125rem no-repeat;
  width: 2rem;
  height: 2rem;
  border-radius: 0.625rem;
  border: 2px solid #2C2C2C;
}
.select__value {
  display: flex;
  min-width: 0;
  align-items: center;
  height: 1.875rem;
  padding: 0 0.3125rem;
  gap: 0.625rem;
}
.select__value > * {
  flex: 1 1 auto;
}
.select__content {
  flex: 1 1 auto;
}
.select__text {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  position: absolute;
  top: calc(100% + 0.875rem);
  min-width: 100%;
}
@media (max-width: 47.99875em) {
  .select__options {
    top: calc(100% + 1.0625rem);
  }
}
.select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 5px 15px;
  color: inherit;
}
.select__option._select-selected {
  background-color: var(--bg-gray);
}
@media (any-hover: hover) {
  .select__option:hover {
    background: var(--bg-gray);
  }
}
.select__row {
  display: inline-flex;
  align-items: center;
}
.select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}
._select-tag {
  cursor: pointer;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 1.5625rem;
}
.header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.21);
}
@media (max-width: 47.99875em) {
  .header::before {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(144px);
    -webkit-backdrop-filter: blur(144px);
  }
}
@media (max-width: 47.99875em) {
  .header {
    padding: 1rem 0;
  }
}
.menu-open .header {
  border-bottom: 1px solid var(--bg-gray);
}
.header__container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}
@media (min-width: 47.99875em) {
  .header__logo {
    transform: translate(0, -30%);
  }
}
@media (max-width: 47.99875em) {
  .header__logo {
    order: 1;
  }
}
.header__logo img {
  flex: 0 0 2.8125rem;
  min-width: 2.8125rem;
  max-height: 2.625rem;
  max-width: 100%;
}
@media (max-width: 47.99875em) {
  .header__logo img {
    flex: 0 0 2.0625rem;
    min-width: 2.0625rem;
  }
}
.header__logo span {
  flex: 0 0 auto;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 47.99875em) {
  .header__logo span {
    font-size: 1.25rem;
  }
}
@media (max-width: 47.99875em) {
  .header__menu {
    order: 0;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 75em) {
  .menu__list {
    -moz-column-gap: 3.125rem;
         column-gap: 3.125rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports ((-moz-column-gap: clamp( 0.625rem , -0.2840909091rem  +  4.5454545455vw , 3.125rem )) or (column-gap: clamp( 0.625rem , -0.2840909091rem  +  4.5454545455vw , 3.125rem ))) {
    .menu__list {
      -moz-column-gap: clamp( 0.625rem , -0.2840909091rem  +  4.5454545455vw , 3.125rem );
           column-gap: clamp( 0.625rem , -0.2840909091rem  +  4.5454545455vw , 3.125rem );
    }
  }
  @supports not ((-moz-column-gap: clamp( 0.625rem , -0.2840909091rem  +  4.5454545455vw , 3.125rem )) or (column-gap: clamp( 0.625rem , -0.2840909091rem  +  4.5454545455vw , 3.125rem ))) {
    .menu__list {
      -moz-column-gap: calc(0.625rem + 2.5 * (100vw - 20rem) / 55);
           column-gap: calc(0.625rem + 2.5 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .menu__list {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
}
.menu__item {
  flex: 0 0 auto;
  position: relative;
}
@media (any-hover: hover) {
  .menu__item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  .menu__item:hover::before {
    opacity: 1;
  }
}
.link {
  display: inline-block;
  padding-bottom: 1.5625rem;
  color: var(--text-gray2);
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .link:hover {
    color: #83878b;
  }
}
.link.active-link {
  font-weight: 500;
  color: var(--text-light-gray);
}
@media (max-width: 47.99875em) {
  .link {
    font-weight: 400;
    color: var(--text-light-gray);
  }
}

.sub-menu {
  padding: 0.9375rem 0.9375rem 0.9375rem 0.9375rem;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  min-width: 7.1875rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease 0s;
}
.sub-menu__item:not(:last-child) {
  margin-bottom: 1rem;
}
.sub-menu__link {
  white-space: nowrap;
  color: var(--text-gray2);
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .sub-menu__link:hover {
    color: var(--link-hover);
  }
}
@media (max-width: 47.99875em) {
  .sub-menu__link {
    color: var(--text-light-gray);
  }
}

.icon-menu {
  display: none;
  transition: transform 0.3s ease 0s;
}
@media (max-width: 47.99875em) {
  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
  }
}
@media (max-width: 47.99875em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}
@media (max-width: 47.99875em) {
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
    border-radius: 0.125rem;
  }
  .icon-menu::before {
    top: 0;
  }
  .icon-menu::after {
    bottom: 0;
  }
  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }
  .menu-open .icon-menu {
    transform: rotate(-90deg);
  }
}

.menu-mobile {
  position: fixed;
  width: 100%;
  top: -4.25rem;
  left: 0;
  display: flex;
  justify-content: center;
  transition: top 0.6s ease 0s;
  z-index: 100;
  padding-top: 1.5rem;
}
.menu-mobile::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 47.99875em) {
  .menu-mobile::before {
    background: rgba(0, 0, 0, 0.4);
  }
}
.menu-open .menu-mobile {
  top: 4.125rem;
}
@media (min-width: 47.99875em) {
  .menu-mobile {
    display: none;
  }
}

.footer {
  position: relative;
  z-index: 100;
  background-color: var(--bg-black);
  color: var(--text-gray2);
}
.footer__container {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1.2fr 1fr 1fr 1fr;
  justify-items: center;
  gap: 1.375rem;
}
@media (max-width: 61.99875em) {
  .footer__container {
    padding: 1.5rem 0.9375rem;
  }
}
@media (max-width: 47.99875em) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer__column {
  line-height: 1.4;
}
.footer__column--logo {
  margin-top: -0.5rem;
}
.footer__column--logo img {
  max-width: 100%;
}
@media (min-width: 47.99875em) {
  .footer__column--logo span {
    display: none;
    line-height: 1;
  }
}
@media (max-width: 47.99875em) {
  .footer__column--logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
  }
}
@media (max-width: 47.99875em) {
  .footer__column--dt {
    display: none;
  }
}
.footer__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 0.625rem;
}
@media (max-width: 47.99875em) {
  .footer__title {
    margin-bottom: 0rem;
  }
}
@media (max-width: 47.99875em) {
  .footer__text {
    display: none;
  }
}
.menu-footer__link {
  transition: color 0.3s ease 0s;
}
.menu-footer__link:not(:last-child) {
  margin-bottom: 0.625rem;
}
@media (any-hover: hover) {
  .menu-footer__link:hover {
    color: var(--text-light-gray);
  }
}

@media (max-width: 47.99875em) {
  .social {
    margin-top: 0.4375rem;
  }
}
.social__list {
  display: flex;
  gap: 1.25rem;
}
@media (min-width: 47.99875em) {
  .social__list {
    flex-direction: column;
  }
}
.social__link {
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .social__link:hover {
    color: var(--text-light-gray);
  }
}

.video::before, .video video, .video {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.video {
  pointer-events: none;
  z-index: -100;
}
.video video {
  z-index: -100;
  -o-object-fit: cover;
     object-fit: cover;
}
.video::before {
  content: "";
  background: linear-gradient(180deg, rgba(16, 0, 36, 0.17) 0%, rgba(14, 0, 31, 0.29) 0.01%, #100024 100%), linear-gradient(91deg, rgba(16, 0, 36, 0.96) 19.28%, rgba(16, 0, 36, 0.96) 85.73%);
}
.video--blue::before {
  background: linear-gradient(180deg, rgba(23, 79, 82, 0.17) 0%, rgba(23, 79, 82, 0.29) 0.01%, #174f52 100%), linear-gradient(0deg, rgba(23, 79, 82, 0.96) 0%, rgba(23, 79, 82, 0.96) 100%);
}
.video--green::before {
  background: linear-gradient(180deg, rgba(16, 0, 36, 0.17) 0%, rgba(17, 28, 4, 0.29) 0.01%, #111c04 100%), linear-gradient(0deg, hsla(88, 75%, 6%, 0.96) 0%, rgba(17, 28, 4, 0.96) 100%);
}
.video--dark-blue::before {
  background: linear-gradient(180deg, rgba(16, 0, 36, 0.17), rgba(2, 20, 47, 0.29) 0.01%, rgb(2, 20, 47) 100%), rgba(41, 41, 41, 0.96);
}
.video--gray::before {
  background: linear-gradient(180deg, rgba(16, 0, 36, 0.17), rgba(41, 41, 41, 0.29) 0.01%, rgb(41, 41, 41) 100%), rgba(41, 41, 41, 0.96);
}
.video--pink::before {
  background: linear-gradient(180deg, rgba(16, 0, 36, 0.17), rgba(62, 0, 41, 0.04) 0.01%, rgb(62, 0, 41) 100%), rgba(62, 0, 41, 0.96);
}

.blog__title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.blog__container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.blog__pagination {
  display: flex;
  text-align: center;
  width: 100%;
  gap: 10px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 2rem 0px;
}
.blog__pagination span {
  cursor: none;
  opacity: 0.8;
}
.blog__pagination a {
  font-weight: bold;
}
.blog__similar {
  margin-bottom: 2rem;
}

.post {
  display: flex;
  width: calc(33.333% - 20px); /* 3 in a row */
  min-width: 240px;
  min-height: 300px;
  overflow: hidden;
  flex-direction: column;
  position: relative;
  border-radius: 30px;
  /* Mobile: 1 per row */
}
.post__img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.5s all;
}
.post__bg {
  background: rgba(0, 0, 0, 0.5);
  margin-top: auto;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 20px 30px 10px;
  min-height: 20%;
  transition: 0.5s all;
}
.post__title {
  font-size: 1.5 rem;
}
.post__date {
  font-size: 0.8rem;
  line-height: 2rem;
}
.post__excerpt {
  max-height: 0px;
  transition: 1s all;
  overflow: hidden;
}
@media (min-width: 61.99875em) {
  .post:hover .post__bg {
    background-size: 110%;
  }
  .post:hover .post__excerpt {
    max-height: 3rem;
  }
  .post:hover .post__img {
    transform: scale(1.1);
  }
}
@media (max-width: 61.99875em) {
  .post {
    width: calc(50% - 20px);
  }
}
@media (max-width: 47.99875em) {
  .post {
    width: 100%;
  }
}

.pst__text {
  font-size: 1rem;
  line-height: 1.6;
}
.pst__text h1, .pst__text h2, .pst__text h3, .pst__text h4, .pst__text h5, .pst__text h6 {
  font-weight: 600;
  margin: 1rem 0 0.5rem;
}
.pst__text h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1.5rem;
}
.pst__text h2 {
  font-size: 1.75rem;
}
.pst__text h3 {
  font-size: 1.5rem;
}
.pst__text h4 {
  font-size: 1.25rem;
  font-weight: 500;
}
.pst__text h5 {
  font-size: 1.125rem;
  font-weight: 500;
}
.pst__text h6 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pst__text p {
  margin: 0 0 1rem;
}
.pst__text strong {
  font-weight: bold;
}
.pst__text ul,
.pst__text ol {
  margin: 0.5rem 0 0.5rem 2rem;
  padding: 0;
}
.pst__text ul li,
.pst__text ol li {
  margin: 0.25rem 0;
}
.pst__text ul li {
  list-style: disc;
}
.pst__text ol li {
  list-style: auto;
}
.pst__text blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #ccc;
  background: #f9f9f9;
  font-style: italic;
  color: #555;
}
.pst__text img {
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
  border-radius: 0.5rem;
  display: block;
}
.pst__text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.pst__text table th,
.pst__text table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
}
.pst__text table th {
  background: #f1f1f1;
  font-weight: 600;
}
