:root {
  --color-cyan: #4ED4F7;
  --color-red: #9C2D2D;
  --color-orange: #EB6013;
  --gradient-orange: linear-gradient(to right, #B92604, #E6BE2B);
  --logged-container-pseudo-offset: calc(50% - 50vw + 10px - 235px);
  --reviews-margin: 21px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat';
  font-size: 14px;
}

div,
span {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
  box-sizing: border-box;
}

h3 {
	font-size: 3rem;
}

h4 {
	font-size: 2.2rem;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

input[type="text"],
input[type="tel"] {
  width: 100%;
  box-sizing: border-box;
}

input[type="submit"] {
  cursor: pointer;
}


.text-cyan {
  color: var(--color-cyan);
}

.text-gradient-orange{
  display: inline-block;
  color: transparent;
  background: var(--gradient-orange);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  width: 100%;
  max-width: 1310px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

h2, .h2,
.section-title {
  font-family: 'Gropled';
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.btn {
  display: block;
  width: 100%;
  max-width: 320px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-right: auto;
  margin-left: auto;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 32px;
  color: #fff;
  text-align: center;
  border: 0;
  border-radius: 8px;
}

.btn--orange-gradient {
  background-image: var(--gradient-orange);
}

.section-title {
  /* font-family: 'Gropled', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #fff;*/
  margin: 0;
  text-align: center;
}

.wrapper {
}

.wrapper--front {
  /* background-size: cover; */
  background-repeat: no-repeat;
  background-color: #0c0c0c;
}
.header-main {
  padding-top: 24px;
  position: relative;
}

.header-main::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: #000;

}
.header-main__container {
  display: flex;
  align-items: center;
}
.logo,
.footer-page .footer__logo {
  display: flex;
  align-items: center;
}
.logo-img {
}

.logo-dynamic-text {
  width: 96px;
  height: 54px;
  margin-left: 8px;
  position: relative;
  font-family: 'Gropled', sans-serif;
  font-size: 32px;
  line-height: 1.15;
  color: #fff;
}

.logo-dynamic-text__item {
  /* display: none; */
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: logoText 12s infinite; /* Применяем анимацию */
}

.logo-dynamic-text__item span {
  display: block;
  font-size: 14px;
  color: #9F9FA1;
}

/* Определяем анимацию */
@keyframes logoText {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }  
}

/* Дублируем span для большего количества текстов */
.logo-dynamic-text__item:nth-of-type(2) {
  animation-delay: 4s;
}
.logo-dynamic-text__item:nth-of-type(3) {
  animation-delay: 8s;
}


/*** .nav-main */
.nav-main {
  display: flex;
  width: 680px;
  justify-content: space-between;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 50px;
}
.nav-main__item {
  display: flex;
  /* display: block; */
  list-style-type: none;
}

.nav-main > .nav-main__item {
  position: relative;
}
.nav-main__item-link {
  display: block;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.nav-main__item-link {
  display: block;
  width: 100%;
  padding: 0.8em 1em;
  position: relative;
  z-index: 10;
  line-height: 1.2;
  border-radius: 8px;
}

.nav-main__item-link--sub {
  padding-right: calc(1em + 32px - 10px);
}

.nav-main__item-link:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.nav-main__item:hover {
  background-color: #2A292F;
  border-radius: 8px;
}

.nav-main__submenu {
  display: none;
  min-width: 100%;
  padding-top: 8px;
  padding-left: 0;
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  z-index: 9;
  background-color: #2A292F;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.nav-main__item:hover > ul {
  display: block;
}

.nav-main__btn-submenu {
  width: 28px;
  height: 100%;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  font-size: 0;
  background: none;
  background-image: url(../images/icons/arrow-down-angle.svg);
  background-size: 14px;
  background-position: center center;
  background-repeat: no-repeat;
  border: 0;
}
/** /.nav-main */


.header-contacts {
  margin-left: auto;
  display: flex;  
  gap: 20px;
}
.header-contacts__item {
}

.header-contacts__item-link {
  display: inline-block;
  padding-left: 33px;
  position: relative;
  font-weight: 600;
  color: #fff;
  line-height: 24px;
}

.header-contacts__item-link svg {
  position: absolute;
  top: 0;
  left: 0;
}
.header-contacts__item--mail {
}

.block-page-mobile-menu__icon {
  display: none;
}

.front-content .container {
  display: flex;
}

.front-content .container > div {
  width: 100%;
}


.front-main {
  display: grid;
  grid-template-columns: 750px 1fr;
  /* grid-auto-rows: max-content; */
  /* grid-auto-flow: column; */
}

.front-main > div,
.front-main > ul,
.front-main > a {
  align-self: flex-start;
}

/* .front-main > div:nth-of-type(n+5),
.front-main > ul:nth-of-type(n+5) { */
.front-main > :nth-child(n+5) {
  grid-column: span 2;
}


.paragraph--type--advantages-front-first {
  position: relative;
  z-index: 1;
}

.front-main__pre-text {
  margin-top: 113px;
  font-size: 16px;
  line-height: 1.5;
  color: #9F9FA1;
}
.front-main__title {
  margin-top: 43px;
  margin-bottom: 0;
  font-family: 'Gropled';
  font-size: 90px;
  color: #EEF9FF;
  line-height: 1;
}
.front-main__why {
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 48px;
  margin-top: 60px;
  font-size: 16px;
  line-height: 1.25;
  text-decoration: none;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);

}
.text-cyan {
}
.front-main__feeds {
  display: flex;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.front-main__feeds > div:nth-child(1) {
  padding-right: 17px;
}
.front-main__feeds > div:nth-child(2) {
  padding-left: 17px;
  border-left: 1px solid #39535D;
}

.services-feeds {
  position: relative;
  /* z-index: 1; */
}

/*** Why-we */
.why-we {
  /* grid-column: span 2; */
  margin-top: 90px;
  color: #fff;
}


.why-we__cards {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 73px;
}
.why-we__card {
  width: 373px;
  padding: 16px 16px 20px;
  position: relative;
  border-radius: 30px;
  background-color: #fff;
  background-image: linear-gradient(75deg, #BE1212, #EB6013, #D89E38);
}

.why-we__card:nth-of-type(2) {
  margin-top: 58px;
  color: #444444;
  background-image: none;
}

.why-we__card:nth-of-type(2) .section-title {
  color: #000000;
}
.why-we__card-title {
  margin: 0;
  font-family: 'Gropled';
  font-size: 24px;
  line-height: 1.15;
}

.why-we__text {
  margin-top: 12px;
  font-weight: 500;
  line-height: 1.5;
  /* color: #fff; */
}
.why-we__text p {
  margin: 0;
}
.why-we__card::after {
  content: '';
  display: inline-block;
  width: 89px;
  height: 89px;
  position: absolute;
  right: -26px;
  top: calc(100% - 36px);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-we__card:nth-of-type(1)::after {
  background-image: url(../images/icons/shield-security.svg);
}

.why-we__card:nth-of-type(2)::after {
  top: -45px;
  background-image: url(../images/icons/bitcoin-convert.svg);
}

.why-we__card:nth-of-type(3)::after {
  background-image: url(../images/icons/favorite-chart.svg);
}
/** /Why-we */

.marquee-wrapper + .services-feeds {
  /* display: flex; */
  /* justify-content: center; */
  
}
.services-feeds--full::after {
  content: '';
  display: block;
  /* height: 1310px; */
  height: 70vw;
  max-height: 100%;
  width: calc(100vw - 20px);
  position: absolute;
  /* bottom: 0; */
  bottom: -50px;
  left: calc(50% - 50vw + 10px);
  z-index: 0;
  background-image: url(../images/bg-feeds.webp);
  /* background-size: contain; */
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 200px solid #000;
}

.services-feeds--full::before {
  content: '';
  display: block;
  height: 8vw;
  max-height: 100%;
  width: calc(100vw - 20px);
  position: absolute;
  bottom: -50px;
  left: calc(50% - 50vw + 10px);
  z-index: 1;
  background-position: center bottom;
  top: 0;
  background: linear-gradient(to bottom, black 50%, transparent 100%);
}

.services-feeds__icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-left: 0;
  margin-top: 53px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  list-style: none;
}
.services-feeds__icon {
  display: inline-block;
  border-radius: 8px;
  background-color: #19191E;
}

.services-feeds__icon.active {
  background-image: var(--gradient-orange);
}

.services-feeds__icon-link {
  display: flex;
  align-items: center;
  height: 46px;
  padding-right: 16px;
  padding-left: 16px;
  font-size: 0;
}
.services-feeds__icon-img {
  width: auto;
  height: 28px;
}

.services-feeds__more {
  margin-top: 20px;
  position: relative;
  z-index: 1;
  text-align: center;
  display: inline-block;
}
.services-feeds__more-item {
  display: none;
}
.services-feeds__more-item.active {
  display: block;
}
.services-feeds__more-title {
  display: block;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: 'Gropled';
  font-size: 48px;
  text-align: center;
  line-height: 1.25;
}
.services-feeds__image-text .services-feeds__image-text__text {
  color: #fff;
  line-height: 1.5;
  text-align: justify;
}
.services-feeds__image-text-right .services-feeds__image-text__image {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}
.services-feeds__image-text-left .services-feeds__image-text__image {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}
.services-feeds__image-text-right.paragraph-text-image-50-50 .services-feeds__image-text__image {
  max-width: 50%;
}
.services-feeds__image-text-right.paragraph-text-image-30-70 .services-feeds__image-text__image {
  max-width: 70%;
}
.services-feeds__image-text-right.paragraph-text-image-70-30 .services-feeds__image-text__image {
  max-width: 30%;
}
.services-feeds__image-text-left.paragraph-text-image-50-50 .services-feeds__image-text__image {
  max-width: 50%;
}
.services-feeds__image-text-left.paragraph-text-image-30-70 .services-feeds__image-text__image {
  max-width: 30%;
}
.services-feeds__image-text-left.paragraph-text-image-70-30 .services-feeds__image-text__image {
  max-width: 70%;
}
.services-feeds__image-text .services-feeds__image-text__image img {
  width: 100%;
}



.services-feeds .btn {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.front-main__footer-text {
  margin-top: 48px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  line-height: 1.4;
  color: #D1D1D2;
}
.event-bar {
  grid-column: 2;
  grid-row: 1 / 5;
  /* grid-row-end: span 3; */
  display: flex;
  flex-direction: column;
  width: 400px;
  padding: 20px 20px 28px;
  margin-left: auto;
  margin-top: 32px;
  position: relative;
  z-index: 1;
  color: #fff;
  background-color: #18181C;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.event-bar__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px 30px;
  align-items: start;
  padding: 12px 16px;
  background-color: #27262B;
}
.event-bar__header-title {
  width: 140px;
  margin: 0;
  font-size: 39px;
  line-height: 1.33;
}
.event-bar__header-discount {
  display: block;
  text-align: center;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  border: 2px solid #BB2905;
  border-radius: 8px;
}
.event-bar__price {
  font-size: 12px;
  line-height: 2;
}
.event-bar__price-now {
}
.event-bar__price-value {
  display: block;
  font-weight: bold;
}
.event-bar__price-old {
  width: 110px;
  margin-left: auto;
  color: #9F9FA1;
}
.event-bar__warning {
  margin-top: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: #A3A2A5;
  text-align: center;
}

.event-timer {
  padding: 12px 14px 0;
  margin-top: 17px;
  background-color: #2A292F;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.event-timer__time {
  display: flex;
  justify-content: space-between;
}
.event-timer__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 60px;
  position: relative;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
}

.event-timer__item:nth-of-type(n+2)::before {
  content: ':';
  display: inline-block;
  position: absolute;
  top: 18px;
  left: -14px;
}

.event-timer__item-units {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  line-height: 1.33;
  color: rgba(255, 255, 255, 0.4);
}
.event-bar__feeds {
  display: flex;
  padding: 6px 14px 18px;
  background-color: #2A292F;
}
.event-bar__feeds-label {
  font-size: 12px;
  color: #6F6E72;

}
.event-bar__feeds-amount {
  display: flex;
  margin-left: 7px;
}
.event-bar__feeds-btn {
  width: 28px;
  height: 24px;
  font-size: 0;
  background-color: #3C3C3B;
  border: 0;
  border-radius: 4px;
}
.event-bar__feeds-btn--minus {
}
.event-bar__feeds-value {
  width: 44px;
  line-height: 24px;
  text-align: center;
}
.event-bar__feeds-btn--plus {
}
.event-bar__feeds-discount {
  margin-left: auto;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  background-image: linear-gradient(to right, #BE1212, #EB6013 47%, #D89E38);
}
.event-bar__monthly {  
  font-size: 12px;
  white-space: nowrap;
  background-color: #222126;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.event-bar__monthly-price {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 50px;
  padding: 12px;
  position: relative;
  line-height: 2;
}
.event-bar__monthly-price:last-of-type::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid #18181C;
}
.event-bar__monthly-price--inactive {
  color: #6F6E72;
}
.event-bar__monthly-text {
}

.event-bar__monthly-text:nth-of-type(1) {
  width: 95px;
  padding-left: 27px;
  position: relative;
}

.event-bar__monthly-text:nth-of-type(1) svg {
  position: absolute;
  top: 2px;
  left: 0;
}

.event-bar__monthly-text:last-of-type {
  display: inline-block;
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}
.event-bar__monthly-price--active {
}
.event-bar__btn-order {
  display: block;
  width: 100%;
  padding: 0;
  margin-top: 24px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  line-height: 52px;
  color: #0F0E14;
  background: linear-gradient(to right, #BE1212, #EB6013 47%, #D89E38);
  border: 0;
  border-radius: 8px;
}
.event-bar__payment {
}
.event-bar__payment-title {
  margin-top: 25px;
  line-height: 1.7;
  text-align: center;
}
.event-bar__payment-icons {
  display: flex;
  justify-content: space-around;
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 0;
  list-style: none;
}
.event-bar__payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 40px;
  border: 1px solid #212026;
  border-radius: 8px;
}

.event-bar__payment-footer {
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.85;
  text-align: center;
  color: #747477;
}
.event-bar__contacts {
  margin-top: 12px;
}
.event-bar__contacts-support,
.event-bar__contacts-referral {
  height: 37px;
  padding-top: 14px;
  text-align: center;
  border-top: 1px solid #2F2E35;
}
.event-bar__contacts-support {
  display: flex;
  justify-content: center;
  gap: 20px;
  line-height: 1.7;
}
.event-bar__contacts-tg {
  display: inline-block;
  padding-left: 28px;
  position: relative;
  color: #24A1DE;
}

.event-bar__contacts-tg:hover {
  text-decoration: none;
}

.event-bar__contacts-tg svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  position: absolute;
  top: 1px;
  left: 0;
}
.event-bar__contacts-referral {
  margin-top: 17px;
  font-weight: 600;
  line-height: 1.7;
  color: #D1D1D2;
}

/*** Бегущая строка */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.marquee-wrapper {  
  display: flex;
  width: calc(100vw - 20px);
  margin-right: calc(50% - 50vw - 10px);
  margin-left: calc(50% - 50vw - 10px);
  margin-top: 120px;
  overflow-x: hidden;
  position: relative;
  z-index: 1;

  /* display: none; */
}

.marquee {
  white-space: nowrap;
  display: inline-block;
  animation: marquee 6s linear infinite;

  padding-right: 1em;
  padding-left: 1em;
  
  font-family: 'Gropled';
  font-size: 64px;
  font-weight: 700;
  line-height: 100px;
  color: #fff;

  transition: all 0.1s ease-in-out;
}
/*** Бегущая строка */

.title-icons-text {
  display: grid;
  grid-template-columns: 670px 1fr;
  grid-gap: 0 17px;
}

.services-feeds + .title-icons-text {
  padding-top: 70px;  
  padding-bottom: 60px;
  margin-top: 100px;
  /* position: relative; */
}

.services-feeds + .title-icons-text::after {
  content: '';
  display: inline-block;
  width: calc(100vw - 19px);
  height: 609px;
  position: absolute;
  /* top: 35px; */
  /* left: calc(50% - 50vw - 15px); */
  left: -15px;
  transform: translateY(-70px);
  z-index: 0;
  background-image: url(../images/bg-top-crypto-site.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 -25px;
  
}
.title-icons-text__title {
  grid-row: span 2;
  align-self: center;
  position: relative;
  z-index: 1;
}

.services-feeds + .title-icons-text .title-icons-text__title {
  padding-left: 60px;
}

.note-icons{}
.services-feeds + .title-icons-text .note-icons{
  padding-right: 35px;
}
.note-icons__title {

}

.note-icons__item {
  display: block;
  padding-left: 74px;
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
  color: #CFCFD0;
  background-size: 54px;
  background-position: left center;
  background-repeat: no-repeat;
}
.note-icons__item:nth-of-type(n+2) {
  margin-top: 32px;
}

.advantages-webform,
.order-seo {
  display: grid;
  grid-template-columns: 610px 1fr;
  grid-gap: 87px 0;
  padding: 67px 96px 67px 60px;
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.advantages-webform .title-icons-text,
.order-seo .title-icons-text {
  display: flex;
  flex-direction: column;
}

.advantages-webform .note-icons,
.order-seo .note-icons {
  padding-right: 60px;
  margin-top: 40px;
}

.advantages-webform__form-wrapper,
.order-seo__form-wrapper {
  padding-left: 87px;
  align-self: center;
}

.advantages-webform__feeds,
.order-seo__seo {
  display: flex;
}
.advantages-webform__feeds-label,
.order-seo__seo-label {
  font-size: 20px;
  line-height: 32px;
  color: #6F6E72;
}
.advantages-webform__feeds-number,
.order-seo__seo-number {
  display: inline-flex;
  margin-left: auto;
}
.advantages-webform__feeds-btn,
.order-seo__seo-btn {
  display: inline-block;
  width: 36px;
  height: 32px;
  font-size: 0;
  background-color: #3C3C3B;
  border: 0;
  border-radius: 4px;

}
.advantages-webform__feeds-value,
.order-seo__value {
  display: inline-block;
  width: 73px;
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  text-align: center;
}

.advantages-webform__feeds-value--wide,
.order-seo__value--wide {
  width: 115px;
}
.advantages-webform__discount,
.order-seo__discount {
  margin-top: 16px;
  font-family: 'Gropled';
  font-size: 46px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.advantages-webform .webform-submission-form,
.order-seo .webform-submission-form {
  margin-top: 16px;
}

.advantages-webform .js-form-type-processed-text,
.order-seo .js-form-type-processed-text {
  display: none;
}

.advantages-webform .form-item,
.order-seo .form-item {
  margin-bottom: 16px;
}

.advantages-webform .form-item-name,
.advantages-webform .form-item-phone,
.order-seo .form-item-name,
.order-seo .form-item-phone {
  height: 54px;
  position: relative;
}

.advantages-webform .form-item-name:focus,
.advantages-webform .form-item-phone:focus,
.order-seo .form-item-name:focus,
.order-seo .form-item-phone:focus {
  background-color: pink;
}
.advantages-webform .form-item-name::after,
.advantages-webform .form-item-phone::after,
.order-seo .form-item-name::after,
.order-seo .form-item-phone::after {
  content: '';
  display: inline-block;
  width: 100%;
  min-height: 54px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  background-image: var(--gradient-orange);
  border-radius: 16px;
}

.advantages-webform input[type="text"],
.advantages-webform input[type="tel"],
.order-seo input[type="text"],
.order-seo input[type="tel"] {
  height: 54px;
  padding-right: 17px;
  padding-left: 17px;
  position: relative;
  z-index: 1;
  font-family: inherit;
  font-size: 14px;
  line-height: 32px;
  color: #fff;
  background-color: #27262B;
  border: 1px solid #3F3E43;
  border-radius: 16px;
  outline: none;
}

.advantages-webform input[type="text"]::placeholder,
.advantages-webform input[type="tel"]::placeholder,
.order-seo input[type="text"]::placeholder,
.order-seo input[type="tel"]::placeholder {
  color: #757575;
}

.advantages-webform input[type="text"]:focus,
.advantages-webform input[type="tel"]:focus,
.order-seo input[type="text"]:focus,
.order-seo input[type="tel"]:focus {
  width: calc(100% - 4px);
  padding-right: 16px;
  padding-left: 16px;
  height: 50px;
  transform: translate(2px, 2px);
  /* margin: 2px; */
  /* margin-bottom: 2px; */
  /* margin-left: 2px; */
  /* bottom: 2px; */
  /* left: 2px; */
  border: none;

  /* border-image: var(--gradient-orange); */
  /* border-image-slice: 1; */
  /* overflow: hidden; */
}

.advantages-webform .form-item-terms-of-service,
.order-seo .form-item-terms-of-service {
  display: none;
}

.advantages-webform .form-submit,
.order-seo .form-submit {
  display: block;
  width: 100%;
  height: 52px;
  margin-top: 32px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-image: var(--gradient-orange);
  border: 0;
  border-radius: 8px;
}

#edit-private-notice,
.js-form-item[id^="edit-private-notice"] {
  display: block;
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 14px;
  color: #CFCFD0;
}


/*** Front Prices  */
.front-prices {
  margin-top: 110px;
  font-size: 16px;
  color: #fff;
}

.front-prices .section-title {
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
  text-align: left;
}
.front-prices .section-title::after {
  content: '';
  display: inline-block;
  width: 336px;
  height: 88px;
  position: absolute;
  top: 78px;
  left: 353px;
  background-image: url(../images/prices-after.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.front-prices__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 85px;
}
.front-prices__item {
  display: grid;
  grid-template-rows: auto 1fr;
  position: relative;  
}
.front-prices__item-title {
  display: flex;
  align-items: center;
  min-height: 106px;
  padding: 12px 16px;
  margin: 0;
  position: relative;
  font-family: 'Gropled';
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  border-radius: 30px;  
}

/* .front-prices__item:nth-of-type(2) .front-prices__item-title span { */
.front-prices__item .front-prices__item-title span {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: transparent;
  background: var(--gradient-orange);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* .front-prices__item:nth-of-type(2) .front-prices__item-title::after { */
.front-prices__item .front-prices__item-title::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  border-radius: 30px;
}

.front-prices__item-body {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background-color: #1D1D1D;
  border-radius: 30px;
}
.front-prices__item-text {
  font-size: 15px;
  line-height: 1.65;
  color: #CFCFD0;
}
.front-prices__item-options {
  padding-left: 0;
  margin-bottom: 24px;
  list-style: none;
}
.front-prices__item-option {
  padding-left: 32px;
  margin-top: 16px;
  position: relative;
  line-height: 1.55;
  color: #CFCFD0;
}
.front-prices__item-option::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  background-image: url(../images/icons/tick-circle.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.front-prices__item-price {
  margin-top: auto;
}

.front-prices__item-price-label {
  display: block;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.5;
}
.front-prices__item-price-value {
  font-family: 'Gropled';
  font-size: 48px;
  line-height: 1;
  color: var(--color-cyan);
}
.front-prices__item-bonus {
  display: inline-block;
  padding: 6px 12px 6px 38px;
  position: absolute;
  top: -21px;
  right: -10px;
  font-size: 12px;
  font-weight: 500;
  background-image: linear-gradient(to right, #BE1212 0, #EB6013 47%, #D89E38 100%);
  border-radius: 24px;
}

.front-prices__item-bonus::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  left: 10px;
  background-image: url(../images/icons/gift.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
/** /Front Prices  */


/*** Front reviews */


.reviews-block {
  margin-top: 95px;
}
.reviews-block .section-title {
  padding-top: 25px;
  padding-bottom: 25px;
  margin: 0;
  text-align: left;
}
.reviews-block__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.reviews-card {
  position: relative;
}

.reviews-card__content {
  height: calc(100% - 6px);
  padding: 16px;
  position: relative;
  z-index: 1;
  font-size: 15px;
  background-color: #fff;
  border-radius: 30px;  
}

.reviews-card::after {
  content: '';
  display: inline-block;
  height: 100%;
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(50deg, #BE1212 0, #EB6013 47%, #D89E38 100%);
  border-radius: 30px;
}

.reviews-card__title {
  padding-top: 11px;
  padding-bottom: 11px;
  margin: 0;
  font-family: 'Gropled';
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}
.reviews-card__subtitle  {
  display: flex;
  margin-top: var(--reviews-margin);
}
.reviews-card__city {
  display: inline-block;
  font-weight: 500;
}
.reviews-card__time {
  display: inline-block;
  margin-left: auto;
  font-weight: 500;
}
.reviews-card__rate {
  display: flex;
  gap: 5px;
  margin-top: var(--reviews-margin);
}

.reviews-card__rate-mark {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/icons/fire-icon.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;

}
.reviews-card__category {
  margin-top: var(--reviews-margin);
  font-weight: 500;
  color: transparent;
  background: linear-gradient(86deg, #BE1212 0, #EB6013 47%, #D89E38 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;  
}
.reviews-card__text {
  margin-top: var(--reviews-margin);
  line-height: 1.65;
}

.reviews-card__text p {
  margin: 0;
}
/** /Front reviews */


/*** WEBFORM */
.webform-submission-form input[type="email"],
.webform-submission-form input[type="tel"],
.webform-submission-form input[type="text"] {
    box-sizing: border-box;
    height: 54px;
    width: 100%;
    padding-right: 17px;
    padding-left: 17px;
    position: relative;
    z-index: 1;
    font-family: inherit;
    font-size: 14px;
    line-height: 32px;
    color: #fff;
    background-color: #27262B;
    border: 1px solid #3F3E43;
    border-radius: 16px;
    outline: none;
}
/** /WEBFORM */

/*** COOKIES */
.eu-cookie-compliance-buttons .agree-button {
	padding: 5px 10px;
	margin-top: 0;
	font-size: 15px;
	line-height: normal;
	color: #fff;
  background: var(--color-red);
  border: 0;
	border-radius: 10px;
  outline: none;
	/* cursor: pointer;   */
}

.eu-cookie-compliance-buttons .button:focus {
  outline: 2px solid var(--color-orange);
}
/** /COOKIES */


/*** ADMIN LOGGED */
.toolbar-loading  .services-feeds + .contextual-region {
  /* position: static; */
}

.toolbar-loading .marquee-wrapper {
  /* display: none; */
  /* margin-left: calc(50% - 50vw - 10px); */
  margin-left: calc(50% - 50vw - 125px);
  margin-right: calc(50% - 50vw - 125px);
  display: none;
  
}

.toolbar-loading .services-feeds--full::after,
.toolbar-loading .services-feeds + .title-icons-text::after {
  /* display: none; */
  /* width: calc(100vw - 20px - var(--drupal-displace-offset-left)); */
  left: calc(50% - 50vw - 125px);
  display: none;
  /* left: var(--logged-container-pseudo-offset); */
  /* left: calc(50% - 50vw + 10px - 235px - var(--drupal-displace-offset-left)); */
}
/** /ADMIN LOGGED IN */


@media (max-width: 1365px) and (min-width: 992px) { 
  .why-we__cards {
    padding-right: 26px;
  }

  .why-we__card {
    width: calc(33% - 35px);
  }
}

@media (max-width: 1200px) {
  .front-main__title {
    font-size: 80px;
  }
  .services-feeds__image-text-right .services-feeds__image-text__image {
    max-width: 100%!important;
    float: none!important;
    margin-left: 0;
  }
}

@media (max-width: 1199px) and (min-width: 992px) { 
  .header-main__container {
    display: flex;
    flex-wrap: wrap;    
  }

  .header {
    margin-left: auto;
  }

  .logo + .layout {
    margin-left: auto;
  }

  .nav-main {
    /* width: 500px; */
    justify-content: space-between;
    
  }

  .front-main {
    grid-template-columns: 500px auto;
  }

  .front-main__title {
    font-size: 80px;
  }

  .front-main__icons {
    flex-wrap: wrap;
  }

  .services-feeds__icons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .services-feeds__more img{
    max-width: 800px;
  }

  .services-feeds + .title-icons-text {
    padding-top: 50px;
    margin-top: 70px;
  }

  .services-feeds + .title-icons-text::after {
    height: 500px;
  }

  .services-feeds + .title-icons-text .title-icons-text__title {
    padding-left: 0;
  }
  
  .title-icons-text {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
  }
  
  .services-feeds + .title-icons-text .title-icons-text__title,
  .title-icons-text__title {
    margin-bottom: 0.5em;
    font-size: 48px;
  }

  .advantages-webform,
  .order-seo {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .advantages-webform__form-wrapper,
  .order-seo__form-wrapper {
    padding-left: 0;
  }

  .reviews-card__text {
    line-height: 1.25;
  }

  .footer-main.container, 
  .footer-underline.container, 
  .footer-main .container, 
  .footer-underline .container {
    /* grid-gap: 30px 100px; */
  }

  .front-prices .section-title::after {
    left: calc(33% - 170px);  
  }
  
  
}

@media (max-width: 1100px) {
  .front-main__title {
    font-size: 65px;
  }
}

@media (max-width: 991px) {
  :root {
    --reviews-margin: 10px;
  }

  .header-main {
    position: relative;
  }

  .header-main__container {
    /* display: grid; */
    /* grid-template-columns: auto auto; */
    display: flex;
    justify-content: space-between;
  }

  .header {
    order: 3;
    width: 60px;
  }

  .header-nav {
    display: none;
  }

  .block-page-mobile-menu__icon {
    display: inline-block;
    position: absolute;
    top: 40px;
    right: 15px;
    font-size: 0;
    cursor: pointer;
  }

  .header-contacts {
    /* grid-column: 1/2; */
    order: 2;
    margin-left: 0;
  }


  .front-main {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }

  .front-main__pre-text {
    margin-top: 60px;
  }

  .front-main__title {
    font-size: 56px;
  }

  .front-main__icons {
    flex-wrap: wrap;
  }

  .event-bar {
    margin-right: auto;
  }

  .why-we {
    margin-top: 80px;
  }

  .why-we__cards {
    flex-direction: column;
    align-items: center;
    gap: 55px;
    margin-top: 50px;
  }

  .why-we__card:nth-of-type(2) {
    margin-top: 0;
  }

  .why-we__card:nth-of-type(2)::after {
    top: calc(100% - 36px);
  }

  .marquee {
    font-size: 48px;
  }

  .services-feeds {
    width: 100%;
  }

  .services-feeds__icons {
    /* flex-wrap: wrap; */
    display: block;
    overflow-x: scroll;
    padding-bottom: 15px;
    white-space: nowrap;
  }

  .services-feeds__icon {
    margin-right: 5px;
  }

  .services-feeds + .title-icons-text {
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    margin-top: 60px;
  }

  .services-feeds + .title-icons-text .title-icons-text__title {
    padding-left: 0;
  }
  
  .services-feeds + .title-icons-text .title-icons-text__title,
  .title-icons-text__title {
    font-size: 40px;
  }

  .services-feeds__more img {
    max-width: 100%;
  }

  .services-feeds + .title-icons-text .note-icons {
    padding-right: 0;
  }

  .advantages-webform,
  .order-seo {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .advantages-webform .note-icons,
  .order-seo .note-icons {
    padding: 0;
  }

  .advantages-webform__form-wrapper,
  .order-seo__form-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .advantages-webform__feeds,
  .order-seo__feeds {
    order: -1;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
  }

  .advantages-webform__discount,
  .order-seo__discount {
    order: -2;
  }


  .front-prices {
    width: 100%;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
  }
  .front-prices .section-title,
  .reviews-block .section-title {
    padding: 0;
    font-size: 40px;
  }

  .front-prices .section-title::after {
    display: none;
  }
  .front-prices__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
  }

  .front-prices__item {
  }

  .front-prices__item-title {
    min-height: unset;
    padding-top: 20px;
  }

  .front-prices__item-title br {
    display: none;
  }

  .reviews-card__title {
    padding: 0;
  }

  .reviews-block__list {
    display: flex;
    flex-direction: column;
  }

  .reviews-card__category,
  .reviews-card__rate,

}

@media (max-width: 991px) and (min-width: 768px) {
  .eu-cookie-compliance-content {
    max-width: 85vw;
  }
}


@media (max-width: 767px) {
  h3, .h3,
  .front-prices__item-title,
  .reviews-card__title {
    font-size: 23px;
  }

  .header-contacts {
    flex-direction: column;
    gap: 10px;
  }

  .eu-cookie-compliance-content {
    flex-direction: column;
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .eu-cookie-compliance-message,
  .eu-cookie-compliance-buttons {
    max-width: 100%;
  }

  .eu-cookie-compliance-message p {
    display: block;
  }

  .front-prices .section-title,
  .reviews-block .section-title {
    font-size: 26px;
    text-align: center;
  }

  .reviews-card__content {
    padding: 12px;
  }
  
  .reviews-block__list {
    gap: 2em;
  }
  .reviews-card__text {
    line-height: 1.25;
  }


}

@media (max-width: 479px) {
  h2, .h2,
  .section-title {
    font-size: 32px;
  }
  h3 {
    font-size: 1.8rem!important;
  }
  h4 {
    font-size: 1.4rem!important;
  }

  .header-main__container {
    flex-wrap: wrap;
  }

  .header-contacts {
    order: 4;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  }

	.front-main__title {
		/* font-size: 48px; */
    font-size: 10vw;
	}

  .event-bar__monthly-text:last-of-type {
    display: none;
  }
  .event-bar__contacts-support, 
  .event-bar__contacts-referral {
    height: auto;
  }

  .event-bar__contacts-tg svg {
    position: absolute;
    top: calc(50% - 10px);
  }

  .why-we {}
  .why-we__cards {
    gap: 35px;
  }
  .why-we__card {
    width: 100%;
    max-width: 360px;    
  }

  .why-we__card-title {
    padding-right: 30px;
    font-size: 20px;
  }

  .why-we__card::after,
  .why-we__card:nth-of-type(2)::after {
    width: 60px;
    height: 60px;
    top: -15px;
    right: -15px;
  }

  .marquee-wrapper {
    width: calc(100% + 30px);
    margin-right: -15px;
    margin-left: -15px;
  }

  .services-feeds--full::after {
    display: none;
  }

  .services-feeds__more-title,
  .services-feeds + .title-icons-text .title-icons-text__title, 
  .title-icons-text__title {
    font-size: 32px;
  }

  .note-icons__item {
    font-size: 18px;
  }

  .services-feeds + .title-icons-text {
    padding-bottom: 0;
  }

  .services-feeds + .title-icons-text .note-icons {
    margin-top: 40px;
  }
}

@media (max-width: 430px) {
	.event-bar {
		margin-right: -15px;
		margin-left: -15px;
	}
}

@media (max-width: 399px) {
	.event-bar {
    width: auto;
		/* transform: scale(0.85); */
	}

  .event-bar__feeds {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }

  .event-bar__feeds-discount {
    margin-left: 0;
  }

  .advantages-webform__feeds-label,
  .order-seo__seo-label {
    font-size: 17px;
  }
}
/** /@media (max-width: 399px) */

@media (max-width: 399px) {
  .event-bar {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 374px) {
  .paragraph-social-links-smm__icon {
    width: 40px;
  }
}


@media (max-width: 347px) {
  .front-main__feeds {

  }
}