@font-face {
  font-family: 'SourceSansPro';
  src: url("../fonts/SourceSansPro/SourceSansPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SourceSansPro';
  src: url("../fonts/SourceSansPro/SourceSansPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SourceSansPro';
  src: url("../fonts/SourceSansPro/SourceSansPro-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url("../fonts/Manrope/Manrope-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url("../fonts/Manrope/Manrope-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url("../fonts/Manrope/Manrope-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark-500: #10393B;
  --dark-400: #414141;
  --dark: #000;
  --white: #fff;
  --button: #EF8450;
  --button-2: #5E9B93;
}

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

html, body {
  height: 100%;
}

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

body {
  background-color: #fff;
  min-width: 320px;
  -webkit-overflow-scrolling: touch;
  font: normal 20px/1.25 "SourceSansPro", "MS Sans Serif", sans-serif;
  color: var(--dark-500);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    font-size: 18px;
  }
}

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

a {
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: var(--button-2);
}

a:hover {
  color: var(--button);
}

p {
  margin: 0 0 26px;
}

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

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

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

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

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

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

::-webkit-input-placeholder {
  color: #2c2c2c;
}

::-moz-placeholder {
  color: #2c2c2c;
}

/* Firefox 19+ */
:-moz-placeholder {
  color: #2c2c2c;
}

/* Firefox 18- */
:-ms-input-placeholder {
  color: #2c2c2c;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.2667;
  color: var(--dark-500);
}

h1, h2, .heading {
  font-size: 45px;
}

@media (max-width: 991px) {
  h1, h2, .heading {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  h1, h2, .heading {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  h1, h2, .heading {
    font-size: 30px;
  }
}

.heading {
  max-width: 18.2889em;
  margin: 0 auto 1.8444em;
}

@media (max-width: 991px) {
  .heading {
    margin-bottom: 1.4em;
  }
}

@media (max-width: 767px) {
  .heading {
    margin-bottom: 1em;
  }
}

/* COMMON */
.text-up {
  text-transform: uppercase;
}

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

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

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

.text-underline {
  text-decoration: underline;
}

.color-text {
  color: var(--button);
}

.color-text-main {
  color: var(--button-2);
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

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

.container {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.logo {
  max-width: 174px;
}

@media (max-width: 500px) {
  .logo {
    max-width: 150px;
  }
}

.logo_centered {
  margin: 0 auto;
}

/* BUTTON */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  background-color: var(--button);
  border-radius: 10px;
  color: var(--white);
  font-weight: 600;
  padding: 15px 25px 17px 25px;
  transform: perspective(1px) translateZ(0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
  line-height: 1.3;
  animation-name: pulseButton;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
}

.button:after {
  content: "";
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-color: rgba(239, 132, 80, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  z-index: -1;
  animation-name: pulseTwo;
  animation-delay: .5s;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
}

@media (min-width: 501px) {
  .button {
    min-width: 320px;
  }
}

@media (max-width: 500px) {
  .button {
    width: calc(100% - 40px);
    padding-left: 10px;
    padding-right: 10px;
  }
}

.button:hover {
  color: var(--white);
}

.button:hover:before {
  transform: scaleY(1);
}

.button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: inherit;
  background-color: #ee550a;
  transform: scaleY(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.button_secondary {
  background-color: var(--button-2);
  animation-name: pulseButton_secondary;
}

.button_secondary:before {
  background-color: #44998d;
}

.button_secondary:after {
  background-color: rgba(94, 155, 147, 0.2);
}

.button_v1 {
  animation: none;
}

.button_v1:after {
  display: none;
}

.button__icon {
  flex-shrink: 0;
}

.button__icon:first-child {
  margin-right: 16px;
}

.button__icon:last-child {
  margin-left: 16px;
}

@keyframes pulseTwo {
  0% {
    width: 100%;
    height: 100%;
  }
  40% {
    width: calc(100% + 40px);
    height: calc(100% + 40px);
  }
  to {
    width: calc(100% + 70px);
    height: calc(100% + 70px);
    opacity: 0;
  }
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 132, 80, 0);
  }
  40% {
    box-shadow: 0 0 0 20px rgba(239, 132, 80, 0.2);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(239, 132, 80, 0);
  }
}

@keyframes pulseButton_secondary {
  0% {
    box-shadow: 0 0 0 0 rgba(94, 155, 147, 0);
  }
  40% {
    box-shadow: 0 0 0 20px rgba(94, 155, 147, 0.2);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(94, 155, 147, 0);
  }
}

/* SECTION */
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.section-bg {
  background-color: #F3FBFA;
}

.section__block {
  margin-bottom: 200px;
}

@media (max-width: 1366px) {
  .section__block {
    margin-bottom: 150px;
  }
}

.section__block-lg {
  margin-bottom: 378px;
}

@media (max-width: 1366px) {
  .section__block-lg {
    margin-bottom: 250px;
  }
}

.section__block:last-child, .section__block-lg:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .section__block, .section__block-lg {
    margin-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .section__block, .section__block-lg {
    margin-bottom: 70px;
  }
}

.section__header {
  text-align: center;
  max-width: 823px;
  margin: 0 auto 75px;
}

@media (max-width: 767px) {
  .section__header {
    margin-bottom: 40px;
  }
}

.section__button {
  margin-top: 15px;
  text-align: center;
}

/* HEADER */
.header {
  padding: 60px 0;
}

@media (max-width: 767px) {
  .header {
    padding: 40px 0;
  }
}

@media (max-width: 575px) {
  .header {
    padding: 20px 0;
  }
}

/* INTRO */
.section-intro {
  position: relative;
  padding-bottom: 55px;
  margin-bottom: 56px;
}

.section-intro:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .section-intro {
    margin-bottom: 0;
  }
}

.section-intro:before, .section-intro:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  pointer-events: none;
}

.section-intro:before {
  left: 0;
  border-width: 55px 0 0 55vw;
  border-color: transparent transparent transparent #fff;
}

.section-intro:after {
  right: 0;
  border-width: 0 0 55px 55vw;
  border-color: transparent transparent #fff transparent;
}

.intro {
  max-width: 941px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 38px auto 0;
  text-align: center;
  position: relative;
}

@media (min-width: 1281px) {
  .intro {
    min-height: 460px;
  }
}

@media (max-width: 1366px) {
  .intro {
    margin-top: 0;
  }
}

.intro__title {
  max-width: 18.2889em;
  margin: 0 auto 35px;
  color: var(--button);
}

.intro__caption {
  color: var(--dark-500);
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 17px;
}

.intro__button {
  margin-bottom: 47px;
}

.intro__button:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .intro__button {
    margin-bottom: 25px;
  }
}

.intro__card {
  text-align: left;
}

@media (max-width: 1280px) {
  .intro__card {
    display: none;
  }
}

/* BENEFIT */
.benefit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
  color: #004F45;
  text-align: center;
}

@media (min-width: 768px) {
  .benefit {
    margin-bottom: 29px;
  }
  .benefit:last-child {
    margin-bottom: 0;
  }
}

.benefit__item {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .benefit__item {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .benefit__item {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .benefit__item {
    margin-bottom: 20px;
  }
}

/* TIMER */
.timer {
  display: flex;
  justify-content: center;
  color: var(--dark-500);
  line-height: 1;
  font-size: 14px;
  text-align: center;
  margin-bottom: 13px;
}

.timer:last-child {
  margin-bottom: 0;
}

@media (max-width: 450px) {
  .timer {
    font-size: 12px;
  }
}

.timer__item {
  width: 71px;
  height: 65px;
  border: 1px solid #D2D2D2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 450px) {
  .timer__item {
    width: 65px;
    height: 55px;
  }
}

.timer__val {
  font-size: 25px;
  margin-bottom: 5px;
}

@media (max-width: 450px) {
  .timer__val {
    font-size: 22px;
  }
}

.timer__title {
  text-transform: uppercase;
}

.timer__divider {
  font-size: 40px;
  margin-right: 8px;
  margin-left: 8px;
}

@media (max-width: 450px) {
  .timer__divider {
    margin-right: 4px;
    margin-left: 4px;
  }
}

.timer-caption {
  color: var(--dark-500);
  font-size: 1.1em;
}

/* GRID */
.grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -22px;
}

@media (max-width: 1210px) {
  .grid {
    margin: 0 -10px;
  }
}

.grid__item {
  width: 33.333%;
  padding: 0 22px;
  margin-bottom: 45px;
}

@media (max-width: 1210px) {
  .grid__item {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 950px) {
  .grid__item {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .grid__item {
    width: 100%;
  }
}

/* INFORMER */
.informer {
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background-color: #fff;
  padding: 23px 40px;
  font-size: 18px;
  height: 100%;
}

@media (max-width: 500px) {
  .informer {
    padding: 20px 30px;
  }
}

.informer__subtitle {
  color: var(--dark);
  margin-bottom: 9px;
}

.informer__title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--button-2);
}

@media (max-width: 767px) {
  .informer__title {
    font-size: 22px;
  }
}

@media (max-width: 500px) {
  .informer__title {
    font-size: 20px;
  }
}

.informer__title a {
  color: inherit;
}

.informer__title a:hover {
  color: var(--button);
}

/* GOAL-BOX */
.goal-box {
  background-color: var(--button-2);
  border-radius: 10px;
  color: #fff;
}

@media (min-width: 992px) {
  .goal-box {
    display: flex;
  }
}

.goal-box__body {
  padding: 51px 40px 0 83px;
  width: 53.334%;
  flex-shrink: 0;
}

@media (max-width: 1050px) {
  .goal-box__body {
    padding-left: 30px;
  }
}

@media (max-width: 991px) {
  .goal-box__body {
    width: 100%;
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .goal-box__body {
    padding: 25px 20px;
  }
}

.goal-box__inner {
  height: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .goal-box__inner {
    padding-left: 43px;
    padding-bottom: 68px;
  }
}

@media (min-width: 1051px) {
  .goal-box__inner:before {
    content: '';
    position: absolute;
    top: 25px;
    left: -2px;
    width: 3px;
    height: calc(100% - 25px);
    background-color: currentColor;
  }
}

.goal-box__title {
  color: inherit;
  margin-bottom: 20px;
}

.goal-box__aside {
  max-width: 532px;
  padding: 0 85px 0 55px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .goal-box__aside {
    padding-right: 45px;
  }
}

@media (min-width: 768px) {
  .goal-box__img {
    margin-top: -75px;
  }
}

.circle {
  width: 13px;
  height: 13px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 25px;
  left: -7px;
}

@media (max-width: 767px) {
  .circle {
    display: none;
  }
}

.circle:before, .circle:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: inherit;
  border: 2px solid currentColor;
  animation: pulsate infinite 1.25s linear;
}

.circle:before {
  width: 36px;
  height: 36px;
  margin-left: -18px;
  margin-top: -18px;
}

.circle:after {
  width: 26px;
  height: 26px;
  margin-left: -13px;
  margin-top: -13px;
}

@keyframes pulsate {
  0% {
    transform: scale(0.5, 0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}

/* STEPS */
.steps-container {
  padding-left: 81px;
  margin-bottom: 58px;
}

.steps-container:last-child {
  margin-bottom: 0;
}

@media (min-width: 1201px) {
  .steps-container {
    padding-right: 52px;
  }
}

@media (max-width: 1050px) {
  .steps-container {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .steps-container {
    padding-left: 10px;
    margin-bottom: 35px;
  }
}

.steps-grid {
  padding-top: 88px;
  position: relative;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .steps-grid {
    margin: 0 -15px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .steps-grid {
    padding-top: 35px;
  }
}

.steps-grid__item {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .steps-grid__item {
    width: 50%;
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .steps-grid__item {
    margin-bottom: 30px;
  }
}

@media (max-width: 650px) {
  .steps-grid__item {
    width: 100%;
  }
}

@media (min-width: 1051px) {
  .steps-grid:before, .steps-grid:after {
    content: '';
    position: absolute;
    z-index: -1;
  }
  .steps-grid:before {
    top: 0;
    left: 0;
    width: 3px;
    height: 88px;
    background-color: var(--button-2);
  }
  .steps-grid:after {
    left: 0;
    bottom: 105px;
    width: 100%;
    height: 3px;
    background-color: rgba(94, 155, 147, 0.2);
  }
}

.steps {
  height: 100%;
  background-color: #dfebe9;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

@media (min-width: 992px) {
  .steps {
    width: 278px;
  }
}

.steps__header {
  padding: 17px 10px;
  background-color: var(--button-2);
  color: #fff;
  border-radius: 10px;
}

.steps__title {
  color: inherit;
  font-weight: bold;
  font-size: 1.15em;
}

.steps__content {
  padding: 17px 10px;
}

.steps-counter {
  counter-reset: counter;
}

.steps-counter .steps:before {
  content: counter(counter);
  counter-increment: counter;
  position: absolute;
  top: -31px;
  left: -30px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid var(--button-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 27px;
  line-height: 1;
  color: var(--button-2);
}

@media (max-width: 767px) {
  .steps-counter .steps:before {
    font-size: 20px;
    width: 40px;
    height: 40px;
    top: -15px;
    left: -15px;
  }
}

/* FEATURE */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 84px;
}

.feature-grid:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .feature-grid {
    padding: 0 53px;
  }
}

@media (max-width: 991px) {
  .feature-grid {
    margin-bottom: 45px;
  }
}

.feature-grid__item {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .feature-grid__item {
    width: 100%;
    margin-bottom: 50px;
  }
  .feature-grid__item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .feature-grid__item {
    margin-bottom: 35px;
  }
}

.feature {
  display: flex;
}

.feature__icon {
  flex-shrink: 0;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--button-2);
  margin-right: 18px;
}

@media (max-width: 767px) {
  .feature__icon {
    width: 40px;
    height: 40px;
    padding: 5px;
  }
}

.feature__title {
  color: var(--dark-500);
  font-weight: bold;
  margin-bottom: 17px;
}

@media (max-width: 767px) {
  .feature__title {
    margin-bottom: 5px;
  }
}

.feature__txt {
  max-width: 425px;
}

.feature_false .feature__icon {
  background-color: rgba(94, 155, 147, 0.2);
  color: var(--button-2);
}

/* CAROUSEL */
.carousel {
  margin: -20px -22px 0;
}

@media (max-width: 1200px) {
  .carousel {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.carousel__item {
  padding: 20px 22px 35px;
  display: none;
  height: auto;
}

@media (max-width: 1200px) {
  .carousel__item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.carousel__item:first-child {
  display: block;
}

.carousel__item .card {
  max-width: 350px;
  height: 100%;
}

.carousel .slick-track {
  display: flex;
}

.carousel .slick-track .card {
  max-width: none;
}

.carousel .slick-list {
  margin-bottom: -35px;
}

.slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.slick-dots li {
  margin: 65px 2px 0;
}

@media (max-width: 991px) {
  .slick-dots li {
    margin-top: 30px;
  }
}

.slick-dots li:only-child {
  margin: 0;
}

.slick-dots button {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  position: relative;
}

.slick-dots button:hover:before {
  background-color: var(--button-2);
}

.slick-dots button:before {
  content: '';
  border-radius: inherit;
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background-color: rgba(94, 155, 147, 0.2);
  transition: all .3s;
}

.slick-dots .slick-active button:before {
  background-color: var(--button-2);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* CARD */
.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
}

.card__img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-top: 67.714%;
  height: 0;
}

.card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__content {
  padding: 26px 18px;
  color: var(--dark);
  font-size: 18px;
}

.card__header {
  min-height: 87px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
}

.card__header:last-child {
  margin-bottom: 0;
}

.card__title {
  color: #4a4a4a;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.25;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .card__title {
    font-size: 22px;
  }
}

.card__icon {
  flex-shrink: 0;
  margin-left: auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: var(--button-2);
  border: 5px solid #dfebe9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
}

.card__block {
  margin-bottom: 26px;
}

.card__block:last-child {
  margin-bottom: 0;
}

.card_preview {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  height: auto;
}

.card_preview .card__img {
  opacity: .65;
}

.card_preview .card__content {
  padding: 10px 8px;
}

.card_preview .card__title {
  margin-right: 0;
  color: rgba(74, 74, 74, 0.65);
}

.card_size1 {
  width: 202px;
}

.card_size1 .card__title {
  font-size: 13px;
}

.card_size2 {
  width: 161px;
}

.card_size2 .card__title {
  font-size: 10px;
}

.card_size3 {
  width: 158px;
}

.card_size3 .card__title {
  font-size: 12px;
}

.card_size4 {
  width: 127px;
}

.card_size4 .card__title {
  font-size: 11px;
}

.card_size5 {
  width: 106px;
}

.card_size5 .card__title {
  font-size: 7px;
}

.card_offset1 {
  bottom: -50px;
  left: 100%;
  margin-left: -120px;
}

.card_offset2 {
  top: 0;
  left: 100%;
}

.card_offset3 {
  bottom: -60px;
  left: -65px;
}

.card_offset4 {
  top: 33.5%;
  left: -190px;
}

.card_offset5 {
  top: -10px;
  left: -100px;
}

/* PANEL */
.panel {
  border-radius: 16px;
  background: #EC7954 url(../img/background.jpg) no-repeat 50% 0/cover;
  color: #fff;
  padding: 80px 40px 340px;
}

@media (min-width: 768px) {
  .panel {
    min-height: 621px;
  }
}

@media (max-width: 767px) {
  .panel {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.panel_mb {
  margin-bottom: -340px;
}

.panel__title {
  text-align: center;
  color: inherit;
}

/* TARIFF */
.tariff-grid {
  max-width: 1012px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.tariff-grid__item {
  width: 50%;
  padding: 0 9px;
}

@media (max-width: 900px) {
  .tariff-grid__item {
    padding: 0;
    width: 100%;
    margin-bottom: 18px;
  }
  .tariff-grid__item:last-child {
    margin-bottom: 0;
  }
}

.tariff {
  height: 100%;
  background-color: #fff;
  box-shadow: 0px 100px 100px rgba(16, 57, 59, 0.1);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 30px 40px;
  font: 600 18px/1.89 "Manrope", "Arial", sans-serif;
}

@media (max-width: 767px) {
  .tariff {
    font-size: 16px;
    padding: 20px 20px 30px;
  }
}

.tariff__body {
  margin-bottom: 48px;
}

.tariff__body:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .tariff__body {
    margin-bottom: 30px;
  }
}

.tariff__content {
  margin-bottom: 42px;
}

@media (max-width: 767px) {
  .tariff__content {
    margin-bottom: 25px;
  }
}

.tariff__title {
  color: var(--button);
  font-weight: bold;
  font-size: 1.2222em;
  line-height: 1.73;
  margin-bottom: 12px;
}

.tariff__txt {
  font-size: 0.8889em;
  line-height: 2;
}

@media (min-width: 901px) {
  .tariff__txt {
    max-width: 365px;
  }
}

.tariff__footer {
  margin-top: auto;
}

.tariff__block {
  margin-bottom: 46px;
}

.tariff__block:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .tariff__block {
    margin-bottom: 20px;
  }
}

.tariff__button {
  text-align: center;
}

/* INFO-LIST */
.info-list {
  display: flex;
  color: var(--dark-500);
  margin-bottom: 25px;
}

.info-list:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .info-list {
    margin-bottom: 15px;
  }
}

.info-list.disabled {
  opacity: .4;
  user-select: none;
}

.info-list__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--button);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 23px;
  position: relative;
  top: calc((1em * 1.89 - 30px) / 2);
}

@media (max-width: 767px) {
  .info-list__icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    top: calc((1em * 1.89 - 25px) / 2);
  }
}

/* PRICE */
.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font: 600 18px/1 "Manrope", "Arial", sans-serif;
}

.price__val {
  font-weight: bold;
  font-size: 46px;
  color: var(--dark-500);
  margin-right: 5px;
}

@media (max-width: 767px) {
  .price__val {
    font-size: 38px;
  }
}

/* ABOUT */
.section-about {
  background-color: #C2DDDA;
}

.about-box {
  display: flex;
}

@media (max-width: 950px) {
  .about-box {
    flex-wrap: wrap;
  }
}

.about-box__aside {
  width: 40.79%;
  flex-shrink: 0;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 950px) {
  .about-box__aside {
    width: 100%;
    max-width: 465px;
    margin: 0 auto;
  }
}

.about-box__img {
  width: 100%;
  padding-top: 89.872%;
  position: relative;
  margin: -70px auto -56px;
}

@media (max-width: 950px) {
  .about-box__img {
    margin-top: 0;
  }
}

.about-box__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.about-box__group {
  text-align: center;
  position: relative;
  z-index: 5;
}

.about-box__group img {
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.about-box__body {
  padding: 60px 0;
}

@media (min-width: 951px) {
  .about-box__body {
    max-width: 542px;
    margin-left: auto;
  }
}

@media (max-width: 950px) {
  .about-box__body {
    order: -1;
  }
}

@media (max-width: 767px) {
  .about-box__body {
    padding: 40px 0 30px;
  }
}

.about-box__title {
  margin-bottom: 46px;
}

@media (max-width: 767px) {
  .about-box__title {
    margin-bottom: 25px;
  }
}

/* LIST */
.list {
  list-style-image: url(../img/svg/check-list.svg);
  padding: 0 0 0 24px;
  margin: 0;
}

.list li {
  padding-left: 7px;
  font: 600 0.9em/1.89 "Manrope", "Arial", sans-serif;
  margin-bottom: 1.1111em;
}

.list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .list li {
    margin-bottom: .8em;
  }
}

/* FAQ-BOX */
.faq-box {
  background-color: #C2DDDA;
  font-family: "Manrope", "Arial", sans-serif;
  margin-bottom: 100px;
}

@media (min-width: 501px) {
  .faq-box {
    border-radius: 16px;
  }
}

@media (max-width: 1366px) {
  .faq-box {
    margin-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .faq-box {
    margin-bottom: 0;
  }
}

@media (max-width: 500px) {
  .faq-box {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.faq-box__container {
  padding: 83px 45px 103px 50px;
}

@media (min-width: 1151px) {
  .faq-box__container {
    display: flex;
  }
}

@media (max-width: 767px) {
  .faq-box__container {
    padding: 35px 20px 20px;
  }
}

@media (max-width: 500px) {
  .faq-box__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1151px) {
  .faq-box__aside {
    width: 42.776%;
    padding-top: 45px;
    padding-right: 30px;
    flex-shrink: 0;
  }
}

@media (max-width: 1150px) {
  .faq-box__aside {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .faq-box__aside {
    margin-bottom: 30px;
  }
}

.faq-box__title {
  margin-bottom: 0.666em;
}

.faq-box__txt {
  line-height: 1.8;
}

@media (min-width: 1151px) {
  .faq-box__txt {
    max-width: 380px;
  }
}

.faq-box__button {
  margin-top: 47px;
}

@media (max-width: 767px) {
  .faq-box__button {
    margin-top: 30px;
  }
}

.faq-box__body {
  flex-grow: 1;
  max-width: 100%;
  min-width: 1px;
}

/* COLLAPSE */
.collapse {
  background-color: #fff;
  box-shadow: 0px 100px 100px rgba(16, 57, 59, 0.1);
  border-radius: 16px;
  padding: 3px 30px;
  font-size: 0.9em;
}

@media (max-width: 767px) {
  .collapse {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.collapse__item {
  padding: 17px 0;
  border-bottom: 1px solid #D6E3E0;
}

@media (max-width: 767px) {
  .collapse__item {
    padding: 10px 0;
  }
}

.collapse__item:last-child {
  border-bottom: none;
}

.collapse__header {
  padding: 12px 30px 12px 0;
  cursor: pointer;
  position: relative;
  color: var(--dark-500);
  transition: all .3s;
}

.collapse__header:hover {
  color: var(--button);
}

.collapse__header:before, .collapse__header:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  width: 18px;
  height: 2px;
  background-color: currentColor;
  border-radius: 50px;
  transition: transform .3s;
}

.collapse__header:before {
  transform: rotate(90deg);
}

.collapse__header.is-active:before {
  transform: rotate(135deg);
}

.collapse__header.is-active:after {
  transform: rotate(45deg);
}

.collapse__title {
  font-weight: bold;
  margin: 0;
}

.collapse__content {
  font-size: 0.888em;
  line-height: 1.75;
  display: none;
}

/* FOOTER */
.footer {
  flex: 0 0 auto;
  color: var(--dark);
  font-size: 0.9em;
  line-height: 1.2778;
}

.footer .container {
  max-width: 1070px;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: -10px;
  margin-right: -10px;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 1181px) {
  .footer__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 991px) {
  .footer__content {
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.footer__item {
  padding: 0 10px;
  margin: 17px 0 0;
}

@media (max-width: 991px) {
  .footer__item {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .footer__item {
    width: 100%;
    text-align: center;
  }
}

.footer__bottom {
  border-top: 1px solid #BEBEBE;
  padding: 24px 0;
}

@media (max-width: 575px) {
  .footer .logo {
    margin: 0 auto;
  }
}

.link {
  color: #9A9BA3;
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

.link-default {
  color: inherit;
}

/* PAY-LIST */
.pay-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -10px;
}

@media (max-width: 575px) {
  .pay-list {
    justify-content: center;
  }
}

.pay-list__item {
  max-width: 52px;
  margin: 10px;
}
