@charset "UTF-8";
:root {
  --color-text: #121619;
  --color-white: #ffffff;
  --color-gray: #6C757D;
  --color-light-gray: #E9ECEF;
  --color-bg: #EDF1F4;
  --color-primary: #053868;
  --color-secondary: #00B0F0;
  --color-secondary-light: #D9F3FD;
}

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

:where(ul, ol):where([class]) {
  padding-left: 0;
}

:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

p {
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: 24px;
}

img:where(:not([class])) {
  display: block;
  max-width: 100%;
}

input,
textarea,
select,
button {
  font: inherit;
}

svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

svg * {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--color-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text);
}
@media screen and (max-width: 960px) {
  body {
    font-size: 15px;
    line-height: 22px;
  }
}

ul, ol {
  color: var(--color-primary);
  font-size: 16px;
}
@media screen and (max-width: 960px) {
  ul, ol {
    font-size: 15px;
    line-height: 22px;
  }
}
ul li, ol li {
  padding: 4px 0px;
}

[class*=__container], .container {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  [class*=__container], .container {
    max-width: 1140px;
  }
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn--small {
  padding: 4px 16px;
  border-radius: 12px;
}
.btn--text {
  background: var(--color-text);
  color: var(--color-text);
}
.btn--white {
  background: var(--color-white);
  color: var(--color-text);
}
.btn--gray {
  background: var(--color-gray);
  color: var(--color-text);
}
.btn--light-gray {
  background: var(--color-light-gray);
  color: var(--color-text);
}
.btn--bg {
  background: var(--color-bg);
  color: var(--color-text);
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-text);
}
.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}
.btn--secondary-light {
  background: var(--color-secondary-light);
  color: var(--color-text);
}
.btn--more {
  color: inherit;
  padding: 4px 0px;
  position: relative;
}
.btn--more:after {
  position: absolute;
  display: inline-block;
  content: "›";
  margin-left: 8px;
  font-size: 28px;
  top: 2px;
  right: -16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn--more:hover:after {
  right: -20px;
}

.header {
  position: sticky;
  top: 0;
  padding: 24px 0px;
  background: var(--color-white);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (max-width: 960px) {
  .header__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header__burger {
  display: none;
}
@media screen and (max-width: 960px) {
  .header__burger {
    display: block;
  }
}

.nav {
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 960px) {
  .nav {
    position: absolute;
    background: var(--color-white);
    left: 0;
    right: 0;
    top: 110px;
    -webkit-transform: translateX(-1000px);
        -ms-transform: translateX(-1000px);
            transform: translateX(-1000px);
  }
  .nav.active {
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (max-width: 960px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 20px;
  }
}
@media screen and (max-width: 960px) {
  .nav__item {
    width: 100%;
  }
}
.nav__link {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  color: var(--color-primary);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 960px) {
  .nav__link {
    display: block;
  }
}

.burger {
  width: 32px;
  height: 22px;
}
.burger__btn {
  display: block;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  z-index: 5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.burger__btn:before, .burger__btn:after {
  content: "";
}
.burger__btn:before, .burger__btn:after, .burger__btn span {
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--color-primary);
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.burger__btn span {
  top: 50%;
  -webkit-transform: scale(1) translate(0px, -50%);
      -ms-transform: scale(1) translate(0px, -50%);
          transform: scale(1) translate(0px, -50%);
}
.burger__btn:before {
  top: 0;
}
.burger__btn:after {
  bottom: 0;
}
.burger__btn.active span {
  -webkit-transform: scale(0) translate(0px, -50%);
      -ms-transform: scale(0) translate(0px, -50%);
          transform: scale(0) translate(0px, -50%);
}
.burger__btn.active::before {
  top: 50%;
  -webkit-transform: rotate(-45deg) scale(0.8);
      -ms-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
}
.burger__btn.active::after {
  top: 50%;
  -webkit-transform: rotate(45deg) scale(0.8);
      -ms-transform: rotate(45deg) scale(0.8);
          transform: rotate(45deg) scale(0.8);
}

.section {
  padding: 32px 0px;
}
@media screen and (max-width: 480px) {
  .section {
    padding: 24px 0px;
  }
}
.section--title-left .section__container {
  grid-template-columns: 4fr 8fr;
}
.section--title-right .section__container {
  grid-template-columns: 8fr 4fr;
}
.section--title-right .section__header {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 960px) {
  .section--title-right .section__header {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.section--title-left .section__container, .section--title-right .section__container {
  display: grid;
  gap: 24px;
}
@media screen and (max-width: 960px) {
  .section--title-left .section__container, .section--title-right .section__container {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.section--title-left .section__header, .section--title-right .section__header {
  max-width: 100%;
}
.section__grid-2 {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
}
@media screen and (max-width: 960px) {
  .section__grid-2 {
    grid-template-columns: 1fr;
  }
}
.section__header {
  margin-bottom: 50px;
  max-width: 60%;
}
@media screen and (max-width: 960px) {
  .section__header {
    margin-bottom: 40px;
    max-width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .section__header {
    margin-bottom: 40px;
    max-width: 100%;
  }
}
.section__title {
  color: var(--color-primary);
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 12px;
}
@media screen and (max-width: 960px) {
  .section__title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media screen and (max-width: 480px) {
  .section__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.section__description {
  color: var(--color-gray);
  font-size: 22px;
  line-height: 32px;
}
@media screen and (max-width: 480px) {
  .section__description {
    font-size: 18px;
    line-height: 26px;
  }
}
.section--contacts .section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section--contacts-2 .section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section--contacts-2 .section__header {
  width: 100%;
  margin-bottom: 0;
}
.section--contacts-2 .card__avatar {
  max-width: 256px;
}
@media screen and (max-width: 960px) {
  .section--contacts-2 .card__avatar {
    max-width: 444px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}

.block, .features__item, .metrics__item, ol.list, .iblocks__item, .accordion {
  background: var(--color-white);
  padding: 32px;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.block__title {
  color: var(--color-primary);
  font-size: 22px;
  line-height: 29px;
}
.block__content {
  padding: 8px 0px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.block__content h4 {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin: 8px 0px;
}
@media screen and (max-width: 960px) {
  .block__content h4 {
    font-size: 17px;
    line-height: 26px;
  }
}
@media screen and (max-width: 480px) {
  .block__content h4 {
    font-size: 16px;
    line-height: 24px;
  }
}
.block__footer {
  border-top: 1px solid var(--color-light-gray);
  padding: 20px 0px;
}

.big-banner {
  width: 100%;
  height: 600px;
  color: #fff;
  border-radius: 40px;
  padding: 80px;
  position: relative;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .big-banner {
    padding: 60px;
  }
}
@media screen and (max-width: 480px) {
  .big-banner {
    padding: 32px;
    height: 480px;
  }
}
.big-banner__content {
  width: calc(50% - 80px);
  position: absolute;
  bottom: 80px;
}
@media screen and (max-width: 960px) {
  .big-banner__content {
    width: calc(60% - 60px);
  }
}
@media screen and (max-width: 480px) {
  .big-banner__content {
    width: calc(100% - 60px);
  }
}
.big-banner__title {
  font-size: 42px;
  line-height: 50px;
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .big-banner__title {
    font-size: 36px;
    line-height: 44px;
  }
}
@media screen and (max-width: 480px) {
  .big-banner__title {
    font-size: 30px;
    line-height: 38px;
  }
}
.big-banner__description {
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 960px) {
  .big-banner__description {
    font-size: 15px;
    line-height: 22px;
  }
}

.banner {
  background-position: center center;
  background-size: cover;
  padding: 32px;
  border-radius: 24px;
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 960px) {
  .banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 72px;
  }
}
.banner__header {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35%;
          flex: 0 1 35%;
}
.banner__title {
  font-size: 48px;
  line-height: 58px;
}
.banner__description {
  font-size: 22px;
  line-height: 32px;
}
.banner__info {
  background: rgba(255, 255, 255, 0.3);
  padding: 32px;
  border-radius: 24px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}

.accordion {
  margin-bottom: 20px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.accordion__header {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  font-size: 22px;
  line-height: 29px;
  margin: 0;
  color: var(--color-primary);
}
.accordion__header::after {
  content: "";
  width: 32px;
  height: 32px;
  background-color: var(--color-primary);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 480px) {
  .accordion__header {
    font-size: 18px;
    line-height: 24px;
  }
}
.accordion__body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.accordion.active .accordion__header::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion.active .accordion__body {
  margin-top: 30px;
  max-height: 500px;
}

.iblocks {
  counter-reset: item-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 960px) {
  .iblocks {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.iblocks__item {
  counter-increment: item-counter;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.iblocks__item:hover {
  padding: 24px 32px;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}
.iblocks__item:hover .iblocks__icon {
  -webkit-transform: rotate(18deg);
      -ms-transform: rotate(18deg);
          transform: rotate(18deg);
}
.iblocks__item::after {
  content: counter(item-counter);
  position: absolute;
  top: -10px;
  left: 0;
  width: 30px;
  height: 30px;
  color: var(--color-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 120px;
  line-height: 120px;
  font-weight: 300;
}
.iblocks__item:first-child {
  background: #F6F8FA;
}
.iblocks__item:first-child .iblocks__title {
  color: #6C757D;
}
@media screen and (max-width: 960px) {
  .iblocks__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 32px 60px;
    gap: 12px;
  }
  .iblocks__item:hover {
    padding: 32px 60px;
  }
}
@media screen and (max-width: 480px) {
  .iblocks__item {
    padding: 32px;
  }
  .iblocks__item:hover {
    padding: 32px;
  }
}
.iblocks__icon {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.iblocks__title {
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 29px;
  color: var(--color-text);
}

ol.list {
  list-style-type: none;
  counter-reset: num;
}
ol.list li {
  padding: 20px 0px;
  border-bottom: 1px solid var(--color-light-gray);
  position: relative;
}
ol.list li:last-child {
  border-bottom: none;
}
ol.list li::before {
  font-size: 22px;
  line-height: 29px;
  content: counter(num) ".";
  counter-increment: num;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 0px;
  width: 40px;
  color: var(--color-secondary);
}
ol.list li h3 {
  margin: 0;
  padding-left: 40px;
  font-size: 22px;
  line-height: 29px;
  font-weight: 500;
}
ol.list li p {
  padding-left: 40px;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

ol.default-list, .tabs__panel ol, ul.default-list {
  color: var(--color-primary);
  padding: 8px 16px;
}
ol.default-list li, .tabs__panel ol li, ul.default-list li {
  padding: 4px 0px;
}

.tabs {
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
}
.tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .tabs__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.tabs__item {
  padding: 12px 24px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  background: var(--color-light-gray);
  border: none;
  border-bottom: 2px solid var(--color-gray);
  color: var(--color-text);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
@media screen and (max-width: 480px) {
  .tabs__item {
    border-bottom: 1px solid var(--color-gray);
  }
}
.tabs__item:hover {
  color: var(--color-secondary);
}
.tabs__item.active {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
  background-color: var(--color-white);
}
.tabs__content {
  padding: 32px;
}
.tabs__panel.active {
  display: block;
  opacity: 1;
}
.tabs__panel {
  display: none;
  opacity: 0;
  color: var(--color-primary);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.tabs__panel h3 {
  color: inherit;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-light-gray);
}
.tabs__panel img {
  width: 100%;
  border-radius: 8px;
}

.tickets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.tickets__item {
  padding: 8px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: var(--color-white);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tickets__item:hover {
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
}
.tickets__item:hover .tickets__icon {
  -webkit-transform: rotate(15deg) scale(1.2);
      -ms-transform: rotate(15deg) scale(1.2);
          transform: rotate(15deg) scale(1.2);
}
.tickets__label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 68px;
          flex: 0 0 68px;
  height: 68px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color-secondary);
}
.tickets__icon {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tickets__title {
  display: block;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.metrics {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.metrics__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.metrics__name {
  color: var(--color-gray);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.metrics__value {
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 800;
  line-height: 58px;
}
.metrics__description {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 800;
  line-height: 32px;
}
@media screen and (max-width: 960px) {
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics__name {
    font-size: 15px;
    line-height: 22px;
  }
  .metrics__value {
    font-size: 40px;
    line-height: 48px;
  }
  .metrics__description {
    font-size: 20px;
    line-height: 20px;
  }
}
@media screen and (max-width: 480px) {
  .metrics__item {
    padding: 32px 6px;
  }
  .metrics__value {
    font-size: 32px;
    line-height: 40px;
  }
  .metrics__description {
    font-size: 18px;
    line-height: 26px;
  }
}

.features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: calc((100% - 24px) / 2);
}
@media screen and (max-width: 960px) {
  .features__item {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .features__item {
    width: 100%;
  }
}
.features__item:nth-child(1), .features__item:nth-child(2), .features__item:nth-child(3) {
  width: calc((100% - 48px) / 3);
}
@media screen and (max-width: 960px) {
  .features__item:nth-child(1), .features__item:nth-child(2), .features__item:nth-child(3) {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .features__item:nth-child(1), .features__item:nth-child(2), .features__item:nth-child(3) {
    width: 100%;
  }
}
.features__description {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 29px;
}
@media screen and (max-width: 480px) {
  .features__description {
    font-size: 18px;
    line-height: 24px;
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px;
  padding: 8px;
  background: var(--color-white);
  border-radius: 24px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.card:hover {
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 480px) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.card__avatar {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  max-width: 444px;
  height: 344px;
  border-radius: 16px;
  overflow: hidden;
}
.card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .card__avatar {
    width: 100%;
    height: 260px;
  }
}
.card__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .card__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.card__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.card__info h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: var(--color-primary);
  margin: 0px 0px 0px 0px;
}
@media screen and (max-width: 960px) {
  .card__info h3 {
    font-size: 18px;
  }
}
.card__info h5 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-gray);
  margin: 0px 0px 16px 0px;
}
.card__info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.card__info a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.card__info a:hover {
  color: var(--color-secondary);
}
.card__info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 20px;
  color: var(--color-gray);
  margin: 0px 0px 10px 30px;
}
.card__action .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.card__action .btn img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.card__action .btn--secondary {
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
}
.card__action .btn--secondary:hover {
  background: var(--color-primary);
}
.card__action .btn--secondary:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.footer {
  color: var(--color-white);
  padding-bottom: 50px;
  position: relative;
}
.footer__container {
  background-image: url(../img/footer-bg.png);
  background-position: center center;
  background-size: cover;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
}
.footer__content {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .footer__content {
    padding: 32px 24px;
  }
}
.footer__title {
  font-size: 48px;
  line-height: 58px;
  margin: 0;
}
@media screen and (max-width: 960px) {
  .footer__title {
    font-size: 36px;
    line-height: 44px;
  }
}
.footer__description {
  font-size: 22px;
  line-height: 32px;
  margin: 0;
  max-width: 500px;
}
@media screen and (max-width: 960px) {
  .footer__description {
    font-size: 18px;
    line-height: 26px;
  }
}
.footer__btn {
  padding: 12px 20px 12px 16px;
  background: var(--color-white);
  border-radius: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.footer__btn img {
  max-width: 100%;
  height: auto;
}
.footer__btn:hover {
  background: var(--color-light-gray);
}
.footer__parallax {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.footer__parallax img {
  position: absolute;
  width: 100%;
  height: auto;
  max-width: 600px;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .footer__parallax img {
    -webkit-transition: none;
    transition: none;
  }
}