/*!
Theme Name: ovva
Theme URI: http://underscores.me/
Author: Emsider
Author URI: https://emsider.ua/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ovva
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

ovva is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/

/* === fonts === */

@font-face {
  font-family: 'Mulish';
  src: url('fonts/Mulish/static/Mulish-Regular.ttf');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Mulish';
  src: url('fonts/Mulish/static/Mulish-SemiBold.ttf');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Mulish';
  src: url('fonts/Mulish/static/Mulish-Bold.ttf');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Unbounded';
  src: url('fonts/Unbounded/static/Unbounded-Regular.ttf');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Unbounded';
  src: url('fonts/Unbounded/static/Unbounded-Medium.ttf');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Unbounded';
  src: url('fonts/Unbounded/static/Unbounded-SemiBold.ttf');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Unbounded';
  src: url('fonts/Unbounded/static/Unbounded-Bold.ttf');
  font-weight: 600;
  font-style: normal;
}

/* === main === */
:root {
  --point: calc(1vw + 1vh);
  --bg-blue: #1c1e2c;
  --section-bg: #a0bbff;
  --p-color: #acacac;
  --brand-green: #13eba2;
}
* {
  margin: 0;
  padding: 0;
  font: inherit;
  box-sizing: border-box;
}
html,
body {
  position: relative;
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  background: var(--bg-blue);
  min-height: 100vh;
  font-style: normal;
  font-weight: 400;
}
section {
  position: relative;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
.btn {
  font-family: 'Unbounded', sans-serif;
  margin: 0;
}
.container {
  margin: auto;
  max-width: 100%;
  width: 1600px;
  padding: 0 42px;
  position: relative;
  z-index: 2;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min-content;
  white-space: nowrap;
  padding: 17px 30px;
  border-radius: 25.239px;
  border: 0.856px solid #313131;
  background: #222430;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 93.765%;
  transition: 0.5s;
  gap: 9px;
  text-decoration: none;
  user-select: none;
}
.btn:hover {
  cursor: pointer;
  background: #13eba2;
  color: #222;
}
.glide__bullets {
  display: block;
  bottom: -80px;
  display: flex;
  gap: 14px;
}
.glide__bullet {
  width: 16px;
  height: 16px;
  background: transparent;
  box-shadow: none;
  border: 2px solid #222;
  margin: 0;
  padding: 0;
  transition: 0.3s;
}
.glide__bullet--active {
  background: #222;
}
.card-angel {
  width: 100px;
  height: 100px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  overflow: hidden;
  transform: rotate(90deg);
}
.card-angel--item-1 {
  position: absolute;
  width: 90px;
  height: 90px;
  background: #1c1e2c;
  right: -1px;
  top: -1px;
}
.card-angel--item-2 {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  right: 60px;
  top: 0;
}
.card-angel--item-3 {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  right: 0;
  top: 60px;
}
.card-angel--item-4 {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #fff;
  right: 30px;
  top: 30px;
}
.card-angel--item-5 {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 45%;
  background: #1c1e2c;
  right: 10px;
  top: 10px;
  z-index: 2;
}
.scroll-to:hover {
  cursor: pointer;
}

/* === animations === */
@keyframes animate-first-screen {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes ticker {
  0% {
    transform: translate(100%, 0);
  }

  50% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}
@keyframes shake {
  0% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  70% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(0deg);
  }
}
/* == header === */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #1c1e2c;
  z-index: 9;
}
.page-template-thank-you .header,
.page-template-thank-you .footer {
  display: none;
  visibility: hidden;
}
header .container {
  width: 1600px;
  padding: 8px 31px 8px 31px;
  box-shadow: 0px 4px 28.2px 0px rgba(0, 0, 0, 0.25);
}
.header__box {
  display: flex;
  gap: 4px;
  height: 60px;
}
.header__logo {
  width: 170px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #f9f9f9;
}
.header__center {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
  border-radius: 20px;
  border: 1px solid #f9f9f9;
  gap: 15px;
}
.header__center--h1 {
  margin-right: auto;
  color: #f9f9f9;
  font-size: 18px;
  font-weight: 500;
  line-height: 146.9%;
}
.header__center--link {
  width: 40px;
  height: 40px;
  padding-right: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 78.125px;
  border: 0.781px solid #222;
  background: #fff;
  transition: 0.3s;
}
.header__center--link:hover {
  cursor: pointer;
  background: #13eba2;
}
.header__center--link svg {
  width: 22px;
}
.header__center--contact {
  border: 2px solid #fff;
  font-weight: 500;
  text-transform: uppercase;
  padding-top: 13px;
  padding-bottom: 13px;
}
.header__center--action {
  padding-top: 13px;
  padding-bottom: 13px;
  background: #13eba2;
  color: #121212;
  font-weight: 700;
  text-transform: uppercase;
}
.header__center--action:hover {
  background: #fff;
}
.header__menu {
  width: 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #f9f9f9;
  position: relative;
}
.header__menu:hover {
  cursor: pointer;
}
.header__menu span {
  display: block;
  width: 36px;
  height: 3px;
  background: #f9f9f9;
  border-radius: 40px;
  position: absolute;
  left: 12px;
  transition: 0.4s;
}
.header__menu span:nth-child(1) {
  top: 18.5px;
}
.header__menu span:nth-child(2) {
  top: 28px;
}
.header__menu span:nth-child(3) {
  top: 38.5px;
}
.header__menu.active span:nth-child(1) {
  top: 28px;
  transform: rotate(45deg);
}
.header__menu.active span:nth-child(2) {
  opacity: 0;
}
.header__menu.active span:nth-child(3) {
  top: 28px;
  transform: rotate(-45deg);
}
.header__pop-up {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  border-radius: 0 0 35px 35px;
  border-bottom: 1px solid #313131;
  background: #1c1e2c;
  transition: 0.5s;
  visibility: hidden;
}
.header__pop-up.active {
  height: 437px;
  visibility: visible;
}
.header__pop-up__box {
  display: flex;
  gap: 10px;
  position: relative;
  height: 437px;
  padding-top: 55px;
  padding-bottom: 57px;
}
.header__pop-up__col-1 {
  width: 13.3%;
  min-width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__pop-up__col-2 {
  padding-top: 33px;
  width: 48.5%;
  min-width: 656px;
}
.header__pop-up__col-3 {
  flex: 1;
  padding-top: 22px;
  padding-left: 53px;
  position: relative;
}
.header__pop-up__col-3::before {
  content: '';
  display: block;
  width: 1px;
  height: 257px;
  position: absolute;
  top: 0;
  left: 0;
  background: #acacac;
}
.header__pop-up--text {
  display: block;
  margin-right: 20px;
  color: #222430;
  font-family: Unbounded;
  font-size: 72.651px;
  font-style: normal;
  font-weight: 700;
  line-height: 106.765%; /* 77.566px */
  letter-spacing: 13.804px;
  text-transform: uppercase;
  transform: rotate(-90deg);
}
.header__pop-up__menu {
  margin-bottom: 50px;
  max-width: 100%;
  width: 656px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 56px;
}
.header__pop-up__menu--a {
  width: calc(50% - 28px);
  padding-left: 58px;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-family: Unbounded;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}
.header__pop-up__menu--a::before {
  content: '';
  display: block;
  width: 42px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  left: -25px;
  transition: 0.3s;
  background: url(imgs/new/header__pop-up__menu--a-before.svg);
}
.header__pop-up__menu--a:hover {
  cursor: pointer;
  color: #13eba2;
}
.header__pop-up__menu--a:hover::before {
  left: 0;
}
.header__pop-up__propositions {
  display: flex;
  gap: 20px;
}
.header__pop-up__proposition-1,
.header__pop-up__proposition-2 {
  border-color: #222430;
}
.header__pop-up__proposition-1 span {
  color: #13eba2;
}
.header__pop-up__proposition-2 span {
  color: #fff59f;
}
.header__pop-up__proposition-1:hover,
.header__pop-up__proposition-2:hover {
  background: #222430;
  color: #fff;
}
.header__pop-up__proposition-1:hover {
  border-color: #13eba2;
}
.header__pop-up__proposition-2:hover {
  border-color: #fff59f;
}
.header__pop-up--close {
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  height: calc(100vh - 76px);
  z-index: 1;
  visibility: hidden;
  display: none;
}
.header__pop-up--close:hover {
  cursor: pointer;
}
.header__pop-up--close.active {
  visibility: visible;
  display: block;
}
.contact__popup,
.contact__popup-2 {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
  overflow: hidden;
}
.contact__popup.active,
.contact__popup-2.active {
  visibility: visible;
  opacity: 1;
}
.contact__popup--close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgb(0 0 0 / 0.67);
}
.contact__popup--close:hover {
  cursor: pointer;
}
.contact__popup__box {
  width: 365px;
  height: auto;
  padding: 45px 21px 30px 21px;
  border-radius: 35px;
  border: 1px solid #313131;
  background: #1c1e2c;
  transform: translateX(100vw);
  transition: 0.6s;
  z-index: 2;
}
.contact__popup.active .contact__popup__box {
  transform: translateX(0);
}
.contact__popup--svg {
  position: absolute;
  right: -50px;
  top: 0;
  z-index: 2;
}
.contact__popup--svg rect,
.contact__popup--svg path {
  transition: 0.5s;
}
.contact__popup--svg:hover {
  cursor: pointer;
}
.contact__popup--svg:hover rect {
  fill: #13eba2;
}
.contact__popup--svg:hover path {
  stroke: #222222;
}
.contact__popup--strong {
  margin-bottom: 15px;
  color: var(--Main-Color, #13eba2);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 106.765%;
  display: block;
}
.contact__popup--p {
  margin-bottom: 21px;
  color: #f9f9f9;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 106.765%;
}
.contact__popup__box .btn {
  width: 100%;
}
.contact__popup__box .wpcf7-spinner {
  display: none;
}
.contact__popup--close {
}
.b-breadcrumbs {
  display: flex;
  gap: 30px;
  padding-left: 35px;
}
.b-breadcrumbs__item {
  padding: 2px 18px;
  border-radius: 13.5px;
  background: #222430;
  list-style: none;
  position: relative;
}
.b-breadcrumbs__item::before {
  content: '';
  display: block;
  width: 30px;
  height: 25px;
  position: absolute;
  left: -30px;
  top: 0;
  background: url('imgs/new/b-breadcrumbs__item-before.svg');
}
.b-breadcrumbs__item:first-child::before {
  width: 23px;
  height: 23px;
  left: -35px;
  top: calc(50% - 11px);
  background: url('imgs/new/b-breadcrumbs__item-before-home.svg');
}
.b-breadcrumbs__link {
  text-decoration: none;
  color: #717171;
  font-family: Mulish;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 146.9%;
  transition: 0.3s;
}
.b-breadcrumbs__item:last-child .b-breadcrumbs__link {
  color: #fff;
}
.b-breadcrumbs__item:hover {
  cursor: pointer;
}
.b-breadcrumbs__item:hover .b-breadcrumbs__link {
  color: #fff;
}

.contact__popup-2 {
}
.contact__popup-2 .contact__popup__box {
  width: auto;
  height: auto;
  padding: 30px 16px 26px 16px;
}
.contact__popup-2.active .contact__popup__box {
  transform: translateX(0);
}
.contact__popup-2--a {
  display: block;
  margin-bottom: 21px;
  text-decoration: none;
}
.contact__popup-2--a:nth-child(2) .contact__popup-2--h4 {
  color: var(--brand-green);
}
.contact__popup-2--a.d-f {
  margin-bottom: 31px;
  display: flex;
  align-items: center;
  gap: 35px;
}
.contact__popup-2--p {
  color: #acacac;
  font-size: 14px;
  font-weight: 400;
  line-height: 146.9%;
}
.contact__popup-2--h4 {
  color: #f9f9f9;
  font-size: 15px;
  font-weight: 700;
  line-height: 106.765%; /* 16.015px */
  letter-spacing: -0.075px;
  text-transform: uppercase;
}
.contact__popup-2--icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70.715px;
  background: var(--brand-green);
  transform: scale(0.6);
}

.footer {
  padding-top: 99px;
  padding-bottom: 88px;
  position: relative;
  background: #1c1e2c;
  box-shadow: 0px 4px 28.2px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
.footer::before,
.footer::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 1px;
  background: #535353;
}
.footer::before {
  top: 99px;
}
.footer::after {
  bottom: 88px;
}
.footer--copyright {
  position: absolute;
  left: 140px;
  bottom: 47px;
  font-family: Unbounded;
  color: #c2c2c2;
  font-size: 13px;
  font-weight: 500;
  line-height: 93.765%;
}
.footer .container {
  width: 1490px;
  padding: 0 20px;
  position: relative;
}
.footer__up {
  position: absolute;
  top: -76px;
  left: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #13eba2;
  font-size: 14px;
  font-weight: 500;
  line-height: 146.9%;
}
.footer__up:hover {
  cursor: pointer;
}
.footer__box {
  min-height: 370px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 35px 0;
}
.footer__col-1 {
  margin-right: 102px;
  min-width: 307px;
  width: 307px;
}
.footer__col-2 {
  margin-right: auto;
  margin-left: auto;
  width: 456px;
}
.footer__col-3 {
  width: 310px;
}
.footer__col-2,
.footer__col-3 {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  margin-bottom: 12px;
}
.footer--h6 {
  text-align: center;
  color: #5c5d67;
  font-size: 16px;
  font-weight: 500;
  line-height: 146.9%;
}
.footer__h4 {
  margin-bottom: 31px;
  color: #f9f9f9;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 146.9%;
}
.footer__links {
  display: flex;
  gap: 0 30px;
  flex-wrap: wrap;
}
.footer__link {
  margin-bottom: 13px;
  width: calc(50% - 15px);
  min-width: min-content;
  white-space: nowrap;
  color: #f9f9f9;
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 400;
  line-height: 146.9%;
  transition: 0.3s;
  text-decoration: none;
  text-transform: lowercase;
}
.footer__link:hover {
  color: #13eba2;
}
.footer__propositions {
  margin-top: auto;
}
.footer__row {
  margin-top: auto;
  display: flex;
  gap: 10px;
}
/* === front-hero-new.php === */

.hero-new {
  padding-top: 60px;
  padding-bottom: 38px;
}
.hero-new .container {
  width: 1440px;
  padding: 0 14px;
}
.hero-new__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hero-new__col-1 {
  padding-left: 19px;
  max-width: 100%;
  width: 600px;
}
.hero-new__col-2 {
  max-width: 100%;
  width: 503px;
}
.hero-new__col-3 {
  margin-top: 27px;
  width: 100%;
}
.hero-new__footer {
  width: 100%;
  position: relative;
  top: -70px;
  display: flex;
  justify-content: space-between;
  padding-left: 32px;
  padding-right: 44px;
}
.hero-new--fone {
  max-width: 100%;
  height: auto;
}
.hero-new--p-1 {
  margin-bottom: 19px;
  color: var(--p-color);
  font-size: 18px;
  line-height: 106.765%; /* 19.218px */
  letter-spacing: -0.45px;
  text-transform: uppercase;
}
.hero-new h1 {
  color: var(--brand-green);
  font-size: 90px;
  font-weight: 700;
  line-height: 120%; /* 108px */
  letter-spacing: -0.45px;
  text-transform: uppercase;
}
.hero-new--p-2 {
  padding-top: 75px;
  padding-bottom: 40px;
  max-width: 100%;
  width: 421px;
  color: var(--p-color);
  font-size: 18px;
  line-height: 146.9%;
}
.hero-new--p-2 strong {
  color: var(--brand-green);
  font-weight: 400;
}
.hero-new__footer__col-1,
.hero-new__footer__col-2 {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hero-new__footer--a {
  display: block;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70.715px;
  background: var(--brand-green);
}

/* === strategy-new.php === */

.strategy-new {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid #535353;
  background: var(--section-bg);
  padding-bottom: 143px;
}
.strategy-new .container {
  width: 1440px;
  padding: 0 20px;
}
.strategy-new__line {
  margin-top: 109px;
  margin-bottom: 101px;
  overflow: hidden;
  height: 130px;
  position: relative;
}
.strategy-new__line--text {
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  width: auto;
  transform: translate(100%, 0);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  animation: ticker 80s infinite linear forwards;
  color: #222;
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: #222;
  font-family: Unbounded;
  font-size: 88px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: 130px;
  padding-right: 10px;
}
.strategy-new__line--text:nth-child(2) {
  animation: 80s ticker 40s infinite linear forwards;
}
.strategy-new--svg {
  position: absolute;
  right: 19px;
  bottom: 0;
}
.strategy-new--svg-2 {
  position: absolute;
  top: 0;
  left: 0;
}
.strategy-new__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.strategy-new__text {
  max-width: 100%;
  min-width: 495px;
}
.strategy-new--h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
}
.strategy-new--h2 span {
  color: #222;
  display: block;
}
.strategy-new--h2 svg {
  position: relative;
  bottom: -5px;
  right: -30px;
}
.strategy-new__items {
  position: relative;
  width: 100%;
}
.strategy-new__items .glide {
  margin-left: auto;
  max-width: 100%;
  width: 769px;
}
.strategy-new__items .glide__slide {
  min-width: 175px;
  height: auto;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
.strategy-new__items .glide__bullets {
  display: none;
}
.strategy-new__item {
  height: 290px;
  width: 175px;
  /* max-width: 175px; */
  padding: 8px;
  border-radius: 35px;
  background: #fff;
}
.strategy-new__item__icon {
  margin-bottom: 37px;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  border: 1px solid #c2c2c2;
  background: #fff;
  transition: 0.5s;
}
.strategy-new__item--p {
  color: #1c1e2c;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 117.265%; /* 16.417px */
  letter-spacing: -0.35px;
  transition: 0.5s;
}
.strategy-new__item:hover {
  cursor: pointer;
}
.strategy-new__item:hover .strategy-new__item__icon {
  background: #13eba2;
}
.strategy-new__item:hover .strategy-new__item--p {
  font-weight: 700;
}
.strategy-why-new__line {
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  height: 130px;
  position: absolute;
  width: 100%;
  right: 0;
  left: auto;
  z-index: 2;
}
.strategy-new__line--text span {
  -webkit-text-stroke-width: 0.35px;
  color: transparent;
  -webkit-text-stroke-color: #222;
  font-weight: 400;
  padding: 0 23px;
}
.strategy-why-new__line .strategy-new__line--text {
  font-size: 27.335px;
}

.strategy-why-new__line .strategy-new__line--text span {
  padding: 0 10px;
}
/* === propose-new.php === */

.propose-new {
  padding-top: 111px;
  padding-bottom: 111px;
}
.propose-new .container {
  width: 1400px;
  padding: 0 19px;
}
.propose-new--h2 {
  margin-bottom: 90px;
  color: #fff;
  font-size: 60px;
  line-height: 106.765%;
  text-align: center;
}
.propose-new__box {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
}
.propose-new__item {
  width: 323px;
  height: 441px;
  padding: 11px 17px 14px 15px;
  border-radius: 35px;
  border: 1px solid #313131;
  background: #222430;
  display: flex;
  flex-direction: column;
}
.propose-new__item--svg {
  margin: 0 0 20px auto;
}
.propose-new__item--h3 {
  margin-bottom: 11px;
  height: 52px;
  color: #fff;
  font-size: 22px;
  line-height: 120%;
}
.propose-new__item--p {
  margin-bottom: 6px;
  height: 150px;
  color: #acacac;
  font-size: 14px;
  line-height: 117.265%;
  letter-spacing: -0.35px;
}
.propose-new__item--link {
  padding-bottom: 7px;
  display: block;
  position: relative;
  overflow: hidden;
  padding-left: 48px;
  color: #f9f9f9;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 93.765%; /* 13.127px */
  letter-spacing: 0.42px;
  text-decoration: none;
  transition: 0.3s;
  text-decoration: none;
}
.propose-new__item--link svg {
  position: absolute;
  top: 0;
  left: -14px;
  transition: 0.3s;
}
.propose-new__item--link:hover {
  cursor: pointer;
  color: #13eba2;
  text-decoration: underline;
}
.propose-new__item--link:hover svg {
  left: 0;
}
.propose-new__item--btn {
  margin-top: auto;
  width: 100%;
  color: #acacac;
}
.propose-new__form {
  max-width: calc(50% - 23px);
  flex: 1;
  border-radius: 35px;
  border: 1px solid #313131;
  background: #222430;
  display: flex;
  justify-content: space-between;
  padding: 35px 35px 25px 50px;
  gap: 30px;
  position: relative;
}
.propose-new__form__col-1 {
  width: calc(100% - 300px);
  display: flex;
  flex-direction: column;
  gap: 34px;
  justify-content: center;
  padding-bottom: 50px;
}
.propose-new__form__col-2 {
  width: 270px;
  display: flex;
  align-items: center;
}
.propose-new__form__col-2 .wpcf7-spinner {
  display: none;
}
.propose-new__form--h4 {
  color: var(--brand-green);
  font-size: 36px;
  font-weight: 700;
  line-height: 106.765%; /* 45.909px */
}
.propose-new__form--p {
  color: #acacac;
  font-size: 14px;
  line-height: 117.265%;
  letter-spacing: -0.35px;
}
.global-form {
  position: relative;
  max-width: 100%;
}
.global-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.global-form br {
  display: none;
}
.global-form input.wpcf7-text,
.global-form input.wpcf7-email {
  padding: 0 24px;
  display: block;
  max-width: 100%;
  width: 100%;
  height: 50px;
  border-radius: 1000px;
  border: 1px solid var(--Main-Grey, #acacac);
  background: #f9f9f9;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 117.265%; /* 28.144px */
  letter-spacing: -0.6px;
  position: relative;
  margin: 2px;
  width: calc(100% - 4px);
  z-index: 2;
}
.global-form input.wpcf7-tel {
  height: 61px;
}
.global-form span {
  margin-left: 0;
  margin-bottom: 16px;
  color: var(--Main-Grey, #acacac);
}
span.wpcf7-acceptance {
  margin-bottom: 0;
  font-size: 20px;
  color: #acacac;
  line-height: 130%;
}
.global-form span.wpcf7-acceptance .wpcf7-list-item,
.wpcf7-acceptance span {
  margin-bottom: 0;
  color: #acacac;
}
.global-form input.btn {
  margin-top: 10px;
}
.wpcf7-response-output {
  display: none;
}
/* === cases-new.php === */

.cases-new {
  padding-top: 111px;
  padding-bottom: 111px;
  border-radius: 26.297px;
  background: #a0bbff;
}
.cases-new .container {
  width: 1400px;
  padding: 0 30px;
}
.cases-new--svg-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.cases-new--svg-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.cases-new--h2 {
  margin-bottom: 2px;
  text-align: center;
  color: #111212;
  font-size: 60px;
  font-weight: 900;
  line-height: 120%;
}
.cases-new--h3 {
  margin-bottom: 73px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 50px;
  font-weight: 900;
  line-height: 120%;
}
.cases-new--h3 br {
  display: none;
}
.cases-new__case {
  position: relative;
  width: 397px;
  height: 578px;
  overflow: hidden;
  padding: 11px;
  background: #fff;
  border-radius: 35px 35px 0 35px;
}
.cases-new__case .card-angel {
  right: -1px;
  z-index: 1;
}
.cases-new__case .card-angel--item-1,
.cases-new__case .card-angel--item-5 {
  background: #a0bbff;
}
.cases-new__case--fone {
  position: absolute;
  top: 0;
  left: 0;
}
.cases-new__case--title {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
  width: 100%;
  height: 48px;
  border-radius: 22.5px;
  background: #f6f6f6;
  color: #222;
  text-align: center;
  font-family: Unbounded;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 117.265%; /* 21.108px */
  transition: 0.5s;
}
.cases-new__case--title:hover {
  background: #13eba2;
  color: #222;
}
.cases-new__case__image {
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}
.cases-new__case__image--img {
  object-fit: cover;
}
.cases-new__case__image--state {
  position: absolute;
  right: 10px;
  bottom: 8px;
  display: flex;
  align-items: center;
  width: min-content;
  padding: 8px 14px 7px 17px;
  border-radius: 31px;
  background: rgba(249, 249, 249, 0.8);
  gap: 7px;
  color: #222;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
  letter-spacing: -0.07px;
}
.cases-new__case--name {
  margin-bottom: 9px;
  padding: 0 24px 0 17px;
  display: inline-block;
  height: 53px;
  color: #222;
  font-family: Unbounded;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  transition: 0.3s;
}
.cases-new__case--name:hover {
  color: #13eba2;
  text-decoration: underline;
}
.cases-new__case__actions {
  position: relative;
  z-index: 2;
}
.cases-new__case__action {
  margin: 0 24px 6px 6px;
  padding: 12px 18px;
  border-radius: 35px;
  background: #fafafa;
  color: #222;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  width: min-content;
  white-space: nowrap;
  display: none;
}
.cases-new__case__action-1,
.cases-new__case__action-2,
.cases-new__case__action-3 {
  display: block;
}
.cases-new__case__action--strong {
  color: #222;
  font-family: Unbounded;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 106.765%; /* 19.218px */
  text-transform: uppercase;
}
.cases-new__glide {
  margin: 0 auto;
  padding-bottom: 83px;
  max-width: 100%;
  width: 1240px;
}
.cases-new__case--arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.cases-new__case--arrow-before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.archive .cases-new__case--arrow-before {
  display: none;
}
.cases-new__case--arrow rect,
.cases-new__case--arrow path {
  transition: 0.5s;
}
.cases-new__case--arrow:hover rect {
  fill: #13eba2;
}
.cases-new__case--arrow:hover path {
  fill: #222222;
}
.cases-new__glide .glide__bullets {
  bottom: -80px;
  display: flex;
  gap: 14px;
}
.cases-new__glide .glide__bullet {
  width: 16px;
  height: 16px;
  background: transparent;
  box-shadow: none;
  border: 2px solid #222;
  margin: 0;
  padding: 0;
  transition: 0.3s;
}
.cases-new__glide .glide__bullet--active {
  background: #222;
}
.cases-new__glide .glide__arrow {
  width: 48px;
  height: 48px;
  top: calc(50% - 24px);
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.cases-new__glide .glide__arrow rect {
  fill: #fff;
  transition: 0.5s;
}
.cases-new__glide .glide__arrow:hover rect {
  fill: #13eba2;
}
.cases-new__glide .glide__arrow--left {
  left: -60px;
}
.cases-new__glide .glide__arrow--right {
  right: -60px;
}
.cases-new__action {
  padding-top: 103px;
}
.cases-new--h4 {
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  line-height: 120%;
}
.cases-new--h4 span {
  color: #111212;
}
.cases-new--btn {
  margin: 0 auto;
  background: #222430;
}
.cases-new__popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100vh;
  background: rgb(0 0 0 / 0.67);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}
.cases-new__popup--fone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cases-new__popup--fone:hover {
  cursor: pointer;
}
.cases-new__popup.active {
  visibility: visible;
  opacity: 1;
}
.cases-new__popup__box {
  max-width: 100%;
  width: 540px;
  height: auto;
  padding: 55px 30px 30px 30px;
  border-radius: 35px 35px 35px 35px;
  border: 1px solid #d9d9d9;
  background: #fff;
  position: relative;
  z-index: 2;
  border-top-right-radius: 0;
}
.cases-new__popup .card-angel {
  top: -1px;
  right: -1px;
  transform: rotate(0deg);
  z-index: 1;
}
.cases-new__popup .card-angel--item-1,
.cases-new__popup .card-angel--item-5 {
  background: #a0bbff;
  background: transparent;
}
.cases-new__popup--close {
  position: absolute;
  right: 3px;
  top: 3px;
  z-index: 2;
}
.cases-new__popup--close:hover {
  cursor: pointer;
}
.cases-new__popup--close rect,
.cases-new__popup--close path {
  transition: 0.5s;
}
.cases-new__popup--close:hover rect {
  fill: #13eba2;
}
.cases-new__popup--close:hover path {
  stroke: #222222;
}
.cases-new__popup--icon {
  position: absolute;
  top: 11px;
  left: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f6f6f6;
}
.cases-new__popup .cases-new__case--name {
  margin-bottom: 11px;
  padding: 0;
  text-align: center;
  height: auto;
  position: relative;
  z-index: 2;
}
.cases-new__popup .cases-new__case__action {
  display: flex;
  white-space: normal;
  align-items: center;
  width: 100%;
  margin: 0 20px 7px 0;
  gap: 11px;
}

.cases-new__popup--text p {
  margin-bottom: 7px;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  line-height: 146.9%;
}
.cases-new__popup--text p strong {
  margin-bottom: 4px;
  font-weight: 900;
}
.cases-new__popup .cases-new__popup__actions {
  margin: 16px 0;
}
/* === founder-new.php === */

.founder-new {
  padding-top: 111px;
  padding-bottom: 111px;
  border-radius: 28px;
  border: 1px solid #efefef;
  background: #1c1e2c;
  overflow: hidden;
}
.founder-new .container {
  width: 1220px;
  padding: 0 19px;
}
.founder-new__box {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  position: relative;
}
.founder-new__col-1 {
  max-width: 330px;
  width: 30%;
}
.founder-new__col-2 {
  max-width: 745px;
  width: calc(70% - 40px);
}
.founder-new__video {
  position: relative;
}
.founder-new__video--img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.founder-new__video--btn {
  position: absolute;
  bottom: 3px;
  right: 0;
  width: 45px;
  height: 45px;
  border-radius: 164px;
  border: 1px solid #222;
  background: #13eba2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-new__video--btn svg:nth-child(1) {
  padding-left: 6px;
}
.founder-new__video--btn svg:nth-child(2) {
  display: none;
}
.founder-new__video--btn.active svg:nth-child(1) {
  display: none;
}
.founder-new__video--btn.active svg:nth-child(2) {
  display: block;
}
.founder-new--h3 {
  margin-bottom: 11px;
  max-width: 100%;
  width: 540px;
  color: var(--Main-Color, #13eba2);
  font-size: 40px;
  font-weight: 700;
  line-height: 106.765%; /* 42.706px */
  text-transform: uppercase;
}
.founder-new--text {
  margin-bottom: 35px;
}
.founder-new--text p {
  margin-bottom: 15px;
  color: #acacac;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 146.9%;
}
.founder-new--text br {
  display: block;
  margin-bottom: 20px;
}
.founder-new--text strong {
  color: #13eba2;
  font-weight: 400;
}
.founder-new__achievements {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  width: 605px;
  gap: 10px;
  justify-content: space-between;
}
.founder-new__achievement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min-content;
  white-space: nowrap;
  padding: 18px 22px 17px 21px;
  border-radius: 41px;
  background: #393a47;
  color: #f9f9f9;
  font-size: 14px;
  line-height: 146.9%;
}
.founder-new__achievement span {
  color: #fff;
  font-family: Unbounded;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 106.765%; /* 27.759px */
  text-transform: uppercase;
}
.founder__partners {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}
.founder__partners img {
  width: 120px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  /* border: 1px solid #fff;
  background: #a0bbff;
  box-shadow: 2.59324px 1.29662px 0 0 #000;
  padding: 15px 10px; */
}
.founder-new-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 0.67);
}
.founder-new-popup.active {
  visibility: visible;
  opacity: 1;
}
.founder-new-popup__box {
  position: relative;
  width: min-content;
  height: min-content;
}
.founder-new-popup--close {
  margin-bottom: 4px;
  margin-left: auto;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  border: 2.864px solid #222;
  background: #fff59f;
  box-shadow: 3.9375px 1.96875px 0 0 #000;
}
.founder-new-popup--close circle {
  transition: 0.5s;
}
.founder-new-popup--close:hover {
  cursor: pointer;
}
.founder-new-popup--close:hover circle {
  fill: var(--section-bg);
}
.founder-new-popup iframe {
}
/* === strategy-why-new.php === */

.strategy-why-new {
  padding-top: 111px;
  padding-bottom: 206px;
}
.strategy-why-new .strategy-new__item__icon {
  margin-bottom: 22px;
  height: 85px;
}
.strategy-why-new .strategy-new__item svg {
  transition: 0.5s;
}
.strategy-why-new .strategy-new__item:hover svg {
  transform: rotate(180deg);
}
.strategy-why-new .strategy-new__item--h5 {
  margin-bottom: 11px;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 106.765%;
}
.strategy-why-new .strategy-new__item--p {
  text-align: left;
}

/* === process-new.php === */

.process-new {
  padding-top: 111px;
  padding-bottom: 100px;
  border-radius: 28px;
  border: 1px solid #535353;
  background: #1c1e2c;
}
.process-new .container {
  width: 1340px;
  padding: 0 20px;
}
.process-new--h2 {
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 106.765%; /* 53.382px */
  letter-spacing: -0.25px;
  text-transform: uppercase;
}
.process-new--p {
  margin-bottom: 42px;
  color: #d9d9d9;
  text-align: center;
  font-size: 14px;
  line-height: 146.9%;
}
.process-new__box-1 {
  margin-bottom: 105px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  position: relative;
}
.process-new__item {
  max-width: 380px;
  width: calc(33.3% - 27px);
}
.process-new__item--svg-1,
.process-new__item--svg-2 {
  position: absolute;
  top: -11px;
}
.process-new__item--svg-1 {
  left: 24%;
}
.process-new__item--svg-2 {
  right: 24%;
}
.process-new__item--img {
  display: block;
  margin: 0 auto 17px auto;
}
.process-new__item--h4 {
  margin-bottom: 14px;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 106.765%; /* 23.488px */
  text-transform: uppercase;
}
.process-new__item--p {
  color: #acacac;
  text-align: center;
  font-size: 14px;
  line-height: 146.9%;
}
.process-new__box-2 {
  display: flex;
  gap: 27px;
  align-items: center;
}
.process-new--text {
  width: 475px;
  max-width: calc(50% - 148px);
  color: #fff;
  text-align: center;
  font-family: Unbounded;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 146.9%;
}
.process-new--text span {
  color: #13eba2;
}
.process-new--btn {
  width: 282px;
  height: 50px;
  justify-self: center;
  color: #13eba2;
  text-transform: uppercase;
  font-weight: 500;
}
.context-landing .process-new--btn {
  background: #13eba2;
  color: #222;
}
.page-template-template-context header .contact-new__row .contact-new__row--a:nth-child(3) {
  display: none;
}
/* === reviews-new.php === */

.reviews-new {
  padding-top: 111px;
  padding-bottom: 90px;
  border-radius: 26.297px;
  background: #a0bbff;
}
.reviews-new .container {
  width: 1400px;
  padding: 0 19px;
}
.reviews-new--h2 {
  margin-bottom: 9px;
  text-align: center;
  color: #222;
  font-size: 60px;
  font-weight: 700;
  line-height: 106.765%; /* 64.059px */
  text-transform: uppercase;
}
.reviews-new--p {
  margin-bottom: 60px;
  color: #222;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 146.9%;
}
.reviews-new__glide {
  margin: 0 auto;
  position: relative;
  width: 1017px;
  max-width: 100%;
}
.reviews-new__item {
  margin-bottom: 70px;
  width: 323px;
  height: 441px;
  position: relative;
  padding: 10px 7px;
}
.reviews-new__item--fone {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.reviews-new__item--company {
  position: absolute;
  top: 18px;
  left: 21px;
  z-index: 3;
  width: 96px;
  height: 37px;
  padding: 8px 17px;
  border-radius: 18.5px 18px 18px 18.5px;
  background: #13eba2;
}
.reviews-new__item--company img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
.reviews-new__item--img {
  margin-bottom: 23px;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  object-fit: cover;
}
.reviews-new__item--h5 {
  margin-bottom: 15px;
  padding-left: 15px;
  position: relative;
  z-index: 2;
  color: #222;
  font-size: 22px;
  font-weight: 700;
  line-height: 106.765%; /* 23.488px */
  text-transform: uppercase;
}
.reviews-new__item--p {
  padding-left: 15px;
  position: relative;
  z-index: 2;
  color: #222;
  font-size: 14px;
  line-height: 106.765%; /* 14.947px */
  letter-spacing: -0.07px;
}
.reviews-new__item--btn {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.reviews-new__item--btn rect {
  transition: 0.4s;
}
.reviews-new__item:hover .reviews-new__item--btn rect {
  cursor: pointer;
  fill: #13eba2;
}
.reviews-new .glide__slide {
  width: min-content;
}
.reviews-new .glide__bullets {
  display: none;
}
.reviews-new--btn {
  margin: 0 auto;
  text-transform: uppercase;
}
.reviews-new-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 0.67);
}
.reviews-new-popup.active {
  visibility: visible;
  opacity: 1;
}
.reviews-new-popup__box {
  position: relative;
  width: min-content;
  height: min-content;
}
.reviews-new-popup--close {
  margin-bottom: 4px;
  margin-left: auto;
}
.reviews-new-popup--close rect,
.reviews-new-popup--close path {
  transition: 0.5s;
}
.reviews-new-popup--close:hover {
  cursor: pointer;
}
.reviews-new-popup--close:hover rect {
  fill: #13eba2;
}
.reviews-new-popup--close:hover path {
  stroke: #222222;
}
/* === faq-new.php === */

.faq-new {
  padding-top: 111px;
  padding-bottom: 86px;
  background: #1c1e2c;
  border-radius: 28px;
  border: 1px solid #535353;
}
.faq-new .container {
  width: 1020px;
  padding: 0 18px;
}
.faq-new--h2 {
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 106.765%; /* 64.059px */
  text-transform: uppercase;
}
.faq-new--p {
  margin-bottom: 37px;
  color: #f9f9f9;
  text-align: center;
  font-size: 14px;
  line-height: 146.9%; /* 20.566px */
}
.faq-new__box__item {
  margin-bottom: 10px;
  position: relative;
  padding: 8px 0;
}
.faq-new__box__item::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 28px;
  background: #535353;
  position: absolute;
  top: 40px;
  left: 0;
  transition: 0.5s;
}
.faq-new__box__item.active::before {
  width: 0;
}
.faq-new__box__item--h3 {
  max-width: calc(100% - 100px);
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 106.765%;
}
.faq-new__box__item.active .faq-new__box__item--h3 {
  color: #13eba2;
}
.faq-new__box__item--text {
  height: 0;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  width: 815px;
  max-width: calc(100% - 100px);
  font-family: Mulish;
}
.faq-new__box__item--text div {
  padding: 13px 0 28px 62px;
  color: #acacac;
  font-size: 14px;
  font-weight: 400;
  line-height: 146.9%;
}

.faq-new__box__item.active .faq-new__box__item--text {
  height: 100%;
}
.faq-new__box__item--btn {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 13px;
  right: 17px;
  transition: 0.5s;
}
.faq-new__box__item--btn svg:nth-child(2) {
  display: none;
}
.faq-new__box__item.active .faq-new__box__item--btn {
  top: 18px;
}
.faq-new__box__item.active .faq-new__box__item--btn svg:nth-child(1) {
  display: none;
}
.faq-new__box__item.active .faq-new__box__item--btn svg:nth-child(2) {
  display: block;
}

/* === contact-new.php === */

.contact-new {
  background: #1c1e2c;
  padding-top: 111px;
  padding-bottom: 180px;
}
.contact-new .container {
  width: 1140px;
  padding: 0 20px;
}
.contact-new--h2 {
  margin-bottom: 40px;
  text-align: center;
  color: #13eba2;
  font-size: 50px;
  font-weight: 700;
  line-height: 106.765%;
}
.contact-new__box {
  width: 100%;
  display: flex;
  gap: 41px;
  justify-content: space-between;
  padding: 73px 75px 63px 101px;
  border-radius: 28px;
  background: #222430;
  position: relative;
}
.contact-new__box::before {
  content: '';
  display: block;
  width: 1px;
  height: calc(100% - 134px);
  position: absolute;
  top: 63px;
  left: calc(50% + 56px);
  background: var(--Main-Grey, #acacac);
}
.contact-new__col-1 {
  max-width: 100%;
  width: 475px;
  padding-top: 11px;
}
.contact-new__form {
  position: relative;
}
.contact-new__form br {
  display: none;
}
.wpcf7-form-control-wrap {
  margin-bottom: 16px;
}
.wpcf7-acceptance {
  position: relative;
  display: block;
}
.wpcf7-acceptance::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}
.contact__popup.show-acceptance .wpcf7-acceptance::before {
  display: none;
}
.contact-new__form input.wpcf7-text {
  margin-bottom: 6px;
  display: block;
  width: 100%;
  height: 61px;
  padding: 24px;
  border-radius: 1000px;
  border: 1px solid var(--Main-Grey, #acacac);
  background: #f9f9f9;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 117.265%; /* 28.144px */
  letter-spacing: -0.6px;
}
.contact-new__form input.wpcf7-text#hidden-field {
  display: none;
}
.contact-new__form .btn {
  margin-top: 22px;
  background: #13eba2;
  color: #222;
}
.contact-new__col-2 {
  max-width: 100%;
  width: 386px;
}
.contact-new__a {
  display: block;
  margin-bottom: 26px;
  text-decoration: none;
}
.contact-new__a--span {
  color: #acacac;
  font-size: 14px;
  line-height: 146.9%;
  text-decoration: none;
}
.contact-new__a--p {
  color: #f9f9f9;
  font-family: Unbounded;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 106.765%; /* 23.488px */
  text-transform: uppercase;
  transition: 0.3s;
}
.contact-new__a:hover .contact-new__a--p {
  cursor: pointer;
  color: #13eba2;
}
.contact-new__row {
  margin-top: 8px;
  display: flex;
  gap: 21px;
  align-items: center;
}
.contact-new__row--a {
  display: flex;
  width: 34.115px;
  height: 34.115px;
  padding: 8.119px 8.304px 8.42px 8.235px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 53.305px;
  background: #13eba2;
}

/*  === context-hero.php === */

.context-hero {
  padding-top: 85px;
  padding-bottom: 45px;
  border-radius: 28px;
  border: 1px solid #313131;
  background: #1c1e2c;
}
.context-hero .container {
  width: 1440px;
  padding: 0 31px;
}
.context-hero__box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.context-hero__col-1 {
  width: calc(100% - 440px);
  max-width: 834px;
}
.context-hero__col-2 {
  width: 400px;
  display: flex;
  flex-direction: column;
}
.context-hero h1 {
  margin-bottom: 13px;
  color: #fff59f;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
}
.context-hero h1 span {
  display: block;
  color: #13eba2;
  text-transform: uppercase;
}
.context-hero__p {
  margin: 0 42px 55px auto;
  max-width: 100%;
  width: 510px;
  position: relative;
  color: #f9f9f9;
  font-size: 20px;
  line-height: 120%;
}
.context-hero__p--svg {
  position: absolute;
  top: calc(50% - 20px);
  left: -136px;
}
.context-hero__advantages {
  margin: 0 0 78px 8px;
  display: flex;
  flex-wrap: wrap;
  width: 821px;
  max-width: 100%;
  gap: 10px;
}
.context-hero__advantage {
  position: relative;
  z-index: 2;
  width: 267px;
  padding: 22px 52px 22px 20px;
  border-radius: 28px;
  border: 1px solid #313131;
  background: #222430;
  color: #fff59f;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}
.context-hero__advantage:hover {
  z-index: 3;
}
.context-hero__advantage--icon {
  position: absolute;
  right: 8px;
  bottom: 11px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99.55px;
  border: 0.996px solid #222;
  background: #13eba2;
  color: #222;
  text-align: center;
  font-family: Unbounded;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  text-transform: lowercase;
}
.context-hero__advantage--icon::before {
  content: '';
  display: block;
  width: 300%;
  height: 40px;
  top: -30px;
  position: absolute;
  left: -150%;
}
.context-hero__advantage--tooltip {
  position: absolute;
  right: -241px;
  bottom: 60px;
  width: 307px;
  height: auto;
  border-radius: 5px;
  padding: 19px 10px 20px 13px;
  background: #fff;
  color: #222;
  font-size: 10px;
  font-weight: 400;
  line-height: 130%;
  opacity: 0;
  transition: all 0.4s ease;
  visibility: hidden;
}
.context-hero__advantage--tooltip:before {
  content: '';
  border-width: 10px 8px 0 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;

  transform: translateY(20px);
  position: absolute;
  left: 38px;
  bottom: 11px;
  z-index: 3;
}
.context-hero__advantage--icon:hover {
  cursor: pointer;
}
.context-hero__advantage--icon:hover ~ .context-hero__advantage--tooltip {
  opacity: 1;
  transform: translateY(-2px);
  animation: 500ms ease-in-out forwards;
  visibility: visible;
}

.context-hero--h4 {
  color: #13eba2;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}
.context-hero--h4 span {
  color: #fff;
}
.context-hero__btns {
  margin-left: 6px;
  max-width: 100%;
  margin-top: 17px;
  width: 584px;
  display: flex;
  gap: 11px;
  align-items: center;
}
.hero__btn-1 {
  background: #13eba2;
}
.hero__btn-2 {
  background: #fff59f;
}
.hero__btn-3 {
  background: #fff;
}
.hero__btn-1,
.hero__btn-2,
.hero__btn-3 {
  border-radius: 52.24px;
  color: #222;
  font-weight: 500;
}
.hero__btn-2:hover,
.hero__btn-1:hover {
  color: #222;
  background: #fff;
}
.hero__btn-3:hover {
  background: #fff59f;
}
.context-free-popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: rgb(0 0 0 / 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.context-free-popup.active {
  opacity: 1;
  visibility: visible;
}
.context-free-popup--fone {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.context-free-popup--fone:hover {
  cursor: pointer;
}
.context-free-popup__box {
  width: 486px;
  height: auto;
  padding-top: 31px;
  border-radius: 39px;
  background: #849fe6;
  box-shadow: 5px 4px 39px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 2;
  transform: translateX(100vw);
  transition: 0.6s;
}
.context-free-popup.active .context-free-popup__box {
  transform: translateX(0);
}
.context-free-popup-close {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
}
.context-free-popup-close:hover {
  cursor: pointer;
}
.context-free-popup-close circle {
  transition: 0.3s;
}
.context-free-popup-close:hover circle {
  fill: #13eba2;
}
.context-free-popup-fone-1,
.context-free-popup-fone-2,
.context-free-popup-fone-3 {
  position: absolute;
  top: -24px;
  z-index: 1;
}
.context-free-popup-fone-1 {
  left: -3px;
}
.context-free-popup-fone-2 {
  left: 160px;
}
.context-free-popup-fone-3 {
  left: 323px;
}
.context-free-popup-form {
  display: none;
}
.context-free-popup-form.active {
  display: block;
}
.context-free-popup--h5 {
  position: relative;
  z-index: 2;
  color: #222;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 134.9%;
}
.context-free-popup--h3 {
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
  color: #222;
  text-align: center;
  font-size: 28.91px;
  font-weight: 700;
  line-height: 122%; /* 35.27px */
  text-transform: uppercase;
}
.context-free-popup__body {
  border-radius: 6px;
  background: #fff;
  padding: 26px 13px 13px 13px;
}
.context-free-popup__checkboxes p {
  display: block;
  width: 100%;
}
.context-free-popup__checkboxes,
.context-free-popup__checkboxes .wpcf7-form-control {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 13px;
}
.context-free-popup__checkbox,
.context-free-popup__checkboxes .wpcf7-list-item {
  margin: 0;
  width: calc(50% - 8px);
  padding-right: 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #222;
  font-size: 13px;
  font-weight: 400;
  line-height: 105%;
  position: relative;
}
.checkbox-box,
.context-free-popup__checkboxes input {
  width: 27px;
  height: 27px;
  min-width: 27px;
  min-height: 27px;
  position: relative;
  background: #fff;
  border: 1px solid #acacac;
  z-index: 5;
}
.context-free-popup__checkboxes input {
  opacity: 0;
}
.wpcf7-list-item-label a,
.wpcf7-list-item-label:visited {
  color: #13eba2;
}
.context-free-popup__checkboxes .wpcf7-list-item-label::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 27px;
  background: #fff;
  border: 1px solid #acacac;
}
.checkbox-box input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.checkbox-box input:hover {
  cursor: pointer;
}
.checkbox-box--pseudo,
.context-free-popup__footer .wpcf7-list-item-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #13eba2;
  border: 1px solid #acacac;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.2s;
}
.checkbox-box--pseudo::before,
.context-free-popup__footer .wpcf7-list-item-label::before,
.context-free-popup__checkboxes .wpcf7-list-item-label::after {
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  background: url('imgs/new/checkbox-box--pseudo.svg');
}
.context-free-popup__checkboxes .wpcf7-list-item-label::after {
  position: absolute;
  top: 2px;
  left: 2px;
  opacity: 0;
}
.checkbox-box input:checked ~ .checkbox-box--pseudo,
.context-free-popup__footer .checkbox-box input:checked ~ .wpcf7-list-item-label,
.wpcf7-list-item input:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}
.context-free-popup__checkboxes .wpcf7-list-item input:checked ~ .wpcf7-list-item-label::before {
  background: #13eba2;
  border: 1px solid #acacac;
}
.checkbox-box p,
.checkbox-box .wpcf7-form-control-wrap {
  position: static;
}
.context-free-popup__footer .wpcf7-spinner {
  display: none;
}
.context-free-popup__footer {
  border-radius: 33px;
  background: #f9f9f9;
  padding: 21px 19px 23px 19px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px 8px;
}
.context-free-popup__footer__item {
  display: flex;
  align-items: flex-start;
  width: calc(50% - 4px);
  position: relative;
}
.input-standart {
  display: block;
  width: 100%;
  height: 50px;
  padding: 18px 24px;
  border-radius: 1000px;
  border: 1px solid var(--Main-Grey, #acacac);
  background: #f9f9f9;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 117.265%; /* 14.072px */
  letter-spacing: -0.3px;
}
.privacy-box {
  display: flex;
  align-items: center;
  gap: 11px;
}
.privacy-box--p {
  color: #222;
  font-size: 9px;
  font-weight: 400;
  line-height: normal;
}
.privacy-box--p a {
  color: #1748c5;
}
.context-free-popup__footer .btn {
  width: 100%;
  height: 50px;
  border-radius: 2800px;
  background: #13eba2;
  color: #222;
}
.context-hero__card {
  margin-bottom: 62px;
  width: 397px;
  /* height: 578px; */
  background: #fff;
  border-radius: 35px 35px 0 35px;
  position: relative;
  overflow: hidden;
  padding: 10px 10px 23px 13px;
}
.context-hero__card--img-1 {
  display: block;
  margin: 0 auto 10px auto;
  border-radius: 10px;
}
.context-hero__card--img-2 {
  display: block;
  margin: 0 auto 21px auto;
}
.context-hero__card__types {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: relative;
  z-index: 2;
}
.context-hero__card__type {
  width: min-content;
  white-space: nowrap;
  border-radius: 68.078px;
  background: #fafafa;
  padding: 7px 5px;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  line-height: 146.9%;
  font-family: Mulish;
}
.context-hero__card__type:first-child {
  padding-left: 16.5px;
  padding-right: 16.5px;
  background: #13eba2;
  text-transform: uppercase;
}
.context-hero__card--a {
  width: 46px;
  height: 46px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  border-radius: 70.715px;
  background: #13eba2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.context-hero__card .card-angel {
  bottom: -5px;
  right: -5px;
}
.context-hero__partners {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 33px;
  align-items: center;
}
.context-hero--arrow {
  position: absolute;
  bottom: 5px;
  left: calc(50% - 20px);
  width: 40px;
  height: 40px;
}
.context-hero--arrow path {
  transition: 0.3s;
}
.context-hero--arrow:hover {
  cursor: pointer;
}
.context-hero--arrow:hover path {
  fill: #13eba2;
}

/* === pack.php === */

.pack {
  padding: 111px 0;
  border-radius: 49px;
  border: 1px solid #313131;
  background: #1c1e2c;
}
.pack .container {
  width: 1400px;
  padding: 0 11px;
}
.pack--h2 {
  margin-bottom: 36px;
  color: #fff;
  font-family: Unbounded;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 52px */
  letter-spacing: -0.2px;
}
.pack--h2 span {
  color: #fff59f;
}
.pack--h2 b {
  text-decoration: underline;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.pack--h2 strong {
  color: #222;
}
.pack--p {
  margin: 0 auto 70px auto;
  position: relative;
  max-width: 100%;
  width: 425px;
  padding-left: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%; /* 32.5px */
  letter-spacing: -0.125px;
}
.pack .pack--p span {
  color: #13eba2;
}
.pack-conversions .pack--p span {
  color: #fff59f;
}
.pack--p svg {
  position: absolute;
  top: calc(50% - 20px);
  left: -134px;
}
.pack__box {
  margin-bottom: 70px;
  display: flex;
  gap: 33px;
}
.pack__happines {
  max-width: 1050px;
  flex: 1;
  border-radius: 28px;
  border: 1px solid #313131;
  background: #fff;
  padding: 32px 25px 35px 23px;
}
.pack__happines--h5 {
  margin-bottom: 4px;
  padding-left: 26px;
  color: #222;
  font-size: 24px;
  font-weight: 700;
  line-height: 106.765%; /* 25.624px */
  letter-spacing: -0.12px;
  text-transform: uppercase;
}
.pack__happines--h6 {
  margin-bottom: 19px;
  padding-left: 26px;
  color: #222;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.09px;
}
.pack__happines__item {
  margin-bottom: 10px;
  width: 100%;
  padding: 17px 65px;
  border-radius: 28px;
  background: #fafafa;
  position: relative;
}
.pack__happines__item--btn {
  position: absolute;
  top: 16px;
  left: 24px;
  width: 20px;
  height: 20px;
}
.pack__happines__item--btn span {
  position: absolute;
  width: 20px;
  height: 4px;
  background: #13eba2;
  transition: 0.4s;
  top: 8px;
  left: 0;
}
.pack__happines__item--btn span:nth-child(2) {
  transform: rotate(90deg);
}
.pack__happines__item--btn:hover {
  cursor: pointer;
}
.pack__happines__item.active .pack__happines__item--btn span {
  background: #222;
}
.pack__happines__item.active .pack__happines__item--btn span:nth-child(2) {
  transform: rotate(0deg);
}
.pack__happines__item--title {
  color: #222;
  font-size: 18px;
  font-weight: 400;
  line-height: 106.765%; /* 19.218px */
  letter-spacing: -0.09px;
}
.pack__happines__item.active .pack__happines__item--title {
  font-weight: 500;
}
.pack__happines__item--text {
  margin-left: 71px;
  max-width: 100%;
  width: 671px;
  height: 0;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}
.pack__happines__item--text p {
  padding-top: 10px;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  line-height: 146.9%;
}
.pack__pdf {
  width: 377px;
  height: 100%;
  padding: 38px 23px 28px 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 28px;
  border: 1px solid #313131;
  background: #a0bbff;
  transition: 0.5s;
}
.pack__pdf--h4 {
  color: #222;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}
.pack__pdf--img {
  display: block;
  margin: auto;
  max-width: 100%;
}
.pack__pdf--btn {
  margin: 0 auto;
}
.pack--h2-bonus {
  margin: 0 auto 37px auto;
  text-align: center;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 130%; /* 52px */
}
.pack__bonuses {
  margin-bottom: 123px;
  display: flex;
  gap: 15px;
  justify-content: center;
}
.pack__bonus {
  width: 328px;
  height: 130px;
  position: relative;
  padding: 14px 10px 15px 89px;
  border-radius: 35px;
  border: 1px solid #c2c2c2;
  background: #fff;
}
.pack__bonus__icon {
  position: absolute;
  top: 7px;
  left: 6px;
  width: 64px;
  height: 116px;
  border-radius: 28px;
  border: 1px solid #c2c2c2;
  background: #13eba2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pack__bonus--h5 {
  margin-bottom: 12px;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 106.765%; /* 19.218px */
  letter-spacing: -0.09px;
}
.pack__bonus--p {
  max-width: 167px;
  color: #222;
  font-size: 14px;
  line-height: 117.265%; /* 16.417px */
  letter-spacing: -0.35px;
}
.pack__bonus--p span {
  font-weight: 700;
}
.pack__bonus-last {
  padding-left: 67px;
  padding-right: 17px;
  display: flex;
  align-items: center;
}
.pack__bonus-last .pack__bonus--p {
  max-width: 100%;
}
.pack__bonus--svg {
  position: absolute;
  top: 47px;
  left: 24px;
}
.pack__bonus--plus {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 30px;
  height: 30px;
  border-radius: 99.55px;
  background: #13eba2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-family: Unbounded;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  text-transform: lowercase;
  display: none;
}
.pack__tab {
  margin: 0 auto;
  max-width: 100%;
  width: 1050px;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 27px;
  background: #a0bbff;
  position: relative;
}
.pack__tab--svg {
  position: absolute;
  left: 46px;
  top: -73px;
}
.pack__h3 {
  flex: 1;
  margin-left: 41px;
  margin-top: 11px;
  color: #222;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}
.pack__h3 span {
  color: #fff;
}
.pack__tab__box {
  width: 613px;
  padding: 14px 17px 10px 17px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 6px;
  border-radius: 26px;
  background: #fafafa;
}
.pack__tab--h4 {
  width: 100%;
  color: #222;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 146%; /* 29.2px */
}
.pack__tab--btn-1,
.pack__tab--btn-1:hover {
  background: #13eba2;
  color: #222;
}
.pack__tab--btn-2,
.pack__tab--btn-2:hover {
  background: #fff59f;
  color: #222;
}
.pack__tab--btn-1,
.pack__tab--btn-2 {
  border-radius: 52.24px;
  color: #222;
  font-weight: 500;
  border-color: transparent;
}

.pack-conversions {
  padding-top: 71px;
  background: #849fe7;
  border-radius: 28px;
  border: 1px solid #d9d9d9;
}
.pack-conversions .pack--h2 {
  width: 1090px;
  margin: 0 auto 36px auto;
  max-width: 100%;
}
.pack-conversions .pack__happines {
  border-color: transparent;
}
.pack-conversions .pack--p {
  color: #222;
}
.pack-conversions .pack__box {
  justify-content: center;
}
.pack-conversions .pack--h2-bonus {
  color: #222;
}
.pack-conversions .pack__tab {
  background: #fff;
}
.pack-conversions .pack__h3 span {
  color: #849fe7;
}
.pack-conversions .pack__tab__box {
  background: #fafafa;
  width: 633px;
  padding-left: 8px;
  padding-right: 8px;
}

.services {
  padding-top: 117px;
  padding-bottom: 80px;
  border-radius: 28px;
  background: #1c1e2c;
}
.services .container {
  width: 1400px;
  padding: 0 19px;
}
.services--h2 {
  margin: 0 auto 60px auto;
  max-width: 100%;
  width: 1008px;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 106.765%;
  text-align: center;
}
.services--h2 span {
  color: #fff59f;
}
.services__box {
  margin-bottom: 85px;
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  justify-content: center;
}
.services__box .glide__slides {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
}
.services__box .glide__slide {
  width: 323px;
  height: 350px;
}
.services__box .glide__bullets {
  display: none;
}
.services__item {
  width: 323px;
  height: 350px;
  padding: 22px 23px 10px 15px;
  position: relative;
  border-radius: 35px;
  border: 1px solid #313131;
  background: #222430;
}
.services__item svg {
  display: block;
}
.services__item--h3 {
  position: absolute;
  padding-right: 23px;
  left: 15px;
  bottom: 140px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
}
.services__item--span {
  position: absolute;
  left: 15px;
  bottom: 126px;
  width: 86px;
  height: 10px;
  display: block;
  border-radius: 24px;
  background: #13eba2;
  transition: 0.3s;
}
.services__item:hover .services__item--span {
  width: 150px;
}
.services__item--p {
  padding-right: 23px;
  position: absolute;
  top: 241px;
  left: 15px;
  color: #acacac;
  font-size: 14px;
  line-height: 117.265%; /* 16.417px */
  letter-spacing: -0.35px;
}
.services__footer {
  max-width: 100%;
  width: 1174px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.services__footer__col-1,
.services__footer__col-2 {
  width: calc(50% - 10px);
}
.services__footer__col-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
.services__footer--h4 {
  margin-bottom: 14px;
  color: #fff59f;
  font-size: 30.151px;
  font-weight: 700;
  line-height: 106.765%; /* 32.19px */
  letter-spacing: -0.151px;
  text-transform: uppercase;
}
.services__footer--h5 {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 146.9%;
}
.services__footer--h5 span {
  color: #fff59f;
}
.services__footer--btn-1 {
  background: #13eba2;
}
.services__footer--btn-2 {
  background: #fff59f;
  text-transform: uppercase;
}
.services__footer--btn-2,
.services__footer--btn-1 {
  border-radius: 52.24px;
  color: #222;
  font-weight: 500;
  flex: 1;
}
.services__footer--btn-2:hover,
.services__footer--btn-1:hover {
  color: #222;
  background: #fff;
}

/* === action.php === */

.action {
  padding-top: 150px;
  padding-bottom: 170px;
}
.action .container {
  width: 1065px;
  padding: 0 20px;
}
.action__box {
  margin-bottom: 25px;
  padding: 32px 47px 32px 50px;
  display: flex;
  align-items: center;
  gap: 36px;
  border-radius: 28px;
  background: #222430;
}
.action--h4 {
  margin-right: auto;
  max-width: 100%;
  width: 360px;
  color: #f9f9f9;
  font-size: 22px;
  font-weight: 700;
  line-height: 106.765%;
}
.action--btn {
  border-radius: 25.239px;
  border: 0.856px solid #313131;
  background: #13eba2;
  text-transform: uppercase;
  color: #222;
}
.action--btn:hover {
  background: #fff;
}
.action--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
}
.action--icon:hover {
  background: #13eba2;
}
.action__p {
  max-width: 100%;
  width: 940px;
  color: #f9f9f9;
  text-align: center;
  font-size: 14px;
  line-height: 146.9%;
}
.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-not-valid-tip {
  font-size: 12px !important;
  position: static;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  border-radius: 1000px;
  z-index: 1;
}

/* === service.hero.php === */

.service-hero {
  padding-top: 35px;
  padding-bottom: 126px;
}
.service-hero .container {
  width: 1400px;
  padding: 0 18px;
}
.service-hero__box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 111px;
}
.service-hero__col-1 {
  width: 700px;
  max-width: calc(100% - 562px);
}
.service-hero__col-2 {
  width: 542px;
  max-width: 100%;
}
.service-hero--h1 {
  margin-bottom: 11px;
  color: var(--Main-Color, #13eba2);
  font-size: 50px;
  font-weight: 700;
  line-height: 106.765%;
}
.service-hero--p {
  margin-bottom: 50px;
  max-width: 100%;
  width: 637px;
  color: #acacac;
  font-size: 14px;
  line-height: 146.9%;
}
.service-hero__btns {
  display: flex;
  gap: 23px;
  width: 500px;
  max-width: 100%;
}
.service-hero--btn-1 {
  background: #13eba2;
  border-radius: 52.24px;
}
.service-hero__items {
  display: flex;
  flex-wrap: wrap;
  gap: 19px 14px;
}
.service-hero__item {
  width: 500px;
  max-width: 100%;
  border-radius: 28px;
  background: #222430;
  padding: 17px 5px 17px 32px;
}
.service-hero__item--h5 {
  margin-bottom: 7px;
  padding-left: 36px;
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 117.265%;
}
.service-hero__item--h5::before {
  content: '';
  display: block;
  width: 18px;
  height: 8px;
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
  background: url(imgs/new/service-hero__item--h5.svg);
}
.service-hero__item--p {
  color: #acacac;
  font-size: 14px;
  line-height: 120%; /* 16.8px */
  letter-spacing: -0.35px;
}

/* === why-service.php === */

.why-service {
  padding-top: 111px;
  padding-bottom: 66px;
}
.why-service .container {
  width: 1050px;
  padding: 0 25px;
}
.why-service--h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 106.765%;
  text-align: center;
}
.why-service--p {
  margin: 0 auto;
  max-width: 100%;
  color: #f9f9f9;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 146.9%;
}
.why-service--p-1 {
  width: 663px;
}
.why-service--p-2 {
  width: 947px;
}
.why-service__box {
  padding-top: 84px;
  padding-bottom: 142px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.why-service__item {
  width: calc(50% - 12px);
  height: 190px;
  display: flex;
  gap: 55px;
  align-items: center;
  padding: 15px 70px 15px 16px;
  border-radius: 28px;
  background: #222430;
}
.why-service__item__icon {
  width: 102px;
  min-width: 102px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: #13eba2;
}
.why-service__item--h5 {
  color: #f9f9f9;
  font-size: 22px;
  font-weight: 700;
  line-height: 146.9%;
}
.why-service__tab {
  margin: 0 auto 25px auto;
  width: 1025px;
  max-width: 100%;
  height: 110px;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  gap: 37px;
  border-radius: 28px;
  background: #222430;
}
.why-service__tab--h5 {
  max-width: 365px;
  margin-right: auto;
  color: #f9f9f9;
  font-size: 22px;
  font-weight: 700;
  line-height: 106.765%;
}
.why-service__tab--btn {
  margin-right: 13px;
  border: 0.856px solid #313131;
  background: #13eba2;
  color: #222;
  text-transform: uppercase;
}
.why-service__tab--btn:hover {
  background: #fff;
}
.why-service__tab--link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 78.361px;
  background: #fff;
  transition: 0.3s;
}
.why-service__tab--link:hover {
  background: var(--brand-green);
}

/* === prices.php === */

section.prices {
  padding-top: 111px;
  padding-bottom: 111px;
}
section.prices .container {
  width: 1400px;
  padding: 0 18px;
}

.prices__box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.prices__col-1 {
  width: 510px;
  max-width: calc(100% - 741px);
}
.prices__col-2 {
  width: 711px;
  max-width: 100%;
  display: flex;
  gap: 23px;
  flex-wrap: wrap;
}
.prices--h3 {
  margin-bottom: 23px;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 106.765%; /* 53.382px */
  letter-spacing: -0.25px;
  text-transform: uppercase;
}
.prices--p {
  margin-bottom: 23px;
  color: #acacac;
  font-size: 14px;
  font-weight: 400;
  line-height: 146.9%;
}
.prices__btns {
  display: flex;
  width: 510px;
  max-width: 100%;
  gap: 23px;
  flex-wrap: wrap;
}
.prices__item {
  width: 344px;
  max-width: 100%;
  padding: 30px 11px 55px 11px;
  border-radius: 35px;
  border: 1px solid #313131;
  background: #222430;
}
.prices--h4 {
  margin-bottom: 13px;
  padding-left: 23px;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
}
.prices__item--h3 {
  margin-bottom: 23px;
  padding-left: 23px;
  color: #13eba2;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
}
.prices__text {
  margin-bottom: 20px;
  width: 100%;
  padding: 22px 18px;
  border-radius: 35px;
  border: 1px solid #acacac;
  color: #acacac;
  text-align: center;
  font-size: 14px;
  line-height: 130%;
}
.prices--h5 {
  margin-bottom: 17px;
  padding-left: 23px;
  padding-right: 23px;
  color: #13eba2;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}
.prices__ul {
  padding-left: 23px;
  padding-right: 23px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prices--li {
  position: relative;
  padding-left: 25px;
  list-style: none;
  color: #fff;
  font-size: 14px;
  line-height: 130%;
}
.prices--li::before {
  content: '';
  display: block;
  width: 14px;
  height: 15px;
  position: absolute;
  top: calc(50% - 7px);
  left: 0;
  background: url(imgs/new/prices--li-before-1.svg);
}
.prices--li.red::before {
  width: 12px;
  top: 0;
  background: url(imgs/new/prices--li-before-2.svg);
}

/* === advantages.php === */

.advantages {
  padding-top: 111px;
  padding-bottom: 98px;
}
.advantages .container {
  width: 1400px;
  padding: 0 19px;
}
.advantages__box {
  display: flex;
  width: 100%;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.advantages__col-1 {
  width: 428px;
  max-width: 100%;
}
.advantages__col-2 {
  width: 803px;
  max-width: calc(100% - 458px);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  position: relative;
  z-index: 2;
}
.advantages--h3 {
  margin-bottom: 50px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
}
.advantages--btn {
  border-color: #d9d9d9;
  background: #1c1e2c;
  color: #fff;
}
.advantages--p {
  max-width: 100%;
  width: 460px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 146.9%;
  margin-bottom: 30px;
}
.advantages--p br {
  margin-bottom: 20px;
}
.advantages__item {
  width: 390px;
  min-height: 220px;
  max-width: calc(50% - 11px);
  padding: 42px 33px 20px 36px;
  border-radius: 35px;
  border: 1px solid #313131;
  background: #222430;
  position: relative;
}
.advantages__item--icon {
  position: absolute;
  top: 15px;
  right: 15px;
}
.advantages__item--h5 {
  margin-bottom: 20px;
  padding-right: 60px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 106.765%; /* 23.488px */
  text-transform: uppercase;
}
.advantages__item--p {
  color: #acacac;
  font-size: 14px;
  line-height: 146.9%;
}
.advantages--svg {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
/*  case page  */
.case-main .advantages {
  border-radius: 49px;
  background: #a0bbff;
}
.case-main .advantages--h3 {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  text-transform: uppercase;
  color: #222;
}
.case-main .advantages__col-2 {
  width: 753px;
}
.case-main .advantages__item {
  width: 372px;
  padding: 38px 13px 20px 36px;
  background: #fff;
  border: none;
}
.case-main .advantages__item--icon {
  display: none;
}
.case-main .advantages__item--h5 {
  padding-right: 0;
  color: #000;
}
.case-main .advantages__item--p {
  max-width: 100%;
  width: 300px;
  font-size: 12px;
  color: #000;
}
/* === seo.text.php === */

.seo-text {
  padding-top: 111px;
  padding-bottom: 70px;
  border-radius: 49px;
  border: 1px solid #efefef;
}
.seo-text .container {
  width: 1150px;
  padding: 0 19px;
}
.seo-text--h2 {
  margin-bottom: 24px;
  max-width: 100%;
  width: 950px;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 106.765%; /* 53.382px */
  text-transform: uppercase;
}
.seo-text--p {
  margin-bottom: 24px;
  width: 873px;
  max-width: 100%;
  color: #f9f9f9;
  font-size: 14px;
  line-height: 146.9%;
}
.seo-text--btn {
  margin-bottom: 48px;
  background: #13eba2;
  color: #222;
  text-transform: uppercase;
}
.seo-text--btn:hover {
  background: #fff;
}
.seo-text__box {
  margin-bottom: 24px;
  height: 100px;
  overflow: hidden;
  transition: 1s;
}
.seo-text__box__content {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 6%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 146.9%;
  transition: 0.5s;
}
.seo-text__box.active .seo-text__box__content {
  background: linear-gradient(180deg, #fff 100%, rgba(255, 255, 255, 0) 100%);
  background-clip: border-box;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.seo-text.show-all .seo-text__box {
  height: auto;
}
.seo-text.show-all .seo-text__box__content {
  color: rgba(255, 255, 249, 0.98);
  -webkit-text-fill-color: rgba(255, 255, 249, 0.98);
}
.seo-text.show-all .seo-text--h2 {
  font-size: 40px;
}
.seo-text--show-more {
  margin-left: auto;
  width: min-content;
  white-space: nowrap;
  height: 43px;
  padding: 10px 57px 10px 37px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #f9f9f9;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  line-height: 146.9%;
}
.seo-text--show-more:hover {
  cursor: pointer;
}
.seo-text--show-more svg {
  transition: 0.3s;
}
.seo-text--show-more.open svg {
  transform: rotate(-90deg);
}

/* === text-service.php === */

.text-service {
  padding-top: 111px;
  padding-bottom: 60px;
  border-radius: 49px;
  background: #a0bbff;
}
.text-service .container {
  width: 1400px;
  padding: 0 18px;
}
.text-service__box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.text-service__col-1 {
  width: 590px;
  max-width: 100%;
}
.text-service__col-2 {
  width: calc(100% - 620px);
  max-width: 714px;
}
.text-service--img {
  display: block;
  max-width: 100%;
  height: auto;
}
.text-service--h2 {
  margin-bottom: 27px;
  color: #222;
  font-size: 40px;
  font-weight: 700;
  line-height: 106.765%;
  letter-spacing: -0.2px;
}
.text-service--h2 span {
  color: #fff;
}
.text-service--p {
  width: 524px;
  max-width: 100%;
  color: #222;
  font-size: 14px;
  line-height: 146.9%;
}
.text-service--svg {
  position: absolute;
  top: 0;
  right: 0;
}

.service-main .process-new--h2 {
  color: #13eba2;
}
.service-main .process-new--p {
  opacity: 0;
  visibility: hidden;
}
.process-new__box-2 {
  justify-content: center;
  gap: 53px;
}

/* === case-hero === */

.case-hero {
  padding-top: 35px;
  padding-bottom: 70px;
}
.case-hero .container {
  width: 1600px;
  padding: 0 31px;
}
.case-hero__box {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}
.case-hero__col-1 {
  width: 513px;
  max-width: 100%;
}
.case-hero__col-2 {
  width: 732px;
  max-width: calc(100% - 563px);
  position: relative;
}
.case-hero__col-3 {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
}
.case-hero--service {
  display: block;
  margin-bottom: 33px;
  width: min-content;
  white-space: nowrap;
  padding: 10px 26px;
  border-radius: 43.217px;
  border: 1px solid #fff;
  background: rgba(19, 235, 162, 0);
  color: #fff;
  font-family: Unbounded;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 117.265%;
  text-decoration: none;
  transition: 0.5s;
}
.case-hero--service:hover {
  background: #13eba2;
  border-color: #13eba2;
  color: #121212;
}
.case-hero--h1 {
  margin-bottom: 11px;
  color: var(--Main-Color, #13eba2);
  font-size: 50px;
  font-weight: 700;
  line-height: 106.765%; /* 53.382px */
  letter-spacing: -0.25px;
}
.case-hero--p {
  width: 513px;
  max-width: 100%;
  color: #d9d9d9;
  font-size: 20px;
  line-height: 146.9%;
}
.case-hero--img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
.case-hero__item {
  width: 290px;
  max-width: 100%;
}
.case-hero__item--h4 {
  margin-bottom: 8px;
  text-align: center;
  color: #a0bbff;
  font-size: 40px;
  font-weight: 700;
  line-height: 106.765%; /* 42.706px */
  letter-spacing: -0.2px;
  text-transform: uppercase;
}
.case-hero__item--p {
  text-align: center;
  color: #f9f9f9;
  font-size: 14px;
  line-height: 146.9%;
}

/* ===  blockquote.php === */

section.blockquote {
  padding-top: 111px;
  padding-bottom: 81px;
}
section.blockquote .container {
  width: 1460px;
  padding: 0 80px;
}
.blockquote__box {
  position: relative;
  margin: 0 auto;
  padding: 51px 99px 44px 150px;
  max-width: 100%;
  width: 1300px;
  border-radius: 37.505px;
  background: #222430;
}
.blockquote--arrow {
  position: absolute;
  top: 60px;
  left: -72px;
}
.blockquote--h2 {
  margin-bottom: 54px;
  color: var(--Main-Color, #13eba2);
  font-size: 50px;
  font-weight: 700;
  line-height: 106.765%;
  letter-spacing: -0.25px;
  text-transform: uppercase;
}
.blockquote--p {
  color: #f9f9f9;
  font-size: 14px;
  line-height: 146.9%;
}
.blockquote--svg {
  min-width: 123px;
}
.blockquote__author {
  margin-top: 25px;
  display: flex;
  gap: 45px;
}

/* === complex-strategy.php === */

.complex-strategy {
  padding-top: 130px;
  padding-bottom: 47px;
}
.complex-strategy .container {
  width: 1130;
  padding: 0 20px;
}
.complex-strategy--h2 {
  margin-bottom: 66px;
  color: var(--Main-Color, #13eba2);
  font-size: 50px;
  font-weight: 700;
  line-height: 106.765%; /* 53.382px */
  letter-spacing: -0.25px;
  text-transform: uppercase;
  text-align: center;
}
.complex-strategy__box {
  margin: 0 auto 142px auto;
  max-width: 100%;
  width: 1190px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 10px;
}
.complex-strategy__item {
  width: 390px;
  max-width: 100%;
  height: 350px;
  padding: 72px 32px 20px 36px;
  position: relative;
  border-radius: 35px;
  background: #222430;
  height: auto;
}
.complex-strategy__item--svg {
  position: absolute;
  top: 11px;
  right: 11px;
}
.complex-strategy__item--h4 {
  margin-bottom: 20px;
  color: #f9f9f9;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 106.765%; /* 23.488px */
  letter-spacing: -0.11px;
  text-transform: uppercase;
}
.complex-strategy__item--p {
  width: 321px;
  max-width: 100%;
  color: #f9f9f9;
  font-size: 12px;
  line-height: 146.9%;
}
.complex-strategy__action {
  max-width: 100%;
  width: 1025px;
  margin: 0 auto 24px auto;
}
.complex-strategy--p {
  margin: 0 auto;
  width: 947px;
  max-width: 100%;
  color: #f9f9f9;
  text-align: center;
  font-size: 14px;
  line-height: 146.9%;
}

/* === results.php === */

.results {
  padding-top: 82px;
  padding-bottom: 117px;
  border-radius: 49px;
  border: 3px solid #a0bbff;
  background: #a0bbff;
}
.results .container {
  width: 1286px;
  padding: 0 20px;
}
.results--h2 {
  margin-bottom: 29px;
  color: #222;
  font-size: 50px;
  font-weight: 700;
  line-height: 106.765%; /* 53.382px */
  letter-spacing: -0.25px;
  text-transform: uppercase;
}
.results__p {
  margin: 0 115px 52px auto;
  max-width: 100%;
  width: 702px;
  position: relative;
  color: #000;
  font-size: 25px;
  line-height: 146.9%;
}
.results__p--svg {
  position: absolute;
  top: 0;
  left: -147px;
}
.results__box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 23px;
}
.results__item {
  width: 397px;
  padding: 8px 8px 60px 8px;
  border-radius: 35px;
  background: #fff;
}
.results__item--h4 {
  margin-bottom: 33px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 35px 5px 32px 5px;
  border-radius: 35px;
  border: 1px solid #c2c2c2;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 106.765%; /* 42.706px */
  letter-spacing: -0.2px;
  text-transform: uppercase;
}
.results__item--h4 span {
  display: block;
  text-transform: none;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 146.9%;
}
.results__item--p {
  color: #000;
  font-size: 19px;
  line-height: 146.9%;
  padding: 0 27px 0 19px;
}
.results--svg {
  position: absolute;
  bottom: 0;
  right: 0;
}
.results__item.remove-p {
  padding-bottom: 8px;
}
.results__item.remove-p .results__item--h4 {
  margin-bottom: 0;
}
.results__item.remove-p .results__item--p {
  display: none;
}
/* === thank-you === */
section.thank {
}
.thank .container {
  width: 1400px;
  padding: 0 35px;
  padding-top: 125px;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
}
.thank--h1 {
  margin: 0 auto 47px auto;
  max-width: 100%;
  width: 1136px;
  text-align: center;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.25px;
}
.thank--h1 span {
  color: #13eba2;
  display: block;
}
.thank--p {
  margin: 0 auto 47px auto;
  max-width: 100%;
  width: 504px;
  color: #acacac;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 146.9%;
}
.thank__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 23px;
}
.thank__btns .btn {
  height: 57px;
}
.thank__footer {
  margin-top: auto;
  margin-bottom: 31px;
  display: flex;
  justify-content: space-between;
}
.page-template-thank-you .footer,
.page-template-thank-you-landing .header,
.page-template-thank-you-landing .footer {
  display: none;
}

/* === blog === */

.blog-main,
.single-main {
  padding-top: 35px;
}
.blog-main .container,
.single-main .container {
  width: 1322px;
  padding: 0 20px;
}
.blog__box,
.single__box {
  padding-top: 60px;
  padding-bottom: 160px;
  display: flex;
  gap: 90px;
}
.page__box {
  justify-content: center;
}
.blog-col-1,
.single__col-1 {
  width: 346px;
  max-width: 100%;
}
.blog-col-2,
.single__col-2 {
  width: 848px;
  max-width: calc(100% - 436px);
}
.single__col-2.single__col-mw {
  max-width: 100%;
  width: 100%;
}
.single__col-2.single__col-mw p {
  margin-bottom: 20px;
}
.container-2 {
  max-width: 848px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog__categories {
  margin-bottom: 150px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.blog__category {
  color: #f9f9f9;
  font-family: Unbounded;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 106.765%; /* 23.488px */
  text-transform: uppercase;
  transition: 0.3s;
  text-decoration: none;
}
.blog__category.active {
  color: #13eba2;
}
.blog__category:hover {
  color: #13eba2;
}
.blog__related {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog__related--h3 {
  color: #acacac;
  font-size: 14px;
  font-weight: 400;
  line-height: 106.765%; /* 14.947px */
  text-transform: uppercase;
}
.blog__related__product {
  position: relative;
  padding-left: 120px;
  text-decoration: none;
  min-height: 100px;
}
.blog__related__product--img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.blog__related__product--date {
  padding-top: 4px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--Main-Grey, #acacac);
  font-size: 14px;
  line-height: 146.9%;
}
.blog__related__product--h4 {
  color: #f9f9f9;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  transition: 0.3s;
}
.blog__related__product:hover .blog__related__product--h4 {
  color: #13eba2;
}
.blog__posts {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.blog__post {
  width: calc(50% - 10px);
  position: relative;
  border-radius: 35px;
  background: #222430;
  overflow: hidden;
}
.blog__post__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.blog__post__cats--cat {
  white-space: nowrap;
  width: min-content;
  padding: 10px 30px;
  border-radius: 43.217px;
  background: #222430;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 146.9%;
  text-decoration: none;
  transition: 0.4s;
}
.blog__post__cats--cat:hover {
  background: #13eba2;
  color: #222;
}
.blog__post__thumbnail {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 254px;
}
.blog__post__thumbnail--img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog__post__content {
  padding: 15px 24px 28px 24px;
}
.blog__post__meta {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog__post__meta--author {
  text-decoration: none;
  color: #13eba2;
  font-size: 14px;
  line-height: 146.9%;
  position: relative;
  z-index: 2;
}
.blog__post__meta--date,
.blog__post__meta--time-to-read {
  color: var(--Main-Grey, #acacac);
  font-size: 14px;
  line-height: 146.9%;
}
.blog__post__content--h2 {
  margin-bottom: 10px;
  width: 357px;
  height: 48px;
  max-width: 100%;
  color: #f9f9f9;
  font-size: 20px;
  font-weight: 700;
  line-height: 119%;
}
.blog__post__content--p {
  color: #f9f9f9;
  font-size: 14px;
  font-weight: 400;
  line-height: 146.9%;
}
.blog__post__content--link {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.blog__pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog__pagination--prev,
.blog__pagination--next {
  position: relative;
}
.blog__pagination--prev a,
.blog__pagination--next a {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blog__pagination--next path,
.blog__pagination--prev path {
  transition: 0.3s;
}
.blog__pagination--next:hover path,
.blog__pagination--prev:hover path {
  fill: #fff;
}
.blog__pagination__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}
.blog__pagination--item {
  color: #acacac;
  font-size: 23.042px;
  font-weight: 600;
  line-height: 146.9%;
  text-decoration: none;
  transition: 0.3s;
}
.blog__pagination--item.active {
  color: #fff;
  text-decoration: underline;
}
.post-hero {
  margin-bottom: 60px;
}
.page__box .post-hero {
  margin-bottom: 0;
}
.post-hero__meta {
  margin-bottom: 33px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.post-hero h1 {
  margin-bottom: 33px;
  color: var(--Main-Color, #13eba2);
  font-size: 50px;
  font-weight: 700;
  line-height: 106.765%;
}
.post-hero--img {
  margin-bottom: 21px;
  border-radius: 35px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.blog__post__content--p {
  margin-bottom: 35px;
}
.single__col-2 ul {
  padding-left: 20px;
}
.single__col-2 p,
.single__col-2 li {
  color: #f9f9f9;
  font-size: 14px;
  font-weight: 400;
  line-height: 146.9%;
  min-height: 24px;
}
.single__col-2 h2 {
  margin-bottom: 24px;
  color: var(--Main-Color, #13eba2);
  font-size: 50px;
  font-weight: 700;
  line-height: 106.765%;
}
.single__col-2 h3,
.single__col-2 h4,
.single__col-2 h5 {
  margin-bottom: 24px;
  color: #f9f9f9;
  font-size: 40px;
  font-weight: 700;
  line-height: 106.765%; /* 42.706px */
}
.post-img-right {
  margin-bottom: 60px;
}
.post-img-right--img {
  width: 305px;
  height: auto;
  float: right;
  margin-left: 20px;
}

.alignright {
  float: right;
  margin-left: 20px;
}
.alignleft {
  float: left;
  margin-right: 20px;
}
.post-table__box {
  margin-bottom: 22px;
}
.post-table {
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
}
.post-table--item {
  width: 100%;
  height: 45px;
  border: 1px dashed #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9f9f9;
  font-size: 14px;
  font-weight: 400;
  line-height: 146.9%;
}
.post-table[data-columns='2'] .post-table--item {
  width: 50%;
}
.post-table[data-columns='3'] .post-table--item {
  width: 33%;
}
.post-table[data-columns='4'] .post-table--item {
  width: 25%;
}
.post-table--item.column-1 {
  border-right: none;
}
.post-tags {
  margin-top: 100px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.post-tags a {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: min-content;
  padding: 10px 40px;
  text-decoration: none;
  border-radius: 68.078px;
  border: 1px solid #f9f9f9;
  box-shadow: 0px 5.712px 28.558px 0px rgba(23, 42, 133, 0.13);
  color: #f9f9f9;
  font-size: 14px;
  font-weight: 400;
  line-height: 146.9%;
  text-transform: uppercase;
  transition: 0.4s;
}
.post-tags a:hover {
  background: #13eba2;
  color: #222;
}
.post-footer__share {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.post-footer__share--a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 32.847px;
  background: #f9f9f9;
  transition: 0.3s;
}
.post-footer__share--a:hover {
  background: #13eba2;
  cursor: pointer;
}
.post-footer__share--btn {
  margin-left: auto;
  padding: 17px 30px;
}
.post-footer__author {
  margin-bottom: 85px;
  width: 500px;
  height: 177px;
  max-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 170px;
}
.post-footer__author--img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 33.962px;
  width: 150px;
  height: 100%;
  object-fit: cover;
}
.post-footer__author--h4 {
  padding-top: 18px;
  padding-bottom: 17px;
  color: #f9f9f9;
  font-size: 22px;
  font-weight: 700;
  line-height: 106.765%; /* 23.488px */
  text-transform: uppercase;
}
.post-footer__author--p {
  color: #acacac;
  font-size: 12px;
  font-weight: 400;
  line-height: 146.9%;
}
.post-footer__author--btn {
  margin-top: auto;
  background: var(--bg-blue);
  border-color: #f9f9f9;
}

/* === author.php === */

.author-main {
  padding-top: 35px;
  padding-bottom: 100px;
}
.author-main .container {
  width: 1320px;
  padding: 0 19px;
}
.author__box {
  padding-top: 60px;
  padding-bottom: 118px;
  display: flex;
  gap: 60px;
}
.author__col-1 {
  width: 415px;
  max-width: 100%;
}
.author__col-2 {
  flex: 1;
  padding-top: 40px;
}
.author--h1 {
  margin-bottom: 30px;
  color: var(--Main-Color, #13eba2);
  font-size: 50px;
  font-weight: 700;
  line-height: 106.765%; /* 53.382px */
  letter-spacing: -0.25px;
  text-transform: uppercase;
}
.author__text {
  margin-bottom: 30px;
}
.author__text p {
  color: #f9f9f9;
  font-size: 14px;
  line-height: 146.9%;
}
.author--btn {
  margin-bottom: 100px;
  background: #13eba2;
  color: #222;
}
.author__blockquote {
  position: relative;
  padding: 21px 65px 28px 65px;
  color: #f9f9f9;
  font-size: 14px;
  line-height: 146.9%;
}
.author__blockquote--svg-1 {
  position: absolute;
  top: 0;
  left: 0;
}
.author__blockquote--svg-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* === team.php === */

.team {
  padding-top: 35px;
}
.team .container {
  width: 1430px;
  padding: 0 19px;
}
.team--h1 {
  margin-top: 60px;
  margin-bottom: 55px;
  color: #13eba2;
  font-size: 50px;
  font-weight: 700;
  line-height: 117.265%;
  text-transform: uppercase;
  text-align: center;
}
.team__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 20px;
}
.team__item {
  width: 333px;
  height: 466px;
  padding: 13px;
  border-radius: 29.322px;
  background: #f9f9f9;
  position: relative;
}
.team__item--img {
  margin-bottom: 16px;
  display: block;
  max-width: 100%;
  height: auto;
}
.team__item__text {
  position: absolute;
  bottom: 145px;
  left: 0;
  padding: 14px 32px;
}
.team__item__text--h4 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 106.765%;
  text-transform: uppercase;
}
.team__item__text--p {
  color: #fff;
  font-size: 18px;
  line-height: 106.765%; /* 19.218px */
  letter-spacing: -0.09px;
}
.team__item--blockquote {
  color: #222;
  font-size: 18px;
  font-weight: 400;
  line-height: 106.765%; /* 19.218px */
  letter-spacing: -0.09px;
}

/* === cases-archive === */

.cases__hero {
  padding-top: 100px;
  padding-bottom: 100px;
}
.cases__hero .container {
  width: 1205px;
  padding: 0 50px;
}
.cases__hero__li {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
.cases__hero__li__col-1 {
  width: calc(50% - 5px);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}
.cases__hero__li--img {
  position: absolute;
  width: 100%;
}
.cases__hero__li__col-2 {
  width: calc(50% - 30px);
}
.cases__hero__li__col-3 {
  width: 100%;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.cases__hero--name {
  display: block;
  max-width: min-content;
  white-space: nowrap;
  margin-bottom: 15px;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid #fff;
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.cases__hero--h2 {
  margin-bottom: 15px;
  font-size: 50px;
  line-height: 107%;
  color: #fff;
  white-space: wrap;
  font-weight: 700;
}
.cases__hero--text {
  margin-bottom: 20px;
  white-space: wrap;
  text-overflow: ellipsis;
  position: relative;
  overflow: hidden;
  height: 95px;
}
.cases__hero--text p {
  font-size: 20px;
  color: #d9d9d9;
  font-weight: 147%;
}
.cases__hero--text {
  white-space: wrap;
}
.cases__hero__li__col-3 .cases-new__case__action {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #393a47;
  color: #fff;
  height: 58px;
}
.cases__hero__li__col-3 .cases-new__case__action strong {
  color: #fff;
}
.cases__hero__li__col-3 .cases-new__case__action-4 {
  display: none;
}
.cases__hero .glide__arrows {
  display: flex;
  justify-content: space-between;
  width: calc(100% + 200px);
  position: absolute;
  top: calc(50% - 20px);
  left: -100px;
}
.cases__hero .glide__arrow {
  border: none;
  padding: 0;
}
.cases__hero--btn {
  background: #13eba2;
  color: #121212;
  text-transform: uppercase;
}
.cases__hero--btn:hover {
  background: #fff;
  color: #222;
}
.cases__all {
  padding-top: 80px;
  padding-bottom: 120px;
  background: #a0bbff;
}
.cases__all .container {
  width: 1300px;
  padding: 0 30px;
}
.cases__all .blog__posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.cases__cats {
  margin-bottom: 70px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cases__cats--item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min-content;
  white-space: nowrap;
  padding: 6px 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 18px;
  font-family: Unbounded;
  color: #222222;
  border-radius: 20px;
  order: 2;
}
.cases__cats--item:last-child {
  order: 1;
}
.cases__cats--item.active {
  border-color: #393a47;
  font-weight: 700;
}
.cases__cats--item.active path {
  fill: #222222;
}
.cases-archive {
  padding-top: 30px;
}
.cases-archive .b-breadcrumbs .b-breadcrumbs__item:nth-child(2),
.cases-archive .b-breadcrumbs .b-breadcrumbs__item:nth-child(4) {
  display: none;
}
@media (max-width: 1500px) {
  .context-hero h1,
  .pack--h2-bonus,
  .pack--h2 {
    font-size: 2.5vw;
  }
  .cases-new--h2 {
    font-size: 3.75vw;
  }
  .cases-new--h3,
  .services--h2 {
    font-size: 3.125vw;
  }
}
@media (max-width: 1300px) {
  .cases__hero .container {
    padding: 0 100px;
  }
  .cases__hero--h2 {
    font-size: 40px;
  }
  .cases__hero--text p {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .blog__post.big {
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    gap: 20px;
    background: transparent;
    border-radius: 0;
  }
  .blog__post.big .blog__post__cats {
    top: 19px;
    width: calc(50% - 10px);
    left: 0;
    padding: 0 12px;
  }
  .blog__post.big .blog__post__thumbnail {
    width: 414px;
    max-width: calc(50% - 10px);
    height: 414px;
    border-radius: 35px;
  }
  .blog__post.big .blog__post__content {
    width: 414px;
    max-width: calc(50% - 10px);
    padding: 34px 0 0 0;
  }
  .blog__post.big .blog__post__meta {
    margin-bottom: 33px;
    justify-content: space-between;
  }
  .blog__post.big .blog__post__content--h2 {
    margin-bottom: 13px;
    height: auto;
    font-size: 22px;
    line-height: 106.765%; /* 23.488px */
  }
  .blog__post.big .blog__post__content--link {
    opacity: 1;
    top: auto;
    left: auto;
    right: 0;
    bottom: 20px;
    white-space: nowrap;
    width: min-content;
    height: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 11px 30px 11px 27px;
    border-radius: 22px;
    border: 1px solid #f9f9f9;
    background: var(--bg-blue);
    transition: 0.4s;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 146.9%;
  }
  .blog__post.big .blog__post__content--link path {
    transition: 0.4s;
  }
  .blog__post.big .blog__post__content--link:hover {
    border-color: #13eba2;
    background: #13eba2;
    color: #222;
  }
  .blog__post.big .blog__post__content--link:hover path {
    fill: #222;
  }
}
@media (min-width: 881px) {
  .mobile {
    display: none !important;
  }
}
@media (max-width: 880px) {
  .not-mobile {
    display: none !important;
  }
}
@media (max-width: 1500px) {
  .footer__col-1 {
    margin-right: auto;
  }
  .footer__col-2 {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 650px);
  }
}
@media (max-width: 1400px) {
  .reviews-new__glide {
    margin: 0 auto;
    width: 1020px;
  }
  .cases-new__glide {
    width: 818px;
  }
}
@media (max-width: 1350px) {
  .strategy-new__items .glide__bullets {
    display: block;
    bottom: -30px;
  }
  .strategy-new__items .glide {
    width: 571px;
  }
  .strategy-why-new__line {
    margin-top: 30px;
  }
  .strategy-why-new__line {
    width: 100%;
  }
}

@media (max-width: 1300px) {
  .header__center--h1 {
    display: none;
  }
  .header__center--link {
    margin-left: auto;
  }
  .pack__pdf {
    display: none;
  }
  .pack__bonuses {
    flex-wrap: wrap;
  }
  .pack__happines {
    max-width: 100%;
    width: 1050px;
  }
}
@media (max-width: 1200px) {
  .prices__col-1 {
    width: 100%;
    max-width: 100%;
  }
  .prices--h3 {
    text-align: center;
  }
  .prices--p {
    text-align: center;
  }
  .prices__btns {
    justify-content: center;
    width: 100%;
  }
  .prices__col-2 {
    width: 100%;
    justify-content: center;
  }
  .advantages__item {
    height: auto;
  }
  .footer__col-1 {
    margin-right: calc(100% - 300px);
    margin-bottom: 30px;
  }
  .footer__col-2 {
    margin-left: 0;
    margin-right: 30px;
    max-width: calc(100% - 580px);
  }
  .context-hero__p {
    margin-right: 0;
    width: calc(100% - 135px);
  }
}
@media (max-width: 1150px) {
  .strategy-new__items .glide__bullets {
  }
  .strategy-new__items .glide {
    width: 373px;
  }
  .strategy-why-new__line {
  }
  .strategy-why-new__line {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .advantages__col-1 {
    width: 100%;
  }
  .case-main .advantages__col-2 {
    width: 100%;
    justify-content: flex-start;
  }
  .advantages--h3 {
    text-align: center;
  }
  .advantages--btn {
    margin: 0 auto;
  }
  .advantages__col-2 {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
  .reviews-new__glide {
    margin: 0 auto;
    width: 670px;
  }
  .blog__post {
    width: 100%;
  }
  .blog__post__content--h2 {
    height: auto;
  }
  .advantages--p {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .header__center {
    padding: 0 10px;
  }
  .action__box {
    flex-wrap: wrap;
    justify-content: center;
  }
  .action--h4 {
    width: 100%;
    text-align: center;
  }
  .service-hero__col-1,
  .service-hero__col-2 {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 880px) {
  .header {
    width: 100vw;
  }
  .header .container {
    padding: 9px 14px 8px 14px;
  }
  .header__center {
    display: none;
  }
  .header__box {
    height: 50px;
    justify-content: space-between;
  }
  .header__logo {
    width: 140px;
    height: auto;
    border-radius: 17px;
  }
  .header__logo--img {
    width: 105px;
    border-radius: 25.296px;
  }
  .header__center {
    display: none;
  }
  .header__menu {
    width: 50px;
    height: 50px;
    border-radius: 17px;
  }
  .header__menu span {
    width: 26px;
    height: 3px;
    left: 12px;
    border-radius: 18px;
  }
  .header__menu span:nth-child(1) {
    top: 16.5px;
  }
  .header__menu span:nth-child(2) {
    top: 23.5px;
  }
  .header__menu span:nth-child(3) {
    top: 31px;
  }
  .header__menu.active span:nth-child(1) {
    top: 23.5px;
  }
  .header__menu.active span:nth-child(3) {
    top: 23.5px;
  }
  .header--phone {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 17px;
    border: 0.723px solid #f9f9f9;
  }
  .header--phone svg {
    width: 26px;
  }
  .header__pop-up.active {
    height: auto;
    border-radius: 0;
  }
  .header__pop-up__col-1 {
    position: absolute;
    right: -29px;
    top: 140px;
  }
  .header__pop-up--text {
    transform: rotate(90deg);
    font-size: 68.014px;
    line-height: 106.765%;
  }
  .header__pop-up__box {
    flex-direction: column;
    padding-top: 25px;
    gap: 28px;
  }
  .header__pop-up__col-2,
  .header__pop-up__col-3 {
    width: 100%;
    padding-top: 0;
    min-width: 0;
  }
  .header__pop-up__menu {
    margin-bottom: 20px;
    flex-direction: column;
    gap: 16px;
  }
  .header__pop-up__menu--a {
    width: 100%;
    padding-left: 0;
    font-size: 18px;
    font-weight: 400;
  }
  .header__pop-up__menu--a:nth-child(2n) {
    order: 2;
  }
  .header__pop-up__menu--a:nth-child(2n-1) {
    order: 1;
  }
  .header__pop-up__menu--a::before {
    display: none;
  }
  .header .header__pop-up .container {
    padding: 0 29px;
    height: 100%;
    box-shadow: none;
  }
  .header__pop-up__propositions {
    flex-direction: column;
    align-items: center;
  }
  .header__pop-up__proposition-1,
  .header__pop-up__proposition-2 {
    width: 313px;
    font-size: 18px;
    font-weight: 500;
  }
  .header__pop-up__col-3 {
    padding-top: 17px;
    padding-left: 0;
  }
  .header__pop-up__col-3::before {
    width: 100%;
    height: 1px;
  }
  .header .contact-new__a {
    display: none;
  }
  .header__pop-up__action {
    margin-top: 30px;
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 152px;
    border-radius: 35px 35px 0 0;
    border: 1px solid #313131;
    background: #222430;
    padding-top: 21px;
    padding-bottom: 32px;
  }
  .header__pop-up__action--btn {
    margin: 0 auto 32px auto;
    width: 100%;
    max-width: 400px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2000px;
    background: #13eba2;
    color: #121212;
    font-family: Unbounded;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 93.765%;
    text-decoration: none;
  }
  .header__pop-up__action--a {
    display: block;
    color: #f9f9f9;
    font-family: Unbounded;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 106.765%; /* 19.218px */
    letter-spacing: -0.09px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
  }

  .hero-new {
    padding-top: 49px;
    padding-bottom: 0;
  }
  .hero-new .container {
    padding: 0 8px;
  }
  .hero-new__col-1 {
    padding-left: 24px;
    padding-right: 41px;
  }
  .hero-new__col-2 {
    padding-left: 24px;
    padding-right: 20px;
  }
  .hero-new__col-3 {
    margin-top: 60px;
  }
  .hero-new--p-1 {
    margin-bottom: 13px;
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .hero-new h1 {
    font-size: 43.986px;
    letter-spacing: -0.22px;
  }
  .hero-new--p-2 {
    margin-bottom: 30px;
    padding-top: 33px;
    font-size: 14px;
  }
  .hero-new--fone {
    width: 100%;
  }
  .hero-new__footer {
    top: -60px;
    padding-left: 20px;
    padding-right: 0;
  }
  .hero-new__footer__col-1,
  .hero-new__footer__col-2 {
    gap: 12px;
  }
  .strategy-new .container {
    padding-right: 0;
  }
  .strategy-new__line {
    margin-top: 70px;
    margin-bottom: 77px;
    height: 42px;
  }
  .strategy-new__line--text {
    height: 42px;
    font-size: 34.245px;
  }
  .strategy-new--h2 {
    font-size: 35px;
    width: 300px;
  }
  .strategy-new--h2 svg {
    right: -5px;
  }
  .strategy-new__box {
    flex-wrap: wrap;
    gap: 50px;
  }
  .strategy-new--svg {
    right: 0;
    width: 180px;
    height: 194px;
  }
  .strategy-new__items .glide__bullets {
    display: block;
  }
  .cases-new__glide .glide__bullet {
    width: 8px;
    height: 8px;
  }
  .propose-new {
    padding-top: 70px;
  }
  .propose-new--h2 {
    margin-bottom: 67px;
    font-size: 35px;
    line-height: 106%; /* 37.1px */
  }
  .propose-new__box {
    justify-content: center;
  }
  .propose-new__form {
    display: none;
  }
  .cases-new {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
    overflow: hidden;
  }
  .cases-new--h2 {
    text-align: left;
    font-size: 34px;
  }
  .cases-new--h3 {
    margin-bottom: 50px;
    font-size: 30px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .cases-new--h3 br {
    display: block;
  }
  .cases-new__glide {
    padding-bottom: 43px;
  }
  .cases-new__action {
    padding-top: 30px;
  }
  .cases-new--h4 {
    margin-bottom: 20px;
    font-size: 25px;
  }
  .cases-new--btn {
    width: 224px;
  }
  .cases-new .glide__arrows {
    display: none;
  }
  .cases-new .container {
    padding: 0 20px;
  }
  .cases-new__case {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
  }
  .cases-new__case--fone {
    width: 100%;
    height: 100%;
  }
  .cases-new__case--arrow {
    bottom: 4px;
  }
  .cases-new__glide .glide__bullets {
    bottom: -30px;
  }
  .cases-new__glide .glide__bullet {
    width: 10px;
    height: 10px;
  }
  .cases-new--svg-1 {
    top: -50px;
    right: -40px;
    width: 200px;
    height: 200px;
  }
  .cases-new--svg-2 {
    bottom: -50px;
    left: -40px;
    width: 200px;
    height: 200px;
  }
  .founder-new {
    padding-top: 78px;
    padding-bottom: 76px;
  }
  .founder-new__box {
    flex-wrap: wrap;
  }
  .founder-new__col-1 {
    max-width: 100%;
    order: 2;
    width: 100%;
  }
  .founder-new__col-2 {
    width: 100%;
    order: 1;
  }
  .founder-new--h3 {
    font-size: 26px;
    line-height: 106.765%;
    letter-spacing: -0.13px;
  }
  .founder__partners {
    display: none;
  }
  .founder-new__achievements {
    margin-top: 42px;
  }
  .founder-new__achievements div:nth-child(2) {
    width: calc(100% - 92px);
  }
  .founder-new__achievements div:nth-child(3),
  .founder-new__achievements div:nth-child(4) {
    width: 100%;
  }
  .founder-new__achievements div:nth-child(5) {
    width: calc(100% - 120px);
  }
  .process-new {
    padding-top: 61px;
    padding-bottom: 70px;
  }
  .process-new--h2 {
    margin-bottom: 45px;
    text-align: left;
    font-size: 35px;
    line-height: 106.765%;
    letter-spacing: -0.175px;
  }
  .process-new--p {
    display: none;
  }
  .process-new__box-1 {
    margin-bottom: 42px;
    flex-direction: column;
  }
  .process-new__item {
    max-width: 100%;
    width: 100%;
  }
  .process-new__item--img {
    margin-left: 0;
  }
  .process-new__item--h4 {
    margin-bottom: 11px;
    text-align: left;
    font-size: 18px;
    line-height: 106.765%;
    letter-spacing: -0.09px;
  }
  .process-new__item--p {
    text-align: left;
  }
  .process-new__box-2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }
  .process-new--text {
    text-align: left;
    max-width: 100%;
  }
  .contact-new {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .contact-new--h2 {
    margin-bottom: 38px;
    font-size: 35px;
    line-height: 106.765%;
  }
  .contact-new__box {
    flex-direction: column;
    padding: 38px 20px 22px 20px;
    gap: 20px;
  }
  .contact-new__box::before {
    display: none;
  }
  .contact-new__col-1 {
    border-bottom: 1px solid #acacac;
  }
  .contact-new__a {
    margin-bottom: 14px;
  }
  .contact-new__a--p {
    font-size: 15px;
    letter-spacing: -0.075px;
  }
  .faq-new {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .faq-new--h2 {
    margin-bottom: 3px;
    font-size: 35px;
    letter-spacing: -0.175px;
  }
  .faq-new--p {
    max-width: 249px;
    margin: 0 auto 33px auto;
  }
  .faq-new__box__item {
    margin-bottom: 18px;
  }
  .faq-new__box__item--h3 {
    max-width: calc(100% - 40px);
    font-size: 16px;
    letter-spacing: -0.08px;
  }
  .faq-new__box__item::before {
    top: 47px;
  }
  .faq-new__box__item--text {
    max-width: calc(100% - 40px);
  }
  .faq-new__box__item--text div {
    padding: 13px 0 28px 28px;
  }
  .strategy-why-new .glide__bullets {
    bottom: -50px;
  }
  .reviews-new .glide__slides {
    justify-content: flex-start;
    gap: 0;
  }
  .reviews-new {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .reviews-new--h2 {
    font-size: 35px;
    line-height: 120%; /* 42px */
  }
  .reviews-new--p {
    max-width: 249px;
    margin: 0 auto 35px auto;
  }
  .context-hero__box {
    flex-direction: column;
    gap: 60px;
  }
  .context-hero--arrow,
  .context-hero__card--img-1 {
    display: none;
  }
  .context-hero__col-2,
  .context-hero__card {
    max-width: 100%;
    height: auto;
  }
  .context-hero__col-1 {
    width: 100%;
  }
  .context-hero {
    padding-top: 49px;
    padding-bottom: 48px;
  }
  .context-hero .container {
    padding: 0 16px;
  }
  .context-hero h1 {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 130%;
  }
  .context-hero__p {
    width: 270px;
    margin: 0 0 40px 70px;
    font-size: 14px;
    line-height: 120%; /* 16.8px */
  }
  .context-hero__p--svg {
    top: 0;
    left: -70px;
    width: 62px;
    height: auto;
  }
  .context-hero__advantages {
    margin: 0 0 38px 0;
    gap: 5px 4px;
  }
  .context-hero__advantage {
    max-width: calc(50% - 2px);
    padding: 15px 11px;
    height: 90px;
    font-size: 13px;
  }
  .context-hero--h4 {
    text-align: center;
    font-size: 14px;
    line-height: 120%;
  }
  .context-hero__btns {
    margin-left: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .hero__btn-1 {
    width: 280px;
  }
  .pack {
    padding-top: 70px;
    padding-bottom: 40px;
  }
  .pack .container {
    padding: 0 16px;
  }
  .pack--h2 {
    font-size: 25px;
    line-height: 130%;
  }
  .pack--h2 br {
    display: none;
  }
  .pack--p {
    margin-right: 0;
    letter-spacing: 0;
    width: 232px;
    font-size: 17px;
    margin-left: 60px;
    width: auto;
  }
  .pack--p svg {
    top: 0;
    left: -60px;
    width: 62px;
    height: auto;
  }
  .pack__happines {
    padding: 20px 7px;
  }
  .pack__happines__item {
    padding: 10px 12px 10px 50px;
  }
  .pack__happines__item--btn {
    top: 25px;
    left: 12px;
  }
  .pack__happines__item--title {
    font-size: 15px;
    letter-spacing: -0.075px;
  }
  .pack__happines__item--text {
    margin-left: 10px;
  }
  .pack__box {
    margin-bottom: 60px;
  }
  .pack--h2-bonus {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .pack__bonus {
    border-radius: 20px;
    height: auto;
  }
  .pack__bonus__icon {
    border-radius: 14px;
    height: calc(100% - 14px);
  }
  .pack__tab {
    flex-direction: column;
    padding: 49px 14px 14px 14px;
    gap: 34px;
  }
  .pack__tab__box {
    max-width: 100%;
    padding: 22px 14px;
  }
  .pack__h3 {
    margin: 0;
  }
  .pack__tab--h4 {
    font-size: 15px;
    line-height: 140%;
    text-align: center;
  }
  .pack__tab--btn-1,
  .pack__tab--btn-2 {
    width: 100%;
    margin: 0 auto;
  }
  .pack__tab--svg {
    left: 16px;
  }
  .services {
    padding-top: 70px;
    padding-bottom: 60px;
  }
  .services .container {
    padding: 0 23px;
  }
  .services--h2 {
    margin-bottom: 45px;
    text-align: center;
    font-size: 27px;
    line-height: 106%;
  }
  .services__footer {
    flex-direction: column;
  }
  .services__footer__col-1,
  .services__footer__col-2 {
    width: 100%;
  }
  .services__footer--h4 {
    margin-bottom: 9px;
    font-size: 22px;
    line-height: 106.765%;
    letter-spacing: -0.11px;
  }
  .services__footer--h5 {
    font-size: 14px;
    line-height: 120%;
  }
  .process-new--h2 {
    color: #13eba2;
    font-size: 29px;
    line-height: 106.765%;
    letter-spacing: -0.145px;
  }
  .process-new__item {
    width: 248px;
  }
  .process-new__item:nth-child(4) {
    margin-left: auto;
  }
  .process-new__item--img {
    margin-left: auto;
  }
  .process-new__item--h4 {
    text-align: center;
    font-size: 15px;
    line-height: 117.8%;
    letter-spacing: -0.075px;
  }
  .process-new__item--p {
    text-align: center;
  }
  .process-new__item--svg-1 {
    left: 200px;
    transform: rotate(79deg);
    top: 150px;
    width: 140px;
  }
  .process-new__item--svg-2 {
    right: 210px;
    transform: rotate(-77deg);
    top: 410px;
    width: 140px;
  }
  .action {
    padding-top: 92px;
    padding-bottom: 56px;
  }
  .action__box {
    margin-bottom: 11px;
    padding: 28px 13px 22px 13px;
    gap: 23px 10px;
  }
  .action--h4 {
    font-size: 18px;
    line-height: 106.765%;
  }
  .action--btn {
    max-width: calc(100% - 60px);
  }
  .context-hero__advantage {
    display: none;
  }
  .footer {
    box-shadow: none;
  }
  .footer__box {
    min-height: 0;
  }
  .footer__col-1,
  .footer__col-2 {
    display: none;
  }
  .footer__up {
    left: calc(50% - 25px);
  }
  .footer__col-3 {
    width: 100%;
  }
  .footer__h4 {
    text-align: center;
    opacity: 0.75;
  }
  .footer__link {
    width: 100%;
    text-align: center;
  }
  .footer__row {
    margin-top: 31px;
  }
  .footer__row img:nth-child(2) {
    margin-right: auto;
  }
  .footer--copyright {
    left: 0;
    width: 100%;
    text-align: center;
  }
  .process-new--btn {
    margin: 0 auto;
  }
  .services__box {
    margin-bottom: 115px;
  }
  .services__box .glide__slides {
    flex-wrap: nowrap;
    gap: 0;
  }
  .services__box .glide__slide {
    display: flex;
    justify-content: center;
  }
  .services__box .glide__bullets {
    display: block;
    bottom: -45px;
    gap: 9px;
    display: flex;
    justify-content: center;
    height: 12px;
  }
  .services__box .glide__bullet {
    width: 10px;
    height: 10px;
    border: 2px solid #d9d9d9;
  }
  .services__box .glide__bullet:hover,
  .services__box .glide__bullet:focus,
  .services__box .glide__bullet--active {
    border: 2px solid #d9d9d9;
    background-color: #d9d9d9;
  }
  .service-hero {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .service-hero .container {
    padding: 0 16px;
  }
  .service-hero .b-breadcrumbs {
    display: none;
  }
  .service-hero__box {
    padding-top: 0;
  }
  .service-hero--h1 {
    font-size: 35px;
  }
  .service-hero--p {
    margin-bottom: 30px;
  }
  .service-hero__btns {
    flex-wrap: wrap;
    gap: 20px;
    width: 268px;
    margin: 0 auto;
  }
  .service-hero__items {
    gap: 14px 10px;
    justify-content: center;
  }
  .service-hero__item {
    max-width: calc(50% - 5px);
    padding: 17px 14px 20px 14px;
  }
  .service-hero__item--h5 {
    margin-bottom: 10px;
    padding-left: 17px;
    font-size: 15px;
    overflow: hidden;
  }
  .service-hero__item--h5::before {
    left: -6px;
  }
  .service-hero__item--p {
    font-size: 13px;
  }
  .why-service {
    padding-top: 70px;
    padding-bottom: 50px;
  }
  .why-service .container {
    padding: 0 16px;
  }
  .why-service--h2 {
    font-size: 35px;
  }
  .why-service__box {
    padding-bottom: 120px;
  }
  .why-service__item {
    width: 100%;
    gap: 20px;
    padding: 15px 16px;
  }
  .why-service__item__icon {
    width: 63px;
    min-width: 63px;
  }
  .why-service__item--h5 {
    font-size: 20px;
  }
  .why-service__tab {
    flex-wrap: wrap;
    height: auto;
    padding: 30px 30px 20px 42px;
    gap: 20px 37px;
  }
  .why-service__tab--btn {
    margin-right: 0;
    width: 270px;
    max-width: 100%;
  }
  section.prices {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  section.prices .container {
    padding: 0 16px;
  }
  .prices--h3 {
    text-align: left;
    font-size: 35px;
    letter-spacing: -0.175px;
  }
  .prices--p {
    text-align: left;
  }
  .prices__btns {
    justify-content: flex-start;
    gap: 18px;
    width: 268px;
    margin: 0 auto;
  }
  .case-main .advantages {
    padding-top: 70px;
    padding-bottom: 70px;
    border-radius: 28px;
  }
  .advantages .container {
    padding: 0 16px;
  }
  .advantages--h3 {
    text-align: left;
    font-size: 30px;
    margin-bottom: 38px;
  }
  .advantages--btn {
    margin: 0;
  }
  .advantages__item {
    max-width: 100%;
    height: 220px;
    padding-left: 26px;
  }
  .advantages__item--icon {
    top: 10px;
    right: 10px;
  }
  .advantages__item--h5 {
    padding-right: 20px;
  }
  .seo-text {
    padding-top: 70px;
  }
  .seo-text .container {
    padding: 0 16px;
  }
  .seo-text--h2 {
    margin-bottom: 20px;
    font-size: 30px;
  }
  .seo-text__box {
    height: 120px;
  }
  .seo-text__box__content {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 3%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .seo-text--show-more {
    padding-right: 14px;
  }
  .text-service {
    padding-top: 70px;
  }
  .text-service__col-2 {
    width: 100%;
  }
  .text-service--h2 {
    font-size: 35px;
    letter-spacing: -0.175px;
  }
  .text-service--svg {
    display: none;
  }
  .reviews-new .glide__slide {
    display: flex;
    justify-content: center;
  }
  .reviews-new-popup__box {
    width: 100%;
  }
  .reviews-new-popup__box iframe {
    max-width: 100%;
  }
  .reviews-new__glide {
    max-width: 100%;
    padding-bottom: 60px;
  }
  .reviews-new .glide__bullets {
    display: flex;
    bottom: 0;
  }
  .reviews-new__item {
    margin-bottom: 40px;
  }
  .glide__bullet:hover,
  .glide__bullet:focus {
    background: #222;
  }
  .b-breadcrumbs {
    flex-wrap: wrap;
  }
  .case-hero {
    padding-top: 18px;
    padding-bottom: 50px;
  }
  .case-hero .container {
    padding: 0 16px;
  }
  .case-hero__box {
    margin-top: 35px;
    gap: 30px;
  }
  .case-hero__col-2 {
    max-width: 100%;
  }
  .case-hero--service {
    margin-bottom: 11px;
    padding: 10px 19px;
  }
  .case-hero--h1 {
    font-size: 35px;
  }
  .case-hero--p {
    font-size: 14px;
    color: #acacac;
  }
  .case-hero__col-3 {
    gap: 40px 3px;
    flex-wrap: wrap;
  }
  .case-hero__item {
    width: min-content;
  }
  .case-hero__item--h4 {
    font-size: 30px;
    letter-spacing: -0.15px;
  }
  .case-hero__item--p {
    min-width: 150px;
  }
  section.blockquote {
    padding-top: 20px;
    padding-bottom: 0;
    border-radius: 28px;
  }
  section.blockquote .container {
    padding: 0;
  }
  .blockquote__box {
    padding: 70px 16px;
    border-radius: 28px;
  }
  .blockquote--arrow {
    display: none;
  }
  .blockquote--h2 {
    margin-bottom: 35px;
    font-size: 35px;
    letter-spacing: -0.175px;
  }
  .blockquote--p {
    font-size: 14px;
  }
  .blockquote__author {
    gap: 20px;
  }
  .blockquote--svg {
    min-width: 67px;
  }
  .case-main .advantages svg,
  .advantages--svg {
    display: none;
  }
  .complex-strategy {
    padding-top: 70px;
    padding-bottom: 50px;
  }
  .complex-strategy .container {
    padding: 0 16px;
  }
  .complex-strategy--h2 {
    margin-bottom: 35px;
    font-size: 35px;
    letter-spacing: -0.175px;
  }
  .complex-strategy__item {
    padding: 72px 28px 20px 36px;
  }
  .complex-strategy__item--h4 {
    margin-bottom: 18px;
    font-size: 18px;
    letter-spacing: -0.09px;
  }
  .complex-strategy .action--btn {
    max-width: 100%;
  }
  .results {
    padding-top: 70px;
    padding-bottom: 70px;
    border: none;
    border-radius: 28px;
  }
  .results .container {
    padding: 0 16px;
  }
  .results--h2 {
    margin-bottom: 35px;
    color: #000;
    font-size: 35px;
    letter-spacing: 0;
  }
  .results__p {
    margin-bottom: 35px;
    color: #000;
    font-size: 18px;
  }
  .results__p--svg {
    display: none;
  }
  .results__item {
    max-width: 100%;
  }
  .results--svg {
    bottom: auto;
    right: -80px;
    top: -30px;
    width: 250px;
    height: auto;
  }
  .seo-text.show-all .seo-text--h2 {
    font-size: 30px;
  }
  .blog-main {
    padding-top: 18px;
  }
  .blog__box {
    padding-top: 35px;
    flex-direction: column;
  }
  .blog-col-1 {
    order: 2;
  }
  .blog-col-2 {
    order: 1;
    width: 100%;
    max-width: 100%;
  }
  .blog__post__cats {
    justify-content: space-between;
  }
  .blog__post__content--p {
    display: none;
  }
  .blog__post.big {
    background: transparent;
  }
  .blog__post.big .blog__post__content--p {
    display: block;
  }
  .blog__post__cats--cat {
    padding: 10px 19px;
  }
  .blog__post__content {
    padding: 15px 19px 22px 19px;
  }
  .blog__post.big .blog__post__content {
    padding-bottom: 77px;
  }
  .blog__post.big .blog__post__content--link {
    opacity: 1;
    top: auto;
    left: auto;
    right: 0;
    bottom: 20px;
    white-space: nowrap;
    width: min-content;
    height: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 11px 30px 11px 27px;
    border-radius: 22px;
    border: 1px solid #f9f9f9;
    background: var(--bg-blue);
    transition: 0.4s;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 146.9%;
  }
  .blog__categories-mobile {
    margin-top: 38px;
    width: 100%;
    max-width: 400px;
    height: 56px;
    border-radius: 35px;
    border: 1px solid #f9f9f9;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
  }
  .blog__categories-mobile--active {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 0 20px;
    font-family: Unbounded;
    color: #13eba2;
    font-size: 18px;
    font-weight: 700;
    line-height: 106.765%; /* 19.218px */
    text-transform: uppercase;
  }
  .blog__categories-mobile__menu {
    padding: 10px 24px 30px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .blog__categories-mobile__menu-cat {
    color: #f9f9f9;
    font-family: Unbounded;
    font-size: 18px;
    font-weight: 700;
    line-height: 106.765%; /* 19.218px */
    text-transform: uppercase;
    text-decoration: none;
  }
  .blog__categories-mobile__menu-cat.active {
    color: #13eba2;
  }
  .blog__categories-mobile svg {
    transition: 0.5s;
  }
  .blog__categories-mobile.active svg {
    transform: rotate(180deg);
  }
  .contact__popup,
  .contact__popup-2 {
    top: 67px;
    height: calc(100vh - 67px);
    align-items: flex-start;
    padding-top: 60px;
  }
  .founder-new--text-box {
    margin-bottom: 24px;
    height: 200px;
    position: relative;
    overflow: hidden;
    transition: 1s;
  }
  .contact__popup--svg {
    right: 0;
    top: -50px;
  }
  .founder-new--text {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 70%);
    background-clip: border-box;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 146.9%;
    transition: 0.5s;
  }
  .founder-new--text-box.active .founder-new--text {
    background: linear-gradient(180deg, #fff 100%, rgba(255, 255, 255, 0) 100%);
    background-clip: border-box;
    background-clip: border-box;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .founder-new--text--show-more {
    margin-left: auto;
    width: min-content;
    white-space: nowrap;
    height: 43px;
    padding: 10px 57px 10px 37px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #f9f9f9;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    line-height: 146.9%;
  }
  .founder-new--text--show-more svg {
    transition: 0.3s;
  }
  .founder-new--text--show-more.open svg {
    transform: rotate(-90deg);
  }
  .thank-you {
    width: 100vw;
    position: relative;
    overflow-x: hidden;
  }
  .thank .container {
    padding: 125px 15px 0 15px;
    min-height: 0;
  }
  .thank--h1 {
    margin-bottom: 25px;
    font-size: 23px;
    letter-spacing: -0.1px;
  }
  .thank--p {
    margin-bottom: 25px;
    font-size: 16px;
  }
  .thank__btns {
    flex-wrap: wrap;
  }
  .thank__btns .btn {
    width: 300px;
    max-width: 100%;
  }
  .thank__footer {
    display: none;
  }
  .contact-new__row .contact-new__row--img:nth-child(2) {
    margin-right: auto;
  }
  .team--h1 {
    font-size: 26px;
  }
  .pack__bonus--svg {
    top: calc(50% - 14px);
  }
  .btn {
    height: 61px;
    width: 100%;
  }
  .context-hero__card__types .context-hero__card__type:last-child {
    margin-right: 50px;
  }
  .privacy-box {
    width: 100%;
  }
  .context-free-popup__footer__item:last-child,
  .context-free-popup__footer__item:last-child p {
    width: 100%;
  }
  .context-free-popup-close {
    top: 10px;
    right: 10px;
  }
  .context-free-popup {
    overflow: auto;
    align-items: flex-start;
  }
  .contact__popup,
  .contact__popup-2 {
    overflow-x: auto;
  }
  .cases-new__popup {
    overflow-y: auto;
    align-items: flex-start;
  }
  .founder-new__video {
    display: flex;
    justify-content: center;
  }
  #callnowbutton {
    display: none !important;
  }
  .cases__hero__li__col-1,
  .cases__hero__li__col-2 {
    width: 100%;
  }
  .cases__hero__li__col-1 {
    height: 240px;
  }
  .cases__hero .container {
    padding: 0 30px;
  }
  .cases__hero .glide__arrows {
    display: none;
  }
  .cases__hero--h2 {
    font-size: 30px;
  }
  .cases__hero__li__col-3 svg {
    display: none;
  }
  .cases__hero__li {
    gap: 15px;
  }
  .cases__hero {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .cases__hero__li__col-3 {
    gap: 10px;
  }
  .cases__hero__li__col-3 .cases-new__case__action {
    flex-direction: column;
    height: auto;
    padding: 18px 22px 17px 21px;
    border-radius: 41px;
  }
  .cases__hero__li__col-3 .cases-new__case__action strong {
    font-size: 26px;
  }
  .propose-new__item {
    margin: auto;
  }
  .propose-new .glide__bullets {
    bottom: -50px;
    display: flex;
    gap: 14px;
  }
  .propose-new .glide__bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    box-shadow: none;
    border: 2px solid #fff;
    margin: 0;
    padding: 0;
    transition: 0.3s;
  }
  .propose-new .glide__bullet--active {
    background: #fff;
  }
  .propose-new .glide__arrow {
    width: 48px;
    height: 48px;
    top: calc(50% - 24px);
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .strategy-why-new__line .strategy-new__line--text span,
  .strategy-new__line--text span {
    padding: 0 10px;
  }
  .single__col-2.single__col-mw h1 {
    font-size: 32px;
  }
  .single__col-2.single__col-mw h2 {
    font-size: 30px;
  }
  .single__col-2.single__col-mw h3,
  .single__col-2.single__col-mw h4 {
    font-size: 28px;
  }
  .advantages--p {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .service-hero__items {
    flex-direction: column;
  }
  .service-hero__item {
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .single__col-2.single__col-mw h1 {
    font-size: 25px;
  }
  .single__col-2.single__col-mw h2 {
    font-size: 22px;
  }
  .single__col-2.single__col-mw h3,
  .single__col-2.single__col-mw h4 {
    font-size: 20px;
  }
}
@media (max-width: 380px) {
  .context-free-popup__box {
    border-top-right-radius: 0;
  }
  .context-free-popup-close {
    top: 2px;
    right: 2px;
  }
  .single__col-2.single__col-mw h1 {
    font-size: 23px;
  }
}
