/* FONTS */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-brand: #1f6dff;
  --color-brand-dark: #083ea3;
  --color-txt: rgba(26, 26, 24, 0.7);
  --color-dark: #1a1a18;
  --color-body: #fff;
  --bg: rgba(31, 109, 255, 0.05);
  --font-main: "Inter", sans-serif;
}

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

html, body {
  height: 100%;
}

html {
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  background-color: var(--color-body);
  font: 400 1rem/1.7 var(--font-main);
  color: var(--color-txt);
  min-width: 20rem;
  -webkit-overflow-scrolling: touch;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--color-brand-dark);
  transition: all 0.3s;
}
a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 1.6875rem;
}
p:last-child {
  margin-bottom: 0;
}

input[type=search], input[type=submit], input[type=text], textarea {
  -webkit-appearance: none;
}

input, textarea {
  box-sizing: border-box;
  outline: none;
}

textarea {
  display: block;
  resize: vertical;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

input[placeholder] {
  text-overflow: ellipsis;
}

input::-moz-placeholder {
  text-overflow: ellipsis;
}

::-webkit-input-placeholder {
  color: rgba(26, 26, 24, 0.2);
}

::-moz-placeholder {
  color: rgba(26, 26, 24, 0.2);
}

button {
  cursor: pointer;
  outline: none;
}

h1, h2, h3, h4, h5, h6,
.heading, .heading-sm {
  color: var(--color-dark);
  text-transform: capitalize;
  line-height: 1.3;
  font-weight: 700;
}

.heading {
  font-size: 4rem;
}
@media (max-width: 1288px) {
  .heading {
    font-size: calc(34px + 30 * (100vw - 375px) / 913);
  }
}

.heading-sm {
  font-size: 2.5rem;
}
@media (max-width: 1288px) {
  .heading-sm {
    font-size: calc(26px + 14 * (100vw - 375px) / 913);
  }
}

.heading-m0 {
  margin: 0;
}

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

.content-page {
  flex: 1 0 auto;
  min-height: 1px;
}

.container {
  width: 100%;
  max-width: 80.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .container {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.section {
  padding: 9.5rem 0;
}
@media (max-width: 1288px) {
  .section {
    padding: calc(65px + 87 * (100vw - 375px) / 913) 0;
  }
}
.section_pt-xs {
  padding-top: 4rem;
}
@media (max-width: 767px) {
  .section_pt-xs {
    padding-top: 2rem;
  }
}
.section_pb-xs {
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .section_pb-xs {
    padding-bottom: 2rem;
  }
}
.section_pt-sm {
  padding-top: 5.1875rem;
}
@media (max-width: 1288px) {
  .section_pt-sm {
    padding-top: calc(50px + 33 * (100vw - 375px) / 913);
  }
}
.section_pb-sm {
  padding-bottom: 5.1875rem;
}
@media (max-width: 1288px) {
  .section_pb-sm {
    padding-bottom: calc(50px + 33 * (100vw - 375px) / 913);
  }
}
.section__block:not(:last-child) {
  margin-bottom: 7.5rem;
}
@media (max-width: 1288px) {
  .section__block:not(:last-child) {
    margin-bottom: calc(60px + 30 * (100vw - 375px) / 913);
  }
}
.section-header {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.section-header_center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header_max {
  max-width: 48.125rem;
}
.section-header_mb {
  margin-bottom: 9.125rem;
}
@media (max-width: 1288px) {
  .section-header_mb {
    margin-bottom: calc(50px + 96 * (100vw - 375px) / 913);
  }
}
.section-button {
  margin-top: 2.5rem;
}

/* BUTTON */
.button {
  font-size: 0.9375rem;
  line-height: 1.4;
  text-align: center;
  color: #fbfbfb;
  border-radius: 2.5rem;
  padding: 0.3125rem 2.5rem;
  background: linear-gradient(137deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  border: none;
  outline: none;
  min-height: 3rem;
  min-width: 10.625rem;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  /* &:hover {
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
     &:before {
       transform: scaleY(1);
     }
   }
   &:before {
     content:'';
     position: absolute;
     z-index: -1;
     inset: 0;
     border-radius: inherit;
     background: linear-gradient(137deg, var(--color-brand-dark) 0%, var(--color-brand) 100%);
     transition: transform .2s;
     transform: scaleY(0);
   }*/
}
.button:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
.button:hover:after {
  height: 250%;
  transition: all 0.3s linear;
  background-color: transparent;
}
.button:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
  pointer-events: none;
}
.button_outline {
  background: transparent;
  border: 1px solid #fff;
}
.button_outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.button_sm {
  min-width: 0;
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
}
.button_fluid {
  width: 100%;
}
.button-wrap {
  text-align: center;
  margin-top: 6rem;
}
.button-wrap:not(:last-child) {
  margin-bottom: 3.5rem;
}
@media (max-width: 1288px) {
  .button-wrap {
    margin-top: calc(45px + 51 * (100vw - 375px) / 913);
  }
}

/* LINK-MORE */
.link-more {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.link-more__txt {
  transition: -webkit-transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
  transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
  transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1), -webkit-transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
  margin-left: -32px;
}
.link-more__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s 0.25s, -webkit-transform 0.6s 0.25s;
  transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
  transition: opacity 0.4s 0.25s, transform 0.6s 0.25s, -webkit-transform 0.6s 0.25s;
  transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
}
.link-more__icon img {
  max-height: 100%;
}
.link-more__icon + .link-more__icon {
  order: -2;
  opacity: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
  transition-delay: 0s;
}
.link-more:hover {
  text-decoration: none;
}
.link-more:hover .link-more__txt {
  transition-delay: 0.1s;
  -webkit-transform: translateX(32px);
  transform: translateX(32px);
}
.link-more:hover .link-more__icon {
  opacity: 0;
  transition-delay: 0s;
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.link-more:hover .link-more__icon + .link-more__icon {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 0.225s;
}

.text-gradient, .odometer-value {
  background: linear-gradient(137deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient {
  color: #fff;
  background: linear-gradient(137deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
}

.bg-box {
  background-color: var(--bg);
}

.label {
  display: inline-flex;
  align-items: center;
  border-radius: 2.5rem;
  padding: 0.5rem 0.9375rem;
  border: 1px solid var(--color-brand);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .label {
    font-size: 1.25rem;
  }
}
.label_sm {
  font-size: 1rem;
}

.tag-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.tag {
  display: inline-flex;
  background-color: var(--bg);
  border-radius: 2.5em;
  padding: 0.5em 1.5em;
  cursor: pointer;
  transition: all 0.3s;
}
.tag:hover {
  text-decoration: none;
  background-color: rgba(31, 109, 255, 0.15);
}
.tag_alt {
  color: #fbfbfb;
  background-color: rgba(251, 251, 251, 0.1);
}
.tag_alt:hover {
  background-color: rgba(251, 251, 251, 0.4);
}
@media (max-width: 991px) {
  .tag {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .tag {
    font-size: 0.75rem;
  }
  .tag-grid {
    gap: 0.3125rem;
  }
}

.meta {
  display: flex;
  flex-wrap: wrap;
  color: rgba(26, 26, 24, 0.4);
  line-height: 1.5;
}
.meta__item {
  padding: 0 11px;
  border-right: 1px solid currentColor;
}
.meta__item:first-child {
  padding-left: 0;
}
.meta__item:last-child {
  border-right: none;
  padding-right: 0;
}
@media (max-width: 767px) {
  .meta {
    font-size: 0.875rem;
  }
}

.is-clipped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* HEADER */
.header {
  position: relative;
  z-index: 999;
}
.header__top {
  padding: 1rem 0;
}
.header__top a {
  color: inherit;
}
.header__contact-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 4rem;
}
.header__contact {
  display: inline-flex;
  align-items: center;
  color: inherit;
}
.header__contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-right: 0.5rem;
}
.header__contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__main {
  -webkit-backdrop-filter: blur(35px);
  backdrop-filter: blur(35px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  background: var(--color-body);
  position: relative;
}
.header__main-inner {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
.header__end {
  margin-left: auto;
}
.header__nav {
  flex: 1 1 auto;
}
.header__group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .header__main-inner {
    min-height: 8rem;
  }
  .header__nav-bottom, .header__nav-lang {
    display: none;
  }
  .header__group {
    justify-content: end;
  }
}
@media (min-width: 1201px) {
  .header__group {
    margin-right: -0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header__main-inner {
    min-height: 6.25rem;
  }
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-body);
    padding: 1rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transform-origin: top;
    transform-origin: top;
    transition-duration: 0.1s;
    -webkit-transform: perspective(300px) rotateX(-50deg);
    transform: perspective(300px) rotateX(-50deg);
  }
  .header__nav.is-active {
    visibility: visible;
    opacity: 1;
    transition-duration: 0.2s;
    -webkit-transform: perspective(300px) rotateX(0deg);
    transform: perspective(300px) rotateX(0deg);
  }
}
@media (max-width: 767px) {
  .header__top {
    display: none;
  }
  .header__main {
    --heigth: 72px;
    height: var(--heigth);
  }
  .header__nav {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-body);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    height: calc(100svh - var(--heigth));
    width: 22.5rem;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateX(150%);
    transform: translateX(150%);
  }
  .header__nav.is-active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .header__nav-inner {
    padding-top: 1.25rem;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
  }
  .header__nav-bottom {
    margin-top: auto;
    padding: 1.875rem 1.5625rem;
    background-color: var(--color-brand);
    color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
  }
}
@media (max-width: 550px) {
  .header__nav {
    width: 100%;
  }
}

.nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__list a {
  display: block;
  padding: 5px;
  color: var(--color-dark);
  line-height: 1.5;
  text-align: center;
  position: relative;
}
.nav__list a:hover {
  color: var(--color-brand-dark);
  text-decoration: none;
}
@media (min-width: 768px) {
  .nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 1.875rem;
  }
  .nav__list a:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.3s;
  }
  .nav__list a:before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    transition: -webkit-transform 0.1s;
    transition: transform 0.1s;
    transition: transform 0.1s, -webkit-transform 0.1s;
  }
}
@media (max-width: 1200px) {
  .nav__list {
    justify-content: space-around;
  }
}
@media (max-width: 767px) {
  .nav__list {
    font-size: 1.0625rem;
  }
  .nav__list a {
    padding: 0.625rem;
  }
}

.logo {
  display: inline-block;
  vertical-align: middle;
  max-width: 287px;
}

.lang {
  width: 7.625rem;
  color: var(--color-dark);
  position: relative;
}
.lang.is-active .lang__title {
  border-radius: 1.25rem 1.25rem 0 0;
}
.lang.is-active .lang__title-btn svg {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.lang.is-active .lang__dropdown {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.2s;
  -webkit-transform: perspective(300px) rotateX(0deg);
  transform: perspective(300px) rotateX(0deg);
}
.lang__title {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  height: 3rem;
  box-shadow: 0 5px 5px rgba(26, 26, 24, 0.04);
  background-color: #f4f4f4;
  border: 1px solid rgba(26, 26, 24, 0.1);
  border-radius: 2.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.lang__title:hover {
  background-color: rgba(26, 26, 24, 0.1);
}
.lang__title-btn {
  margin-left: auto;
  display: grid;
  place-content: center;
}
.lang__title-btn svg {
  display: block;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.lang__group {
  display: flex;
  align-items: center;
}
.lang__group-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 8px;
}
.lang__group-txt {
  text-transform: uppercase;
}
.lang__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: -1px;
  background-color: #f4f4f4;
  border: 1px solid rgba(26, 26, 24, 0.1);
  border-top: none;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 0 0 0.3125rem;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transform-origin: top;
  transform-origin: top;
  transition-duration: 0.2s;
  -webkit-transform: perspective(300px) rotateX(-58deg);
  transform: perspective(300px) rotateX(-58deg);
}
.lang__dropdown-item {
  cursor: pointer;
  padding: 0.3125rem 1rem;
  transition: background-color 0.3s;
}
.lang__dropdown-item:hover {
  background-color: rgba(26, 26, 24, 0.1);
}

.lang-list {
  margin: 0;
  padding: 0 0.625rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.lang-list__item {
  background-color: #f4f4f4;
  border: 1px solid rgba(26, 26, 24, 0.1);
  text-transform: uppercase;
  line-height: 1;
  padding: 0.5rem 0.6875rem;
  border-radius: 0.5rem;
  color: var(--color-dark);
  cursor: pointer;
  transition: all 0.3s;
}
.lang-list__item:hover {
  background-color: var(--bg);
}

.burger {
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  position: relative;
  transition: all 0.4s;
  display: block;
}
@media (min-width: 1200px) {
  .burger {
    display: none;
  }
}
.burger span {
  top: 11px;
  left: 5px;
  right: 5px;
  transition: background-color 0s linear 0.13s;
  display: block;
}
.burger span, .burger span:before, .burger span:after {
  position: absolute;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  background-color: var(--color-brand);
  border-radius: 2px;
}
.burger span:before, .burger span:after {
  display: block;
  content: "";
  width: 100%;
}
.burger span:before {
  top: 8px;
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.burger span:after {
  left: 0;
  top: 16px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.burger.is-active span {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.burger.is-active span:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: translate3d(0, 7px, 0) rotate(45deg);
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.burger.is-active span:after {
  top: 0;
  width: 100%;
  left: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: translate3d(0, 7px, 0) rotate(-45deg);
  transform: translate3d(0, 7px, 0) rotate(-45deg);
}

/* LINE */
.line {
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.line__icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-content: center;
  flex-shrink: 0;
  margin-right: 16px;
}
.line__icon-color {
  color: var(--color-brand);
}

/* USER-GROUP */
.user-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.user-wrap_centered {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.user-wrap__txt {
  text-transform: capitalize;
}

.user-group {
  display: flex;
}
.user-group .user:not(:first-child) {
  margin-left: -0.625rem;
}

.user {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-body);
  padding: 1px;
}
.user__counter {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: grid;
  place-content: center;
  line-height: 1;
}
.user img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* AUTHOR */
.author {
  display: flex;
  align-items: center;
}
.author_sm .author__avatar {
  width: 3.5rem;
  height: 3.5rem;
}
.author_sm .author__title {
  font-size: inherit;
}
.author__avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 1rem;
}
.author__content {
  line-height: 1;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.author__title {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-dark);
}

/* DONE-CIRCLE */
.done-circle {
  max-width: 159px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 34px;
  background-color: var(--bg);
  color: var(--color-brand);
}
.done-circle:not(:last-child) {
  margin-bottom: 72px;
}
.done-circle_centered {
  margin-left: auto;
  margin-right: auto;
}
.done-circle svg, .done-circle img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 767px) {
  .done-circle {
    max-width: 80px;
    padding: 20px;
  }
  .done-circle:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* FORM */
.form {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.form_max {
  max-width: 25rem;
}
.form__control {
  width: 100%;
  display: block;
  height: 3rem;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 24, 0.2);
  line-height: 1.5;
  color: var(--color-dark);
  text-overflow: ellipsis;
  background-color: transparent;
  transition: border 0.3s;
}
.form__control:focus {
  border-bottom-color: var(--color-brand);
}
@media (min-width: 601px) {
  .form__group {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .form_pt {
    padding-top: 30px;
  }
  .form__bottom {
    margin-top: 3rem;
  }
}
@media (max-width: 767px) {
  .form__bottom {
    margin-top: 1rem;
  }
}
@media (max-width: 600px) {
  .form__group {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
}

textarea.form__control {
  height: auto;
  padding-bottom: 0.625rem;
}

/* SOCIAL */
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--color-dark);
}
.social__item {
  width: 24px;
  height: 24px;
  display: grid;
  place-content: center;
  color: inherit;
}

/* FOOTER */
.footer {
  flex: 0 0 auto;
}
.footer__row {
  padding: 4.4375rem 0;
}
.footer__group {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.footer__group-item {
  min-width: 10.25rem;
}
.footer__title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  text-transform: capitalize;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}
.footer__contacts a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.footer__bottom {
  border-top: 1px solid rgba(137, 163, 171, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer a {
  color: inherit;
}
.footer a:hover {
  color: var(--color-brand-dark);
}
.footer__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 55px;
}
@media (max-width: 991px) {
  .footer__bottom {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .footer__group {
    flex-wrap: wrap;
  }
  .footer__group-item {
    width: calc(50% - 32px);
    min-width: 0;
  }
  .footer__row {
    padding: 2.8125rem 0;
  }
  .footer__title {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
  }
  .footer__menu {
    row-gap: 0.5rem;
  }
}

/* MODAL */
.modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  align-items: center;
  display: flex;
  justify-content: center;
  transition: opacity 0.4s, visibility 0.4s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 15px;
}
.modal.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal.is-show .modal__inner {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.modal__bg {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
}
.modal__inner {
  width: 100%;
  max-width: 70.5rem;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 29px;
  position: relative;
  z-index: 10;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.modal__content {
  border-radius: 3.75rem 0;
  overflow: hidden;
  overflow-y: auto;
  background-color: var(--color-body);
  padding: 7.875rem 5.4375rem 9.125rem 6.8125rem;
}
.modal__hide {
  width: 3.625rem;
  height: 3.625rem;
  padding: 0;
  display: grid;
  place-content: center;
  border-radius: 50%;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  border: 1px solid rgba(26, 26, 24, 0.1);
  box-shadow: 0 5px 5px 0 rgba(26, 26, 24, 0.04);
  transition: background-color 0.3s;
  background-color: #f4f4f4;
  color: var(--color-dark);
}
.modal__hide:hover {
  background-color: #dee9ff;
}
.modal__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
}
.modal__info {
  display: flex;
  flex-direction: column;
  row-gap: 62px;
}
.modal__info-logo {
  max-width: 128px;
  margin-bottom: -10px;
}
.modal__info-inner {
  max-width: 40.25rem;
}
.modal__info-title {
  margin: 0 0 16px;
}
@media (max-width: 1400px) {
  .modal__content {
    padding: 6.25rem 5rem;
  }
}
@media (max-width: 1100px) {
  .modal__content {
    padding: 5rem 3.125rem;
    border-radius: 1.875rem 0;
  }
}
@media (max-width: 991px) {
  .modal__inner {
    padding: 0.625rem;
  }
}
@media (max-width: 767px) {
  .modal {
    padding: 5px;
  }
  .modal__content {
    padding: 2.5rem 1.875rem;
  }
  .modal__group {
    display: block;
  }
  .modal__group-item:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .modal__info {
    row-gap: 42px;
  }
}

.modal-show {
  overflow: hidden;
}

@media (max-width: 1200px) {
  .box-overlay {
    position: fixed;
    z-index: 99;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .box-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .menu-show {
    overflow: hidden;
  }
}
/* HELPERS */
.color-brand {
  color: var(--color-brand-dark);
}

.color-dark {
  color: var(--color-dark);
}

.text-up {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.img-fluid {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.rounded {
  border-radius: 3.75rem 0;
}
@media (max-width: 767px) {
  .rounded {
    border-radius: 2.1875rem 0;
  }
}

.rounded-alt {
  border-radius: 2.5rem;
}
@media (max-width: 767px) {
  .rounded-alt {
    border-radius: 1.5625rem;
  }
}

@media (max-width: 767px) {
  .hidden-sm {
    display: none;
  }
}
.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-40 {
  margin-bottom: 2.5rem;
}

.mb-75 {
  margin-bottom: 4.6875rem;
}

.mb-95 {
  margin-bottom: 5.9375rem;
}
@media (max-width: 767px) {
  .mb-95 {
    margin-bottom: 3.125rem;
  }
}

.mb-135 {
  margin-bottom: 8.4375rem;
}
@media (max-width: 1288px) {
  .mb-135 {
    margin-bottom: calc(55px + 80 * (100vw - 375px) / 913);
  }
}

.mt-55 {
  margin-top: 3.4375rem;
}
@media (max-width: 767px) {
  .mt-55 {
    margin-top: 2.5rem;
  }
}