/**************************************************/
/**         GENERAL RESET & BASE STYLES          **/
/**************************************************/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

/* @font-face {
  font-family: "AnastasiaScript";
  src: url("../fonts/AnastasiaScript.woff2") format("woff2"),
    url("../fonts/AnastasiaScript.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */
:root {
  --orange: #fc0;
  --black: #1a1a1a;
  --white: #fff;
  --gray: #262626;
  --light-gray: #464646;
  --section-top: 120px;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  color: var(--black);
}

*:focus {
  outline: none;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--black);
}

main {
  flex: auto;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

input,
textarea,
select {
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;
  font-size: 16px;
  font-weight: 400;

  border: 1px solid transparent;
  color: #000;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #9a9a9a;
  font-size: 16px;
  font-weight: 400;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #1a1a1a;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
  background: #f2f2f2;
}

.hover {
  transition: opacity 0.4s;
}

.hover:hover {
  opacity: 0.5;
}

.container {
  display: block;
  position: relative;
  width: 1200px;
  padding: 0;
  margin: 0 auto;
}

/**************************************************/
/**                 MAIN STYLES                  **/
/**************************************************/
.list-item {
  display: flex;
  gap: 10px;
  padding-left: 10px;
}
.list-item::before {
  content: "";
  margin-top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background-color: var(--white);
  flex-shrink: 0;
}
.get-contact_btn {
  display: block;
  border-radius: 10px;
  border: none;
  background: var(--orange);
  padding: 18px 42px;
  display: flex;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s background-color;
}
.get-contact_btn:hover {
  background-color: var(--white);
}
.more_btn {
  display: block;
  border-radius: 6px;
  background: var(--white);
  border: none;
  padding: 10px;
  transition: 0.3s background-color;
  cursor: pointer;
  max-width: 244px;
  width: 100%;

  color: var(--black);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
.more_btn:hover {
  background-color: var(--orange);
}
.more_btn2 {
  display: block;
  border-radius: 6px;
  background: var(--orange);
  border: none;
  padding: 17px;
  transition: 0.3s background-color;
  max-width: 370px;
  width: 100%;

  color: var(--black);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
}
.more_btn2:hover {
  background-color: var(--white);
}
.grey-section {
  border-radius: 30px;
  background: var(--gray);
  padding: 60px 0;
}
.title,
.title span {
  color: var(--white);
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}
.title span {
  color: var(--orange);
}

/* hero */
.hero__inner {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 180px 0 100px;
}
.coin > div {
  position: absolute;
  pointer-events: none;
}
.coin .img-first {
  width: 127px;
  height: 146.247px;
  bottom: 130px;
  left: 70px;
}
.coin .img-second {
  width: 184.616px;
  height: 164.943px;
  right: 40px;
  bottom: 90px;
}
.hero-title,
.hero-title span {
  color: var(--white);
  text-align: center;
  font-family: Gilroy;
  font-size: 58px;
  font-weight: 600;
  user-select: none;
}
.hero-title span {
  background-color: var(--orange);
  border-radius: 6px;
  color: var(--black);
  display: inline-block;
  padding: 0 5px;
  margin-left: 8px;
}
.hero_top p {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  margin-top: 16px;
}
.hero_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.hero_top .get-contact_btn {
  margin-top: 50px;
}
.hero-arrow {
  margin-top: 23px;
  width: 37px;
  height: 37px;
  animation: down 2s infinite ease-out;
}
@keyframes down {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }

  60% {
    transform: translateY(0px);
    opacity: 1;
  }

  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}
.hero-bottom {
  margin-top: 90px;
}
.hero-bottom-box {
  margin-top: 50px;
  /* display: grid; */
  display: flex;
  /* grid-template-columns: repeat(4, 1fr); */
  gap: 16px;
}
.hero-bottom-item {
  border-radius: 11px;
  background: var(--gray);
  padding: 20px;
  padding-right: 35px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  flex: 1;
}
.hero-bottom-item__img {
  padding: 10px;
  border-radius: 11px;
  background-color: var(--black);
  width: max-content;
  display: flex;
}
.hero-bottom-item__img img {
  width: 35px;
  height: 35px;
}
.hero-bottom-item__text {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}
/* hero */

/* about */

.about__bottom {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 365px 240px;
  gap: 60px 16px;
}
.about-title {
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  background: var(--orange);
  padding: 12px 18px;
}
.about-text {
  background-color: var(--black);
  padding: 19px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 10px;
  flex: 1;
  height: 100%;
  position: relative;
  z-index: 2;
}
.about-text p {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}
.about-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.about-item.center {
  position: relative;
  grid-column: span 3;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.about-item.center .img {
  width: 190.171px;
  height: 120.142px;
  position: relative;
  z-index: 2;
}
.about-item.center .about-text {
  text-align: center;
  margin-top: 13px;
  width: 210px;
  background: transparent;
}
.about .img-absolute {
  position: relative;
  z-index: 0;
}
.about-item.top {
  transform: translateY(130px);
}
.about-item.bottom {
  transform: translateY(-130px);
}
/* about */

/* ecosistem */
.ecosistem {
  padding-top: var(--section-top);
}
.ecosistem-title {
  margin-top: 14px;
  color: var(--white);
  text-align: center;
  font-size: 76px;
  font-weight: 700;
  text-transform: uppercase;
}
.ecosistem-subtitle {
  margin-top: 9px;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.ecosistem-wrap {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.ecosistem-item {
  display: flex;
  gap: 50px;
}
.title-orange {
  color: var(--orange);
  font-size: 28px;
  font-weight: 600;
}
.ecosistem-item__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
}
.ecosistem-item__right p,
.ecosistem-item__right li {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}
.ecosistem-item__right li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background-color: var(--white);
}
.ecosistem-item__right li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
}
.ecosistem-item__right p {
  margin-top: 18px;
}
.ecosistem-item__right ul {
  margin-top: 14px;
}
.ecosistem .more_btn2 {
  margin-top: 33px;
}
.ecosistem-item__left {
  width: 490px;
  border-radius: 10px;
  overflow: hidden;
}
/* ecosistem */

/* vopros */
.vopros {
  margin-top: var(--section-top);
  border-radius: 30px;
  background: var(--orange);
  height: 225px;
  overflow: hidden;
}
.vopros .container {
  height: 100%;
}
.vopros--inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.title-vopros {
  font-size: 44px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.subtitle-vopros {
  margin-top: 13px;
  font-size: 20px;
  font-weight: 400;
  max-width: 710px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.vopros img {
  position: absolute;
  width: 170.601px;
  height: 266.152px;
  right: -50px;
}

.with-vopros {
  margin: 70px 0 var(--section-top);
}
.with-vopros__inner {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.with-vopros-item {
  border-radius: 10px;
  background: var(--gray);
  padding: 20px 91px 25px 25px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.with-vopros-item-l {
  padding: 10px;
  border-radius: 11px;
  background: var(--black);
  width: max-content;
}
.with-vopros-item-l img {
  width: 35px;
  height: 35px;
  aspect-ratio: 1/1;
}
.with-vopros-title {
  margin-top: 10px;
  color: var(--white);
  font-size: 30px;
  font-weight: 600;
}
.with-vopros-text {
  margin-top: 16px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}
/* vopros */

/* partners */
.partners {
  border-radius: 30px;
  background: var(--white);
  padding: 63px 0 51px;
}
.partners .title {
  color: var(--black);
}
.partners-subtaitle {
  margin-top: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.partners img {
  display: block;
  margin-top: 35px;
}
.partners-text {
  margin-top: 40px;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
}
/* partners */

/* example */
.example {
  margin-top: var(--section-top);
}
.example__top {
  margin-top: 65px;
  display: flex;
  gap: 55px;
}
.example__top-img {
  width: 660px;
  border-radius: 16px;
  border: 1px solid #797979;
  overflow: hidden;
}
.example__top-img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.example__top-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.example__top-item span {
  color: var(--orange) !important;
  font-weight: 600 !important;
}
.example__top-item p:nth-child(1),
.example__top-item p:nth-child(1) span {
  color: var(--white);
  font-size: 26px;
  font-weight: 400;
}
.example__top-item p:nth-child(2),
.example__top-item p:nth-child(2) span {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
}
.example__bottom {
  margin-top: 70px;
}
.example-title {
  color: var(--white);
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}
.example__bottom-box {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.example__bottom-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.example__bottom-item > p {
  border-radius: 10px;
  padding: 12px 20px;
  background: var(--orange);
  font-size: 26px;
  font-weight: 700;
}
.example__bottom-item ul {
  border-radius: 10px;
  background: var(--black);
  padding: 20px 93px 20px 20px;
  flex: 1;
}
.example__bottom-item li {
  display: flex;
  gap: 10px;
  padding-left: 10px;
}
.example__bottom-item li p {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  flex: 1;
}
.example__bottom-item li::before {
  content: "";
  margin-top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background-color: var(--white);
}
/* example */

/* forma */
.forma {
  margin-top: var(--section-top);
  margin-bottom: 20px;
}
.forma--inner {
  padding-bottom: 55px;
}
.forma-title {
  color: var(--white);
  font-size: 38px;
  font-weight: 700;
}
.forma-subtotal {
  margin-top: 11px;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}
.form__wrap {
  margin-top: 45px;
  width: 484px;
  padding: 30px;
  border-radius: 10px;
  background: var(--white);
}
.form-title {
  color: #201d1d;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}
.input-wrap p {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 27px;
  width: 100%;
}
.input-wrap .input {
  border-radius: 10px;
  background: #f2f2f2;
  padding: 17px 20px;
  width: 100%;
}
.form__text {
  color: #201d1d;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  margin-top: 15px;
}
.form--btn {
  margin-top: 20px;
  background: var(--orange);
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
  cursor: pointer;

  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.forma .img-absolute {
  position: absolute;
  width: 400px;
  right: 0;
  bottom: 0;
}
/* forma */

/* footer */
.footer {
  margin-top: 30px;
}
.logo {
  width: 268px;
  height: 54.913px;
}
.footer_top {
  display: grid;
  gap: 35px;
  grid-template-columns: auto 1fr;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social.last {
  justify-content: flex-end;
}
.footer-social.last > a {
  width: 37px;
  height: 42px;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.footer-social.first a img {
  width: 24px;
  height: 24px;
}
.footer-social a:hover p {
  color: var(--orange);
}
.footer-social a p {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s;
}
.footer-right {
  display: flex;
  gap: 50px;
  margin-top: 12px;
  justify-content: flex-end;
}
.footer-right a {
  color: var(--white);
  font-size: 25px;
  font-weight: 600;
  transition: color 0.3s;
}
.footer-right a:hover {
  color: var(--orange);
}
.footer_bottom {
  margin-top: 65px;
  border-top: 1px solid #6a6a6a;
  padding: 30px 0 60px;

  color: #6a6a6a;
  font-size: 24px;
  font-weight: 400;
}
/* footer */

/* ltv */
.ltv {
  margin-top: var(--section-top);
}
.ltv-top {
  display: flex;
  margin-top: 60px;
  gap: 65px;
}
.ltv-top-l {
  flex: 1;
}
.ltv-top-l .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ltv-top-l .text p {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
}
.ltv-top-l .get-contact_btn {
  margin-top: 30px;
}
.ltv-top-r {
  border-radius: 10px;
  overflow: hidden;
  max-width: 645px;
}
.ltv-top-r img {
  height: 100%;
  object-fit: cover;
}
.ltv-bottom-title,
.ltv-bottom-title span {
  color: var(--white);
  font-size: 30px;
  font-weight: 600;
}
.ltv-bottom {
  margin-top: 55px;
}
.ltv-bottom-title span {
  color: var(--orange);
}
.ltv-bottom-box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  overflow: hidden;
}
.ltv-bottom-item {
  border-radius: 10px;
  background: var(--black);
  padding: 20px;
  position: relative;
}
.ltv-bottom-item::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: var(--orange);
  left: -25px;
  top: 50%;
  bottom: 50%;
}
.ltv-bottom-item__top {
  display: flex;
  gap: 12px;
  align-items: center;
}
.ltv-bottom-item__top .img {
  border-radius: 10px;
  background: var(--gray);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ltv-bottom-item__top img {
  width: 30px;
  height: 30px;
}
.ltv-bottom-item__top .text {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}
.ltv-bottom-item__bottom {
  margin-top: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}
/* ltv */

/* product-gg */
.product-gg {
  margin-top: var(--section-top);
}
.product-gg__wrap {
  margin-top: 60px;
  display: flex;
  gap: 40px;
}
.product-gg__wrap .img {
  width: 498px;
  border-radius: 16px;
  overflow: hidden;
}
.product-gg__wrap .right {
  flex: 1;
}
.product-gg__wrap .right > p {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}
.product-gg-title {
  margin-top: 30px;
  color: var(--orange);
  font-size: 30px;
  font-weight: 600;
}
.product-gg__wrap ul {
  margin-top: 10px;
}
.product-gg__wrap ul li {
  display: flex;
  gap: 8px;
  padding-left: 8px;
}
.product-gg__wrap ul li::before {
  content: "";
  margin-top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background-color: var(--white);
}
.product-gg__wrap li p {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  flex: 1;
}
/* product-gg */

/* gg-crm-platform */
.gg-crm-platform {
  margin-top: var(--section-top);
}
.gg-crm-platform .more_btn {
  max-width: none;
}
.gg-crm-platform__wrap {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 345px 370px 345px;
  gap: 20px 15px;
}
.gg-crm-platform__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.gg-crm-platform-title {
  border-radius: 10px;
  background: var(--orange);
  padding: 12px 18px;
  font-size: 26px;
  font-weight: 700;
}
.gg-crm-platform__item.top {
  transform: translateY(220px);
}
.gg-crm-platform__item.bottom {
  transform: translateY(-130px);
}
.gg-crm-platform-text {
  padding: 20px;
  background: var(--black);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.gg-crm-platform-text span {
  display: block;
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
}
.gg-crm-platform-text p {
  color: #fff;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.gg-crm-platform__item.center {
  position: relative;
  grid-column: span 3;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.gg-crm-platform .img-relative {
  position: relative;
  z-index: 0;
  width: 520px;
}
/* gg-crm-platform */

/* star */
.star {
  border-radius: 30px;
  background: var(--orange);
  overflow: hidden;
  padding: 60px 0 0;
  margin-top: var(--section-top);
}
.star1 {
  width: 313px;
  height: 313px;
  position: absolute;
  bottom: 50px;
  left: -310px;
}
.star2 {
  width: 313px;
  height: 313px;
  position: absolute;
  top: -130px;
  right: -130px;
}
.star .title {
  color: var(--black);
}
.star-text {
  margin-top: 30px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  max-width: 645px;
}
.star__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.star-bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 55px 0 60px;
}
.star-item {
  display: grid;
  grid-template-columns: 210px auto;
  align-items: center;
  gap: 20px;
}
.star-white {
  padding: 14px;
  background: var(--white);
  border-radius: 10px;

  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.star-item > p {
  font-size: 20px;
  font-weight: 600;
}
.star-w-section {
  background: var(--white);
  padding: 60px 0;
}
.star-w-section-content {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}
.star-w-section-content p {
  font-size: 22px;
  font-weight: 600;
}
.star-w-section__inner {
  display: flex;
  gap: 60px;
  align-items: center;
}
.star-w-section__inner > p {
  font-size: 22px;
  font-weight: 600;
}
.star-w-section__inner > a {
  padding: 20px 41px;
  display: flex;
  justify-content: center;
  border-radius: 10px;
  background: var(--orange);
  min-width: max-content;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}
/* star */

/* team */
.team {
  margin-top: var(--section-top);
}
.team__wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 85px;
}
.team-item {
  border-radius: 15px;
  background: var(--gray);
}
.team-top {
  border-radius: 15px 15px 0 0;
  border: 2px solid var(--orange);
  display: flex;
  justify-content: center;
}
.team-top img {
  width: 186px;
  height: 186px;
}
.team-bottom {
  padding: 19px 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.team-title {
  color: var(--white);
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}
.team-text {
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
/* team */

/* product-content */
.products {
  margin-top: var(--section-top);
}
.products-wrap {
  margin-top: 60px;
  border-radius: 24px;
  background: var(--gray);
  padding: 20px;
  position: relative;
}
.products-tab {
  display: grid;
  gap: 20px;
}
.products-tab .rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 14px;
  background: var(--black);
}
.products-tab-item {
  padding: 25px 10px;
  text-align: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s all;

  cursor: pointer;
  border-radius: 14px;
  display: flex;
  align-items: center;
}
.products-tab-item.active {
  background: var(--orange);
  color: var(--black);
}
.product-content {
  position: relative;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-content > div {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: 0.3s all;
  top: 0;
}

.product-content__left-item,
.product-content__right .img {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: 0.3s all;
  z-index: 0;
  height: 100%;
}
.product-content__left-item {
  top: 30px;
}
.product-content__right .img img {
  object-position: center;
  object-fit: cover;
  height: 100%;
}
.product-content__left-item.active,
.product-content__right .img.active {
  position: relative;
  opacity: 1;
  z-index: 1;
  top: 0;
}
.product-navigation {
  position: absolute;
  right: 50px;
  bottom: 55px;
  z-index: 2;
  display: flex;
  gap: 16px;
  align-items: center;
}
.product-navigation > div {
  padding: 13px;
  background: rgba(66, 66, 66, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 100px;
  cursor: pointer;
}
.product-content__left {
  padding: 30px 0 30px 30px;
  background: var(--black);
}
.product-content__left-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  max-width: 400px;
  margin-bottom: 18px;
}
.product-content__left-subtitle {
  color: var(--orange);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  margin-bottom: 8px;
}
.product-content__left-subtitle::after {
  content: "";
  width: 425px;
  position: absolute;
  right: 0;
  top: 50%;
  bottom: 50%;
  height: 1px;
  background-color: var(--orange);
}
.product-content__left-text {
  margin-bottom: 25px;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}
.product-content__left-item li p {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  flex: 1;
}
.products .more_btn {
  margin-top: 34px;
}
/* product-content */

/* support */
.support {
  margin-top: var(--section-top);
}
.support-subtitle {
  margin-top: 15px;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.support-wrap {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: start;
  margin-top: 60px;
}
.support-item:nth-child(even) .support-wrap {
  flex-direction: row-reverse;
}
.support-item:nth-child(even) {
  margin-top: 70px;
}
.support-wrap > div {
  flex: 1;
}
.support-left {
  border-radius: 16px;
  overflow: hidden;
}
.support-left img {
  object-fit: cover;
  object-position: center;
}
.support-box {
  padding: 35px 45px;
  margin-top: 40px;
  border-radius: 14px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support-box p {
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.support-box .get-contact_btn {
  margin-top: 30px;
  width: max-content;
}
.support-right-text {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}
.support-right ul {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.support-right li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.support-right li p,
.support-right li p span {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  flex: 1;
}
.support-right li p span {
  color: var(--orange);
}
.support-right li::before {
  content: url(../images/check-box.svg);
  width: 24px;
  height: 24px;
}
/* support */

/* what-is */
.what-is {
  margin-top: var(--section-top);
}
.what-is .title {
  text-align: left;
}
.what-is__top {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 470px auto;
  gap: 50px;
}
.what-is__top-text {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
}
.what-is__top-descr {
  margin-top: 25px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}
.what-is__top-l ul {
  margin-top: 10px;
}
.what-is__top-l ul p {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  flex: 1;
}
.what-is__top-r {
  border-radius: 10px;
  overflow: hidden;
}
.what-is__top-r img {
  object-position: center;
  height: 100%;
  object-fit: cover;
}
.what-is-subtotal {
  margin-top: 70px;
  color: var(--white);
  font-size: 30px;
  font-weight: 600;
}
.what-is__bottom {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  overflow: hidden;
}
.what-is__bottom-item {
  border-radius: 8px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 0;
  position: relative;
}
.what-is__bottom-item::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--orange);
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: -32px;
}
.what-is__bottom-img {
  border-radius: 12px;
  padding: 7px;
  background: var(--gray);
}
.what-is__bottom-img img {
  width: 40px;
  height: 40px;
}

.what-is__bottom-title {
  padding: 0 5px;
  margin-top: 25px;
  color: var(--white);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.what-is__bottom-text {
  margin-top: 12px;
  padding: 0 15px;
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.what-is__bottom-arrow {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  margin-top: 10px;
}
.what-is__bottom-white {
  margin-top: 12px;
  padding: 22px 12px;
  border-radius: 10px;
  background: var(--white);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
}
/* what-is */

/* acquisition */
.acquisition {
  margin-top: var(--section-top);
}
.acquisition .more_btn2 {
  max-width: none;
}
.acquisition-title {
  display: flex;
  justify-content: center;
}
.acquisition-item-l {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.acquisition-title_wrap {
  display: flex;
  flex-direction: column;
  width: max-content;
  text-align: center;
  gap: 9px;
}
.acquisition-title span {
  padding: 15px;
  display: block;
  color: var(--black);
  text-align: center;
  font-size: 66px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 14px;
  background: var(--orange);
}
.acquisition-title p {
  color: var(--white);
  text-align: center;
  font-size: 75px;
  font-weight: 700;
  text-transform: uppercase;
}
.acquisition-item {
  margin-top: 200px;
}
.acquisition-item__title {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px;
  align-items: center;
  z-index: 2;
  background: var(--white);
  border-radius: 10px;
}
.acquisition-item__title p {
  color: var(--black);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.acquisition-item__title span {
  display: block;
  position: absolute;

  color: var(--white);
  text-align: center;
  font-size: 210px;
  font-weight: 900;
  text-transform: uppercase;
  bottom: 0;
  right: 15px;
  transform: rotate(10.025deg);
}
.acquisition-item-box {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 640px auto;
  gap: 50px;
}
.acquisition-item-l ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
}
.acquisition-item-l ul p {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}
.acquisition-item-r {
  border-radius: 10px;
  overflow: hidden;
}
.acquisition-item-r img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* acquisition */

/* platform */
.platform {
  margin-top: var(--section-top);
}
.platform-title {
  position: relative;
}
.platform-title span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 30px;
  border: 6px solid #1a1a1a;
  background: var(--white);
  position: absolute;
  right: 0;
  bottom: -60px;
  transform: rotate(-4.235deg);
}
.platform-bottom {
  margin-top: 88px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.platform-bottom .support-left {
  max-width: 498px;
}
.platform-bottom .support-right {
  flex: 1;
}
/* platform */

/* structure */
.structure {
  margin-top: var(--section-top);
}
.structure-subtotal {
  margin-top: 20px;
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.structure-box {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.structure-item {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 50px;
}
.structure-item__left {
  position: relative;
}
.structure-title {
  font-size: 22px;
  font-weight: 700;
  border-radius: 10px;
  background: var(--orange);
  padding: 10px;
  display: flex;
  justify-content: center;
}
.structure-item__left > span {
  display: block;
  position: absolute;
  color: var(--orange);
  font-size: 82px;
  font-weight: 700;
  transform: rotate(10.5deg);
  top: -73px;
  left: 20px;
}
.structure-text {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}
/* structure */

/* first-section */
.first-section {
  padding-top: 180px;
}
.first-section .hero-bottom {
  margin-top: 100px;
}
.first-section-l {
  max-width: 700px;
}
.first-section__top {
  position: relative;
  display: flex;
}
.first-section-r {
  position: absolute;
  max-width: 560px;
  right: 70px;
  top: -80px;
}
.first-section-l > p {
  margin-top: 13px;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  max-width: 420px;
}
.first-section-l .get-contact_btn {
  margin-top: 33px;
  width: max-content;
}
.first-title,
.first-title span {
  color: var(--white);
  font-size: 58px;
  font-weight: 600;
}
.first-title span {
  color: var(--orange);
}
/* first-section */

/* MK CSS */
.solutions {
  margin-top: var(--section-top);
}
.solutions__top {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.solutions__inner {
  display: flex;
  flex-direction: column;
  gap: 110px;
}
.solutions__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: fit-content;
  justify-content: center;
  margin: 0px auto;
}
.solutions__list-wrap {
  width: 55%;
  flex-shrink: 0;
}
.solutions__img {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.solutions__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solutions__list-item {
  display: flex;
  gap: 17px;
}
.solutions__checkmark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.solutions__text {
  color: var(--white);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
/* Заменить */
.solutions__text > span {
  color: var(--orange);
}
.solutions__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.solutions__bottom {
  display: flex;
  gap: 40px;
}
.solutions__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.solution__cards-wrap {
  display: flex;
  flex-direction: column;
}
.min .solution__card-img {
  position: relative;
  z-index: 1;
  inset: 0;
  max-width: 192px;
}
.solutions__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 90px;
}
.solution-cards-title {
  margin-bottom: 15px;
}
.solution__card {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-radius: 15px;
  background: var(--gray);
}
.solutions.grey-section .solution__card {
  background-color: var(--black);
}
.solution__card-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 15px 45px;
}
.solution__card-title {
  color: var(--white);
  text-align: center;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.solution__card-text {
  color: var(--white);
  text-align: center;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.solution__card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: var(--orange);
  border-radius: 15px 15px 0px 0px;
}
.solution__card-img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translateY(-45px);
}
.solution-subtitle {
  border-radius: 10px;
  background: var(--white);
  padding: 10px;
  color: var(--black);
  font-family: Gilroy;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  width: 100%;
}
.solutions-btn {
  margin-top: 40px;
  margin-inline: auto;
  width: 100%;
  max-width: 332px;
  font-size: 22px;
  padding-inline: 10px;
}

.other-solutions {
  margin-top: var(--section-top);
}
.other-solutions__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.other-solutions__cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.other-solutions__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.other-solutions__card-heading {
  display: block;
  color: var(--black);
  background-color: var(--orange);
  border-radius: 10px;
  overflow: hidden;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 12px 18px;
  padding-right: 70px;
}
.other-solutions__card-content {
  padding: 23px 18px;
  border-radius: 10px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.other-solutions__card-content p {
  color: var(--white);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 131.13%;
}

.other-solutions-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  transition: all 0.4s;
  line-height: normal;
  margin-top: auto;
}
.other-solutions-link:hover {
  color: var(--white);
}
.other-solutions-link svg {
  color: inherit;
}
.other-solutions-link svg path {
  color: inherit;
}

/* escort section */
.escort {
  margin-top: var(--section-top);
}
.escort__bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.escort__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.escort__cards.small {
  grid-template-columns: repeat(3, 1fr);
}

.escort__cards.small::before {
  content: "";
  display: block;
  width: 190px;
  height: 186px;
  left: -240px;
  position: absolute;
  background: url(../images/sm-rocket.webp) no-repeat center/contain;
}
.escort__card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.escort__card-heading {
  color: var(--black);
  text-align: center;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background-color: var(--orange);
  overflow: hidden;
  border-radius: 10px;
  padding: 13px 25px;
}
.escort__card-block {
  display: flex;
  flex-direction: column;
  padding: 18px;
  background-color: var(--black);
  border-radius: 10px;
  flex: 1;
}
.escort-text {
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.escort__card-line {
  display: block;
  margin-top: 10px;
  width: 100%;
  background-color: var(--orange);
  height: 1px;
}
.escort__card-text-mt {
  margin-top: 10px;
}
.escort__card-btn {
  margin-top: 20px;
  padding: 10px;
  max-width: none;
}
.escort__card-fix {
  display: block;
  flex: 1;
}
.escort__top,
.escort__top-block {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.escort__top {
  gap: 60px;
}
.escort__top .title {
  text-align: left;
}
.escort__top-block {
  position: relative;
}
.escort__top-block p {
  color: var(--white);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.escort__top-block ul,
.escort__top-block a {
  max-width: 616px;
}
.escort__img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 420px;
}
.escort__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
/* escort section */
/* MK CSS */

/* header */
.header {
  position: fixed;
  width: 100%;
  background: var(--black);
  padding: 25px 0;
  top: 0;
  z-index: 10;
}
.menu {
  display: none;
}
.wrap__logo {
  display: block;
  width: 268px;
}
.heade-menu {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.heade-menu li a {
  display: block;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  transition: 0.3s all;
  cursor: pointer;
}
.heade-menu ul {
  display: flex;
  gap: 15px;
  align-items: center;
}
.heade-menu li a:hover {
  color: var(--orange);
}
.header-phone {
  display: block;
  border-radius: 6px;
  border: 1px solid var(--orange);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 10px;

  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  transition: 0.3s all;
  cursor: pointer;
}
.header-phone:hover {
  color: var(--orange);
}
.header-phone::before {
  content: url(../images/tg.svg);
  width: 24px;
  height: 24px;
}
.header-button {
  display: flex;
  gap: 20px;
  align-items: center;
}
.translate {
  width: 90px;
  border-radius: 10px;
}
/* header */

/* wp-contact-7 */
.wpcf7-spinner {
  position: absolute;
  top: 15px;
  left: 50%;
  margin: 0;
  right: 50%;
}
.wpcf7-form > p {
  position: relative;
}
.wpcf7-not-valid-tip {
  color: #f00;
  font-family: Gilroy;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-left: 10px;
}
.wpcf7 form .wpcf7-response-output {
  margin: 5px 0;
  padding: 0;
  border: none;
  font-size: 14px;
  text-align: center;
}

.trp-language-item > img {
  display: none;
}
.trp-language-item-name {
  text-align: right;
  font-size: 20px !important;
  font-weight: 700 !important;
}
.trp-shortcode-switcher {
  padding: 2px 0 !important;
}

/* pop-up styles */
.pop_up {
  position: fixed;
  z-index: -1;
  top: -100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.308);
  overflow: hidden;
  opacity: 0;
  /* backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px); */
  transition: 0.5s all;
}
.pop_up .form__wrap {
  margin-top: 0px;
}
.pop_up.modal_active {
  opacity: 1;
  z-index: 10;
  top: 0;
}
.pop-up_container {
  padding: 0 20px;
  width: 100%;
  max-width: max-content;
  position: relative;
  display: flex;
  justify-content: center;
}
.pop-up_content {
  padding: 30px 20px;
  width: 100%;
}
.close-pop_up {
  position: absolute;
  right: 45px;
  top: 20px;
  cursor: pointer;

  font-size: 48px;
  font-weight: 400;
  transform: rotate(45deg);

  transition: 0.5s;
}
.close-pop_up:hover {
  transform: rotate(225deg);
}
.pop_up .footer-form__btn:hover {
  opacity: 0.8;
  background-color: var(--white);
}
.pop_up .footer-form__btn:hover span {
  color: var(--black);
}
.pop-up_container form {
  max-width: 650px;
}
/* pop-up styles */

.header__inner,
.heade-menu,
.btn-menu,
.translate a {
  -webkit-tap-highlight-color: transparent; /* для iOS/Android */
  outline: none; /* убираем стандартный outline */
}
