/* FONTS */
@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/CenturyGothic-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/CenturyGothic.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amenti";
  src: url("../fonts/Amenti-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amenti";
  src: url("../fonts/Amenti-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*::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: #f4f4f4;
  font: 400 1rem/1.7 "Montserrat", sans-serif;
  color: rgba(40, 37, 41, 0.7);
  min-width: 20rem;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}

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

a {
  text-decoration: underline;
  color: #e8003a;
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
}

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;
  font-size: 1rem;
}

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:var(--color-placeholder);}
::-moz-placeholder          {color:var(--color-placeholder);}*/
button {
  cursor: pointer;
  outline: none;
}

h1, h2, h3, h4, h5, h6,
.heading {
  color: #282529;
  line-height: 1.2;
  font-weight: 400;
  font-family: "Century Gothic", sans-serif;
  margin-top: 0;
  margin-bottom: 0.5em;
}

h1, h2, .heading {
  font-size: 4.75rem;
  position: relative;
  z-index: 2;
}
h1 > span, h2 > span, .heading > span {
  color: rgba(40, 37, 41, 0.2);
}
@media (max-width: 1288px) {
  h1, h2, .heading {
    font-size: calc(36px + 40 * (100vw - 375px) / 913);
  }
}

.caption {
  font: 700 2.5rem/1.2 "Amenti", sans-serif;
  margin-bottom: 8px;
}
@media (max-width: 1288px) {
  .caption {
    font-size: calc(26px + 14 * (100vw - 375px) / 913);
  }
}

.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;
  }
}

.rounded {
  border-radius: 40px;
}
@media (max-width: 767px) {
  .rounded {
    border-radius: 20px;
  }
}

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

/* BUTTON */
.button {
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #f4f4f4;
  font-size: 0.9375rem;
  border-radius: 40px;
  padding: 9px 24px;
  background-color: #e8003a;
  border: 1px solid #e8003a;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5em;
  position: relative;
  z-index: 0;
  transition: all 0.3s;
  overflow: hidden;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.button, .button:after {
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button:hover {
  color: #e8003a;
}
.button:hover:after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale3d(0.5, 1, 1);
  transform: scale3d(0.5, 1, 1);
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button_fluid {
  width: 100%;
}
.button-wrap {
  text-align: center;
  margin-top: 96px;
}
@media (max-width: 1288px) {
  .button-wrap {
    margin-top: calc(45px + 51 * (100vw - 375px) / 913);
  }
}

/* HEADER */
.header {
  padding: 32px 0;
  position: relative;
  background-color: #f4f4f4;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.04);
}
.header__container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__nav {
  flex-grow: 1;
  max-width: 100%;
  min-width: 1px;
}
.header__end {
  margin-left: auto;
}
.header__group {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1200px) {
  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .header {
    --height: 96px;
    z-index: 999;
    padding-top: 10px;
    padding-bottom: 10px;
    height: var(--height);
  }
  .header__nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background-color: #f4f4f4;
    height: calc(100vh - var(--height));
    height: calc(100dvh - var(--height));
    padding-top: 20px;
    padding-bottom: 20px;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateX(150%);
    transform: translateX(150%);
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.04);
  }
  .header__nav.is-active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 500px) {
  .header__nav {
    width: 100%;
  }
}

.nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 47px;
}
.nav__list a {
  color: #282529;
  display: block;
  line-height: 1.5;
  padding: 5px;
  text-decoration: none;
  position: relative;
}
.nav__list a:after {
  content: "";
  position: absolute;
  bottom: 4px;
  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 {
    gap: 0 40px;
  }
}
@media (min-width: 992px) {
  .nav__list a:hover {
    color: #e8003a;
  }
  .nav__list a:hover:after {
    -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__bottom {
    display: none;
  }
}
@media (max-width: 991px) {
  .nav {
    height: 100%;
    overflow-y: auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
  }
  .nav__list {
    display: block;
    text-align: center;
    font-size: 1.125rem;
  }
  .nav__list a {
    padding: 10px 5px;
  }
  .nav__bottom {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

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

.burger {
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  position: relative;
  transition: all 0.4s;
  display: block;
  flex-shrink: 0;
}
.burger:hover span, .burger:hover span:before, .burger:hover span:after {
  background-color: #e8003a;
}
@media (min-width: 992px) {
  .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: #282529;
  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);
}

/* SECTION */
.section {
  padding-top: 112px;
  padding-bottom: 165px;
}
@media (max-width: 1288px) {
  .section {
    padding-top: calc(70px + 42 * (100vw - 375px) / 913);
    padding-bottom: calc(80px + 85 * (100vw - 375px) / 913);
  }
}
.section-wave {
  margin-top: 222px;
  padding-bottom: 128px;
  background-color: #ebebeb;
  position: relative;
}
@media (max-width: 1288px) {
  .section-wave {
    padding-bottom: calc(80px + 48 * (100vw - 375px) / 913);
  }
}
@media (max-width: 767px) {
  .section-wave {
    margin-top: 100px;
  }
}
.section-header {
  max-width: 63.6875rem;
  margin-bottom: 96px;
}
.section-header_centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .section-header {
    margin-bottom: 50px;
  }
}
.section__row {
  display: flex;
  flex-direction: column;
  row-gap: 139px;
}
@media (max-width: 1288px) {
  .section__row {
    row-gap: calc(80px + 59 * (100vw - 375px) / 913);
  }
}
.section__row_sm {
  row-gap: 80px;
}

.wave-back, .wave-front {
  position: absolute;
  bottom: 100%;
  overflow: hidden;
}
.wave-back {
  left: -1%;
  padding-top: 25px;
}
.wave-back .wave-row {
  -webkit-animation: wave 6s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 6s ease -1.25s infinite;
  animation: wave 6s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 6s ease -1.25s infinite;
}
.wave-front {
  left: 0;
}
.wave-front .wave-row {
  -webkit-animation: wave 6s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  animation: wave 6s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
}
.wave-row {
  width: -webkit-max-content;
  width: max-content;
  display: flex;
  will-change: transform;
}
@media (max-width: 767px) {
  .wave-row {
    height: 98px;
  }
  .wave-row img {
    height: 100%;
    width: auto;
  }
}

@-webkit-keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@-webkit-keyframes swell {
  0%, 100% {
    -webkit-transform: translate3d(0, -25px, 0);
    transform: translate3d(0, -25px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
}
@keyframes swell {
  0%, 100% {
    -webkit-transform: translate3d(0, -25px, 0);
    transform: translate3d(0, -25px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
}
/* GRID */
.grid {
  display: flex;
  align-items: center;
  gap: 50px 24px;
}
@media (min-width: 768px) {
  .grid__item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .grid {
    flex-direction: column;
  }
}

/* LIST */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.list li {
  padding-left: 40px;
  position: relative;
}
.list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../img/star.svg") no-repeat 0 0;
}

/* SPLIDE */
.splide__arrows {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  gap: 14px;
  margin-top: 43px;
}
.splide__arrows--centered {
  margin-left: auto;
  margin-right: auto;
}
.splide__arrows--mt {
  margin-top: 0;
}
@media (max-width: 767px) {
  .splide__arrows {
    margin-top: 30px;
  }
}
.splide__arrow {
  position: static;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  width: 35px;
  height: 35px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #282529;
  transition: all 0.3s;
}
.splide__arrow:hover {
  color: #e8003a;
}
.splide__arrow svg {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.splide__arrow svg.arrow {
  width: 24px;
  height: 24px;
}
.splide__arrow:disabled {
  opacity: 0.25;
  pointer-events: none;
}

/* USER-GROUP */
.user-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.user-wrap_max {
  max-width: 315px;
}

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

.user {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e8003a;
  padding: 1px;
  overflow: hidden;
}
.user img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.user-info__title {
  color: #282529;
  line-height: 1;
  font-family: "Amenti";
  font-weight: 700;
  text-transform: uppercase;
}
.user-info__txt {
  font-size: 0.75rem;
  line-height: 1.4;
}

/* AUTHOR */
.author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  line-height: 1;
  color: #282529;
}
.author__avatar {
  width: 40px;
  height: 40px;
  background-color: #e8003a;
  padding: 1px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.author__content {
  line-height: 1;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.author__title {
  font-weight: 700;
}

/* SOCIAL */
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #282529;
}
.social__item {
  width: 24px;
  height: 24px;
  display: grid;
  place-content: center;
  color: inherit;
}
.social__item:hover {
  color: #e8003a;
}

/* FOOTER */
.footer {
  flex: 0 0 auto;
  /* min */
  /* max */
}
.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: 700 1.5rem/1.3 "Century Gothic", sans-serif;
  color: #282529;
  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: 0.875rem;
}
.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;
  text-decoration: none;
}
.footer a:hover {
  color: #e8003a;
}
.footer__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 55px;
}
@media (min-width: 992px) {
  .footer {
    font-size: 1.125rem;
  }
}
@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;
  }
}

/* BOX-OVERLAY */
@media (max-width: 991px) {
  .box-overlay {
    position: fixed;
    z-index: 99;
    inset: 0;
    background-color: #282529;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .box-overlay.is-active {
    opacity: 0.5;
    visibility: visible;
    pointer-events: auto;
  }
  .menu-show {
    overflow: hidden;
  }
}
/* HELPERS */
.color-inherit {
  color: inherit;
}

.mb-0 {
  margin-bottom: 0;
}

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

.pt-0 {
  padding-top: 0;
}

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

@media (max-width: 575px) {
  .hidden-xs {
    display: none;
  }
}
.js-title-animate {
  overflow: hidden;
}

/* ODOMETER */
.odometer, .odometer-inside {
  display: flex;
  align-items: center;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer {
  display: block;
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  font-family: inherit;
  line-height: 1;
}

.odometer-formatting-mark {
  display: none;
}

.odometer-digit-inner {
  text-align: center !important;
}

.odometer-value {
  width: 100%;
}