:root {
  --brand-blue: #1F4C75;
  --bg-main: linear-gradient(180deg, #002B72 0%, #002B72 27.29%, #002157 60.76%);
  --bg-gradient-main-section: radial-gradient(100% 100% at 50% 100%, #0BADE1 7.66%, rgba(0, 22, 73, 0.00) 100%);
  --bg-gradient-hero-section: radial-gradient(100% 100% at 50% 0%, #0BADE1 0%, rgba(0, 43, 114, 0.00) 100%);
  --bg-gradient-404: radial-gradient(100% 100% at 50% 100%, #0BADE1 0%, rgba(0, 22, 73, 0.00) 68.03%);
  --base-white: #fff;
  --medium-blue: #183E80;
  --brand-dark-blue: #002B72;
  --steel-blue: #8BB1D5;
  --brand-light-blue: #0BADE1;
  --light-azure-blue: #C8EEFB;
  --light-steel-blue: #D9DFEA;
  --brand-green: #39DD5A;
  --brand-green-01: rgba(57, 221, 90, 0.10);
  --bright-blue: #14A0FF;
  --btn-green: #7DAA2F;
  --btn-green-hover: #6B9129;
  --btn-green-active: #577E12;
}

/* fonts */

@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/Roboto-Regular.eot');
    src: url('../assets/fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Roboto-Regular.woff2') format('woff2'),
        url('../assets/fonts/Roboto-Regular.woff') format('woff'),
        url('../assets/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/Roboto-Medium.eot');
    src: url('../assets/fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Roboto-Medium.woff2') format('woff2'),
        url('../assets/fonts/Roboto-Medium.woff') format('woff'),
        url('../assets/fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/Roboto-SemiBold.eot');
    src: url('../assets/fonts/Roboto-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Roboto-SemiBold.woff2') format('woff2'),
        url('../assets/fonts/Roboto-SemiBold.woff') format('woff'),
        url('../assets/fonts/Roboto-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/Roboto-Bold.eot');
    src: url('../assets/fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Roboto-Bold.woff2') format('woff2'),
        url('../assets/fonts/Roboto-Bold.woff') format('woff'),
        url('../assets/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/Roboto-Black.eot');
    src: url('../assets/fonts/Roboto-Black.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Roboto-Black.woff2') format('woff2'),
        url('../assets/fonts/Roboto-Black.woff') format('woff'),
        url('../assets/fonts/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* base */

body {
  min-width: 320px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-main);
  color: var(--base-white);
  font-family: 'Roboto';
  font-size: 16px;
  font-style: normal;
  overflow-x: hidden;
}

main {
  flex-grow: 1;
}

.section,
section {
  position: relative;
  padding-block: 40px;
  padding-inline: 16px;
}

@media (min-width: 768px) {
  .section,
  section {
    padding-inline: 0;
    padding-block: 80px;
    margin-inline: auto;
    width: 708px;
  }
}

@media (min-width: 1024px) {
  .section,
  section {
    width: 904px;
  }
}

@media (min-width: 1366px) {
  .section,
  section {
    width: 1074px;
  }
}

@media (min-width: 1680px) {
  .section,
  section {
    width: 1342px;
  }
}

h2 {
  color: var(--base-white);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.52px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  h2 {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0.64px;
  }
}

h2 span {
  color: var(--brand-light-blue);
}

a {
  transition: .3s;
}

/* classes */

.d-none {
  display: none;
}

@media (min-width: 1366px) {
  .d-xl-block {
    display: block;
  }
}

.btn {
  cursor: pointer;
  border-radius: 8px;
  background: var(--btn-green);
  padding: 8px 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.32px;
  color: var(--white);
  text-decoration: none;
}

.btn:hover {
  background: var(--btn-green-hover);
}

.btn:active {
  background: var(--btn-green-active);
}

/* header */

.header {
  background: var(--brand-blue);
  padding: 12px 30px;
  position: relative;
}

.header::after {
  content:'';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 520px;
  background: var(--bg-gradient-hero-section);
  z-index: -2;
}

.error404 .header::after {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__list {
  display: none;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  user-select: none;
}

.header__list img {
  width: 28px;
  height: 28px;
}

@media (min-width: 768px) {
  .header {
    padding: 12px 30px;
  }

  .header__list {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 16px 60px;
  }
}

@media (min-width: 1366px) {
  .header {
    padding: 16px 93px;
  }

  .header__logo {
    width: 132px;
  }

  .header__list {
    gap: 8px;
  }

  .header__list img {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 1680px) {
  .header {
    padding: 16px 148px;
  }
}

/* footer */

.footer {
  position: relative;
  background: var(--brand-blue);
  padding: 32px 16px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-block: 2px;
}

.footer__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
  color: var(--base-white);
  text-decoration: none;
}

.footer__link:hover {
  opacity: .7;
  text-decoration: underline;
}

.footer__link:active {
  opacity: .5;
  text-decoration: none;
}

.footer__text {
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.24px;
  color: var(--steel-blue);
}

.footer__age {
  display: block;
  margin: -2px auto 0;
}

@media (min-width: 768px) {
  .footer {
    padding: 48px;
  }

  .footer__inner {
    width: 588px;
  }
}

@media (min-width: 1024px) {
  .footer__inner {
    width: 750px;
  }
}

@media (min-width: 1366px) {
  .footer__inner {
    width: 978px;
  }
}

@media (min-width: 1680px) {
  .footer__inner {
    width: 1072px;
  }
}

.footer {
  position: relative;
}

.footer::after {
  content:'';
  position: absolute;
  top: -520px;
  left: 0;
  right: 0;
  width: 100%;
  height: 520px;
  background: var(--bg-gradient-main-section);
  z-index: -2;
}

.error404 .footer::after {
  background: var(--bg-gradient-404);
}

.footer::before {
  content:'';
  position: absolute;
  left: calc(50% - 140px);
  top: -34px;
  display: block;
  width: 280px;
  height: 39px;
  background-image: url('../assets/images/decor-bottom.png');
  background-size: cover;
  z-index: -1;
}

@media (min-width: 414px) {
  .footer::before {
  left: calc(50% - 192px);
  top: -44px;
  width: 382px;
  height: 55px;
  }
}

@media (min-width: 768px) {
  .footer::before {
    left: calc(50% - 354px);
    top: -85px;
    width: 708px;
    height: 100px;
  }
}

@media(min-width: 1024px) {
  .footer::before {
    left: calc(50% - 452px);
    top: -111px;
    width: 904px;
    height: 124px;
  }
}

@media(min-width: 1366px) {
  .footer::before {
    left: calc(50% - 537px);
    top: -123px;
    width: 1074px;
    height: 155px;
  }
}

@media(min-width: 1680px) {
  .footer::before {
    left: calc(50% - 671px);
    top: -142px;
    width: 1342px;
    height: 194px;
  }
}

/* sections */

.menu__list {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, 1fr);
}

.menu__item {
  border-radius: 8px;
  background: var(--base-white);
  display: flex;
  height: 88px;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.menu__item:hover {
  background: var(--light-azure-blue);
}

.menu__item-header {
  position: relative;
  color: var(--brand-dark-blue);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.32px;
  padding-right: 20px;
  width: 100%;
}

.menu__item-header::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 0px;
  display: block;
  width: 12px;
  height: 12px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M11.8968 6.5591C12.7961 7.30064 12.7961 8.69931 11.8968 9.44085L6.38624 13.9847C5.19859 14.9639 3.42843 14.1016 3.42843 12.5438L3.42843 3.45618C3.42843 1.89833 5.19859 1.03601 6.38624 2.0153L11.8968 6.5591Z" fill="%23002B72"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}

.menu__item:hover .menu__item-header::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M11.8968 6.5591C12.7961 7.30064 12.7961 8.69931 11.8968 9.44085L6.38624 13.9847C5.19859 14.9639 3.42843 14.1016 3.42843 12.5438L3.42843 3.45618C3.42843 1.89833 5.19859 1.03601 6.38624 2.0153L11.8968 6.5591Z" fill="%230BADE1"/></svg>');
}

.menu__item-icon {
  width: 28px;
  height: 28px;
}

@media (min-width: 768px) {
  .menu__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu__item {
    height: 130px;
    border-radius: 12px;
    padding: 12px;
  }

  .menu__item-header {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.36px;
  }

  .menu__item-icon {
    width: 36px;
    height: 36px;
  }
  
  .menu__item-header::after {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 1366px) {
  .menu__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1680px) {
  .menu__list {
    grid-template-columns: repeat(5, 1fr);
  }
}

.menu::before {
  content:'';
  position: absolute;
  display: none;
  width: 400px;
  height: 480px;
  background-image: url('../assets/images/decor-menu.png');
  z-index: -1;
}

@media (min-width: 768px) {
  .menu::before {
    display: block;
    bottom: 0;
    right: -30px;
  }
}

@media(min-width: 1024px) {
  .menu::before {
    right: -60px;
  }
}

@media(min-width: 1366px) {
  .menu::before {
    right: -146px;
  }
}

@media(min-width: 1680px) {
  .menu::before {
    right: -288px;
  }
}

.support-apps-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 90px;
}

@media (min-width: 768px) {
  .support-apps-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2px;
  }
}

@media (min-width: 1024px) {
  .support-apps-wrapper {
    grid-template-columns: 382px 452px;
    justify-content: space-between;
  }
}

@media (min-width: 1366px) {
  .support-apps-wrapper {
    grid-template-columns: 382px 536px;
  }
}

@media (min-width: 1680px) {
  .support-apps-wrapper {
    grid-template-columns: 382px 670px;
  }
}

.support__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.support__item {
  position: relative;
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 8px;
  background: var(--medium-blue);
  border: 1px solid var(--medium-blue);
  backdrop-filter: blur(18px);
  color: var(--base-white);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.36px;
}

.support__item:hover {
  border-radius: 8px;
  border: 1px solid var(--brand-green);
  background: var(--brand-green-01);
  backdrop-filter: blur(18px);
  color: var(--brand-green);
}

.support__item::after {
  content: '';
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M11.8968 6.5591C12.7961 7.30064 12.7961 8.69931 11.8968 9.44085L6.38624 13.9847C5.19859 14.9639 3.42843 14.1016 3.42843 12.5438L3.42843 3.45618C3.42843 1.89833 5.19859 1.03601 6.38624 2.0153L11.8968 6.5591Z" fill="%23FFFFFF"/></svg>');
  background-repeat: no-repeat;
}

.support__item:hover::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M11.8968 6.5591C12.7961 7.30064 12.7961 8.69931 11.8968 9.44085L6.38624 13.9847C5.19859 14.9639 3.42843 14.1016 3.42843 12.5438L3.42843 3.45618C3.42843 1.89833 5.19859 1.03601 6.38624 2.0153L11.8968 6.5591Z" fill="%2339DD5A"/></svg>');
}

.apps {
  position: relative;
  padding-bottom: 92px;
}

.apps h2 {
  text-align: center;
}

.apps__list {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.apps__item-icon {
  transition: .3s;
}

.apps__item-icon:hover {
  opacity: .7;
}

.apps::before {
  content:'';
  position: absolute;
  left: calc(50% - 140px);
  bottom: 20px;
  display: block;
  width: 280px;
  height: 120px;
  background-image: url('../assets/images/decor-apps.png');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

@media (min-width: 414px) {
  .apps::before {
    left: calc(50% - 197px);
    bottom: -22px;
    width: 393px;
    height: 178px;
  }
}

@media (min-width: 768px) {
  .apps {
    padding: 0;
  }
  
  .apps::before {
    bottom: unset;
    top: 46px;
  }
}

.advantages__item {
  display: flex;
  padding: 12px 40px 12px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--medium-blue);
  border-radius: 12px;
  backdrop-filter: blur(18px);
}

.advantages__item-icon {
  width: 40px;
  height: 40px;
}

.advantages__item-heading {
  color: var(--base-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.32px;
  height: 40px;
}

.advantages .swiper-controls-wrapper {
  display: flex;
}

.advantages .swiper-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  margin-inline: auto;
}

.advantages .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.advantages .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.25);
  margin: 0!important;
  opacity: 1;
}

.advantages .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: var(--brand-light-blue);
}

.advantages .swiper-button-next,
.advantages .swiper-button-prev {
  display: block;
  position: static;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
}

.advantages .swiper-button-prev {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M5.12924 8.19891C4.0051 9.12583 4.0051 10.8742 5.12924 11.8011L12.0174 17.4808C13.502 18.705 15.7147 17.6271 15.7147 15.6797L15.7147 4.32025C15.7147 2.37294 13.502 1.29504 12.0174 2.51916L5.12924 8.19891Z" fill="%230BADE1"/></svg>');
}

.advantages .swiper-button-next {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M14.8708 8.19891C15.9949 9.12583 15.9949 10.8742 14.8708 11.8011L7.98255 17.4808C6.49799 18.705 4.2853 17.6271 4.2853 15.6797L4.2853 4.32025C4.2853 2.37294 6.49799 1.29504 7.98256 2.51916L14.8708 8.19891Z" fill="%230BADE1"/></svg>');
}

.advantages .swiper-button-prev svg,
.advantages .swiper-button-next svg {
  display: none;
}

@media(min-width: 768px) {
  .advantages__item {
    padding: 20px 40px 26px 20px;
    gap: 28px;
  }

  .advantages__item-heading {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.36px;
  }

  .advantages__item-icon {
    width: 52px;
    height: 52px;
  }
}

@media(min-width: 1366px) {
  .advantages__item {
    padding: 20px 85px 26px 20px;
    gap: 28px;
  }

  .advantages__item-heading {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.36px;
  }

  .advantages__item-icon {
    width: 52px;
    height: 52px;
  }
}

.advantages::before {
  content:'';
  position: absolute;
  right: 0;
  bottom: -42px;
  display: block;
  width: 194px;
  height: 268px;
  background-image: url('../assets/images/decor-advantages.png');
  z-index: -1;
}

@media (min-width: 768px) {
  .advantages::before {
    right: -30px;
    bottom: 48px;
  }
}

@media(min-width: 1024px) {
  .advantages::before {
    right: -60px;
    bottom: 36px;
  }
}

@media(min-width: 1366px) {
  .advantages::before {
    right: -146px;
    bottom: 59px;
  }
}

@media(min-width: 1680px) {
  .advantages::before {
    right: -289px;
    bottom: 36px;
  }
}

.links::before {
  content:'';
  position: absolute;
  left: 16px;
  top: 40px;
  display: block;
  width: 260px;
  height: 360px;
  background-image: url('../assets/images/decor-links.png');
  z-index: -1;
}

@media (min-width: 768px) {
  .links::before {
    left: -102px;
    top: 142px;
  }
}

@media(min-width: 1024px) {
  .links::before {
    left: -132px;
  }
}

@media(min-width: 1366px) {
  .links::before {
    left: -218px;
  }
}

@media(min-width: 1680px) {
  .links::before {
    left: -361px;
  }
}

.links__list {
  display: grid;
  gap: 4px;
}

.links__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
}

.links__item-heading {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--base-white);
  border: 1px solid var(--medium-blue);
  background-color: var(--medium-blue);
  backdrop-filter: blur(18px);
  border-radius: 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.32px;
  padding: 2px 60px 2px 12px;
  width: 100%;
  height: 44px;
}

.links__item-heading:hover {
  border-radius: 12px;
  border: 1px solid var(--brand-green);
  background: var(--brand-green-01);
  backdrop-filter: blur(18px);
  color: var(--brand-green);
}


.links__item-heading::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0px;
  display: block;
  width: 44px;
  height: 100%;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.10);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M11.8968 6.5591C12.7961 7.30064 12.7961 8.69931 11.8968 9.44085L6.38624 13.9847C5.19859 14.9639 3.42843 14.1016 3.42843 12.5438L3.42843 3.45618C3.42843 1.89833 5.19859 1.03601 6.38624 2.0153L11.8968 6.5591Z" fill="%23FFFFFF"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  transition: .3s;
}

.links__item:hover .links__item-heading::after {
  background-color: var(--brand-green);
}

@media(min-width: 768px) {
  .links__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }

  .links__item {
    border-radius: 12px;
  }

  .links__item-heading {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.36px;
    padding: 4px 88px 4px 22px;
    height: 67px;
  }

  .links__item-heading::after {
    border-radius: 10px;
    width: 66px;
  }
}

.payments__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.payments__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.payments__item-image {
  object-fit: contain;
}

@media(min-width: 768px) {
  .payments {
    padding-bottom: 60px;
  }
}

.partners {
  padding-bottom: 86px;
}

.partners h2 {
  text-align: center;
}

.partners__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.partners__list > :nth-child(5) {
  grid-column: 1 / -1;
}

.partners__item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--base-white);
  padding: 16px;
  height: 114px;
}

@media (min-width: 768px) {
  .partners {
    padding-top: 0;
    padding-bottom: 160px;
  }

  .partners__list {
    grid-template-columns: repeat(6, 1fr);
  }

  .partners__list > :nth-child(1),
  .partners__list > :nth-child(2),
  .partners__list > :nth-child(3) {
    grid-column: span 2;
  }

  .partners__list > :nth-child(4),
  .partners__list > :nth-child(5) {
    grid-column: span 3;
  }

  .partners__list > :nth-child(6) {
    grid-column: span 3;
  }
}

@media(min-width: 1024px) {
  .partners {
    padding-bottom: 184px;
  }
  
  .partners__list {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .partners__list > :nth-child(1),
  .partners__list > :nth-child(2),
  .partners__list > :nth-child(3),
  .partners__list > :nth-child(4),
  .partners__list > :nth-child(5) {
    grid-column: auto;
  }
}

.error {
  padding-top: 40px;
  padding-bottom: 146px;
  text-align: center;
}

.error__404 {
  color: var(--bright-blue);
  font-size: 160px;
  font-style: normal;
  font-weight: 600;
  line-height: 192px;
  letter-spacing: 3.2px;
}

.error__desc {
  color: var(--base-white);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 38.4px;
  letter-spacing: 0.64px;
}

@media (min-width: 768px) {
  .error {
    padding-top: 80px;
    padding-bottom: 284px;
  }

  .error__404 {
    font-size: 256px;
    line-height: 304px;
    letter-spacing: 5.12px;
  }

  .error__desc {
    font-size: 60px;
    font-style: normal;
    line-height: 72px;
    letter-spacing: 1.2px;
  }
}

/* singular */

.post-heading {
  position: sticky;
  top: 0;
  z-index: 10;
  border-radius: 0 0 8px 8px;
  background: var(--bright-blue);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}

.post-heading__inner {
  display: flex;
  padding: 8px 16px 12px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
}

.post-heading__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-heading__back {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.28px;
}

.post-heading__back:hover {
  opacity: .7;
}

.post-heading__back::before {
  content:'';
  display: block;
  width: 14px;
  height: 14px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none"><path d="M3.59017 5.73914C2.80328 6.38798 2.80328 7.61182 3.59017 8.26067L8.41192 12.2365C9.45112 13.0934 11 12.3388 11 10.9757L11 3.02408C11 1.66096 9.45111 0.906432 8.41192 1.76331L3.59017 5.73914Z" fill="white"/></svg>');
  background-size: contain;
}

.post-heading__title {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.52px;
}

.post-heading__tabs {
  margin-top: 8px;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  width: 100%;
}

.tabs__item {
  display: flex;
  padding: 6px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex: 1 0 0;
  border-radius: 6px;
  border: 2px solid  var(--base-white);
  color:  var(--base-white);
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.28px;
}

.tabs__item--active {
  background: var(--base-white);
  color: var(--brand-dark-blue);
}

.tabs-content__panel {
  display: none;
}

.tabs-content__panel--active {
  display: block;
}

@media (min-width: 768px) {
  .post-heading__inner {
    padding: 20px 0 12px;
    gap: 8px;
  }

  .post-heading__info {
    display: flex;
    flex-direction: row;
    gap: 0;
  }

  .post-heading__title {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0.72px;
  }

  .tabs {
    gap: 12px;
  }

  .tabs__item {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.36px;
  }
}

@media (min-width: 1024px) {
  .post-heading__info {
    gap: 8px;
  }
}

.accordion {
  overflow: hidden;
}

.accordion__header {
  cursor: pointer;
  position: relative;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  text-align: start;
  width: 100%;
  color: var(--base-white);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.36px;
  padding: 16px;
}

@media(min-width: 768px) {
  .accordion__header {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.48px;
    padding: 24px 60px;
  }
}

@media(min-width: 1366px) {
  .accordion__header {
    padding: 24px 150px;
  }
}

.accordion__header-arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  flex-shrink: 0;
}

.accordion__header-arrow {
  display: block;
  width:20px;
  height:20px;
  background-color: var(--base-white);
  -webkit-mask:url('../assets/images/icon-accordion-arrow.svg') no-repeat center;
  mask:url('../assets/images/icon-accordion-arrow.svg') no-repeat center;
  transition: transform 0.3s ease;
}

.accordion__item--active {
  background-color: var(--base-white);
  border-radius: 12px;
}

.accordion__item--active .accordion__header-arrow {
  transform: rotate(180deg);
  background-color: var(--brand-blue);
}

.accordion__item--active .accordion__header {
  color: var(--brand-dark-blue);
}

.accordion__item--active .accordion__header-arrow-wrapper {
  background: var(--light-steel-blue);
}

.accordion--no-anim .accordion__content {
  transition: none !important;
}

.accordion__variant {
  display: none;
}

.accordion__variant--active {
  display: block;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  opacity: 0;
}

.accordion__item--active .accordion__content {
  opacity: 1;
}

.accordion__content-inner {
  padding: 12px 16px 36px;
}

@media(min-width: 768px) {
  .accordion__content-inner {
    padding: 12px 60px 36px;
  }
}

@media(min-width: 1366px) {
  .accordion__content-inner {
    padding: 12px 150px 36px;
  }
}

.post-content-wrapper {
  position: relative;
}

section.post-content {
  padding-top: 0;
  padding-inline: 0;
}

.content>* {
  margin-block: 8px;
}

.content>*:first-child {
  margin-top: 0;
}

.content>*:last-child {
  margin-bottom: 0;
}

.content,
.content * {
  color: var(--brand-dark-blue);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.32px;
}

.content img {
  border-radius: 12px;
  margin-block: 12px;
  margin-inline: auto;
}

.content img + img {
  margin-top: 20px;
}

.content ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  padding-left: 0;
}

.content ul>li {
  position: relative;
  padding-left: 24px;
}

.content ul>li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 4px;
  height: 4px;
  background: var(--brand-dark-blue);
  border-radius: 50%;
}

.content ol {
  counter-reset: item;
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  padding-left: 0;
}

.content ol>li {
  counter-increment: item;
  position: relative;
  padding-left: 28px;
}

.content ol>li::before {
  content: counter(item) ".";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--brand-dark-blue);
  font-weight: 500;
}

.content h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.36px;
  margin-top: 36px;
}

.content a {
  text-decoration: underline;
}

.content a:hover {
  text-decoration: none;
}

.content b,
.content strong {
  font-weight: 700;
}

.content .btn {
  display: block;
  margin-top: 24px;
  text-align: center;
  color: var(--base-white);
  font-size: 16px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .content>* {
    margin-block: 8px;
  }

  .content * {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.36px;
  }

  .content img {
    margin-block: 36px;
  }

  .content img + img {
    margin-top: 64px;
  }

  .content ul {
    gap: 8px;
  }

  .content li {
    padding-left: 27px;
  }

  .content li::before {
    left: 12px;
    top: 10px;
  }

  .content h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.48px;
  }

  .content .btn {
    display: inline-flex;
    padding: 6px 20px;
    margin-top: 20px;
    line-height: 24px;
  }
}