@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap);
@charset "UTF-8";
:root {
  --primary-color: #00b2ff;
  --primary-hover-color: #71d5ff;
  --primary-light-color: #def5ff;
  --secondary-color: #caff3d;
  --black: #000;
  --white: #fff;
  --black-main-color: #292b32;
}

*,
::after,
::before {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll {
  overflow-y: hidden;
}

body,
html {
  min-width: 370px;
  height: 100%;
}

a {
  text-decoration: none;
  color: unset;
}

ul {
  list-style: none;
}

.lock {
  overflow-y: hidden;
}

[class*=__container] {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 15px;
}

.title {
  color: var(--primary-color);
  font-size: 4rem;
  font-weight: 700;
  line-height: 118.75%;
}
.title span {
  color: var(--black-main-color);
}
@media (max-width: 767.98px) {
  .title {
    font-size: 1.75rem;
  }
}

.button {
  cursor: pointer;
  transition: background 0.3s ease 0s, color 0.3s ease 0s;
  color: var(--white);
  border-radius: 0.75rem;
  background: var(--primary-color);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}
.button:hover {
  color: var(--black-main-color);
  background: var(--primary-hover-color);
}

header.header,
footer.footer {
  flex: 0 0 auto;
}

#content {
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#content::-webkit-scrollbar {
  display: none;
}

figure {
  margin: 0;
}

/**
Для полного соответствия текущей системе js-брекпоинтов
размеры увеличены на 20px
 */
/*
EXAMPLE
.header {
   background-color: red;
   @include _768 {
      background-color: purple;
   }
   @include _480 {
      background-color: black;
   }
}
 */
/* Стили для placeholder
input, textarea {
  @include input-placeholder {
   color: $grey;
  }
}
 */
/* Создание псевдоэлемента
Example
	div::after {
		@include pseudo;
		top: -1rem; left: -1rem;
		width: 1rem; height: 1rem;
	}
 */
/* Создание треугольника
.element {
		&::before {
			@include css-triangle(#ff0000, down);
		}
	}
 */
/* Управление соотношением сторон
Example
div {
  @include responsive-ratio(16,9);
}
 */
section.top-awards .section-container, section.top-awards .top-awards__container,
section.best-companies .section-container,
section.best-companies .top-awards__container {
  padding: 140px 0;
  position: relative;
  max-width: 1630px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 1220px) {
  section.top-awards .section-container, section.top-awards .top-awards__container,
section.best-companies .section-container,
section.best-companies .top-awards__container {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 1670px) {
  section.top-awards .section-container, section.top-awards .top-awards__container,
section.best-companies .section-container,
section.best-companies .top-awards__container {
    padding: 100px 20px;
  }
}
@media (max-width: 1000px) {
  section.top-awards .section-container, section.top-awards .top-awards__container,
section.best-companies .section-container,
section.best-companies .top-awards__container {
    padding: 50px 20px;
  }
}
section.top-awards .section-container h1.title, section.top-awards .section-container h2.title, section.top-awards .top-awards__container h1.title, section.top-awards .top-awards__container h2.title,
section.best-companies .section-container h1.title,
section.best-companies .section-container h2.title,
section.best-companies .top-awards__container h1.title,
section.best-companies .top-awards__container h2.title {
  margin: 0;
  color: #292B32;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 76px;
}
@media (max-width: 1000px) {
  section.top-awards .section-container h1.title, section.top-awards .section-container h2.title, section.top-awards .top-awards__container h1.title, section.top-awards .top-awards__container h2.title,
section.best-companies .section-container h1.title,
section.best-companies .section-container h2.title,
section.best-companies .top-awards__container h1.title,
section.best-companies .top-awards__container h2.title {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 500px) {
  section.top-awards .section-container h1.title, section.top-awards .section-container h2.title, section.top-awards .top-awards__container h1.title, section.top-awards .top-awards__container h2.title,
section.best-companies .section-container h1.title,
section.best-companies .section-container h2.title,
section.best-companies .top-awards__container h1.title,
section.best-companies .top-awards__container h2.title {
    font-size: 28px;
    line-height: 36px;
  }
}
section.top-awards .section-container .top-awards__slider, section.top-awards .section-container .best-companies-slider, section.top-awards .top-awards__container .top-awards__slider, section.top-awards .top-awards__container .best-companies-slider,
section.best-companies .section-container .top-awards__slider,
section.best-companies .section-container .best-companies-slider,
section.best-companies .top-awards__container .top-awards__slider,
section.best-companies .top-awards__container .best-companies-slider {
  margin-top: 80px;
}
@media (max-width: 620px) {
  section.top-awards .section-container .top-awards__slider, section.top-awards .section-container .best-companies-slider, section.top-awards .top-awards__container .top-awards__slider, section.top-awards .top-awards__container .best-companies-slider,
section.best-companies .section-container .top-awards__slider,
section.best-companies .section-container .best-companies-slider,
section.best-companies .top-awards__container .top-awards__slider,
section.best-companies .top-awards__container .best-companies-slider {
    position: relative;
  }
  section.top-awards .section-container .top-awards__slider:after, section.top-awards .section-container .best-companies-slider:after, section.top-awards .top-awards__container .top-awards__slider:after, section.top-awards .top-awards__container .best-companies-slider:after,
section.best-companies .section-container .top-awards__slider:after,
section.best-companies .section-container .best-companies-slider:after,
section.best-companies .top-awards__container .top-awards__slider:after,
section.best-companies .top-awards__container .best-companies-slider:after {
    content: " ";
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    z-index: 10;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 10%, white 90%);
  }
}
section.top-awards .section-container .item-best-company, section.top-awards .top-awards__container .item-best-company,
section.best-companies .section-container .item-best-company,
section.best-companies .top-awards__container .item-best-company {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 231px;
  height: 231px;
}
section.top-awards .section-container .item-best-company img, section.top-awards .top-awards__container .item-best-company img,
section.best-companies .section-container .item-best-company img,
section.best-companies .top-awards__container .item-best-company img {
  width: 231px;
  height: 231px;
}
section.top-awards .section-container .item-best-company .award-active, section.top-awards .top-awards__container .item-best-company .award-active,
section.best-companies .section-container .item-best-company .award-active,
section.best-companies .top-awards__container .item-best-company .award-active {
  display: none;
}
section.top-awards .section-container .item-best-company:hover .award-active, section.top-awards .top-awards__container .item-best-company:hover .award-active,
section.best-companies .section-container .item-best-company:hover .award-active,
section.best-companies .top-awards__container .item-best-company:hover .award-active {
  display: block;
}
section.top-awards .section-container .item-best-company:hover .award-passive, section.top-awards .top-awards__container .item-best-company:hover .award-passive,
section.best-companies .section-container .item-best-company:hover .award-passive,
section.best-companies .top-awards__container .item-best-company:hover .award-passive {
  display: none;
}

.slider-btn-container .slider-btn-active, .owl-prev .slider-btn-active, .owl-next .slider-btn-active {
  display: none;
}
.slider-btn-container .slider-btn-passive, .owl-prev .slider-btn-passive, .owl-next .slider-btn-passive {
  display: flex;
}
.slider-btn-container img, .owl-prev img, .owl-next img {
  width: 50px;
  height: 50px;
}
.slider-btn-container:hover .slider-btn-active, .owl-prev:hover .slider-btn-active, .owl-next:hover .slider-btn-active {
  display: flex;
}
.slider-btn-container:hover .slider-btn-passive, .owl-prev:hover .slider-btn-passive, .owl-next:hover .slider-btn-passive {
  display: none;
}

.top-awards__title {
  margin-bottom: 3.125rem;
}
@media (width <= 767.98px) {
  .top-awards__title {
    margin-bottom: 1.625rem;
  }
}
.top-awards__slider {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}
.top-awards svg:hover {
  fill: #caff3d;
}
.top-awards__prev {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  cursor: pointer;
  border-radius: 50%;
  background: #def5ff;
}
.top-awards__prev.swiper-button-disabled {
  opacity: 0.5;
}
.top-awards__prev img {
  rotate: 180deg;
}
@media (width <= 991.98px) {
  .top-awards__prev {
    display: none;
  }
}
.top-awards__next {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  cursor: pointer;
  border-radius: 50%;
  background: #def5ff;
}
.top-awards__next.swiper-button-disabled {
  opacity: 0.5;
}
@media (width <= 991.98px) {
  .top-awards__next {
    display: none;
  }
}
.top-awards .swiper-wrapper {
  padding-bottom: 2.5rem;
}
@media (width <= 767.98px) {
  .top-awards {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.item-top-awards {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15.375rem;
  height: 10rem;
}
.item-top-awards:not(:last-child)::before {
  position: absolute;
  top: 50%;
  left: 130%;
  width: 0.6875rem;
  height: 0.6875rem;
  content: "";
  transform: translateY(-50%);
  border-radius: 50%;
  background: #beebff;
}
@media (width <= 991.98px) {
  .item-top-awards:not(:last-child)::before {
    left: 110%;
  }
}
.item-top-awards__top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  text-wrap: nowrap;
  color: var(--Color-7, #636878);
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
}
.item-top-awards__bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
}
.item-top-awards__description {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
}
.item-top-awards__wreaths {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: fill 0.3s ease 0s;
  transform: translate(-50%, -50%);
  fill: #00b2ff;
}
.item-top-awards__middle {
  max-width: 11.25rem;
  text-align: center;
  color: var(--Color-6, #292b32);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 142.857%;
}

section.feedback {
  background: #F3F4F5;
  scroll-margin-top: 90px;
}
section.feedback .section-container {
  padding: 125px 0;
  position: relative;
  max-width: 1630px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 1220px) {
  section.feedback .section-container {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 1670px) {
  section.feedback .section-container {
    padding: 100px 20px;
  }
}
@media (max-width: 1000px) {
  section.feedback .section-container {
    padding: 70px 20px;
  }
}
section.feedback .section-container h2.title {
  color: #0D0D0D;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 76px;
  margin: 0;
}
@media (max-width: 1000px) {
  section.feedback .section-container h2.title {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 500px) {
  section.feedback .section-container h2.title {
    font-size: 28px;
    line-height: 36px;
  }
}
section.feedback .section-container .placeholder a:hover {
  text-decoration: underline;
}
section.feedback .section-container .form {
  margin-top: 75px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1220px) {
  section.feedback .section-container .form {
    align-items: flex-start;
  }
}
@media (max-width: 1000px) {
  section.feedback .section-container .form {
    margin-top: 50px;
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  section.feedback .section-container .form {
    margin-top: 35px;
  }
}
section.feedback .section-container .form .success {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  flex-direction: column;
  align-items: center;
  background: #fff;
  justify-content: center;
}
section.feedback .section-container .form .success .content, section.feedback .section-container .form .success .read_us {
  text-align: center;
}
section.feedback .section-container .form .left, section.feedback .section-container .form .up {
  width: 100%;
  max-width: 930px;
}
section.feedback .section-container .form .left form, section.feedback .section-container .form .up form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.feedback .section-container .form .left form .field.error span, section.feedback .section-container .form .up form .field.error span {
  color: #00B2FF;
}
section.feedback .section-container .form .left form .field .feedback-input, section.feedback .section-container .form .left form .field .mask-phone, section.feedback .section-container .form .left form .field .mask-url, section.feedback .section-container .form .left form .field .textarea, section.feedback .section-container .form .up form .field .feedback-input, section.feedback .section-container .form .up form .field .mask-phone, section.feedback .section-container .form .up form .field .mask-url, section.feedback .section-container .form .up form .field .textarea {
  width: calc(100% - 16.6px);
  height: 60px;
  border-radius: 8px;
  border: 1px solid #D1D3D9;
  padding: 0 0 0 15px;
  margin: 0;
  transition: 0.3s all ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  vertical-align: middle;
}
section.feedback .section-container .form .left form .field .feedback-input::placeholder, section.feedback .section-container .form .left form .field .mask-phone::placeholder, section.feedback .section-container .form .left form .field .mask-url::placeholder, section.feedback .section-container .form .left form .field .textarea::placeholder, section.feedback .section-container .form .up form .field .feedback-input::placeholder, section.feedback .section-container .form .up form .field .mask-phone::placeholder, section.feedback .section-container .form .up form .field .mask-url::placeholder, section.feedback .section-container .form .up form .field .textarea::placeholder {
  color: #ADB0BC;
}
section.feedback .section-container .form .left form .field .feedback-input:focus, section.feedback .section-container .form .left form .field .mask-phone:focus, section.feedback .section-container .form .left form .field .mask-url:focus, section.feedback .section-container .form .left form .field .textarea:focus, section.feedback .section-container .form .up form .field .feedback-input:focus, section.feedback .section-container .form .up form .field .mask-phone:focus, section.feedback .section-container .form .up form .field .mask-url:focus, section.feedback .section-container .form .up form .field .textarea:focus {
  outline: none;
  border: 1px solid #00B2FF;
}
section.feedback .section-container .form .left form .field textarea, section.feedback .section-container .form .up form .field textarea {
  padding: 15px !important;
  width: calc(100% - 16.6px) !important;
}
section.feedback .section-container .form .left form .field .textarea, section.feedback .section-container .form .up form .field .textarea {
  height: 100px;
}
section.feedback .section-container .form .left form span, section.feedback .section-container .form .up form span {
  color: #292B32;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
section.feedback .section-container .form .left form span a, section.feedback .section-container .form .up form span a {
  color: #00B2FF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
section.feedback .section-container .form .left form .submit-button, section.feedback .section-container .form .up form .submit-button {
  border-radius: 12px;
  background: #00B2FF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  cursor: pointer;
  max-width: 370px;
  width: 100%;
  height: 55px;
  margin: 25px 0 0;
  transition: 0.3s all ease;
}
@media (max-width: 1000px) {
  section.feedback .section-container .form .left form .submit-button, section.feedback .section-container .form .up form .submit-button {
    max-width: 100%;
    margin: 10px 0 60px 0;
  }
}
section.feedback .section-container .form .left form .submit-button .button-text, section.feedback .section-container .form .up form .submit-button .button-text {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  transition: 0.3s all ease;
}
section.feedback .section-container .form .left form .submit-button:hover, section.feedback .section-container .form .up form .submit-button:hover {
  background: #7bd6ff;
}
section.feedback .section-container .form .left form .submit-button:hover .button-text, section.feedback .section-container .form .up form .submit-button:hover .button-text {
  color: #292B32;
}
section.feedback .section-container .form .right, section.feedback .section-container .form .down {
  width: 100%;
  max-width: 370px;
}
@media (max-width: 1000px) {
  section.feedback .section-container .form .right, section.feedback .section-container .form .down {
    max-width: 100%;
  }
}
section.feedback .section-container .form .right .contacts, section.feedback .section-container .form .right .socials, section.feedback .section-container .form .down .contacts, section.feedback .section-container .form .down .socials {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
section.feedback .section-container .form .right .contacts span, section.feedback .section-container .form .right .socials span, section.feedback .section-container .form .down .contacts span, section.feedback .section-container .form .down .socials span {
  color: #0D0D0D;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 10px;
}
section.feedback .section-container .form .right .contacts a, section.feedback .section-container .form .right .socials a, section.feedback .section-container .form .down .contacts a, section.feedback .section-container .form .down .socials a {
  display: flex;
  gap: 20px;
  align-items: center;
}
section.feedback .section-container .form .right .contacts a span, section.feedback .section-container .form .right .socials a span, section.feedback .section-container .form .down .contacts a span, section.feedback .section-container .form .down .socials a span {
  color: #0D0D0D;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  transition: 0.3s all ease;
  text-decoration: underline;
  text-decoration-color: #ADB0BC;
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
  margin: 0;
}
section.feedback .section-container .form .right .contacts a:hover span, section.feedback .section-container .form .right .socials a:hover span, section.feedback .section-container .form .down .contacts a:hover span, section.feedback .section-container .form .down .socials a:hover span {
  color: #00B2FF;
  text-decoration: none;
}
section.feedback .section-container .form .right hr, section.feedback .section-container .form .down hr {
  margin: 50px 0;
  border: 1px solid #d3d3d5;
}

section.subscribe .section-container {
  padding: 140px 0;
  position: relative;
  max-width: 1630px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 1220px) {
  section.subscribe .section-container {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 1670px) {
  section.subscribe .section-container {
    padding: 100px 20px;
  }
}
@media (max-width: 1000px) {
  section.subscribe .section-container {
    padding: 70px 20px;
  }
}
section.subscribe .section-container .card {
  border-radius: 20px;
  background: #DEF5FF;
}
section.subscribe .section-container .card .content {
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1000px) {
  section.subscribe .section-container .card .content {
    flex-direction: column;
    gap: 25px;
    padding: 25px;
  }
}
section.subscribe .section-container .card .content .text-content {
  width: 100%;
  max-width: 780px;
}
section.subscribe .section-container .card .content .text-content h2.title {
  color: #292B32;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 76px;
  margin: 0;
}
@media (max-width: 1000px) {
  section.subscribe .section-container .card .content .text-content h2.title {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 500px) {
  section.subscribe .section-container .card .content .text-content h2.title {
    font-size: 28px;
    line-height: 36px;
  }
}
section.subscribe .section-container .card .content .text-content .desc {
  color: #636878;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 30px;
}
@media (max-width: 500px) {
  section.subscribe .section-container .card .content .text-content .desc {
    font-size: 16px;
    line-height: 24px;
    margin-top: 25px;
  }
}
section.subscribe .section-container .card .content .subscribe-form {
  width: 100%;
  max-width: 600px;
}
@media (max-width: 1000px) {
  section.subscribe .section-container .card .content .subscribe-form {
    max-width: 100%;
  }
}
section.subscribe .section-container .card .content .subscribe-form form.feedback-form {
  width: 100%;
}
section.subscribe .section-container .card .content .subscribe-form form.feedback-form .success.approve-subscription {
  color: #00B2FF;
}
section.subscribe .section-container .card .content .subscribe-form form.feedback-form .field .subscribe-input {
  font-family: "Montserrat";
  font-size: 18px;
  line-height: 28px;
  width: calc(100% - 16.6px);
  height: 60px;
  border-radius: 8px;
  border: 1px solid #D1D3D9;
  padding: 0 0 0 15px;
  margin: 0;
  transition: 0.3s all ease;
}
section.subscribe .section-container .card .content .subscribe-form form.feedback-form .field .subscribe-input:focus {
  outline: none;
  border: 1px solid #00B2FF;
}
section.subscribe .section-container .card .content .subscribe-form form.feedback-form .field.error span {
  color: #00B2FF;
}
section.subscribe .section-container .card .content .subscribe-form form.feedback-form .submit-button {
  border-radius: 12px;
  background: #00B2FF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  cursor: pointer;
  width: 100%;
  height: 55px;
  margin: 25px 0;
  transition: 0.3s all ease;
}
section.subscribe .section-container .card .content .subscribe-form form.feedback-form .submit-button .button-text {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  transition: 0.3s all ease;
}
section.subscribe .section-container .card .content .subscribe-form form.feedback-form .submit-button:hover {
  background: #7bd6ff;
}
section.subscribe .section-container .card .content .subscribe-form form.feedback-form .submit-button:hover .button-text {
  color: #292B32;
}
section.subscribe .section-container .card .content .subscribe-form .policy {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
section.subscribe .section-container .card .content .subscribe-form .policy .policy-conf {
  color: #000;
  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;
  transition: 0.3s all ease;
}
section.subscribe .section-container .card .content .subscribe-form .policy .policy-conf:hover {
  color: #00B2FF;
}

.federal-brands {
  padding-top: 7.8125rem;
  padding-bottom: 7.8125rem;
  background: #def5ff;
}
.federal-brands__title {
  margin-bottom: 5.625rem;
}
.federal-brands__title_mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .federal-brands__title_mobile {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .federal-brands__title {
    display: none;
    margin-bottom: 1.625rem;
  }
}
.federal-brands__slider {
  align-items: center;
  gap: 2.8125rem;
}
.federal-brands__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.federal-brands__prev {
  display: none;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  cursor: pointer;
  border-radius: 50%;
  background: #def5ff;
}
.federal-brands__prev.swiper-button-disabled {
  opacity: 0.5;
}
.federal-brands__prev img {
  rotate: 180deg;
}
@media (max-width: 991.98px) {
  .federal-brands__prev {
    display: none;
  }
}
.federal-brands__next {
  display: none;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  cursor: pointer;
  border-radius: 50%;
  background: #def5ff;
}
.federal-brands__next.swiper-button-disabled {
  opacity: 0.5;
}
@media (max-width: 991.98px) {
  .federal-brands__next {
    display: none;
  }
}
.federal-brands__slide {
  width: auto;
  max-width: 15.625rem;
  height: 2.8125rem;
  padding: 0.3125rem;
}
.federal-brands__slide:hover img {
  scale: 1.1;
  filter: brightness(0) saturate(100%) invert(51%) sepia(64%) saturate(1696%) hue-rotate(174deg) brightness(101%) contrast(103%);
}
.federal-brands__slide img {
  width: 100%;
  height: 100%;
  transition: scale 0.3s ease 0s, filter 0.1s ease 0s;
}
@media (max-width: 767.98px) {
  .federal-brands__slide {
    height: 1.625rem;
  }
}
@media (max-width: 767.98px) {
  .federal-brands {
    padding-top: 4.0625rem;
    padding-bottom: 4.0625rem;
  }
}

/**
Для полного соответствия текущей системе js-брекпоинтов
размеры увеличены на 20px
 */
/*
EXAMPLE
.header {
   background-color: red;
   @include _768 {
      background-color: purple;
   }
   @include _480 {
      background-color: black;
   }
}
 */
/* Стили для placeholder
input, textarea {
  @include input-placeholder {
   color: $grey;
  }
}
 */
/* Создание псевдоэлемента
Example
	div::after {
		@include pseudo;
		top: -1rem; left: -1rem;
		width: 1rem; height: 1rem;
	}
 */
/* Создание треугольника
.element {
		&::before {
			@include css-triangle(#ff0000, down);
		}
	}
 */
/* Управление соотношением сторон
Example
div {
  @include responsive-ratio(16,9);
}
 */
@keyframes coming {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hiding {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
header.header {
  z-index: 899;
  position: fixed;
  width: 100%;
  height: 90px;
}
header.header .container {
  display: flex;
  position: relative;
  height: 100%;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid #ADB0BC;
  transition: 0.3s all ease;
}
@media (max-width: 1670px) {
  header.header .container {
    padding: 0 20px;
  }
}
header.header .container.active {
  border-bottom: 2px solid #00B2FF;
}
header.header .container.active .open {
  color: #00B2FF !important;
}
header.header .container.active .open::after {
  content: " ";
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: #00B2FF;
}
header.header .container .container-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1630px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 830px) {
  header.header .container .container-nav {
    gap: 20px;
  }
}
header.header .container .container-nav .logo {
  display: flex;
}
header.header .container .container-nav .logo img {
  height: 45px;
  width: 195px;
}
@media (max-width: 395px) {
  header.header .container .container-nav .logo img {
    width: auto;
    height: auto;
  }
}
@media (max-width: 395px) {
  header.header .container .container-nav .logo img {
    width: 100%;
  }
}
header.header .container .container-nav .menu {
  max-width: 650px;
  flex-shrink: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100%;
}
@media (max-width: 830px) {
  header.header .container .container-nav .menu {
    display: none;
  }
}
header.header .container .container-nav .menu .item {
  color: #adb0bc;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.3s all ease;
}
header.header .container .container-nav .menu .item:first-child {
  color: #292b32;
}
header.header .container .container-nav .menu .item:hover {
  color: #00B2FF;
}
header.header .container .container-nav .menu .item:hover::after {
  content: " ";
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: #00B2FF;
}
header.header .container .container-nav .socials {
  max-width: 270px;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-shrink: 3;
  width: 100%;
}
@media (max-width: 830px) {
  header.header .container .container-nav .socials {
    justify-content: flex-end;
    max-width: 100%;
    gap: 20px;
  }
}
header.header .container .container-nav .socials .phone {
  color: #292B32;
  margin: 0 20px 0 0;
  padding: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: 0.3s all ease;
}
@media (max-width: 1120px) {
  header.header .container .container-nav .socials .phone {
    display: none;
  }
}
header.header .container .container-nav .socials .phone:hover {
  color: #00B2FF;
}
header.header .container .container-nav .socials .tg, header.header .container .container-nav .socials .wa {
  width: 32px;
  height: 32px;
}
header.header .container .container-nav .socials .tg .social-active, header.header .container .container-nav .socials .wa .social-active {
  display: none;
}
header.header .container .container-nav .socials .tg:hover .social-passive, header.header .container .container-nav .socials .wa:hover .social-passive {
  display: none;
}
header.header .container .container-nav .socials .tg:hover .social-active, header.header .container .container-nav .socials .wa:hover .social-active {
  display: block;
}
@media (max-width: 1120px) {
  header.header .container .container-nav .socials .tg, header.header .container .container-nav .socials .wa {
    display: none;
  }
}
@media (max-width: 830px) {
  header.header .container .container-nav .socials .tg, header.header .container .container-nav .socials .wa {
    display: block;
  }
}
header.header .container .container-nav .feedback-button {
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  width: 100%;
  height: 55px;
  border-radius: 12px;
  background: #00B2FF;
  cursor: pointer;
  transition: 0.3s all ease;
  padding: 0 10px;
}
@media (max-width: 830px) {
  header.header .container .container-nav .feedback-button {
    display: none;
  }
}
header.header .container .container-nav .feedback-button:hover {
  background: #71d5ff;
}
header.header .container .container-nav .feedback-button:hover .button-text {
  color: #292B32;
}
header.header .container .container-nav .feedback-button .button-text {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  transition: 0.3s all ease;
}
header.header .container .container-nav .burger {
  display: none;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
header.header .container .container-nav .burger .line {
  background: #00B2FF;
  width: 35px;
  height: 5px;
  border-radius: 100px;
  transition: 0.3s all ease;
}
header.header .container .container-nav .burger .line.active {
  background: #CAFF3D;
}
@media (max-width: 830px) {
  header.header .container .container-nav .burger {
    display: flex;
  }
}
header.header .mobile-menu {
  display: none;
}
@media (max-width: 830px) {
  header.header .mobile-menu {
    display: flex;
    background: #fff;
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    box-shadow: 0 5px 10px #dcdcdc;
    position: relative;
    transition: 0.3s all ease;
    top: -1000px;
  }
  header.header .mobile-menu.active {
    top: 0;
  }
  header.header .mobile-menu .item {
    color: #adb0bc;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
  }
  header.header .mobile-menu .item:first-child {
    color: #292b32;
  }
  header.header .mobile-menu .feedback-button {
    flex-shrink: 1;
    display: none;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    width: 100%;
    height: 55px;
    border-radius: 12px;
    background: #00B2FF;
    cursor: pointer;
    transition: 0.3s all ease;
    padding: 0 10px;
  }
}
@media (max-width: 830px) and (max-width: 830px) {
  header.header .mobile-menu .feedback-button {
    display: flex;
  }
}
@media (max-width: 830px) {
  header.header .mobile-menu .feedback-button:hover {
    background: #636878;
  }
  header.header .mobile-menu .feedback-button:hover .button-text {
    color: #292B32;
  }
}
@media (max-width: 830px) {
  header.header .mobile-menu .feedback-button .button-text {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    transition: 0.3s all ease;
  }
}
header.header .container-menu {
  position: relative;
  z-index: 1;
  background: #F3F4F5;
  box-shadow: 0 5px 10px #dcdcdc;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 1120px;
  top: -1000px;
  transition: 0.8s top ease;
  padding: 30px 35px 15px 35px;
}
@media (max-width: 1670px) {
  header.header .container-menu {
    padding: 0 20px;
  }
}
@media (max-width: 830px) {
  header.header .container-menu {
    display: none;
  }
}
header.header .container-menu.active {
  top: 0;
}
@media (max-width: 1670px) {
  header.header .container-menu.active {
    padding: 30px 20px;
  }
}
header.header .container-menu .categories {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1630px;
  width: 100%;
  gap: 20px;
}
@media (max-width: 920px) {
  header.header .container-menu .categories {
    flex-wrap: wrap;
  }
}
@media (max-width: 800px) {
  header.header .container-menu .categories {
    flex-wrap: nowrap;
  }
}
header.header .container-menu .categories .category {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 325px;
  width: 100%;
}
header.header .container-menu .categories .category:nth-child(1) {
  max-width: 275px;
}
header.header .container-menu .categories .category:nth-child(2) {
  max-width: 300px;
}
header.header .container-menu .categories .category:nth-child(3) {
  max-width: 260px;
}
header.header .container-menu .categories .category:nth-child(4) {
  max-width: 220px;
}
header.header .container-menu .categories .category h3.title-category {
  color: #00B2FF;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  margin: 0;
}
header.header .container-menu .categories .category .items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
header.header .container-menu .categories .category .items a.item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
}
header.header .container-menu .categories .category .items a.item .text-item {
  color: #292B32;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration-color: #ADB0BC;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
header.header .container-menu .categories .category .items a.item:hover .text-item {
  color: #00B2FF;
  text-decoration: underline;
  text-decoration-color: #00B2FF;
}
header.header .container-menu .categories .category .items a.item:hover svg path {
  fill: #00B2FF;
}
header.header .container-menu .header_feedback_button_container {
  display: flex;
  justify-content: end;
  margin-top: 20px;
}
header.header .container-menu .header_feedback_button_container a {
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  width: 100%;
  height: 55px;
  border-radius: 12px;
  background: #00B2FF;
  cursor: pointer;
  transition: 0.3s all ease;
  padding: 0 10px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  transition: 0.3s all ease;
}
header.header .container-menu .header_feedback_button_container a:hover {
  background: #71d5ff;
  color: #292B32;
}

.date-page-wrap {
  perspective: 2000px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  overflow-y: auto;
  height: 100vh;
  width: 100%;
}

.page-wrap {
  position: relative;
  perspective: 2000px;
}

.landing {
  background: #fff;
  transform-origin: left top;
  transform: rotateY(0deg);
  transition: transform 1s ease-in-out;
  z-index: 10;
}

.date-page {
  position: relative;
  background: #e6f7ff;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  transform: rotateX(90deg);
  min-height: 100vh;
  transform-origin: top center;
  perspective: 2000px;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.show-date {
  z-index: 40;
}
.show-date .date-page {
  transform: rotateX(0deg);
  transition: transform 1.5s ease-in-out;
  z-index: 40;
  overflow-y: auto;
}
.show-date .karaoke-date {
  opacity: 1;
  transform: translateX(0);
}

#show-date {
  background: transparent;
  cursor: pointer;
  margin-right: auto;
  transition: scale 0.3s ease 0s, visibility 0.3s ease 0s;
  border: none;
  outline: none;
}
#show-date:hover {
  scale: 1.05;
}

.date-page {
  overflow-x: hidden;
  padding: 1rem;
}
.date-page__main {
  display: flex;
  align-items: center;
  gap: 90px;
  justify-content: center;
  padding-top: 180px;
  height: 100%;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .date-page__main {
    gap: 40px;
  }
}
@media (max-width: 767.98px) {
  .date-page__main {
    flex-direction: column;
    gap: 20px;
  }
}
.date-page__button {
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  background: #00b2ff;
  font-weight: 500;
  max-width: 252px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-radius: 0.625rem;
  min-height: 56px;
  padding: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease 0s, background 0.3s ease 0s, opacity 0.5s ease 1s;
  opacity: 0;
  margin-top: 30px;
}
.date-page__button:hover {
  color: black;
  background: #caff3d;
}

.calendar-date {
  background: #fff;
  min-height: 53vh;
  border-radius: 12px 12px 6px 6px;
  max-width: 400px;
  width: 100%;
  backface-visibility: hidden;
  background: linear-gradient(145deg, white 0%, #f8f9fa 50%, white 100%), radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.04) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.03) 0%, transparent 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.5));
  box-shadow: rgba(0, 40, 58, 0.294) 0px 35.2557px 70.5114px -15px;
  border-radius: 12px 12px 6px 6px;
  transition: scale 0.7s ease-in-out 0s;
  position: relative;
}
@media (max-width: 767.98px) {
  .calendar-date {
    min-height: 0;
  }
}
.calendar-date:hover {
  scale: 1.03;
}
.calendar-date_second {
  position: absolute;
  top: 0;
  height: 100%;
  left: -50px;
  transition: transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) 0s, opacity 0.8s ease 0s;
}
.calendar-date_second-out {
  transform: translateY(-80px) rotateY(90deg) rotateX(10deg);
  opacity: 0;
}
.calendar-date_second-out .calendar-date__blue {
  background: linear-gradient(135deg, #c6431d, #f15201);
}
.calendar-date__dots-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 21px;
}
.calendar-date__dot {
  background: radial-gradient(circle, #dddddd, #bbbbbb);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0.5px 1px inset;
  opacity: 1;
  transform: none;
  border-radius: 50%;
  height: 3.5px;
  width: 3.5px;
  flex-shrink: 0;
}
.calendar-date__blue {
  height: 35px;
  background: #00b2ff;
  transition: background 0.3s ease 0s;
}
.calendar-date__date {
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .calendar-date__date {
    padding: 10px 0 20px 0;
  }
}
.calendar-date__number {
  font-weight: 800;
  font-size: 112px;
  color: #08a1e0;
  font-weight: 800;
  text-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
}
.calendar-date__weekday {
  text-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px;
  font-size: 17.5px;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: #5a6c7d;
  margin-bottom: 12px;
}
.calendar-date__dots {
  width: 5.25px;
  height: 5.25px;
  background: #00b2ff;
  border-radius: 50%;
  position: relative;
}
.calendar-date__dots::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #00b2ff;
  opacity: 0.5;
  left: -10px;
  width: 5.25px;
  height: 5.25px;
}
.calendar-date__dots::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #00b2ff;
  opacity: 0.5;
  right: -10px;
  width: 5.25px;
  height: 5.25px;
}

.month-calendar-date {
  background: linear-gradient(rgba(240, 248, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(248, 250, 252, 0.8) 100%);
  border-bottom: 1px solid #b3e8ff;
  box-shadow: rgba(255, 255, 255, 0.6) 0px 1px 0px inset;
  opacity: 1;
  transform: none;
  padding: 32px 0 32px 0;
}
.month-calendar-date__month {
  position: relative;
  width: max-content;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  text-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #2c3e50;
  margin-bottom: 10px;
}
.month-calendar-date__month::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
  background: #66d0ff;
  width: 40%;
  height: 2px;
}
.month-calendar-date__year {
  font-size: 14px;
  color: #5a6c7d;
  text-align: center;
}

.karaoke-date {
  padding: 32px;
  background: linear-gradient(to bottom, #e6f7ff, #f8fcff);
  border: 2px solid #66d0ff;
  border-radius: 0.625rem;
  max-width: 578px;
  width: 100%;
  transform: translateX(40%);
  opacity: 0;
  transition: opacity 0.6s ease 2s, transform 0.6s ease 2s;
  position: relative;
}
@media (max-width: 767.98px) {
  .karaoke-date {
    width: auto;
    margin-top: 30px;
  }
}
.karaoke-date::before {
  content: "*поет";
  position: absolute;
  right: 0;
  bottom: 101%;
  font-size: 14px;
  color: #00b2ff;
}
.karaoke-date__title {
  font-size: 17.5px;
  border-bottom: 1px solid #b3e8ff;
  padding-bottom: 12px;
  margin-bottom: 24px;
  color: #00b2ff;
  font-weight: 500;
}
.karaoke-date__item {
  font-size: 21px;
  margin-bottom: 16px;
  padding: 12px;
  color: #2c3e50;
  font-weight: 400;
  transition: color 0.3s ease 0s, scale 0.3s ease 0s;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0.6;
}
.karaoke-date__item::after {
  content: "";
  position: static;
  width: 100%;
  background: #00b2ff;
  border-radius: 100px;
  height: 0;
  background: linear-gradient(to right, #66d0ff, #00b2ff);
  width: 0;
  margin-top: 12px;
  transition: width 1s linear 0s;
}
.karaoke-date__item_active {
  color: #00b2ff;
  scale: 1.05;
  font-weight: 600;
  background: #e6f7ff;
  border-left: 3px solid #00b2ff;
  border-radius: 4px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.karaoke-date__item_active::after {
  height: 4px;
  width: 100%;
}

.leaf {
  position: fixed;
  top: -10vh;
  width: 30px;
  height: 30px;
  background: url(/build/images/leaves.b437e310.png) no-repeat center/contain;
  animation: fall linear forwards;
  opacity: 0.9;
  pointer-events: none;
  z-index: 100;
  transition: transform 0.3s ease 0s, filter 0.3s ease 0s;
}

@keyframes fall {
  0% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(var(--x-move)) translateY(98vh) rotate(280deg);
    opacity: 0;
    visibility: hidden;
  }
}
/**
Для полного соответствия текущей системе js-брекпоинтов
размеры увеличены на 20px
 */
/*
EXAMPLE
.header {
   background-color: red;
   @include _768 {
      background-color: purple;
   }
   @include _480 {
      background-color: black;
   }
}
 */
/* Стили для placeholder
input, textarea {
  @include input-placeholder {
   color: $grey;
  }
}
 */
/* Создание псевдоэлемента
Example
	div::after {
		@include pseudo;
		top: -1rem; left: -1rem;
		width: 1rem; height: 1rem;
	}
 */
/* Создание треугольника
.element {
		&::before {
			@include css-triangle(#ff0000, down);
		}
	}
 */
/* Управление соотношением сторон
Example
div {
  @include responsive-ratio(16,9);
}
 */
.btn-up {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.75);
  right: 20px;
  bottom: 20px;
  border-radius: 50px;
  border: 2px solid #00B2FF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  z-index: 80;
  transition: 0.3s all ease;
}
.btn-up:hover {
  background-color: #00B2FF;
}
.btn-up.up {
  bottom: 530px !important;
}
@media (max-width: 620px) {
  .btn-up.up {
    bottom: 470px !important;
  }
}
.btn-up:before {
  content: "";
  width: 25px;
  height: 30px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='24' viewBox='0 0 18 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.1267 4.75959C7.13664 6.33293 5.86529 7.49445 4.6353 8.32712C3.61631 9.01695 2.61918 9.48632 1.8174 9.78475C1.41631 9.93403 1.05898 10.0425 0.766619 10.1146C0.495322 10.1816 0.224347 10.2315 0.018605 10.2315L0.0186048 8.60988C0.0185781 8.60988 0.0187193 8.60987 0.0190321 8.60984C0.0267969 8.60915 0.139691 8.59905 0.378087 8.54022C0.605033 8.48421 0.903166 8.39472 1.25173 8.26498C1.94925 8.00536 2.82817 7.59223 3.72623 6.98427C5.51869 5.77083 7.36123 3.80228 8.0435 0.731332L9.61625 0.690221C10.4799 3.80018 12.2955 5.78042 14.0385 6.98948C14.913 7.59604 15.767 8.00657 16.467 8.26382C17.1901 8.52954 17.6882 8.60988 17.8564 8.60988L17.8564 10.2315C17.4096 10.2315 16.7031 10.0782 15.9077 9.78591C15.0891 9.48511 14.1107 9.01314 13.1143 8.32191C11.9407 7.50785 10.7391 6.38699 9.74832 4.8848L9.74832 24.0151L8.1267 24.0151L8.1267 4.75959Z' fill='black'/%3E%3C/svg%3E%0A");
}

.btn-up_hide {
  display: none;
}

footer.footer {
  width: 100%;
}
footer.footer .container {
  max-width: 1630px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 50px;
}
@media (max-width: 1670px) {
  footer.footer .container {
    padding: 0 20px 50px;
  }
}
@media (max-width: 1044px) {
  footer.footer .container {
    flex-direction: column;
    align-items: center;
  }
}
footer.footer .container .simple-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1044px) {
  footer.footer .container .simple-block {
    align-items: center;
    width: 100%;
  }
}
@media (max-width: 620px) {
  footer.footer .container .simple-block {
    align-items: normal;
    padding-left: 48px;
  }
}
footer.footer .container .simple-block .logo {
  margin-bottom: 130px;
}
@media (max-width: 500px) {
  footer.footer .container .simple-block .logo .pic {
    display: none;
  }
}
footer.footer .container .simple-block .logo .pic.mobile {
  display: none;
}
@media (max-width: 500px) {
  footer.footer .container .simple-block .logo .pic.mobile {
    display: block;
  }
}
@media (max-width: 1044px) {
  footer.footer .container .simple-block .logo {
    margin-bottom: 0;
  }
}
footer.footer .container .simple-block .oferta, footer.footer .container .simple-block .copyright {
  color: #ADB0BC;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
@media (max-width: 1044px) {
  footer.footer .container .simple-block .oferta, footer.footer .container .simple-block .copyright {
    display: none;
  }
}
footer.footer .container .simple-block .oferta {
  margin-top: 20px;
}
@media (max-width: 1044px) {
  footer.footer .container .simple-block .oferta {
    margin-top: 0;
  }
}
footer.footer .container .questions {
  border-radius: 20px;
  border: 1px solid #D1D3D9;
}
@media (max-width: 1044px) {
  footer.footer .container .questions {
    width: 100%;
  }
}
footer.footer .container .questions .content {
  padding: 30px 30px 30px 50px;
}
@media (max-width: 1044px) {
  footer.footer .container .questions .content {
    padding: 20px;
  }
}
footer.footer .container .questions .content .in-tg {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}
footer.footer .container .questions .content .in-tg span {
  color: #292B32;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
footer.footer .container .questions .content .items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 500px) {
  footer.footer .container .questions .content .items {
    gap: 5px;
  }
}
footer.footer .container .questions .content .items .item {
  color: #636878;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 500px) {
  footer.footer .container .questions .content .items .item {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
}
footer.footer .container .questions .content .items .item a {
  color: #00B2FF;
}
footer.footer .container .questions .content .items a:hover {
  text-decoration: underline;
}
footer.footer .container .questions .content .items a.item {
  color: #00B2FF;
}
footer.footer .container .subscribe {
  border-radius: 20px;
  border: 1px solid #D1D3D9;
}
@media (max-width: 1044px) {
  footer.footer .container .subscribe {
    width: 100%;
  }
}
footer.footer .container .subscribe .content {
  padding: 30px;
}
footer.footer .container .subscribe .content .text {
  color: #292B32;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
footer.footer .container .subscribe .content .socials {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
}
@media (max-width: 1044px) {
  footer.footer .container .subscribe .content .socials {
    margin-top: 30px;
  }
}
footer.footer .container .subscribe .content .socials a {
  width: 60px;
  height: 60px;
}
footer.footer .container .subscribe .content .socials a .social-active {
  display: none;
}
footer.footer .container .subscribe .content .socials a:hover .social-passive {
  display: none;
}
footer.footer .container .subscribe .content .socials a:hover .social-active {
  display: block;
}
footer.footer .container .subscribe .content .socials a img {
  width: 100%;
}
footer.footer .container .contacts {
  width: 100%;
  max-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 1044px) {
  footer.footer .container .contacts {
    align-items: center;
    max-width: 100%;
  }
}
footer.footer .container .contacts .phone, footer.footer .container .contacts .mail {
  color: #292B32;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
footer.footer .container .contacts .phone:hover, footer.footer .container .contacts .mail:hover {
  color: #00B2FF;
}
footer.footer .container .contacts .oferta, footer.footer .container .contacts .copyright {
  color: #ADB0BC;
  display: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
@media (max-width: 1044px) {
  footer.footer .container .contacts .oferta, footer.footer .container .contacts .copyright {
    display: block;
  }
}
footer.footer .container .contacts .address {
  color: #292B32;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
@media (max-width: 1044px) {
  footer.footer .container .contacts .address {
    font-weight: 700;
  }
}
footer.footer .container .contacts .address span {
  display: block;
}
@media (max-width: 1044px) {
  footer.footer .container .contacts .address span {
    display: inline;
  }
}
footer.footer .container .contacts .tender-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  height: 55px;
  border-radius: 12px;
  background: #00B2FF;
  cursor: pointer;
  transition: 0.3s all ease;
}
@media (max-width: 1044px) {
  footer.footer .container .contacts .tender-button {
    margin-top: 0;
  }
}
footer.footer .container .contacts .tender-button:hover {
  background: #7bd6ff;
}
footer.footer .container .contacts .tender-button:hover .button-text {
  color: #292B32;
}
footer.footer .container .contacts .tender-button .button-text {
  text-align: center;
  padding: 0 10px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  transition: 0.3s all ease;
}

.case-wrapper {
  width: 1240px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

._1200 .case-wrapper {
  width: auto;
}

.cssm {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cssm.shown {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.cssm2 {
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cssm2.shown {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.cssm.scale {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  opacity: 0;
}

.cssm.shown.scale {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.cssm.scale2 {
  -webkit-transform: scale(3);
  transform: scale(3);
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.cssm.shown.scale2 {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.cssm.up {
  -webkit-transform: translate3d(0, -50px, 0);
  transform: translate3d(0, -50px, 0);
  opacity: 0;
}

.cssm.shown.up {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.cssm.down {
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
  opacity: 0;
}

.cssm.shown.down {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.cssm.rotate {
  -webkit-transform: rotate(12deg);
  transform: rotate(12deg);
  opacity: 0;
}

.cssm.shown.rotate {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
}

.cssm.rotate2 {
  -webkit-transition: all 1.3s ease !important;
  transition: all 1.3s ease !important;
  -webkit-transform: rotate(-160deg);
  transform: rotate(-160deg);
  opacity: 0;
}

.cssm.shown.rotate2 {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
}

.cssm.rotate3 {
  -webkit-transition: all 0.8s ease !important;
  transition: all 0.8s ease !important;
  -webkit-transform: rotate(-75deg);
  transform: rotate(-75deg);
  opacity: 0;
}

.cssm.shown.rotate3 {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
}

.cssm.rotate4 {
  -webkit-transition: all 2s ease !important;
  transition: all 2s ease !important;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
  opacity: 0;
}

.cssm.shown.rotate4 {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
}

.cssm.rotate5 {
  -webkit-transition: all 2.4s ease !important;
  transition: all 2.4s ease !important;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  opacity: 0;
}

.cssm.shown.rotate5 {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
}

.cssm.left {
  -webkit-transform: translate3d(-150px, 0, 0);
  transform: translate3d(-150px, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

.cssm.shown.left {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.cssm.right {
  -webkit-transform: translate3d(150px, 0, 0);
  transform: translate3d(150px, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

.cssm.shown.right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.cssm.up2 {
  -webkit-transform: translate3d(0, -150px, 0);
  transform: translate3d(0, -150px, 0);
  opacity: 0;
}

.cssm.shown.up2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.cssm.down2 {
  -webkit-transform: translate3d(0, 150px, 0);
  transform: translate3d(0, 150px, 0);
  opacity: 0;
}

.cssm.shown.down2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.cssm.opacity {
  opacity: 0 !important;
}

.cssm.shown.opacity {
  opacity: 1 !important;
}

.cssm.slideup {
  opacity: 1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.94, 1, 0, 0.74);
  transition-timing-function: cubic-bezier(0.94, 1, 0, 0.74);
}

.cssm.shown.slideup {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.cssm2.slideup {
  opacity: 1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.94, 1, 0, 0.74);
  transition-timing-function: cubic-bezier(0.94, 1, 0, 0.74);
}

.cssm2.shown.slideup {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.csrd i {
  font-style: normal !important;
}

.cssmwrap:before, .cssmwrap:after, .skew-block, .skew-block-2, .skew-block-half, .skew-block-2-half {
  -webkit-transform: skewY(0);
  transform: skewY(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cssmwrap.shown:before, .cssmwrap.shown:after, .skew-block.shown {
  -webkit-transform: skewY(-7deg);
  transform: skewY(-7deg);
}

.skew-block-2.shown {
  -webkit-transform: skewY(7deg);
  transform: skewY(7deg);
}

.skew-block-half.shown {
  -webkit-transform: skewY(-3.5deg);
  transform: skewY(-3.5deg);
}

.skew-block-2-half.shown {
  -webkit-transform: skewY(3.5deg);
  transform: skewY(3.5deg);
}

._720 .step-title {
  float: none !important;
  width: auto !important;
  padding: 0 10px !important;
  display: block !important;
  box-sizing: border-box;
  margin: 0 !important;
  text-align: center !important;
}

.step-text {
  font-size: 43px;
  font-family: _museo;
  font-weight: 100;
  color: #1f1f1f;
  text-align: left;
  line-height: 60px;
}

._1024 .step-text {
  font-size: 36px;
  line-height: 50px;
}

._720 .step-text {
  float: none !important;
  width: auto !important;
  padding: 0 10px !important;
  display: block !important;
  box-sizing: border-box;
  text-align: center !important;
  margin: -10px 0 40px;
}

._600 .step-text {
  font-size: 32px;
  line-height: 44px;
}

.dots > i {
  width: 7px;
  height: 7px;
  background-color: #e9e9e9;
  border-radius: 100%;
  display: inline-block;
  margin-top: 8px;
}

._720 .dots {
  display: none;
}

.skew-block, .skew-block-2 {
  height: 650px;
  width: 1400px;
  display: block;
  content: "";
  background-color: #257bc8;
  position: absolute;
  left: 50%;
  margin: 0 auto 0 -700px;
}

.skew-block-half, .skew-block-2-half {
  height: 650px;
  display: block;
  content: "";
  background-color: #fff;
  margin: 0 auto;
  position: absolute;
  width: 100%;
}

.skew-block.white, .skew-block-2.white {
  background-color: #fff;
}

._1200 .cssmwrap:before, ._1200 .cssmwrap:after, ._1200 .skew-block, ._1200 .skew-block-2, ._1200 .skew-block-half, ._1200 .skew-block-2-half {
  -webkit-transform: skewY(0) !important;
  transform: skewY(0) !important;
}

._1200 .skew-block-half, ._1200 .skew-block-2-half {
  display: none !important;
}

.case-main-teaser .award {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 99;
}

.case-main-teaser .award.award-2 {
  top: 130px;
}

._480 .js-projects-slider.projects-slider {
  margin-bottom: 65px;
}

@font-face {
  font-family: "Ampero SemBd";
  src: url(/build/fonts/Ampero-Bold.bc82cf28.otf) format("opentype");
  font-weight: bold;
  font-display: swap;
}
.mediynaya-reklama {
  /* спец-анимации */
}
.mediynaya-reklama [class*=__container] {
  width: 100%;
  max-width: 1854px !important;
  margin: 0 auto;
  padding: 0 15px;
}
.mediynaya-reklama .hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 11.25rem;
  box-shadow: 0 -20px 35px 0 #292b32 inset;
  -webkit-box-shadow: 0 -20px 35px 0 #292b32 inset;
  -moz-box-shadow: 0 -20px 35px 0 #292b32 inset;
  padding-bottom: 7.5rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .hero {
    min-height: 70vh;
    padding-top: 12.5rem;
    padding-bottom: 2.8125rem;
  }
}
.mediynaya-reklama .hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, #292b32 0%, rgba(41, 43, 50, 0) 100%);
  z-index: 0;
}
.mediynaya-reklama .hero__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.mediynaya-reklama .hero__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: var(--292-b-322-paints, linear-gradient(180deg, rgba(41, 43, 50, 0) 59.53%, #292b32 100%), #292b32);
}
.mediynaya-reklama .hero__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--292-b-322-paints, linear-gradient(180deg, rgba(41, 43, 50, 0) 59.53%, #292b32 100%), #292b32);
  opacity: 0.9;
}
.mediynaya-reklama .hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mediynaya-reklama .hero__container {
  padding-bottom: 3.75rem;
}
.mediynaya-reklama .hero__button {
  position: relative;
  padding: 2.0625rem;
  max-width: 28.125rem;
  width: 100%;
  border-radius: 3.125rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 2.7s;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .hero__button {
    font-size: 1rem;
    padding: 1.125rem;
    max-width: 90%;
  }
}
@media (any-hover: hover) {
  .mediynaya-reklama .hero__button:hover {
    background: var(--secondary-color);
    color: var(--black-main-color);
  }
}
.mediynaya-reklama .title-hero {
  color: #fff;
  font-size: 9.375rem;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .title-hero {
    font-size: 4rem;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
  }
}
.mediynaya-reklama .title-hero span {
  font-family: "Ampero SemBd", sans-serif !important;
}
.mediynaya-reklama .title-hero__first, .mediynaya-reklama .title-hero__second, .mediynaya-reklama .title-hero__third {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}
.mediynaya-reklama .title-hero__first {
  color: var(--secondary-color);
  animation-delay: 0.8s;
}
.mediynaya-reklama .title-hero__second {
  display: flex;
  gap: 1.25rem;
  animation-delay: 1.3s;
}
.mediynaya-reklama .title-hero__second-small {
  color: #b8b8b8;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 147%;
  max-width: 15rem;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 2.4s;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .title-hero__second-small {
    display: none;
  }
}
.mediynaya-reklama .title-hero__second-small_mobile {
  font-family: "Ampero SemBd", sans-serif !important;
  color: #b8b8b8;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 147%;
  display: none;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .title-hero__second-small_mobile {
    display: block;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 2.8s;
  }
}
.mediynaya-reklama .title-hero__third {
  animation-delay: 1.8s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mediynaya-reklama .top-awards {
  padding-top: 9.375rem;
  background: var(--black-main-color);
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .top-awards {
    padding-top: 2.8125rem;
  }
}
.mediynaya-reklama .top-awards__title {
  color: var(--secondary-color) !important;
  font-family: "Ampero SemBd", sans-serif;
  font-size: 5.625rem !important;
  font-weight: 700 !important;
  line-height: 110% !important;
  text-transform: uppercase !important;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .top-awards__title {
    font-size: 2rem;
  }
}
.mediynaya-reklama .top-awards .item-top-awards__middle {
  color: var(--white);
}
.mediynaya-reklama .top-awards .item-top-awards__bottom {
  color: var(--white);
}
.mediynaya-reklama .top-awards .item-top-awards:not(:last-child)::before {
  left: 150%;
}
@media (max-width: 1850px) {
  .mediynaya-reklama .top-awards .item-top-awards:not(:last-child)::before {
    left: 125%;
  }
}
@media (max-width: 991.98px) {
  .mediynaya-reklama .top-awards .item-top-awards:not(:last-child)::before {
    left: 110%;
  }
}
.mediynaya-reklama .influence {
  background: var(--black-main-color);
  padding-bottom: 8.75rem;
  position: relative;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .influence {
    padding-bottom: 5rem;
  }
}
.mediynaya-reklama .influence__title {
  color: var(--white);
  font-family: "Ampero SemBd", sans-serif;
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 5rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .influence__title {
    margin-bottom: 2.1875rem;
    font-size: 2rem;
  }
}
.mediynaya-reklama .influence__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.625rem;
}
@media (max-width: 1199.98px) {
  .mediynaya-reklama .influence__list {
    gap: 1.875rem;
  }
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .influence__list {
    grid-template-columns: 100%;
    gap: 1.25rem;
  }
}
.mediynaya-reklama .item-influence {
  border-radius: 1.25rem;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0);
  padding: 2.1875rem;
  transition: border-color 0.5s ease 0s, background 0.5s ease 0s, transform 0.5s ease 0s;
}
.mediynaya-reklama .item-influence:hover {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
  transform: rotate(2deg);
}
.mediynaya-reklama .item-influence:hover .item-influence__title {
  color: var(--black-main-color);
}
.mediynaya-reklama .item-influence:hover .item-influence__title span {
  color: var(--primary-color);
}
.mediynaya-reklama .item-influence:first-child:hover {
  transform: rotate(-2deg);
}
.mediynaya-reklama .item-influence:last-child:hover {
  transform: rotate(-3deg);
}
@media (max-width: 1199.98px) {
  .mediynaya-reklama .item-influence {
    padding: 1.125rem;
  }
}
.mediynaya-reklama .item-influence.is-hover {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
  transform: rotate(2deg);
}
.mediynaya-reklama .item-influence.is-hover .item-influence__title {
  color: var(--black-main-color);
}
.mediynaya-reklama .item-influence.is-hover .item-influence__title span {
  color: var(--primary-color);
}
.mediynaya-reklama .item-influence__icon {
  width: 5.875rem;
  height: 5.875rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 991.98px) {
  .mediynaya-reklama .item-influence__icon {
    width: 3.6875rem;
    height: 3.6875rem;
    margin-bottom: 1.125rem;
  }
}
.mediynaya-reklama .item-influence__icon img {
  width: 100%;
  height: 100%;
}
.mediynaya-reklama .item-influence__title {
  color: var(--white, #fff);
  font-family: "Ampero SemBd", sans-serif;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  transition: color 0.5s ease 0s;
}
@media (max-width: 1199.98px) {
  .mediynaya-reklama .item-influence__title {
    font-size: 1.875rem;
  }
}
@media (max-width: 991.98px) {
  .mediynaya-reklama .item-influence__title {
    font-size: 1.375rem;
  }
}
.mediynaya-reklama .item-influence__title span {
  display: block;
  color: var(--secondary-color);
  font-family: "Ampero SemBd", sans-serif;
  transition: color 0.5s ease 0s;
}
.mediynaya-reklama .marquee-influence {
  background: var(--white);
  padding-bottom: 1.25rem;
  transform: rotate(-2deg) translateY(2.1875rem);
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}
.mediynaya-reklama .marquee-influence__slider {
  background: var(--secondary-color);
  padding: 1.125rem 0;
}
.mediynaya-reklama .marquee-influence .swiper-wrapper {
  transition-timing-function: linear !important;
}
.mediynaya-reklama .marquee-influence .swiper-wrapper .swiper-slide {
  font-family: "Poppins", sans-serif;
}
.mediynaya-reklama .marquee-influence__item {
  position: relative;
  width: max-content;
  color: var(--black-main-color);
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  gap: 0.625rem;
}
.mediynaya-reklama .marquee-influence__item::after {
  content: "";
  position: static;
  top: 0;
  left: 0;
  width: 0.6875rem;
  height: 0.6875rem;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 11 11' fill='none'><path d='M3.69515 0.42344C3.69738 0.211329 4.04289 0.114453 4.1533 0.295645C4.67256 1.14492 5.5487 2.38845 6.5123 2.935C7.47583 3.47962 8.99484 3.59235 9.98973 3.60001C10.2018 3.60225 10.2968 3.94782 10.1156 4.05824C9.26633 4.5775 8.02472 5.45357 7.47817 6.41716C6.93162 7.38076 6.82082 8.8997 6.81316 9.8946C6.81093 10.1067 6.46343 10.2017 6.35494 10.0205C5.83568 9.17119 4.95961 7.92959 3.99408 7.38311C3.03049 6.83656 1.51155 6.72576 0.518577 6.71802C0.306466 6.71579 0.209519 6.36836 0.390777 6.25987C1.24005 5.74061 2.48358 4.86447 3.03007 3.89895C3.57469 2.93542 3.68742 1.41641 3.69515 0.42344Z' fill='%23292B32'/></svg>") no-repeat center/contain;
}
.mediynaya-reklama .increase {
  position: relative;
  overflow: hidden;
  min-height: 40.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .mediynaya-reklama .increase {
    min-height: 23.75rem;
  }
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .increase {
    min-height: 17.5rem;
  }
}
.mediynaya-reklama .increase__list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
}
.mediynaya-reklama .increase__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.6s ease;
  text-align: center;
  color: var(--black-main-color, #292b32);
  text-align: center;
  font-family: "Ampero SemBd", sans-serif;
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .mediynaya-reklama .increase__item {
    font-size: 3.75rem;
  }
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .increase__item {
    font-size: 2rem;
  }
}
.mediynaya-reklama .increase__item:first-child {
  color: var(--primary-color);
}
.mediynaya-reklama .increase__item.active {
  opacity: 1;
}
.mediynaya-reklama .increase__item.slide-up-out {
  animation: slideUpOut 0.8s forwards;
}
.mediynaya-reklama .increase__item.slide-up-in {
  animation: slideUpIn 0.8s forwards;
}
.mediynaya-reklama .increase__item.slide-down-out {
  animation: slideDownOut 0.8s forwards;
}
.mediynaya-reklama .increase__item.slide-down-in {
  animation: slideDownIn 0.8s forwards;
}
@keyframes slideUpOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@keyframes slideUpIn {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDownOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
@keyframes slideDownIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mediynaya-reklama .federal-brands {
  background: var(--Color-10, #f3f4f5);
  margin-bottom: 2.9375rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .federal-brands {
    margin-bottom: 1.25rem;
    padding: 2.1875rem 0;
  }
}
.mediynaya-reklama .federal-brands__title {
  font-family: "Ampero SemBd", sans-serif;
}
.mediynaya-reklama .federal-brands__title span {
  font-family: "Ampero SemBd", sans-serif;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .federal-brands__title {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .federal-brands__title_mobile {
    display: none;
  }
}
.mediynaya-reklama .federal-brands__slider {
  width: 100vw;
  transform: translateX(-1.75rem);
  max-width: 125rem;
}
.mediynaya-reklama .conduction {
  margin-bottom: 8.75rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .conduction {
    margin-bottom: 4.0625rem;
  }
}
.mediynaya-reklama .banner-conduction {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid var(--secondary-color, #caff3d);
  background: var(--secondary-color, #caff3d);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.875rem;
  padding: 5.3125rem;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .mediynaya-reklama .banner-conduction {
    flex-direction: column;
    gap: 4.375rem;
    padding: 1.875rem 1.25rem 2.75rem 1.25rem;
  }
}
.mediynaya-reklama .banner-conduction::after {
  content: "";
  position: static;
}
@media (max-width: 1199.98px) {
  .mediynaya-reklama .banner-conduction::after {
    display: none;
  }
}
.mediynaya-reklama .banner-conduction__decor {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  filter: blur(0.75rem);
  width: 68.75rem;
  height: 68.75rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .banner-conduction__decor {
    width: 37.5rem;
    height: 37.5rem;
    top: unset;
    bottom: 0;
    transform: translateY(50%);
  }
}
.mediynaya-reklama .banner-conduction__decor img {
  width: 100%;
}
.mediynaya-reklama .banner-conduction__decor_sm {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-40%);
  z-index: 0;
  filter: blur(0.75rem);
  width: 15.625rem;
  height: 15.625rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .banner-conduction__decor_sm {
    width: 9.375rem;
    height: 9.375rem;
    transform: translate(-35%, -35%);
  }
}
.mediynaya-reklama .banner-conduction__decor_sm img {
  width: 100%;
  height: 100%;
}
.mediynaya-reklama .banner-conduction__left {
  position: relative;
  z-index: 1;
}
.mediynaya-reklama .banner-conduction__title {
  color: #1b1c1e;
  line-height: 120%;
  font-family: "Ampero SemBd", sans-serif;
  font-size: 5.625rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 3.625rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .banner-conduction__title {
    font-size: 2rem;
    margin-bottom: 1.875rem;
  }
}
.mediynaya-reklama .banner-conduction__right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.mediynaya-reklama .banner-conduction__slogan {
  color: var(--white);
  font-family: "Ampero SemBd", sans-serif;
  font-size: 6.25rem;
  font-weight: 600;
  line-height: 100%;
  max-width: 31.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .banner-conduction__slogan {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 1.625rem;
    max-width: 100%;
  }
}
.mediynaya-reklama .banner-conduction__button {
  max-width: 19.0625rem;
  margin: 0 auto;
  width: 100%;
  padding: 1.1875rem 1.25rem;
  border-radius: 6.25rem;
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  color: var(--black-main-color);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 140%;
  transition: background 0.3s ease 0s, color 0.3s ease 0s, border 0.3s ease 0s;
  cursor: pointer;
}
.mediynaya-reklama .banner-conduction__button:hover {
  background: var(--white);
  color: var(--black-main-color);
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .banner-conduction__button {
    max-width: 100%;
    font-size: 0.875rem;
    padding: 0.875rem;
  }
}
.mediynaya-reklama .item-banner-conduction {
  color: #1b1c1e;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.875rem;
  max-width: 41.875rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-banner-conduction {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.mediynaya-reklama .item-banner-conduction__title {
  font-weight: 700;
}
.mediynaya-reklama .steps {
  margin-bottom: 5rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .steps {
    margin-bottom: 3.125rem;
  }
}
.mediynaya-reklama .steps__title {
  color: var(--black-main-color, #292b32);
  font-family: "Ampero SemBd", sans-serif;
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 4.6875rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .steps__title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
}
.mediynaya-reklama .steps__slider .swiper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
}
.mediynaya-reklama .item-steps {
  width: 32.1875rem;
  padding: 1.875rem 1.5625rem;
  border-radius: 1.25rem;
  background: var(--Color-4, #def5ff);
  height: 100%;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-steps {
    padding: 1.125rem 0.9375rem;
    width: 20.1875rem;
  }
}
.mediynaya-reklama .item-steps__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.625rem;
}
.mediynaya-reklama .item-steps__title {
  display: flex;
  gap: 0.625rem;
}
.mediynaya-reklama .item-steps__title span {
  display: block;
  color: #000;
  font-family: "Ampero SemBd", sans-serif;
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-steps__title span {
    font-size: 1.5rem;
  }
}
.mediynaya-reklama .item-steps__title span.item-steps__title_num {
  font-size: 1.875rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-steps__title span.item-steps__title_num {
    font-size: 1.25rem;
  }
}
.mediynaya-reklama .item-steps__title_text {
  max-width: 13.75rem;
}
.mediynaya-reklama .item-steps__img {
  width: 9.125rem;
  height: 9.125rem;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-steps__img {
    width: 5.625rem;
    height: 5.625rem;
  }
}
.mediynaya-reklama .item-steps__img img,
.mediynaya-reklama .item-steps__img video {
  width: 100%;
  height: 100%;
}
.mediynaya-reklama .item-steps__text {
  color: var(--black-main-color, #292b32);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-steps__text {
    font-size: 0.875rem;
  }
}
.mediynaya-reklama .cdek {
  position: relative;
  background: var(--secondary-color);
  padding-bottom: 8.125rem;
  padding-top: 7.5rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .cdek {
    padding-bottom: 4.0625rem;
  }
}
.mediynaya-reklama .cdek [class*=__container] {
  max-width: 928px !important;
}
.mediynaya-reklama .cdek__subtitle {
  position: relative;
  color: var(--primary-color, #00b2ff);
  font-family: "Ampero SemBd", sans-serif;
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 1.375rem;
  text-align: center;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .cdek__subtitle {
    margin-bottom: 0.8125rem;
    font-size: 1.25rem;
  }
}
.mediynaya-reklama .cdek__title {
  color: var(--black-main-color, #292b32);
  font-family: "Ampero SemBd", sans-serif;
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 6.25rem;
  text-align: center;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .cdek__title {
    margin-bottom: 1.625rem;
    font-size: 2rem;
    letter-spacing: 0.375rem;
  }
}
.mediynaya-reklama .cdek__tasks {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 13.9375rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .cdek__tasks {
    margin-bottom: 8.125rem;
  }
}
.mediynaya-reklama .cdek__tasks-title {
  color: var(--black-main-color, #292b32);
  font-family: "Ampero SemBd", sans-serif;
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .cdek__tasks-title {
    font-size: 2rem;
  }
}
.mediynaya-reklama .cdek__tasks-text {
  max-width: 32.875rem;
  color: #1b1c1e;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .cdek__tasks-text {
    font-size: 0.875rem;
  }
}
.mediynaya-reklama .cdek .cdek-top-marq {
  background: var(--secondary-color);
  padding-bottom: 6.25rem;
  transform: rotate(-7deg) translateY(7.5rem);
  position: absolute;
  bottom: 100%;
  width: 100%;
  left: 0;
  z-index: 0;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .cdek .cdek-top-marq {
    padding-bottom: 3.75rem;
  }
}
.mediynaya-reklama .cdek .cdek-top-marq::after {
  content: "";
  position: absolute;
  background: white;
  bottom: 100%;
  left: -1.875rem;
  width: 120%;
  height: 6.25rem;
}
.mediynaya-reklama .cdek .cdek-top-marq__slider {
  background: var(--black-main-color, #292b32);
  padding: 1.125rem 0;
  width: 110%;
  transform: translateX(-1.25rem);
}
.mediynaya-reklama .cdek .cdek-top-marq .swiper-wrapper {
  transition-timing-function: linear !important;
}
.mediynaya-reklama .cdek .cdek-top-marq .swiper-wrapper .swiper-slide {
  font-family: "Poppins", sans-serif;
}
.mediynaya-reklama .cdek .cdek-top-marq__item {
  position: relative;
  width: max-content;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  gap: 4.375rem;
}
.mediynaya-reklama .cdek .cdek-top-marq__item::after {
  content: "";
  position: static;
  top: 0;
  left: 0;
  width: 0.6875rem;
  height: 0.6875rem;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 11 11' fill='none'><path d='M3.69515 0.42344C3.69738 0.211329 4.04289 0.114453 4.1533 0.295645C4.67256 1.14492 5.5487 2.38845 6.5123 2.935C7.47583 3.47962 8.99484 3.59235 9.98973 3.60001C10.2018 3.60225 10.2968 3.94782 10.1156 4.05824C9.26633 4.5775 8.02472 5.45357 7.47817 6.41716C6.93162 7.38076 6.82082 8.8997 6.81316 9.8946C6.81093 10.1067 6.46343 10.2017 6.35494 10.0205C5.83568 9.17119 4.95961 7.92959 3.99408 7.38311C3.03049 6.83656 1.51155 6.72576 0.518577 6.71802C0.306466 6.71579 0.209519 6.36836 0.390777 6.25987C1.24005 5.74061 2.48358 4.86447 3.03007 3.89895C3.57469 2.93542 3.68742 1.41641 3.69515 0.42344Z' fill='white'/></svg>") no-repeat center/contain;
}
.mediynaya-reklama .cdek .cdek-bottom-marq {
  background: var(--white);
  padding-bottom: 1.25rem;
  transform: rotate(-2deg) translateY(2.1875rem);
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}
.mediynaya-reklama .cdek .cdek-bottom-marq__slider {
  background: var(--black-main-color);
  padding: 1.125rem 0;
}
.mediynaya-reklama .cdek .cdek-bottom-marq .swiper-wrapper {
  transition-timing-function: linear !important;
}
.mediynaya-reklama .cdek .cdek-bottom-marq .swiper-wrapper .swiper-slide {
  font-family: "Poppins", sans-serif;
}
.mediynaya-reklama .cdek .cdek-bottom-marq__item {
  position: relative;
  width: max-content;
  color: var(--secondary-color);
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  gap: 0.625rem;
}
.mediynaya-reklama .cdek .cdek-bottom-marq__item::after {
  content: "";
  position: static;
  top: 0;
  left: 0;
  width: 0.6875rem;
  height: 0.6875rem;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 11 11' fill='none'><path d='M3.69515 0.42344C3.69738 0.211329 4.04289 0.114453 4.1533 0.295645C4.67256 1.14492 5.5487 2.38845 6.5123 2.935C7.47583 3.47962 8.99484 3.59235 9.98973 3.60001C10.2018 3.60225 10.2968 3.94782 10.1156 4.05824C9.26633 4.5775 8.02472 5.45357 7.47817 6.41716C6.93162 7.38076 6.82082 8.8997 6.81316 9.8946C6.81093 10.1067 6.46343 10.2017 6.35494 10.0205C5.83568 9.17119 4.95961 7.92959 3.99408 7.38311C3.03049 6.83656 1.51155 6.72576 0.518577 6.71802C0.306466 6.71579 0.209519 6.36836 0.390777 6.25987C1.24005 5.74061 2.48358 4.86447 3.03007 3.89895C3.57469 2.93542 3.68742 1.41641 3.69515 0.42344Z' fill='%23CAFF3D'/></svg>") no-repeat center/contain;
}
.mediynaya-reklama .dialog-cdek {
  margin-bottom: 7.5rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .dialog-cdek {
    margin-bottom: 4.375rem;
  }
}
.mediynaya-reklama .dialog-cdek__line-img {
  max-width: 39.4375rem;
  transition: transform 0.5s ease-in-out 0s;
}
.mediynaya-reklama .dialog-cdek__line-img:hover {
  transform: rotate(-5deg);
}
.mediynaya-reklama .dialog-cdek__line-img:not(:last-child) {
  margin-bottom: 3.5rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .dialog-cdek__line-img:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.mediynaya-reklama .dialog-cdek__line-img:nth-child(even) {
  margin-left: auto;
}
.mediynaya-reklama .dialog-cdek__line-img:nth-child(even):hover {
  transform: rotate(5deg);
}
.mediynaya-reklama .dialog-cdek__line-img img {
  width: 100%;
  height: auto;
}
.mediynaya-reklama .audience-cdek {
  position: relative;
  margin-bottom: 8.75rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .audience-cdek {
    margin-bottom: 4.0625rem;
  }
}
.mediynaya-reklama .audience-cdek__decor-brain {
  position: absolute;
  left: 0;
  top: 0;
  margin: -12.5rem;
  transform: translateY(-10%);
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .audience-cdek__decor-brain {
    transform: translate(0, -5%);
  }
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .audience-cdek__decor-brain img {
    width: 31.25rem;
    height: 31.25rem;
  }
}
.mediynaya-reklama .audience-cdek__blur {
  border-radius: 1.25rem;
  border: 1px solid var(--white, #fff);
  background: rgba(202, 255, 61, 0.1);
  backdrop-filter: blur(34.7999992371px);
  padding: 3.4375rem 2.3125rem;
  color: #1b1c1e;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 130%;
  max-width: 38.375rem;
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .audience-cdek__blur {
    font-size: 0.9375rem;
    padding: 1.875rem 1.3125rem;
  }
}
.mediynaya-reklama .audience-cdek__title {
  color: var(--black-main-color, #292b32);
  font-family: "Ampero SemBd", sans-serif;
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 2.1875rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .audience-cdek__title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
}
.mediynaya-reklama .audience-cdek__text {
  margin-bottom: 1rem;
}
.mediynaya-reklama .audience-cdek__list {
  padding-left: 1em;
}
.mediynaya-reklama .audience-cdek__list-item {
  position: relative;
}
.mediynaya-reklama .audience-cdek__list-item:not(:last-child) {
  margin-bottom: 1rem;
}
.mediynaya-reklama .audience-cdek__list-item::after {
  content: "•";
  position: absolute;
  top: 0em;
  left: -0.9em;
}
.mediynaya-reklama .video-block-cdek {
  display: flex;
  gap: 3.25rem;
  margin-bottom: 5.5625rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .video-block-cdek {
    margin-bottom: 1.875rem;
    flex-direction: column;
    gap: 2.5rem;
  }
}
.mediynaya-reklama .video-block-cdek__title {
  color: var(--black-main-color, #292b32);
  font-family: "Ampero SemBd", sans-serif;
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 2.1875rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .video-block-cdek__title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
}
.mediynaya-reklama .video-block-cdek__text {
  color: #1b1c1e;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .video-block-cdek__text {
    font-size: 0.9375rem;
  }
}
.mediynaya-reklama .video-block-cdek__video {
  max-width: 28.9375rem;
  overflow: hidden;
  border-radius: 0.75rem;
}
.mediynaya-reklama .video-block-cdek__video video {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.mediynaya-reklama .flex-cdek {
  display: flex;
  gap: 5.125rem;
  margin-bottom: 8.75rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .flex-cdek {
    margin-bottom: 6.25rem;
    flex-direction: column;
    gap: 2.1875rem;
  }
}
.mediynaya-reklama .item-flex-cdek:first-child .item-flex-cdek__img {
  width: 8.5625rem;
  height: 8.5625rem;
  margin-bottom: 0.9375rem;
}
.mediynaya-reklama .item-flex-cdek:last-child {
  margin-top: 2.375rem;
}
.mediynaya-reklama .item-flex-cdek__img {
  width: 5.375rem;
  height: 5.375rem;
  margin-bottom: 1.75rem;
}
.mediynaya-reklama .item-flex-cdek__img img {
  width: 100%;
  height: 100%;
}
.mediynaya-reklama .item-flex-cdek__title {
  color: var(--black-main-color, #292b32);
  font-family: "Ampero SemBd", sans-serif;
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 2.1875rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-flex-cdek__title {
    font-size: 2rem;
  }
}
.mediynaya-reklama .item-flex-cdek__text {
  color: #1b1c1e;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-flex-cdek__text {
    font-size: 0.9375rem;
  }
}
.mediynaya-reklama .banner-cdek {
  position: relative;
}
.mediynaya-reklama .banner-cdek__blur {
  border-radius: 1.25rem;
  border: 1px solid var(--primary-color, #00b2ff);
  background: rgba(202, 255, 61, 0.1);
  backdrop-filter: blur(34.7999992371px);
  display: flex;
  gap: 5rem;
  padding: 7.5rem 1.75rem 5.0625rem 4.3125rem;
  position: relative;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .banner-cdek__blur {
    flex-direction: column;
    padding: 2.1875rem 1.25rem;
  }
}
.mediynaya-reklama .banner-cdek__item_left {
  max-width: 24rem;
}
.mediynaya-reklama .banner-cdek__item_right {
  margin-top: 8.75rem;
}
.mediynaya-reklama .banner-cdek__item-percent {
  color: var(--primary-color, #00b2ff);
  font-family: "Ampero SemBd";
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 2.1875rem;
  position: relative;
  width: max-content;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .banner-cdek__item-percent {
    font-size: 2rem;
    margin-bottom: 0.625rem;
  }
}
.mediynaya-reklama .banner-cdek__item-percent-decor {
  position: absolute;
  left: 110%;
  top: -4.375rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .banner-cdek__item-percent-decor {
    top: 8.125rem;
    left: 0%;
  }
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .banner-cdek__item-percent-decor svg {
    height: 11.25rem;
    transform: rotate(-90deg) scaleX(-1);
  }
}
.mediynaya-reklama .banner-cdek__item-text {
  color: #1b1c1e;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .banner-cdek__item-text {
    font-size: 0.9375rem;
  }
}
.mediynaya-reklama .banner-cdek__decor-heart_sm {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11.9375rem;
  height: 11.9375rem;
  z-index: 2;
  transform: scaleX(-1) translateY(40%);
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .banner-cdek__decor-heart_sm {
    z-index: 0;
  }
}
.mediynaya-reklama .banner-cdek__decor-heart_sm img {
  width: 100%;
  height: 100%;
}
.mediynaya-reklama .banner-cdek__decor-heart_lg {
  position: absolute;
  left: 0;
  top: 0;
  width: 30.3125rem;
  height: 30.3125rem;
  z-index: 0;
  transform: translate(-50%, -30%);
}
.mediynaya-reklama .banner-cdek__decor-heart_lg img {
  width: 100%;
  height: 100%;
}
.mediynaya-reklama .faq {
  background: #fff;
  padding-top: 11.25rem;
  padding-bottom: 11.25rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .faq {
    padding-bottom: 3.75rem;
  }
}
.mediynaya-reklama .faq__title {
  color: var(--Color-10, #f3f4f5);
  text-align: center;
  font-size: 5.625rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  display: flex;
  gap: 6.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .faq__title {
    font-size: 2rem;
    gap: 3.125rem;
    margin-bottom: 1.875rem;
  }
}
.mediynaya-reklama .faq__title span {
  font-family: "Ampero SemBd";
}
.mediynaya-reklama .faq__title span:first-child {
  color: var(--black-main-color);
}
.mediynaya-reklama .faq__flex {
  display: flex;
  gap: 4.625rem;
}
@media (max-width: 1199.98px) {
  .mediynaya-reklama .faq__flex {
    gap: 1.25rem;
  }
}
@media (max-width: 991.98px) {
  .mediynaya-reklama .faq__flex {
    flex-direction: column;
  }
}
.mediynaya-reklama .questions-faq {
  max-width: 57.8125rem;
  min-width: 27.5rem;
  width: 100%;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .questions-faq {
    min-width: 0;
  }
}
.mediynaya-reklama .questions-faq__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1.25rem;
  border: 1px solid var(--Color-8, #adb0bc);
  background: #fff;
  padding: 2.1875rem 1.25rem;
  color: #000;
  font-family: "Ampero SemBd";
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease 0s, background 0.3s ease 0s;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .questions-faq__item {
    font-size: 1.5rem;
    padding: 1.25rem 0.8125rem;
  }
}
.mediynaya-reklama .questions-faq__item:not(:last-child) {
  margin-bottom: 2.1875rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .questions-faq__item:not(:last-child) {
    margin-bottom: 0.9375rem;
  }
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .questions-faq__item.active:not(:last-child) {
    margin-bottom: 0;
  }
}
.mediynaya-reklama .questions-faq__item::after {
  content: "+";
  position: static;
  font-size: 4.375rem;
  font-weight: 400;
  transition: opacity 0.3s ease 0s;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .questions-faq__item::after {
    font-size: 2.5rem;
  }
}
.mediynaya-reklama .questions-faq__item.active {
  color: var(--white);
  background: var(--primary-color);
}
.mediynaya-reklama .questions-faq__item.active::after {
  opacity: 0;
}
.mediynaya-reklama .answers-faq {
  position: relative;
}
.mediynaya-reklama .item-answers-faq {
  padding: 2.5rem 2.1875rem;
  opacity: 0;
  border-radius: 1.25rem;
  border: 1px solid var(--Color-10, #f3f4f5);
  background: #fff;
  transition: opacity 0.3s ease 0s;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-answers-faq {
    padding: 1.25rem;
    display: none;
  }
}
.mediynaya-reklama .item-answers-faq:not(:first-child) {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-answers-faq:not(:first-child) {
    position: static;
  }
}
.mediynaya-reklama .item-answers-faq.active {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-answers-faq.active {
    display: block;
  }
}
.mediynaya-reklama .item-answers-faq__title {
  color: #000;
  font-family: "Ampero SemBd";
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 1.5625rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-answers-faq__title {
    font-size: 1.875rem;
    margin-bottom: 0.625rem;
  }
}
.mediynaya-reklama .item-answers-faq__text p {
  color: var(--Color-7, #636878);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
}
.mediynaya-reklama .item-answers-faq__text p:not(:last-child) {
  margin-bottom: 1em;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-answers-faq__text p:not(:last-child) {
    margin-bottom: 0.4em;
  }
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .item-answers-faq__text p {
    font-size: 1.125rem;
  }
}
@media (max-width: 991.98px) {
  .mediynaya-reklama {
    /* ответы внутри мобильного потока — должны отображаться прямо под вопросом */
    /* когда ответ активен — показываем */
    /* пометка для ответов, вставленных в мобильный поток */
    /* если нужно, чтобы вопрос и ответ визуально были связаны */
  }
  .mediynaya-reklama .item-answers-faq {
    display: none !important;
    opacity: 1;
    /* opacity лучше держать 1 на мобильных, чтобы animation не мешал */
    position: static !important;
    width: 100%;
    margin-top: 0;
    padding: 1.25rem !important;
    border-radius: 0.75rem;
    box-sizing: border-box;
  }
  .mediynaya-reklama .item-answers-faq.active {
    display: block !important;
    margin-bottom: 0 !important;
  }
  .mediynaya-reklama .item-answers-faq.in-mobile {
    /* .in-mobile — чисто семантический флаг, можно добавить тени/отступы */
    margin-top: 0;
  }
  .mediynaya-reklama .questions-faq__item.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
  }
  .mediynaya-reklama .answers-faq__item.item-answers-faq.in-mobile.active {
    margin-bottom: 1.25rem !important;
  }
  .mediynaya-reklama .item-answers-faq.in-mobile {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.mediynaya-reklama .cases {
  margin-bottom: 7.5rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .cases {
    margin-bottom: 3.75rem;
  }
}
.mediynaya-reklama .cases__top {
  display: flex;
  gap: 0.625rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4.375rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .cases__top {
    margin-bottom: 1.25rem;
  }
}
.mediynaya-reklama .cases__title {
  color: var(--black-main-color, #292b32);
  font-family: "Ampero SemBd";
  font-size: 4.0625rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .cases__title {
    font-size: 2rem;
  }
}
.mediynaya-reklama .cases__arrows {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.mediynaya-reklama .cases .cases__prev,
.mediynaya-reklama .cases .cases__next {
  width: 4.875rem;
  height: 4.875rem;
  border-radius: 50%;
  border: 4px solid var(--black-main-color, #292b32);
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  font-size: 3.125rem;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .cases .cases__prev,
.mediynaya-reklama .cases .cases__next {
    width: 3.75rem;
    height: 3.75rem;
  }
}
.mediynaya-reklama .cases .cases__prev.swiper-button-disabled,
.mediynaya-reklama .cases .cases__next.swiper-button-disabled {
  opacity: 0.3;
}
.mediynaya-reklama .cases__slider .swiper {
  width: 100%;
  max-width: 1854px;
  margin: 0 auto;
  padding: 0 15px;
}
.mediynaya-reklama .slide-cases {
  width: 27.125rem;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .slide-cases {
    width: 100%;
    max-width: 90%;
  }
}
.mediynaya-reklama .slide-cases:hover .slide-cases__img img {
  transform: scale(1.05);
}
.mediynaya-reklama .slide-cases:nth-child(3) .stats-slide-cases__title {
  font-size: 1.875rem;
  margin-bottom: 0;
  text-wrap: wrap;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .slide-cases:nth-child(3) .stats-slide-cases__title {
    font-size: 1rem;
  }
}
.mediynaya-reklama .slide-cases:nth-child(3) .stats-slide-cases__item div {
  width: unset;
}
.mediynaya-reklama .slide-cases:nth-child(3) .stats-slide-cases__item:nth-child(2) {
  width: 35%;
  display: flex;
  flex-direction: column;
}
.mediynaya-reklama .slide-cases__main {
  padding: 1.875rem 1.5625rem;
  position: relative;
  width: 100%;
  height: 25.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .slide-cases__main {
    margin-bottom: 1.25rem;
  }
}
.mediynaya-reklama .slide-cases__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
.mediynaya-reklama .slide-cases__top span {
  font-family: "Ampero SemBd";
  display: block;
}
.mediynaya-reklama .slide-cases__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  z-index: -1;
}
.mediynaya-reklama .slide-cases__img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.mediynaya-reklama .slide-cases__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease 0s;
  z-index: -1;
  position: relative;
}
.mediynaya-reklama .slide-cases__descr {
  color: var(--black-main-color, #292b32);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 110%;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .slide-cases__descr {
    font-size: 1rem;
  }
}
.mediynaya-reklama .stats-slide-cases {
  margin-top: auto;
  border-radius: 0.9375rem;
  background: #fff;
  padding: 1.25rem 1.25rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.mediynaya-reklama .stats-slide-cases__item {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.mediynaya-reklama .stats-slide-cases__item:not(:last-child) {
  position: relative;
}
.mediynaya-reklama .stats-slide-cases__item:not(:last-child)::after {
  content: "";
  width: 0.125rem;
  height: 100%;
  position: static;
  background: #d9d9d9;
  margin: 0 auto;
}
.mediynaya-reklama .stats-slide-cases__item div {
  width: 100%;
}
.mediynaya-reklama .stats-slide-cases__title {
  color: var(--black-main-color, #292b32);
  text-align: center;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.9375rem;
  text-wrap: nowrap;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .stats-slide-cases__title {
    font-size: 1rem;
  }
}
.mediynaya-reklama .stats-slide-cases__descr {
  color: var(--black-main-color, #292b32);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .stats-slide-cases__descr {
    font-size: 0.75rem;
  }
}
.mediynaya-reklama .bottom-fix {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 -3px 8.6px 0 rgba(0, 0, 0, 0.1);
  gap: 1.5625rem;
  align-items: center;
  padding: 1rem 1.25rem;
  z-index: 50;
  width: 100%;
  transform: translateX(-100%);
  animation: transformFromScreen 0.7s ease forwards;
  animation-delay: 3.5s;
}
@media (max-width: 767.98px) {
  .mediynaya-reklama .bottom-fix {
    display: flex;
  }
}
.mediynaya-reklama .bottom-fix__tg {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--Color-4, #def5ff);
  flex-shrink: 0;
}
.mediynaya-reklama .bottom-fix__tg svg {
  width: 1.4375rem;
  height: 1.1875rem;
  transform: translateX(-0.125rem);
}
.mediynaya-reklama .bottom-fix__button {
  width: 100%;
  padding: 0.875rem;
  border-radius: 2.5rem;
  font-size: 0.75rem;
}
@keyframes transformFromScreen {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.mediynaya-reklama section.feedback-service .section-container .container {
  background: var(--black-main-color);
}
