/* Reset and base styles  */
.none {
  display: none;
}

.lock {
  overflow: hidden;
}

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
footer,
header,
section,
main {
  display: block;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

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;
}

.header::before, .section-cta::before, .section-price::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.35);
}

.nav {
  display: none;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2d2d2d;
  opacity: 0.8;
  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;
}

.nav.nav--active {
  position: fixed;
  z-index: 15;
  top: 0;
  opacity: 1;
  transition: top 0s linear, opacity 0.2s ease-in;
}

.nav__top {
  margin-bottom: 50px;
  color: #15d784;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav__list li {
  margin-bottom: 40px;
}
.nav__list a {
  color: #fff;
  font-size: 24px;
}
.nav__list a:hover {
  color: #15d784;
  transition: color 0.2s ease-in;
}

.header {
  position: relative;
  z-index: 99;
  background-image: url("./../img/backgrounds/header-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.header__wrapper {
  position: relative;
  padding-top: 60px;
  padding-bottom: 100px;
  color: #fff;
  z-index: 3;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@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;
  }
}

.container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header__buttons {
  display: flex;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  justify-content: space-between;
  /* Tablet */
}
@media (max-width: 1199px) {
  .header__buttons {
    width: 100%;
  }
}

.header__btn {
  flex-shrink: 0;
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.2s ease-in;
}
.header__btn g {
  stroke: #000;
}

.header__btn:hover {
  background-color: #00c470;
}
.header__btn:hover g {
  stroke: #fff;
}

.header__content {
  margin-top: 140px;
  margin-bottom: 148px;
  font-weight: 700;
  text-align: center;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .header__content {
    margin-top: 100px;
    margin-bottom: 129px;
  }
}
@media (max-width: 899px) {
  .header__content {
    margin-top: 30px;
    margin-bottom: 80px;
  }
}
@media (max-width: 599px) {
  .header__content {
    margin-bottom: 50px;
  }
}

.header__title {
  margin-bottom: 40px;
  font-size: 96px;
  line-height: 1;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .header__title {
    margin-bottom: 35px;
    font-size: 84px;
  }
}
@media (max-width: 899px) {
  .header__title {
    margin-bottom: 30px;
    font-size: 70px;
  }
}

.header__description {
  margin-left: auto;
  margin-right: auto;
  width: 730px;
  margin-bottom: 70px;
  font-size: 20px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .header__description {
    margin-bottom: 50px;
    font-size: 18px;
  }
}
@media (max-width: 899px) {
  .header__description {
    width: 430px;
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .header__description {
    width: 290px;
    margin-bottom: 30px;
  }
}

.header__scroll {
  text-align: center;
}

.header__scroll a {
  display: inline-block;
}

/*--------------------navigation menu icon------------------------*/
.header__btn-nav-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background-color: #000;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
}
.header__btn-nav-icon::before, .header__btn-nav-icon::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background-color: #000;
  left: 0;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}
.header__btn-nav-icon::before {
  top: -7px;
}
.header__btn-nav-icon::after {
  top: 7px;
}

.header__btn-nav-icon.header__btn-nav-icon--active {
  background-color: transparent;
  z-index: 50;
}
.header__btn-nav-icon.header__btn-nav-icon--active::before, .header__btn-nav-icon.header__btn-nav-icon--active::after {
  top: 0;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  background-color: #fff;
}
.header__btn-nav-icon.header__btn-nav-icon--active::before {
  transform: rotate(45deg);
}
.header__btn-nav-icon.header__btn-nav-icon--active::after {
  transform: rotate(-45deg);
}

.search {
  position: relative;
}

.search__input {
  position: absolute;
  right: 0;
  width: 0;
  height: 60px;
  border-radius: 30px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: width 0.2s linear;
  /* Mobile XS */
}
.search__input::placeholder {
  color: rgba(46, 46, 46, 0.5);
}

.search.search--visible .search__input {
  width: 340px;
  padding-left: 30px;
  padding-right: 70px;
  background: #fff;
}
@media (max-width: 599px) {
  .search.search--visible .search__input {
    width: 250px;
  }
}
.search.search--visible .header__btn {
  background-color: #00c470;
}
.search.search--visible .header__btn:hover {
  background-color: #15d784;
}

.header__form {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  /* Mobile */
}
@media (max-width: 899px) {
  .header__form {
    flex-direction: column;
    align-items: center;
  }
}

.input {
  width: 240px;
  height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-weight: 700;
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 899px) {
  .input {
    width: 370px;
    padding-left: 46px;
    padding-right: 46px;
  }
}
@media (max-width: 599px) {
  .input {
    width: 290px;
    padding-left: 36px;
    padding-right: 36px;
  }
}

.header__form * + * {
  margin-left: 20px;
  /* Mobile */
}
@media (max-width: 899px) {
  .header__form * + * {
    margin-left: 0;
    margin-top: 20px;
  }
}

.input::placeholder {
  color: #fff;
}

.button {
  height: 60px;
  padding-left: 39px;
  padding-right: 39px;
  border-radius: 30px;
  background: #00c470;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: background-color 0.2s ease-in;
  /* Mobile XS */
}
@media (max-width: 899px) {
  .button {
    width: 370px;
  }
}
@media (max-width: 599px) {
  .button {
    width: 290px;
  }
}

.button:hover {
  background-color: #059959;
}

.section-functional {
  padding-top: 80px;
  padding-bottom: 80px;
  /* Tablet */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .section-functional {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 599px) {
  .section-functional {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-functional__header {
  margin-bottom: 70px;
  text-align: center;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@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;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@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;
  }
}

.title {
  color: #15d784;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 899px) {
  .title {
    font-size: 14px;
  }
}

.title--white {
  color: #fff;
}

.subtitle {
  color: #2e2e2e;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .subtitle {
    font-size: 38px;
  }
}
@media (max-width: 899px) {
  .subtitle {
    font-size: 30px;
  }
}
@media (max-width: 599px) {
  .subtitle {
    font-size: 26px;
  }
}

.subtitle--white {
  color: #fff;
}

.section-functional__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 899px) {
  .section-functional__row {
    margin-top: -30px;
  }
}
@media (max-width: 599px) {
  .section-functional__row {
    margin-top: -40px;
  }
}

.card {
  width: 270px;
  text-align: center;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .card {
    width: 195px;
  }
}
@media (max-width: 899px) {
  .card {
    width: 270px;
    margin-top: 30px;
  }
}
@media (max-width: 599px) {
  .card {
    width: 290px;
    margin-top: 40px;
  }
}

.card__img {
  margin-bottom: 40px;
  /* Tablet */
}
@media (max-width: 1199px) {
  .card__img {
    margin-bottom: 20px;
  }
}

.card__title {
  margin-bottom: 20px;
  color: #2e2e2e;
  font-size: 16px;
  line-height: 1;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .card__title {
    margin-bottom: 10px;
    line-height: 1.5;
    min-height: 48px;
  }
}
@media (max-width: 899px) {
  .card__title {
    min-height: unset;
  }
}

.card__description {
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
  /* Tablet */
}
@media (max-width: 1199px) {
  .card__description {
    line-height: 1.57;
  }
}

.section-cta {
  position: relative;
  padding-top: 83px;
  padding-bottom: 84px;
  background-image: url("./../img/backgrounds/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  /* Tablet */
}
@media (max-width: 1199px) {
  .section-cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-cta__content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
}

.section-cta__title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  /* Mobile */
  /* Mobile XS */
}
.section-cta__title span {
  font-weight: 700;
  text-transform: uppercase;
}
@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__content a {
  display: inline-block;
  line-height: 60px;
}

.section-cta__content-button.button {
  width: 230px;
}

.section-tasks {
  padding-top: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e1e1;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .section-tasks {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
@media (max-width: 899px) {
  .section-tasks {
    padding-top: 52px;
    padding-bottom: 10px;
  }
}
@media (max-width: 599px) {
  .section-tasks {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-tasks__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 100px;
  padding-right: 114px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
.section-tasks__row > * {
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .section-tasks__row {
    padding-left: 75px;
    padding-right: 0px;
  }
}
@media (max-width: 899px) {
  .section-tasks__row {
    padding-left: 0;
    flex-direction: row-reverse;
    column-gap: 30px;
    align-items: unset;
  }
}
@media (max-width: 599px) {
  .section-tasks__row {
    flex-direction: column-reverse;
  }
}

.section-tasks__content {
  width: 570px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .section-tasks__content {
    width: 495px;
    padding-bottom: 10px;
  }
}
@media (max-width: 899px) {
  .section-tasks__content {
    width: 270px;
    padding-top: 5px;
    padding-bottom: 0;
  }
}
@media (max-width: 599px) {
  .section-tasks__content {
    padding-top: 0;
    width: 290px;
    text-align: center;
  }
}

.section-tasks__header {
  margin-bottom: 30px;
  /* Tablet */
}
@media (max-width: 1199px) {
  .section-tasks__header {
    margin-bottom: 20px;
  }
}

.section-tasks__title {
  margin-bottom: 30px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .section-tasks__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 899px) {
  .section-tasks__title {
    font-size: 14px;
  }
}
@media (max-width: 599px) {
  .section-tasks__title {
    margin-bottom: 10px;
  }
}

.section-tasks__subtitle {
  /* Mobile */
}
@media (max-width: 899px) {
  .section-tasks__subtitle {
    margin-bottom: 20px;
  }
}

.section-tasks__text {
  width: 400px;
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
.section-tasks__text p + p {
  margin-top: 15px;
}
@media (max-width: 1199px) {
  .section-tasks__text {
    width: 420px;
  }
}
@media (max-width: 899px) {
  .section-tasks__text {
    line-height: 1.71429;
    width: 270px;
  }
}
@media (max-width: 599px) {
  .section-tasks__text {
    width: 290px;
  }
}

.section-tasks__img {
  width: 356px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .section-tasks__img {
    width: 265px;
  }
}
@media (max-width: 899px) {
  .section-tasks__img {
    width: 270px;
  }
}
@media (max-width: 599px) {
  .section-tasks__img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
}

.section-focus {
  padding-top: 80px;
  padding-bottom: 40px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@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;
  align-items: flex-start;
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 899px) {
  .section-focus__row {
    flex-direction: row-reverse;
  }
}
@media (max-width: 599px) {
  .section-focus__row {
    flex-direction: column;
  }
}

.section-focus__row > * {
  flex-shrink: 0;
}

.section-focus__img {
  width: 570px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .section-focus__img {
    width: 420px;
  }
}
@media (max-width: 899px) {
  .section-focus__img {
    width: 170px;
  }
  .section-focus__img img {
    max-width: unset;
    width: 415px;
  }
}
@media (max-width: 599px) {
  .section-focus__img {
    width: unset;
    margin-bottom: 10px;
  }
  .section-focus__img img {
    max-width: 100%;
  }
}

.section-focus__content {
  padding-top: 28px;
  width: 470px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .section-focus__content {
    width: 419px;
    padding-top: 20px;
  }
}
@media (max-width: 899px) {
  .section-focus__content {
    padding-top: 0;
    width: 370px;
  }
}
@media (max-width: 599px) {
  .section-focus__content {
    max-width: 100%;
    text-align: center;
  }
}

.section-focus__header {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .section-focus__header {
    margin-bottom: 20px;
  }
}

.section-focus__title {
  margin-bottom: 30px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@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-style: normal;
  font-weight: 500;
  line-height: 2.14;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
.section-focus__text p + p {
  margin-top: 15px;
}
@media (max-width: 1199px) {
  .section-focus__text {
    width: 420px;
  }
}
@media (max-width: 899px) {
  .section-focus__text {
    width: 370px;
    line-height: 1.714;
  }
}
@media (max-width: 599px) {
  .section-focus__text {
    width: 100%;
  }
}

.section-price {
  position: relative;
  padding-top: 90px;
  padding-bottom: 100px;
  background-image: url("./../img/backgrounds/section-price-bg.jpg");
  background-size: cover;
  background-position: center;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .section-price {
    background-image: url("./../img/backgrounds/section-price-bg-1200.jpg");
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 899px) {
  .section-price {
    background-image: url("./../img/backgrounds/section-price-bg-900.jpg");
    padding-bottom: 40px;
  }
}
@media (max-width: 599px) {
  .section-price {
    background-image: url("./../img/backgrounds/section-price-bg-600.jpg");
    padding-top: 40px;
  }
}

.section-price__content {
  position: relative;
  z-index: 3;
}

.section-price__header {
  text-align: center;
  margin-bottom: 80px;
  /* Tablet */
  /* Mobile */
}
@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;
  /* Tablet */
  /* Mobile XS */
}
@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;
  column-gap: 30px;
  /* Mobile */
}
@media (max-width: 899px) {
  .section-price__row {
    flex-direction: column;
    margin-top: -30px;
    align-items: center;
  }
}

.package {
  width: 300px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  text-align: center;
  /* Mobile */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 899px) {
  .package {
    margin-top: 30px;
    width: 270px;
  }
}
@media (max-width: 899px) {
  .package {
    width: 300px;
  }
}
@media (max-width: 599px) {
  .package {
    width: 100%;
  }
}

.package--special {
  background: rgba(48, 79, 254, 0.95);
}
.package--special .package__title {
  color: #fff;
}
.package--special .package__title .package__period {
  background: rgba(0, 0, 0, 0.1);
}

.package__header {
  padding-bottom: 40px;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package__title {
  margin-bottom: 20px;
  color: #b2b2b2;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.package__price {
  margin-bottom: 15px;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}

.package__period {
  margin: 0 auto;
  width: 93px;
  height: 24px;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.package__list {
  margin-top: 40px;
  margin-bottom: 58px;
  color: #fff;
}

.package__list-item {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.package__list-item:last-child {
  margin-bottom: 0;
}

.button-outline {
  display: inline-block;
  height: 60px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 0 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 58px;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.button-outline:hover {
  background-color: #fff;
  color: #000;
}

.button-solid {
  display: inline-block;
  height: 60px;
  border-radius: 30px;
  background: #fff;
  color: #2e2e2e;
  padding: 0 40px;
  font-size: 14px;
  font-weight: 800;
  line-height: 60px;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.button-solid:hover {
  background-color: #2e2e2e;
  color: #fff;
}

.section-clients {
  padding-top: 80px;
  padding-bottom: 80px;
  /* Tablet */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .section-clients {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 599px) {
  .section-clients {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-clients__header {
  margin-bottom: 60px;
  text-align: center;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@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;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@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-left: auto;
  margin-right: auto;
  width: 770px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .section-clients__slider {
    width: 720px;
  }
}
@media (max-width: 899px) {
  .section-clients__slider {
    width: 374px;
  }
}
@media (max-width: 599px) {
  .section-clients__slider {
    width: 290px;
  }
}

.slider {
  position: relative;
  padding-bottom: 54px;
  /* Mobile */
}
@media (max-width: 899px) {
  .slider {
    padding-bottom: 44px;
  }
}

.slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 54px;
  height: 54px;
  background-color: #f5f5f5;
  border-radius: 50%;
  transition: 0.2s;
  /* Mobile XS */
}
.slider__arrow--left {
  left: -46px;
  top: 53px;
  transform: translateX(-100%);
}
.slider__arrow--right {
  right: -46px;
  top: 53px;
  transform: translateX(100%);
}
.slider__arrow path {
  transition: 0.2s;
}
.slider__arrow:hover {
  background-color: #00c470;
}
.slider__arrow:hover path {
  stroke: #fff;
}
@media (max-width: 950px) {
  .slider__arrow--left {
    left: -20px;
  }
  .slider__arrow--right {
    right: -20px;
  }
}
@media (max-width: 599px) {
  .slider__arrow {
    display: none;
  }
}

.slider__pagination {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translatex(-50%);
  justify-content: center;
  column-gap: 10px;
}

.slider__pagination-item {
  width: 14px;
  height: 14px;
  background-color: #e1e1e1;
  border-radius: 50%;
}

.slider__pagination-item--active {
  background-color: #00c470;
}

.slider-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-item__text {
  margin-bottom: 30px;
  padding: 0 5px;
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
.slider-item__text p + p {
  margin-top: 15px;
}
@media (max-width: 1199px) {
  .slider-item__text {
    line-height: 1.5;
  }
}
@media (max-width: 899px) {
  .slider-item__text {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
@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;
  border-radius: 50%;
  overflow: hidden;
  /* Mobile XS */
}
@media (max-width: 599px) {
  .slider-item__avatar {
    margin-right: 10px;
    width: 60px;
    height: 60px;
  }
}

.slider-item__name {
  color: #808080;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  /* Mobile XS */
}
@media (max-width: 599px) {
  .slider-item__name {
    font-size: 14px;
  }
}

.slider-item__author-title {
  color: #00c470;
}

.slider-item__author-name {
  display: block;
  margin-top: 5px;
}

.footer {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #1a1a1a;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 899px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 599px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.footer__row {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
  margin-bottom: 50px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 1199px) {
  .footer__row {
    margin-bottom: 40px;
  }
}
@media (max-width: 899px) {
  .footer__row {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
@media (max-width: 599px) {
  .footer__row {
    margin-bottom: 40px;
  }
}

.footer__nav {
  display: flex;
  column-gap: 50px;
  /* Mobile */
  /* Mobile XS */
}
@media (max-width: 899px) {
  .footer__nav {
    margin-bottom: 30px;
  }
}
@media (max-width: 599px) {
  .footer__nav {
    flex-direction: column;
    margin-bottom: 40px;
  }
}

.footer__nav-item {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.2s ease-in;
  /* Mobile XS */
}
.footer__nav-item:hover {
  color: #15d784;
}
@media (max-width: 599px) {
  .footer__nav-item {
    margin-bottom: 20px;
  }
  .footer__nav-item:last-child {
    margin-bottom: 0;
  }
}

.footer__socials {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  /* Mobile XS */
}
@media (max-width: 599px) {
  .footer__socials {
    column-gap: 20px;
  }
}

.footer__socials-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(196, 196, 196, 0.1);
  transition: all 0.2s ease-in;
}
.footer__socials-item:hover {
  background-color: #00c470;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  /* Mobile XS */
}
.footer__copyright span {
  font-weight: 700;
}
@media (max-width: 599px) {
  .footer__copyright {
    margin-left: auto;
    margin-right: auto;
    width: 180px;
    line-height: 1.5;
  }
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
/*
@import "theme";*/
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #e1e1e1;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #00c470;
  color: #fff;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
  /* Mobile */
}
@media (max-width: 899px) {
  .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
  }
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  margin: 0px 5px;
  background: #e1e1e1;
  display: block;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 50%;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #00c470;
}

/* Tablet */
@media (max-width: 1199px) {
  .container {
    width: 900px;
  }
}
/* Mobile */
@media (max-width: 899px) {
  .container {
    width: 600px;
  }
}
/* Mobile XS */
@media (max-width: 599px) {
  .container {
    width: 320px;
  }
}

/*# sourceMappingURL=main.css.map */
