@font-face {
  font-family: "Montserrat";
  src: url("./../fonts/Montserrat/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./../fonts/Montserrat/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./../fonts/Montserrat/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

:focus,
:active {
  /*outline: none;*/
}

a:focus,
a:active {
  /* outline: none;*/
}

/* Links */
a, a:link, a:visited {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  display: block;
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

.section-cta::before, .section-price::before, .header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat";
  color: #2E2E2E;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
}

.search {
  position: relative;
  margin-left: auto;
}

.search__input {
  width: 0px;
  height: 60px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  line-height: 60px;
  color: #000;
  font-weight: 500;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
  transition: width 0.3s, padding 0.3s;
  background-color: #fff;
}
.search__input::-moz-placeholder {
  color: rgba(46, 46, 46, 0.6);
}
.search__input::placeholder {
  color: rgba(46, 46, 46, 0.6);
}

.search__button {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.search__button:hover {
  background-color: #00C470;
}
.search__button:hover .search__button-icon {
  stroke: #fff;
}

.search__button-icon {
  stroke: #000;
  transition: stroke 0.3s;
}

.search.search--visible .search__input {
  width: 340px;
  padding-left: 30px;
  padding-right: 70px;
}
@media (max-width: 599px) {
  .search.search--visible .search__input {
    width: 220px;
    padding-left: 20px;
    font-size: 14px;
  }
}
.search.search--visible .search__button {
  background-color: #00C470;
}
.search.search--visible .search__button:hover {
  background-color: #15d784;
}
.search.search--visible .search__button .search__button-icon {
  stroke: #fff;
}

.button-round {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
.button-round g {
  fill: #000;
  transition: fill 0.3s;
}
.button-round:hover {
  background-color: #00C470;
}
.button-round:hover g {
  fill: #fff;
}

.button {
  display: inline-block;
  padding: 21px 39px 22px;
  background-color: #00c470;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s;
  color: #fff;
  flex-shrink: 0;
}
.button:hover {
  background-color: #039a58;
}
.button:active {
  background-color: #01864c;
}

.button-outline {
  padding: 22px 40px;
  background-color: transparent;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s;
  color: #fff;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.button-outline:hover {
  background-color: #fff;
  color: #000;
}
.button-outline:active {
  background-color: #b5b5b5;
}

.input {
  display: block;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  padding: 22px 28px;
}
@media (max-width: 899px) {
  .input {
    padding-right: 46px;
    padding-left: 46px;
  }
}
@media (max-width: 599px) {
  .input {
    padding-right: 37px;
    padding-left: 37px;
  }
}
.input::-moz-placeholder {
  color: #fff;
}
.input::placeholder {
  color: #fff;
}
.input:focus {
  outline: none;
  box-shadow: 0px 0px 30px 30px rgba(0, 0, 0, 0.2);
}

.title {
  color: #15D784;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
}
@media (max-width: 899px) {
  .title {
    font-size: 14px;
  }
}

.subtitle {
  font-size: 48px;
  font-weight: 700;
  line-height: 1; /* 48px */
}
@media (max-width: 1199px) {
  .subtitle {
    font-size: 38px;
  }
}
@media (max-width: 899px) {
  .subtitle {
    font-size: 30px;
  }
}
@media (max-width: 599px) {
  .subtitle {
    font-size: 26px;
  }
}

.card {
  text-align: center;
  width: 270px;
}

.card__img {
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .card__img {
    margin-bottom: 21px;
  }
}

.card__title {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1; /* 16px */
}
@media (max-width: 1199px) {
  .card__title {
    min-height: 48px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
@media (max-width: 899px) {
  .card__title {
    min-height: unset;
  }
}

.card__text {
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14; /* 214.286% */
}
@media (max-width: 1199px) {
  .card__text {
    line-height: 1.57;
  }
}

.package {
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 40px 0;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  text-align: center;
  width: 300px;
}

.package__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package__title {
  color: #B2B2B2;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.package__price {
  margin-bottom: 15px;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.package__period {
  padding: 6px 15px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.package__list {
  padding: 40px 15px 0;
  margin-bottom: 53px;
  line-height: 1;
}
@media (max-width: 599px) {
  .package__list {
    margin-bottom: 58px;
  }
}

.package__list-item {
  margin-bottom: 25px;
}
.package__list-item:last-child {
  margin-bottom: 0;
}

.package--special {
  background-color: rgba(48, 79, 254, 0.95);
}
.package--special .package__title {
  color: #fff;
}
.package--special .package__period {
  background-color: rgba(0, 0, 0, 0.1);
}

.package__button {
  margin-top: auto;
}

.button-solid {
  padding: 22px 40px;
  background-color: #fff;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s;
  color: #000;
}
.button-solid:hover {
  background-color: #323232;
  color: #fff;
}
.button-solid:active {
  background-color: rgb(27, 27, 27);
}

.slider {
  position: relative;
  padding-bottom: 54px;
}
@media (max-width: 899px) {
  .slider {
    padding-bottom: 44px;
  }
}

.slider__arrow {
  position: absolute;
  top: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #F5F5F5;
  transition: all 0.3s;
}
@media (max-width: 899px) {
  .slider__arrow {
    top: 68px;
  }
}
.slider__arrow path {
  transition: all 0.3s;
}
.slider__arrow:hover {
  background-color: #00c470;
}
.slider__arrow:hover path {
  stroke: #fff;
}
.slider__arrow--left {
  left: -46px;
  transform: translateX(-100%);
}
@media (max-width: 949px) {
  .slider__arrow--left {
    left: -20px;
  }
}
@media (max-width: 899px) {
  .slider__arrow--left {
    left: -44px;
  }
}
.slider__arrow--right {
  right: -46px;
  transform: translateX(100%);
}
@media (max-width: 949px) {
  .slider__arrow--right {
    right: -20px;
  }
}
@media (max-width: 899px) {
  .slider__arrow--right {
    right: -44px;
  }
}
@media (max-width: 599px) {
  .slider__arrow {
    display: none;
  }
}

.slider__pagination {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.slider__pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #e1e1e1;
  opacity: 1;
}
.slider__pagination .swiper-pagination-bullet-active {
  background-color: #00c470;
}

.slider-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-item__text {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 2; /* 36px */
  color: #000;
  padding: 0 5px;
}
.slider-item__text p:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .slider-item__text {
    line-height: 1.5;
  }
}
@media (max-width: 899px) {
  .slider-item__text {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 0;
  }
}
@media (max-width: 599px) {
  .slider-item__text {
    font-size: 14px;
  }
}

.slider-item__author {
  display: flex;
  align-items: center;
}

.slider-item__avatar {
  margin-right: 20px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
}
@media (max-width: 599px) {
  .slider-item__avatar {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
}

.slider-item__author-desk {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .slider-item__author-desk {
    font-size: 14px;
  }
}

.slider-item__author-title {
  margin-bottom: 5px;
  display: inline-block;
  color: #00c470;
}

.slider-item__author-name {
  color: #808080;
}

.header__btns-nav-icon {
  flex-shrink: 0;
}

.nav-icon {
  width: 60px;
  height: 60px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background-color 0.3s;
  z-index: 11;
}
.nav-icon:hover {
  background-color: #00c470;
}
.nav-icon:hover .nav-icon__middle {
  background-color: #fff;
}
.nav-icon:hover .nav-icon__middle::after, .nav-icon:hover .nav-icon__middle:before {
  background-color: #fff;
}

.nav-icon__middle {
  position: relative;
  width: 20px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: background-color 0.3s;
}
.nav-icon__middle::before, .nav-icon__middle::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 3px;
  transition: background-color 0.3s, transform 0.2s ease-in, top 0.2s linear 0.2s;
  background-color: #000;
  border-radius: 2px;
}
.nav-icon__middle::before {
  top: -7px;
}
.nav-icon__middle::after {
  top: 7px;
}

/* Active state */
.nav-icon.nav-icon--active .nav-icon__middle {
  background-color: transparent;
  transition: background-color 0.3s;
}
.nav-icon.nav-icon--active .nav-icon__middle::before, .nav-icon.nav-icon--active .nav-icon__middle::after {
  top: 0;
  transition: background-color 0.3s, top 0.2s linear, transform 0.2s ease-in 0.2s;
}
.nav-icon.nav-icon--active .nav-icon__middle::before {
  transform: rotate(45deg);
}
.nav-icon.nav-icon--active .nav-icon__middle::after {
  transform: rotate(-45deg);
}

.nav {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: opacity 0.2s ease-in, top 0s linear 0.2s;
  z-index: 10;
}
.nav .nav__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
.nav .nav__list a {
  text-decoration: none;
  transition: color 0.3s;
}
.nav .nav__list a:hover {
  color: #15D784;
}
@media (max-width: 599px) {
  .nav .nav__list {
    font-size: 18px;
    gap: 30px;
  }
}

.nav a {
  color: #fff;
}

.nav.nav--active {
  top: 0;
  opacity: 1;
  transition: top 0s linear, opacity 0.2s ease-in;
}

.nav-icon.nav-icon--active {
  position: fixed;
}

.nav__top {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #15D784;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .nav__top {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.header {
  position: relative;
  color: #fff;
  background-image: url("./../img/backgrounds/header-bg.jpg");
  background-position: center center; /* x y */
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .header {
    background-image: url("./../img/backgrounds/header-bg-t.jpg");
    background-position: center center; /* x y */
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (max-width: 899px) {
  .header {
    background-image: url("./../img/backgrounds/header-bg-m.jpg");
    background-position: center center; /* x y */
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (max-width: 599px) {
  .header {
    background-image: url("./../img/backgrounds/header-bg-xs.jpg");
    background-position: center center; /* x y */
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.header__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 100px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .header__wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 899px) {
  .header__wrapper {
    padding-top: 20px;
  }
}
@media (max-width: 599px) {
  .header__wrapper {
    padding-bottom: 40px;
  }
}

.header__btns {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 140px;
}
@media (max-width: 1199px) {
  .header__btns {
    margin-bottom: 100px;
  }
}
@media (max-width: 899px) {
  .header__btns {
    margin-bottom: 30px;
  }
}

.header__content {
  max-width: 795px;
  text-align: center;
  margin-bottom: 148px;
}
@media (max-width: 1199px) {
  .header__content {
    margin-bottom: 129px;
  }
}
@media (max-width: 899px) {
  .header__content {
    margin-bottom: 80px;
    max-width: 450px;
  }
}
@media (max-width: 599px) {
  .header__content {
    margin-bottom: 50px;
  }
}

.header__title {
  font-size: 96px;
  font-weight: 700;
  line-height: 1; /* 96px */
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .header__title {
    margin-bottom: 35px;
    font-size: 84px;
  }
}
@media (max-width: 899px) {
  .header__title {
    font-size: 70px;
    margin-bottom: 30px;
  }
}

.header__desk {
  margin-bottom: 70px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.header__desk p:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .header__desk {
    margin-bottom: 48px;
    font-size: 18px;
    padding: 0px 18px;
  }
}
@media (max-width: 899px) {
  .header__desk {
    font-size: 16px;
    line-height: 1.3;
  }
}
@media (max-width: 599px) {
  .header__desk {
    margin-bottom: 27px;
    padding: 0;
  }
}

.header__form {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 899px) {
  .header__form {
    flex-direction: column;
    align-items: center;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 20px;
    align-items: stretch;
    max-width: 370px;
    margin: 0 auto;
  }
}

.section-clients {
  padding: 80px 0;
}
@media (max-width: 1199px) {
  .section-clients {
    padding: 50px 0;
  }
}
@media (max-width: 599px) {
  .section-clients {
    padding: 40px 0;
  }
}

.section-clients__header {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 1199px) {
  .section-clients__header {
    margin-bottom: 50px;
  }
}
@media (max-width: 899px) {
  .section-clients__header {
    margin-bottom: 40px;
  }
}
@media (max-width: 599px) {
  .section-clients__header {
    margin-bottom: 30px;
  }
}

.section-clients__title {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .section-clients__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 899px) {
  .section-clients__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .section-clients__title {
    margin-bottom: 10px;
  }
}

.section-clients__slider {
  margin: 0 auto;
  width: 770px;
}
@media (max-width: 1199px) {
  .section-clients__slider {
    width: 720px;
  }
}
@media (max-width: 899px) {
  .section-clients__slider {
    width: 375px;
  }
}
@media (max-width: 599px) {
  .section-clients__slider {
    width: 290px;
  }
}

.section-price {
  position: relative;
  padding: 90px 0 100px;
  background-image: url("./../img/backgrounds/plan-bg.jpg");
  background-position: center center; /* x y */
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .section-price {
    background-image: url("./../img/backgrounds/plan-bg-t.jpg");
    background-position: center center; /* x y */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
  }
}
@media (max-width: 899px) {
  .section-price {
    background-image: url("./../img/backgrounds/plan-bg-m.jpg");
    background-position: center center; /* x y */
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 40px;
  }
}
@media (max-width: 599px) {
  .section-price {
    background-image: url("./../img/backgrounds/plan-bg-xs.jpg");
    background-position: center center; /* x y */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0;
  }
}

.section-price__content {
  position: relative;
  z-index: 8;
}
.section-price__content .title, .section-price__content .subtitle {
  color: #fff;
}

.section-price__header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .section-price__header {
    margin-bottom: 50px;
  }
}
@media (max-width: 899px) {
  .section-price__header {
    margin-bottom: 40px;
  }
}

.section-price__title {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .section-price__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .section-price__title {
    margin-bottom: 10px;
  }
}

.section-price__row {
  display: flex;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 899px) {
  .section-price__row {
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 32px;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 599px) {
  .section-price__row {
    row-gap: 28px;
  }
}
.section-price__row .package {
  width: 300px;
}
@media (max-width: 1199px) {
  .section-price__row .package {
    width: 270px;
  }
}
@media (max-width: 899px) {
  .section-price__row .package {
    width: 300px;
  }
}
@media (max-width: 599px) {
  .section-price__row .package {
    width: 290px;
  }
}

.section-focus {
  padding: 80px 0 40px;
}
@media (max-width: 1199px) {
  .section-focus {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
@media (max-width: 899px) {
  .section-focus {
    padding-bottom: 0;
    overflow-x: hidden;
  }
}
@media (max-width: 599px) {
  .section-focus {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-focus__row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .section-focus__row {
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (max-width: 899px) {
  .section-focus__row {
    flex-direction: row-reverse;
  }
}
@media (max-width: 599px) {
  .section-focus__row {
    flex-direction: column;
    align-items: center;
  }
}

.section-focus__content {
  padding-top: 28px;
  width: 470px;
}
@media (max-width: 1199px) {
  .section-focus__content {
    width: 420px;
    padding-top: 18px;
  }
}
@media (max-width: 899px) {
  .section-focus__content {
    width: 370px;
    padding-top: 0;
  }
}
@media (max-width: 599px) {
  .section-focus__content {
    text-align: center;
    width: 100%;
  }
}

.section-focus__header {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .section-focus__header {
    margin-bottom: 20px;
  }
}

.section-focus__title {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .section-focus__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .section-focus__title {
    margin-bottom: 10px;
  }
}

.section-focus__text {
  width: 400px;
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14; /* 214.286% */
}
.section-focus__text p:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .section-focus__text {
    width: 100%;
  }
}
@media (max-width: 899px) {
  .section-focus__text {
    line-height: 1.74;
  }
}

@media (max-width: 1199px) {
  .section-focus__img {
    width: 420px;
    flex-shrink: 0;
  }
}
@media (max-width: 899px) {
  .section-focus__img {
    width: 170px;
  }
  .section-focus__img img {
    max-width: unset;
    height: 330px;
  }
}
@media (max-width: 599px) {
  .section-focus__img {
    width: 290px;
    margin-bottom: 9px;
  }
  .section-focus__img img {
    height: 230px;
  }
}

.section-tasks {
  padding: 80px 0 40px;
  border-bottom: 1px solid #e1e1e1;
}
@media (max-width: 1199px) {
  .section-tasks {
    padding: 50px 0 20px;
  }
}
@media (max-width: 899px) {
  .section-tasks {
    padding-bottom: 6px;
  }
}
@media (max-width: 599px) {
  .section-tasks {
    padding: 40px 0;
  }
}

.section-tasks__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 115px 0 100px;
}
@media (max-width: 1199px) {
  .section-tasks__row {
    padding-left: 75px;
    padding-right: 0;
    justify-content: center;
  }
}
@media (max-width: 899px) {
  .section-tasks__row {
    padding-left: 0;
    align-items: flex-start;
    flex-direction: row-reverse;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (max-width: 599px) {
  .section-tasks__row {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.section-tasks__content {
  width: 530px;
}
@media (max-width: 1199px) {
  .section-tasks__content {
    padding-bottom: 10px;
  }
}
@media (max-width: 899px) {
  .section-tasks__content {
    padding-bottom: 0px;
    padding-top: 7px;
    width: 270px;
  }
}
@media (max-width: 599px) {
  .section-tasks__content {
    text-align: center;
    padding-top: 0;
    width: 100%;
  }
}

.section-tasks__header {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .section-tasks__header {
    margin-bottom: 20px;
  }
}

.section-tasks__title {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .section-tasks__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .section-tasks__title {
    margin-bottom: 10px;
  }
}

.section-tasks__text {
  width: 400px;
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14; /* 214.286% */
}
.section-tasks__text p:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .section-tasks__text {
    width: 420px;
  }
}
@media (max-width: 899px) {
  .section-tasks__text {
    width: 100%;
    line-height: 1.71;
  }
}

@media (max-width: 1199px) {
  .section-tasks__img {
    width: 265px;
    flex-shrink: 0;
  }
}
@media (max-width: 899px) {
  .section-tasks__img {
    width: 270px;
  }
}
@media (max-width: 599px) {
  .section-tasks__img {
    margin-bottom: 8px;
  }
}

.section-functional {
  padding: 80px 0;
}
@media (max-width: 1199px) {
  .section-functional {
    padding: 50px 0;
  }
}
@media (max-width: 599px) {
  .section-functional {
    padding: 40px 0;
  }
}
@media (max-width: 1199px) {
  .section-functional .card {
    width: 195px;
  }
}
@media (max-width: 899px) {
  .section-functional .card {
    width: 270px;
  }
}
@media (max-width: 599px) {
  .section-functional .card {
    width: 290px;
  }
}

.section-functional__header {
  margin-bottom: 70px;
  text-align: center;
}
@media (max-width: 1199px) {
  .section-functional__header {
    margin-bottom: 60px;
  }
}
@media (max-width: 899px) {
  .section-functional__header {
    margin-bottom: 40px;
  }
}

.section-functional__title {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .section-functional__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 899px) {
  .section-functional__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .section-functional__title {
    margin-bottom: 10px;
  }
}

.section-functional__row {
  display: flex;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 899px) {
  .section-functional__row {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 599px) {
  .section-functional__row {
    row-gap: 39px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}

.section-cta {
  position: relative;
  padding-top: 83px;
  padding-bottom: 84px;
  background-image: url("./../img/backgrounds/promo-bg.jpg");
  background-position: center center; /* x y */
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .section-cta {
    padding: 40px 0;
    background-image: url("./../img/backgrounds/promo-bg-t.jpg");
    background-position: center center; /* x y */
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (max-width: 899px) {
  .section-cta {
    padding: 40px 0;
    background-image: url("./../img/backgrounds/promo-bg-m.jpg");
    background-position: center center; /* x y */
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (max-width: 599px) {
  .section-cta {
    padding: 40px 0;
    background-image: url("./../img/backgrounds/promo-bg-xs.jpg");
    background-position: center center; /* x y */
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.section-cta__content {
  color: #fff;
  position: relative;
  z-index: 8;
  text-align: center;
}

.section-cta__title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1; /* 22px */
}
@media (max-width: 899px) {
  .section-cta__title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .section-cta__title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.section-cta__title span {
  text-transform: uppercase;
  font-weight: 700;
}

.footer {
  padding: 70px 0;
  background-color: #1A1A1A;
}
@media (max-width: 1199px) {
  .footer {
    padding: 60px 0;
  }
}
@media (max-width: 899px) {
  .footer {
    padding: 50px 0;
  }
}
@media (max-width: 599px) {
  .footer {
    padding: 40px 0;
  }
}

.foooter__row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media (max-width: 1199px) {
  .foooter__row {
    margin-bottom: 40px;
  }
}
@media (max-width: 899px) {
  .foooter__row {
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 599px) {
  .foooter__row {
    row-gap: 40px;
    margin-bottom: 40px;
  }
}

.footer__nav {
  display: flex;
  -moz-column-gap: 47px;
       column-gap: 47px;
}
@media (max-width: 599px) {
  .footer__nav {
    flex-direction: column;
    row-gap: 20px;
    text-align: center;
  }
}

.footer__nav-item {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  transition: 0.3s;
}
.footer__nav-item:hover {
  color: #15D784;
}

.footer__social {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 599px) {
  .footer__social {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.footer__social-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: rgba(196, 196, 196, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}
.footer__social-item:hover {
  background-color: #00c470;
}

.footer__copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 500;
  line-height: 1; /* 14px */
}
.footer__copyright span {
  font-weight: 700;
}
.footer__copyright p + p {
  margin-top: 15px;
}
@media (max-width: 599px) {
  .footer__copyright {
    line-height: 1.5;
    margin: 0 auto;
    padding: 0 50px;
  }
}

.none {
  display: none;
}/*# sourceMappingURL=main.css.map */