@charset "UTF-8";
@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  min-width: 320px;
  width: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: #ffffff;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  color: #131313;
  line-height: 1.6em;
}

body {
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

button,
input,
img,
a,
label {
  -webkit-tap-highlight-color: transparent !important;
}
button *::-moz-selection, button::-moz-selection, input *::-moz-selection, input::-moz-selection, img *::-moz-selection, img::-moz-selection, a *::-moz-selection, a::-moz-selection, label *::-moz-selection, label::-moz-selection {
  background-color: transparent !important;
}
button *::selection, button::selection,
input *::selection,
input::selection,
img *::selection,
img::selection,
a *::selection,
a::selection,
label *::selection,
label::selection {
  background-color: transparent !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  color: #000000;
}

h1 {
  font-size: 30px;
  line-height: initial;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
  }
}
@media only screen and (min-width: 1400px) {
  h1 {
    font-size: 60px;
    line-height: 64px;
  }
}

h2 {
  font-size: 26px;
  line-height: 36px;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 36px;
    line-height: 36px;
  }
}
@media only screen and (min-width: 1400px) {
  h2 {
    font-size: 48px;
    line-height: 48px;
  }
}

p {
  margin: 8px 0;
  padding: 0;
}

a {
  -webkit-transition: background 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out, opacity 0.3s ease-out;
  transition: background 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out, opacity 0.3s ease-out;
  text-decoration: none;
  color: #000000;
}
a:hover {
  color: #ef4335;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  padding: 17px 24px;
  background-color: #000000;
  border-radius: 50px;
  outline: none;
  font-weight: 600;
  font-size: 13px;
  font-family: "Figtree", sans-serif;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .btn {
    font-size: 14px;
  }
}
.btn:hover {
  background-color: #ef4335;
  color: #ffffff;
}

section {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0px;
  width: 100%;
}

.container {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}
@media only screen and (min-width: 576px) {
  .container {
    max-width: 540px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.animate-block {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.animate-block.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.separator {
  width: 100%;
  height: 1px;
  margin: 0;
  position: relative;
  background-color: #eeeeee;
}
.separator::before {
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: -3px;
  left: -3px;
  background-color: #eeeeee;
  border-radius: 50%;
}
.separator::after {
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: -3px;
  right: -3px;
  background-color: #eeeeee;
  border-radius: 50%;
}

.main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.main-menu__item {
  position: relative;
}
.main-menu__item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.main-menu__link {
  display: inline-block;
  padding: 13px 0;
  font-weight: 500;
  font-size: 14px;
  font-family: "Figtree", sans-serif;
  line-height: 14px;
  color: #000000;
}
.main-menu__parent-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.main-menu .dropdown-menu {
  width: 265px;
  margin: 0;
  padding: 15px 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  list-style: none;
  background-color: #ffffff;
  border: 0;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 0.275rem 1.25rem rgba(11, 15, 25, 0.05), 0 0.25rem 0.5625rem rgba(11, 15, 25, 0.03);
          box-shadow: 0 0.275rem 1.25rem rgba(11, 15, 25, 0.05), 0 0.25rem 0.5625rem rgba(11, 15, 25, 0.03);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.main-menu .dropdown-menu__item {
  margin: 0;
  padding: 0;
}
.main-menu .dropdown-menu__link {
  display: block;
  padding: 8px 16px;
  font-weight: 400;
  font-size: 14px;
  color: #4c4c4c;
  text-decoration: none;
  line-height: 20px;
  -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out;
  transition: color 0.2s ease-out, background-color 0.2s ease-out;
  white-space: nowrap;
}
.main-menu .dropdown-menu__link:hover {
  color: #ef4335;
}
.main-menu .dropdown-menu__link.is-active {
  color: #ef4335;
}

.mobile-menu {
  display: block;
  width: 100%;
  height: 100vh;
  min-width: 320px;
  overflow-x: auto;
  padding: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background-color: #ffffff;
  border-left: 1px solid #eeeeee;
}
.mobile-menu.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media only screen and (min-width: 576px) {
  .mobile-menu {
    width: 400px;
  }
}
.mobile-menu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #eeeeee;
}
.mobile-menu__close-btn {
  width: 25px;
  height: 25px;
  position: relative;
  cursor: pointer;
}
.mobile-menu__close-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 100%;
  background-color: #ef4335;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.mobile-menu__close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 100%;
  background-color: #ef4335;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.mobile-menu__close-btn:hover::before, .mobile-menu__close-btn:hover::after {
  background-color: #d92d2a;
}
.mobile-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  margin: 0;
  padding: 30px 15px 15px;
  list-style: none;
}
.mobile-menu__link {
  display: block;
  margin: 0;
  padding: 4px 4px;
  font-weight: 400;
  font-size: 15px;
  color: #4c4c4c;
  text-transform: uppercase;
  line-height: 18px;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.mobile-menu__link:hover {
  color: #ef4335;
}
.mobile-menu__link.is-active {
  color: #ef4335;
}
.mobile-menu .dropdown-arrow {
  margin-left: 8px;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.mobile-menu .dropdown-arrow path {
  fill: #4c4c4c;
  -webkit-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out;
}
.mobile-menu__dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  text-align: left;
  cursor: pointer;
}
.mobile-menu__dropdown-toggle:hover .dropdown-arrow path {
  fill: #ef4335;
}
.mobile-menu__dropdown-toggle[aria-expanded=true] .dropdown-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mobile-menu__dropdown {
  max-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #f2f2f8;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.mobile-menu__dropdown-link {
  display: block;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: #4c4c4c;
  line-height: 21px;
}
.mobile-menu__dropdown-link:hover {
  color: #ef4335;
}
.mobile-menu__dropdown-link.is-active {
  color: #ef4335;
}

.popup {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
}
.popup.is-active {
  display: block;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header.is-scrolled {
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: slideDown 0.3s ease-out;
          animation: slideDown 0.3s ease-out;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
.header__nav {
  display: none;
}
@media only screen and (min-width: 992px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
}
.header__main-link {
  height: auto;
  padding: 5px 12px;
  font-size: 11px;
  line-height: initial;
}
@media only screen and (min-width: 768px) {
  .header__main-link {
    padding: 17px 24px;
    font-size: 14px;
  }
}
.header__burger-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 992px) {
  .header__burger-button {
    display: none;
  }
}

.burger-button {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  width: 30px;
  margin: 0;
  padding: 4px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.burger-button__line {
  width: 100%;
  height: 3px;
  background-color: #ef4335;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.burger-button:hover .burger-button__line {
  background-color: rgba(239, 67, 53, 0.7);
}

.main {
  margin: 0;
  padding: 0;
}

.main-banner {
  margin-top: 30px;
  margin-bottom: 20px;
}
.main-banner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.main-banner__title {
  margin: 0;
  text-align: center;
}
.main-banner__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  color: #4c4c4c;
  line-height: 26px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .main-banner__text {
    font-size: 20px;
    line-height: 28px;
  }
}
.main-banner__text p {
  margin: 0;
}
.main-banner__link {
  padding: 17px 42px;
}
@media only screen and (min-width: 768px) {
  .main-banner__link {
    padding: 17px 24px;
  }
}

.award-section {
  display: none;
  margin-top: 50px;
}
@media only screen and (min-width: 768px) {
  .award-section {
    display: block;
  }
}
.award-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .award-section__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.award-agency {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
}

.award-experts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
}
.award-experts__img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.award-experts__expert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -15px;
  border-radius: 100%;
}
.award-experts__expert:nth-child(1) {
  margin-left: 0;
}

.award-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
}
.award-reviews__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-section {
  margin-top: 100px;
}
.about-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 25px;
}
@media only screen and (min-width: 768px) {
  .about-section__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 135px;
  }
}
.about-section__title {
  white-space: nowrap;
}
.about-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
}
@media only screen and (min-width: 576px) {
  .about-section__content {
    gap: 68px;
  }
}
.about-section__text {
  width: 100%;
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
}
.about-section .award-winning-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
}
.about-section .award-winning-area .separator {
  margin: 50px 0;
}
@media only screen and (min-width: 768px) {
  .about-section .award-winning-area {
    display: none;
  }
}
.about-section--agency .about-section__img {
  display: none;
}
@media only screen and (min-width: 992px) {
  .about-section--agency .about-section__img {
    display: block;
  }
}
.about-section--agency .about-section__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 68px;
}
.about-section--agency__item {
  min-width: 40%;
}

.award-winning-area {
  display: block;
}

.bullet-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 44px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media only screen and (min-width: 768px) {
  .bullet-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (min-width: 992px) {
  .bullet-list {
    gap: 80px;
  }
}
.bullet-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  max-width: 300px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media only screen and (min-width: 992px) {
  .bullet-list__item {
    max-width: 41%;
  }
}
.bullet-list__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70px;
  height: 70px;
  overflow: hidden;
  background-color: #f2f2f8;
  border-radius: 100%;
}
.bullet-list__title {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (min-width: 768px) {
  .bullet-list__title {
    font-size: 22px;
    line-height: 22px;
  }
}
.bullet-list__text {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  color: #4c4c4c;
  line-height: 28px;
}
@media only screen and (min-width: 768px) {
  .bullet-list__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
}

.partner-section {
  margin-top: 100px;
  text-align: center;
}
.partner-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 50px;
}
@media only screen and (min-width: 992px) {
  .partner-section__container {
    width: 80%;
  }
}
.partner-section__title {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .partner-section__title {
    text-align: center;
  }
}

.achievement-section {
  margin-top: 55px;
}
.achievement-section__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) {
  .achievement-section {
    margin-top: 100px;
  }
}
.achievement-section__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
@media only screen and (min-width: 768px) {
  .achievement-section__subtitle {
    font-size: 17px;
    line-height: 25px;
  }
}
.achievement-section__title {
  margin-top: 10px;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
}
@media only screen and (min-width: 768px) {
  .achievement-section__title {
    margin-top: 15px;
    font-size: 36px;
    line-height: 43px;
  }
}
.achievement-section__content {
  margin-top: 35px;
}
@media only screen and (min-width: 768px) {
  .achievement-section__content {
    margin-top: 60px;
  }
}

.slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 400px;
  width: 100%;
  border-radius: 20px;
  background: #ef4335;
}
@media only screen and (min-width: 992px) {
  .slider-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.slider-container__nav-block {
  margin: -1px;
  padding: 20px;
  background-color: #161519;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid #dee2e6;
}
@media only screen and (min-width: 768px) {
  .slider-container__nav-block {
    min-width: 300px;
  }
}
@media only screen and (min-width: 1400px) {
  .slider-container__nav-block {
    padding: 138px 69px;
    max-width: 554px;
    width: 100%;
  }
}
.slider-container__link {
  height: 74px;
  color: white;
  text-decoration: none;
  padding: 0 21px;
  font-weight: 600;
  font-size: 18px;
  line-height: 74px;
  text-align: left;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 50px;
  border: 1px solid #fff;
}
.slider-container__link span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  background: #fff;
}
.slider-container__link span svg {
  fill: #ef4335;
}
@media only screen and (min-width: 768px) {
  .slider-container__link {
    font-size: 18px;
    white-space: normal;
  }
}
.slider-container__link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.slider-container__link.active {
  background-color: white;
  color: #2a2a2a;
}
.slider-container__link.active span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  background: #ef4335;
}
.slider-container__link.active span svg {
  fill: #fff;
}
.slider-container__slides {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: white;
  min-height: 300px;
}
@media only screen and (min-width: 768px) {
  .slider-container__slides {
    min-height: 400px;
  }
}
@media only screen and (min-width: 1400px) {
  .slider-container__slides {
    padding: 59px 90px;
  }
}
.slider-container__slide {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  padding: 20px;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.slider-container__slide.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider-container__slide-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 25px;
  line-height: 120%;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .slider-container__slide-title {
    font-size: 32px;
  }
}
.slider-container__slide-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 179%;
  color: #fff;
}
.slider-container__slide-stat {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 44px;
  line-height: 116%;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .slider-container__slide-stat {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1400px) {
  .slider-container__slide-stat {
    font-size: 55px;
  }
}
.slider-container__slide-img {
  position: relative;
  padding: 16px 0;
}
.slider-container__slide-img img {
  border-radius: 20px;
}
@media only screen and (min-width: 1400px) {
  .slider-container__slide-img img {
    max-height: 240px;
  }
}
.slider-container__slide-img--open {
  position: absolute;
  width: 42px;
  height: 46px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  cursor: pointer;
}
.slider-container__slide-img--close {
  display: none;
  position: absolute;
  width: 27px;
  height: 27px;
  top: 9px;
  right: 15px;
}

.testimonials-section {
  margin-top: 55px;
}
@media only screen and (min-width: 768px) {
  .testimonials-section {
    margin-top: 100px;
  }
}
.testimonials-section__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
@media only screen and (min-width: 768px) {
  .testimonials-section__subtitle {
    font-size: 17px;
    line-height: 25px;
  }
}
.testimonials-section__title {
  margin-top: 10px;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
}
@media only screen and (min-width: 768px) {
  .testimonials-section__title {
    margin-top: 15px;
    font-size: 36px;
    line-height: 43px;
  }
}
.testimonials-section__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 24px;
}
@media only screen and (min-width: 992px) {
  .testimonials-section__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.testimonials-section__wrapper {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .testimonials-section__wrapper {
    width: 58%;
    max-width: 638px;
  }
}
.testimonials-section__slider {
  margin-top: 35px;
}
.testimonials-section__slider-item--title {
  background-color: #fee;
  padding: 15px 23px;
  font-weight: 500;
  font-size: 18px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}
.testimonials-section__slider-item--text {
  font-weight: 500;
  font-size: 18px;
  color: #4c4c4c;
  font-style: italic;
  line-height: 26px;
  margin-bottom: 40px;
  max-width: 648px;
}
.testimonials-section__slider-item--author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
}
.testimonials-section__slider-item--author img {
  width: 52px;
  height: 52px;
}
.testimonials-section__slider-item--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.testimonials-section__slider-item--name {
  font-size: 18px;
  font-weight: 500;
}
.testimonials-section__slider-item--position {
  font-size: 16px;
  font-weight: 400;
}
.testimonials-section__slider-button {
  position: absolute;
  bottom: 0;
  cursor: pointer;
  z-index: 9;
}
.testimonials-section__slider-button-next {
  right: 0;
}
.testimonials-section__slider-button-prev {
  right: 40px;
}
.testimonials-section__reviews {
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  background: #faf4f4;
}
@media only screen and (min-width: 1200px) {
  .testimonials-section__reviews {
    padding: 115px 65px;
    width: 41.5%;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonials-section__reviews {
    padding: 115px 100px;
  }
}
.testimonials-section__reviews-item {
  padding-bottom: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
}
.testimonials-section__reviews-item:nth-of-type(1) {
  border-bottom: 1px solid #e3e3e3;
}
.testimonials-section__reviews-item--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
  line-height: 179%;
  color: #000;
}
.testimonials-section__reviews-item--top img[src$="trustpilot-stars.png"] {
  width: 112px;
  height: 22px;
}
.testimonials-section__reviews-item--top img[src$="clutch-stars.png"] {
  width: 115px;
  height: 24px;
}
.testimonials-section__reviews-item--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.testimonials-section__reviews-item--bottom img[src$="trust-logo.png"] {
  width: 124px;
  height: 26px;
}
.testimonials-section__reviews-item--bottom img[src$="clutch-logo.png"] {
  width: 82px;
  height: 24px;
}

.contact-section {
  margin-top: 60px;
}
@media only screen and (min-width: 992px) {
  .contact-section {
    margin-top: 100px;
  }
}
.contact-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-section__wrapper {
  margin-top: 35px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 20px;
}
@media only screen and (min-width: 992px) {
  .contact-section__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
.contact-section__info-block {
  padding: 40px 70px;
  background-color: #161519;
  border-radius: 20px;
  color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .contact-section__info-block {
    min-width: 41%;
    width: 41%;
  }
}
.contact-section__form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.contact-section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.contact-section__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding: 30px;
  border: 1px solid #585858;
  border-radius: 20px;
}
.contact-section__item:nth-child(1) .contact-section__icon {
  background-image: url("../assets/icons/location-icon.png");
}
.contact-section__item:nth-child(2) .contact-section__icon {
  background-image: url("../assets/icons/phone-icon.png");
}
.contact-section__item:nth-child(3) .contact-section__icon {
  background-image: url("../assets/icons/email-icon.png");
}
.contact-section__icon {
  display: block;
  min-width: 58px;
  min-height: 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #4c4c4c;
  background-position: center center;
  background-repeat: no-repeat;
}
.contact-section__title {
  margin: 0;
  padding: 0;
  font-size: 22px;
  color: #ffffff;
  line-height: 26px;
}
.contact-section__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  word-break: break-word;
}
.contact-section a {
  color: #ffffff;
}
.contact-section a:hover {
  color: #ef4335;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 100%;
  padding: 13px 10px;
}
@media only screen and (min-width: 992px) {
  .contact-form {
    max-width: 425px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contact-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.contact-form__label {
  font-weight: 400;
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 24px;
}
.contact-form__input {
  margin-top: 9px;
  padding: 15px 20px;
  background-color: #f2f2f8;
  border: 1px solid #f2f2f8;
  border-radius: 800px;
  outline: none;
  color: #4c4c4c;
}
.contact-form__input:focus {
  border-color: #ef4335;
}
.contact-form__submit {
  border: none;
  -webkit-transition: background-color 0.3s ease-out, color 0.3s ease-out;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: initial;
}

.footer {
  margin-top: 30px;
}
.footer-container {
  width: 100%;
}
.footer-wrapper {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  border-radius: 20px;
  background: #f2f2f8;
}
@media only screen and (min-width: 576px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 992px) {
  .footer-wrapper {
    padding: 50px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1400px) {
  .footer-wrapper {
    padding: 100px 112px;
  }
}
.footer-solutions, .footer-resources {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.footer-solutions h3, .footer-resources h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #000;
}
.footer-solutions li a, .footer-resources li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #4c4c4c;
}
.footer-form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.footer-form h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #000;
}
.footer-form form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.footer-form__input {
  width: 100%;
  padding: 17px 20px 16px 20px;
  font-weight: 500;
  font-size: 14px;
  color: #4c4c4c;
  border: 1px solid #fff;
  border-radius: 50px;
}
.footer-form__socials {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer-privacy {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) {
  .footer-privacy {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer-privacy span,
.footer-privacy a {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.6px;
}
.footer-privacy__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.hero-section p {
  max-width: 536px;
  margin-top: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 179%;
  color: #4c4c4c;
}
.hero-section__container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}
@media only screen and (min-width: 992px) {
  .hero-section__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hero-section__title {
  margin-top: 15px;
}
.hero-section__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero-section__link {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero-section__link svg {
  margin-left: 4px;
  fill: #fff;
}
@media only screen and (min-width: 480px) {
  .hero-section__link {
    max-width: 307px;
  }
}

.how-section {
  margin-top: 65px;
}
.how-section__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.how-section__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-items: center;
}
@media only screen and (min-width: 992px) {
  .how-section__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.how-section__subtitle {
  margin-top: 15px;
}
.how-section__list {
  width: 100%;
  max-width: 550px;
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.how-section__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.how-section__list-number {
  font-weight: "Figtree", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 75px;
  line-height: 100%;
  color: #e3e3e3;
}
.how-section__list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.how-section__list-title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  color: #000;
}
.how-section__list-text {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 179%;
  color: #4c4c4c;
}
.how-section__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.how-section__link {
  width: 296px;
  margin: -24px auto 0;
}

.benefits-section {
  margin-top: 60px;
}
@media only screen and (min-width: 1200px) {
  .benefits-section {
    margin-top: 100px;
  }
}
.benefits-section__container {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}
@media only screen and (min-width: 992px) {
  .benefits-section__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.benefits-section__wrapper {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media only screen and (min-width: 992px) {
  .benefits-section__wrapper {
    max-width: 310px;
  }
}
@media only screen and (min-width: 1400px) {
  .benefits-section__wrapper {
    max-width: 488px;
    margin-left: auto;
  }
}
.benefits-section__wrapper p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 179%;
  color: #4c4c4c;
}
.benefits-section__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
}
.benefits-section__link {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.benefits-section__link svg {
  margin-left: 4px;
  fill: #fff;
}
@media only screen and (min-width: 480px) {
  .benefits-section__link {
    max-width: 307px;
  }
}
.benefits-section__decor {
  top: 0;
  left: 16px;
}
@media only screen and (min-width: 992px) {
  .benefits-section__decor {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.verticals-section {
  margin-top: 55px;
}
.verticals-section__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.verticals-section__subtitle {
  text-align: center;
  max-width: 210px;
}
@media only screen and (min-width: 576px) {
  .verticals-section__subtitle {
    max-width: 100%;
  }
}
.verticals-section__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media only screen and (min-width: 576px) {
  .verticals-section__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .verticals-section__list {
    margin-top: 25px;
    gap: 0;
    row-gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.verticals-section__list .bullet-list__item {
  padding: 46px 50px;
}
@media only screen and (min-width: 992px) {
  .verticals-section__list .bullet-list__item {
    max-width: 100%;
    padding: 46px 38px;
  }
}

.about-section--agency .bullet-list__item {
  width: 40%;
}

.decor-img {
  position: absolute;
  width: 77px;
  height: 70px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../assets/img/decor-stars.png");
}
@media only screen and (min-width: 576px) {
  .decor-img {
    width: 152px;
    height: 136px;
  }
}

.agency-page .hero-section__double {
  margin-top: 60px;
}
@media only screen and (min-width: 992px) {
  .agency-page .hero-section__double {
    margin-top: 100px;
  }
}
.agency-page .hero-section__double .hero-section__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media only screen and (min-width: 992px) {
  .agency-page .hero-section__double .hero-section__container {
    display: grid;
  }
}
.agency-page .hero-section__double .hero-section__decor {
  top: 0;
  left: 12px;
}
@media only screen and (min-width: 992px) {
  .agency-page .hero-section__double .hero-section__decor {
    left: 90%;
  }
}

.faq-section {
  margin-top: 16px;
}
@media only screen and (min-width: 768px) {
  .faq-section {
    margin-top: 100px;
  }
}
.faq-section__title {
  max-width: 648px;
  margin: 0 auto;
  text-align: center;
}
.faq-section__subtitle {
  text-align: center;
}
.faq-section .faq-list {
  margin-top: 16px;
  width: 100%;
  max-width: 872px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media only screen and (min-width: 768px) {
  .faq-section .faq-list {
    margin-top: 60px;
  }
}
.faq-section .faq-list__item {
  position: relative;
  width: 100%;
  cursor: pointer;
  border-radius: 20px;
  background: #faf4f4;
}
.faq-section .faq-list__item-details h3 {
  padding: 20px 50px 20px 30px;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #000;
}
.faq-section .faq-list__item-text {
  padding: 0px 30px 30px 20px;
  font-weight: 300;
  font-size: 16px;
  color: #4c4c4c;
  text-align: left;
}
.faq-section .faq-list__item-content {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}
.faq-section .faq-list__item-body {
  overflow: hidden;
}
.faq-section .faq-list__item-summary {
  width: 100%;
  color: inherit;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.faq-section .faq-list__item-summary::marker {
  list-style-type: none;
  content: "";
}
.faq-section .faq-list__btn {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 36px;
  right: 34px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (min-width: 480px) {
  .faq-section .faq-list__btn {
    top: 25px;
  }
}
.faq-section .faq-list__item-details[open] + .faq-list__item-content {
  display: grid;
  grid-template-rows: 1fr;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}
.faq-section .faq-list__btn path {
  stroke: #1c2b33;
}
.faq-section .faq-list__item-details[open] ~ .faq-list__btn {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

@media only screen and (min-width: 768px) {
  .about-us-page .hero-section {
    margin-top: 60px;
  }
}
.about-us-page .hero-section__container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 992px) {
  .about-us-page .hero-section__title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 992px) {
  .about-us-page .hero-section__wrapper {
    padding-right: 100px;
  }
}
.about-us-page .hero-section__list {
  margin-top: 21px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.about-us-page .hero-section__list .bullet-list__item {
  max-width: 90%;
  gap: 14px;
  padding: 0 12px 18px;
}
.about-us-page .hero-section__list .bullet-list__title {
  line-height: 142%;
}
.about-us-page .hero-section__img {
  position: relative;
}
.about-us-page .hero-section__decor {
  width: 130px;
  height: 116px;
  top: -60px;
  left: -100px;
}

.main-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}
.main-section__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  .main-section__text-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.main-section__title {
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
}
@media only screen and (min-width: 768px) {
  .main-section__title {
    font-size: 36px;
    line-height: 43px;
  }
}
.main-section__img {
  text-align: center;
}
.main-section__content {
  margin-top: 60px;
  font-weight: 400;
  font-size: 16px;
  color: #687693;
  line-height: 28px;
}
@media only screen and (min-width: 768px) {
  .main-section__content {
    font-size: 16px;
  }
}
.main-section__content .text-block {
  margin-top: 40px;
}
.main-section__content .text-block:nth-child(1) {
  margin-top: 20px;
}
.main-section__content h3 {
  font-weight: 600;
  color: #000000;
}
.main-section__content .table-of-contents {
  margin: 0;
  padding: 0 0 0 25px;
  text-align: left;
}
.main-section__content .table-of-contents a {
  color: #687693;
  text-decoration: underline;
}

.brands {
  padding-top: 55px;
}
.brands-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media only screen and (min-width: 992px) {
  .brands-container {
    width: 100%;
    font-size: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .brands-container {
    font-size: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .brands-wrapper {
    padding-top: 90px;
    padding-right: 90px;
  }
}
@media only screen and (min-width: 992px) {
  .brands__title {
    margin-top: 15px;
  }
}
.brands-nav {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.brands-nav__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #cacaca;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  color: #4c4c4c;
  cursor: pointer;
}
.brands-nav__btn:nth-of-type(1) {
  border-top: 1px solid #cacaca;
}
.brands-nav__btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 46px;
  height: 46px;
  background: #faf4f4;
  border-radius: 50px;
  fill: #ef4335;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.brands-nav__btn.active span {
  background: #000;
}
.brands-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media only screen and (min-width: 992px) {
  .brands-box {
    gap: 75px;
  }
}
.brands-box p {
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 179%;
  color: #4c4c4c;
}
.brands-box__list {
  padding: 24px 20px;
  border-radius: 20px;
  background: #faf4f4;
}
@media only screen and (min-width: 1400px) {
  .brands-box__list {
    padding: 30px 88px;
  }
}
.brands-box__item {
  display: none;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  gap: 15px;
}
.brands-box__item.active {
  display: grid;
}
.brands-box__item-logo {
  grid-column: span 2;
}
.brands-box__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 25px;
  line-height: 120%;
  color: #000;
}
.brands-box__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 49px;
  margin-left: auto;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 0 47px;
  width: 126px;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
}
.brands-box__item-text {
  grid-column: span 2;
}

.partnership {
  margin-top: 60px;
}
.partnership-container {
  width: 100%;
}
.partnership__title {
  text-align: center;
}
.partnership-list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 106px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 480px) {
  .partnership-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    row-gap: 36px;
  }
}
.partnership-list__item {
  width: 100%;
  max-width: 362px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.partnership-list__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  background: #f2f2f8;
}
.partnership-list__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 123%;
  text-align: center;
  color: #000;
}
.partnership-link {
  margin: 36px auto 0;
}
@media only screen and (min-width: 768px) {
  .partnership-link {
    width: 150px;
  }
}

/* Стили для модального окна */
.achievement-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.achievement-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.achievement-modal__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  -webkit-animation: modalAppear 0.3s ease;
          animation: modalAppear 0.3s ease;
}
@-webkit-keyframes modalAppear {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes modalAppear {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.achievement-modal__image {
  width: 100%;
  height: auto;
  display: block;
}
.achievement-modal__close {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  padding: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.achievement-modal__close:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.thanks-section {
  margin: 30px 0;
  text-align: center;
}
.thanks-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media only screen and (min-width: 992px) {
  .thanks-section__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
.thanks-section__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.thanks-section__img {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.thanks-section__img::after {
  display: block;
}
.thanks-section__subtitle {
  width: 100%;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
  color: #000000;
}
.thanks-section__title {
  width: 100%;
  font-weight: 600;
  font-size: 36px;
  line-height: 34px;
}
@media only screen and (min-width: 768px) {
  .thanks-section__title {
    font-size: 36px;
    line-height: 43px;
  }
}
.thanks-section__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
}

.partners-carousel {
  width: 100%;
  overflow: hidden;
}

.partners-carousel .swiper-slide {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.partner-section__partner-image {
  max-width: 100%;
  max-height: 54px;
  width: auto;
  height: auto;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

@media (min-width: 1280px) {
  .partner-section .container {
    max-width: 1400px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .partners-carousel {
    width: 100%;
    max-width: 1370px;
  }
}