@charset "UTF-8";

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body._active {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

a {
  cursor: pointer;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  margin: 0;
  line-height: 100%;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}


button {
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

/*--------------------*/


body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 15px;
}

a {
  display: block;
  color: #5F5B5B;
  line-height: normal;
}

.wrapper {
  overflow: hidden;
}

.title {
  font-size: 50px;
  font-weight: 600;
  color: #323232;
  text-align: center;
}

.button {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 30px;
  background-color: #e30f19;
  border: 2px solid #e30f19;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #ffffff;
  font-weight: 700;
  border-radius: 15px;
  text-transform: uppercase;
  font-size: 15px;
}

.button:hover {
  background-color: #e30f1900;
  box-shadow: 0 0 40px 40px #e30f1900  inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #e30f19;
}

.label {
  font-size: 24px;
  font-weight: 300;
  line-height: 133%;
}

.section__top {
  margin-bottom: 65px;
}

._has-padding {
  padding: 0px 24px;
}

.h1 {
  font-size: 59px;
  font-weight: 600;
  color: #323232;
}

.label {
  font-size: 24px;
  color: #00E700;
}

.section {
  padding: 60px 0px;
}

.checkbox input {
  display: none;
}

.checkbox input:checked ~ label:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.checkbox label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
  cursor: pointer;
  font-size: 20px;
}

.checkbox label:after,
.checkbox label:before {
  content: "";
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  border-radius: 1px;
}

.checkbox label:before {
  border: 1px solid #ED8282;
}

.checkbox label:after {
  top: 0;
  left: 0;
  background-image: url(../img/icons/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  background-color: #ED8282;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.container {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0px 20px;
}

.section-bg {
  background-color: #ebebeb;
  padding: 60px 120px;
  margin: 18px 12px;
  border-radius: 30px;
  color: #323232;
}

.modal {
  min-height: 100vh;
  padding: 100px 36px;
}

.header {
  padding: 36px 0;
}

.header__container {
  padding: 0px 20px;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 11;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 135px;
}
.header__button {
  display: flex;
  gap: 40px;
}

.popup {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 20;
  background: rgba(48, 50, 58, 0.75);
}

.popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 16px;
}

.popup__content {
  background-color: #fff;
  max-width: 800px;
  padding: 70px;
  position: relative;
  width: 100%;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.close-popup {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.header__logo {
  margin-left: -38px;
}
.vk__img {
  max-width: 45px;
  transition: transform .7s;
}
.header__vk {
    position: absolute;
    right: calc((1615px - 100vw) / 2);
}



.vk__href:hover img {
  transform: scale(1.2);
}
.header {
  padding-bottom: 0;
}
.banner__item {
  position: relative;
}
.banner__container {
  max-width: calc(100% - 200px);
}
.banner__img {
  max-width: 100%;
}
.banner__info {
  position: absolute;
  top: 120px;
  max-width: 1400px;
  width: 100%;
  left: calc((100% - 1360px) / 2);
}
.banner__title {
  font-size: 59px;
  color: #323232;
  font-weight: 600;
  padding-bottom: 30px;
  line-height: normal;
}
.banner__text {
  font-size: 38px;
  line-height: 51px;
  color: #080402;
  font-weight: 500;
}
.block{
  display: block;
}
.banner__body {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0;
}
.banner__button {
  font-size: 22px;
  line-height: 33px;
  color: #f2f3f7;
  font-weight: 700;
  display: flex;
  gap: 20px;
  border-radius: 20px;
  padding: 15px 40px;
  -webkit-box-shadow: 2px 11px 20px 3px #222222a3;
  -moz-box-shadow: 2px 11px 20px 3px #222222a3;
  box-shadow: 2px 11px 20px 3px #222222a3;
  position: relative;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px #e30f19;
  }

  100% {
    box-shadow: 0 0 0 15px rgba(207, 241, 207, 0);
  }
}
.banner__button:hover img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(93%) saturate(6503%) hue-rotate(354deg) brightness(95%) contrast(94%);
}
.vk__href-mobile{
  display: none;
}
@media (max-width: 1660px) {
  .banner__info {
    left: 40px;
  }
}
@media (max-width: 1600px) {
  .banner__container {
    max-width: 100%;
  }
  .banner__info {
    left: 20px;
  }

}

@media (max-width: 1550px) {

.header__vk {
    position: relative;
    right: 0;
}
}
@media (max-width: 1100px) {
  .banner__img {
    min-height: 500px;
    object-fit: cover;
    object-position: left;
  }
  .header__button {
    flex-direction: column;
    gap: 10px;
    align-self: baseline;
  }
  .header__content {
    gap: 40px;
    width: 100%;
    justify-content: space-between;
  }
  .header__body {
    gap: 20px;
    align-items: flex-start;
  }
}

@media (max-width: 992px) {
  .banner__title {
    font-size: 50px;
  }
  .banner__text {
    font-size: 32px;
    line-height: 1.4;
  }
  .banner__img {
    min-height: 400px;
  }
}

@media (max-width: 767px) {

  .banner__info {
    top: 26px;
    left: 26px;
  }
  .banner__title {
    font-size: 32px;
    padding-bottom: 4px;
    max-width: calc(100% - 52px);
  }
  .banner__text {
    font-size: 20px;
    line-height: 24px;
  }
  .banner__img {
    opacity: 0;
  }
  .header__content {
    flex-direction: column;
  }
  .header__logo img {
    width: 100%;
    max-width: 100%;
  }
  .header__body {
    flex-direction: column;
  }
  .header__vk {
    display: none;
  }
  .header__content {
    flex-direction: column;
    gap: 0;
  }
  .banner__item:before {
    content: '';
    background: url("/img/banner-mobile.png");
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
  }
  .banner__item {
    min-height: 466px;
  }
  .vk__href-mobile{
    display: block;
  }
  .header {
    padding-bottom: 36px;
  }
  .header__button {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .vk__img {
    max-width: 34px;
  }
  .header__link {
    font-size: 11px;
    padding: 10px 20px;
    border-radius: 11px;
  }
  .banner__body {
    gap: 0;
  }
  button.button.banner__button {
    font-size: 18px;
    line-height: 1.3;
    padding: 13px 30px;
  }
  .title {
    font-size: 32px;
  }
}
@media (max-width: 413px) {
  .header__link {
    font-size: 10px;
    padding: 10px 7px;
  }
}
.tarif__names {
  background: #ebebeb;
  padding: 105px 70px 20px;
  border-radius: 20px;
  margin-top: -102px;
  z-index: 1;
}
.tarif__item {
  display: flex;
  flex-direction: column;
  max-width: 424px;
}
.tarif__row {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding-top: 40px;
}
.tarif__advantages {
  display: flex;
}
.tarif__advantages {
  display: flex;
  align-items: end;
  z-index: 2;
  position: relative;
}
.tarif__price {
  font-size: 46px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 600;
  background: #da2f2a;
  border-radius: 50%;
  padding: 22px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 37px;

}
.tarif__price--info {
  font-size: 18px;
  text-align: right;
}
.tarif__ido {
  font-size: 29px;
  line-height: 1;
  color: #323232;
  font-weight: 600;
}
.tarif__tarifes {
  font-size: 49px;
  line-height: 1;
  color: #323232;
  font-weight: 700;
  padding: 9px 0 27px;
  margin-left: -3px;
}
.tarif__list {
  font-size: 38px;
  color: #323232;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 40px;
}
.tarif__spec {
  font-size: 18px;
  line-height: 22px;
  color: #646464;
  font-weight: 400;
}
.tarif__mbit span {
  font-size: 22px;
}
.tarif__button {
  font-size: 14px;
  letter-spacing: 0px;
  line-height: 26px;
  text-transform: uppercase;
  color: #323232;
  font-weight: 700;
  text-align: center;
  min-width: 260px;
  border: 2px solid #646464;
  border-radius: 15px;
  padding: 15px 30px;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.tarif__button:hover {
  background-color: #646464;
  box-shadow: 0 0 40px 40px #646464 inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #ffffff;
}
.tarif__item:first-child .tarif__img {
  margin-left: -52px;
}
.tarif__item:nth-child(2) .tarif__img {
  margin-left: -30px;
}
.tarif__item:last-child .tarif__img {
  margin-left: -7px;
}

.tarif__price {
  position: absolute;
  right: 30px;
}
@media (max-width: 1400px) {
  .tarif__row {
    justify-content: center;
    flex-wrap: wrap;
  }


}
@media (max-width: 920px) {
  .tarif__item {
    max-width: 324px;
  }
  .tarif__names {
    padding: 105px 40px 20px;
  }
  .tarif__button {
    min-width: 100%;
  }

}
@media (max-width: 767px) {

  .tarif__price {
    font-size: 36px;
    left: 0;
    right: 0;
    position: relative;
    order: 1;
    margin-bottom: 18px;
    margin-right: -38px;
  }
  .tarif__ido {
    font-size: 16px;
  }
  .tarif__tarifes {
    font-size: 32px;
    padding: 4px 0 15px;
    gap: 7px;
  }
  .tarif__list {
    font-size: 22px;
    padding-bottom: 0;
    gap: 3px;
  }
  .tarif__button {
    padding: 6px 23px;
    font-size: 12px;
    line-height: 18px;
  }
  .tarif__img {
    max-width: 250px;
  }
  .tarif__item:first-child .tarif__img, .tarif__item:nth-child(2) .tarif__img, .tarif__item:nth-child(3) .tarif__img {
    margin-left: 0;
    order: 2;
    margin-right: -20px;
  }
  .tarif__row {
    gap: 10px;
    padding-top: 3px;
  }
  .tarif__item {
    max-width: 100%;
    width: 100%;
  }
  .tarif__advantages {
    justify-content: end;
    align-items: center;
  }
  .tarif__price--info {
    font-size: 12px;
    text-align: right;
    line-height: 12px;

    padding-top: 2px;
  }
  .tarif__names {
    padding: 25px;
    margin-top: -120px;
    display: grid  ;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
  .tarif__ido, .tarif__tarifes {
    grid-column-start: span 2;
  }
  .tarif__mbit span {
    font-size: 15px;
  }
  .tarif__spec {
    font-size: 14px;
    line-height: 18px;
    max-width: 124px;
  }
  .animated1__now, .animated2__now, .animated3__now {
    transform: scale(1)!important;
  }
  .tarif__item:nth-child(2) .tarif__price {
    margin-top: -31px;
  }
}
@media (max-width: 400px) {
  .tarif__item:first-child .tarif__img, .tarif__item:nth-child(2) .tarif__img, .tarif__item:nth-child(3) .tarif__img {
    margin-left: 0;
    order: 2;
    margin-right: -30px;
    max-width: 220px;
  }
  .tarif__names {
    margin-top: -102px;
  }
  .tarif__price {
    font-size: 30px;
  }
  .tarif__price--info {
    font-size: 10px;
  }
  .tarif__item:nth-child(3) .tarif__price {
    margin-bottom: -15px;
  }
}
.digital {
  padding: 110px 0 80px;
  position: relative;
}
.tarif{
  padding-top: 110px;
}
.digital__row {
  display: flex;
  justify-content: space-between;
  padding: 0px 60px;
}
.digital__item {
  background: #ebebeb;
  border-radius: 50%;
  aspect-ratio: 1;
  padding: 50px 85px;
}
.digital__name {
   font-size: 32px;
   line-height: 48px;
   color: #e30f19;
   font-weight: 700;
 }
.digital__info {
  font-size: 16px;
  line-height: 20px;
  color: #323232;
  font-weight: 500;
}
.digital__price {
  font-size: 43px;
  color: #323232;
  font-weight: 700;
  padding: 20px 0 30px;
}
.digital__price span {
  font-size: 20px;
}
.digital__button {
  font-size: 12px;
  letter-spacing: 0px;
  line-height: 16px;
  text-transform: uppercase;
  color: #323232;
  font-weight: 700;
  background: #cfcfcf;
  display: flex;
  gap: 19px;
  align-items:center;
  padding: 3px 0;
  padding-left: 25px;
  border-radius: 20px;
  padding-right: 3px;
  transition: 1s;
}
.digital__button:hover {
  background: #e30c18;
  color: #ffffff;
}
.digital__button:hover img{

}
.digital__info span {
  font-size: 10px;
  line-height: 13px;
  color: #646464;
  font-weight: 400;
  display: flex;
  max-width: 183px;
}
.digital__row1 {
  display: flex;
  padding: 40px 60px;
  justify-content: space-around;
}
.digital__imgs {
  position: absolute;
  bottom: 0;
  left: calc(50% - 150px);
}
.digital__title {
  padding-bottom: 20px;
}
@media (max-width: 1100px) {
  .digital__row {
    padding: 0;
  }
  .digital {
    padding: 80px 0 80px;
    position: relative;
  }
  .tarif{
    padding-top: 80px;
  }
  .digital__title {
    padding-bottom: 40px;
  }
  .digital__item {
    padding: 40px 55px;
  }
  .digital__name {
    font-size: 28px;
  }
  .digital__price {
    font-size: 34px;
    padding: 20px 0 20px;
  }
  .digital__body {
    position: relative;
  }
  .digital__imgs {
    max-height: 600px;
    top: 60px;
    left: calc(50% - 111px);
  }
  .digital__row1 {
    padding: 30px 40px;
  }
  .digital {
    padding: 80px 0 40px;
  }
}
@media (max-width: 767px) {
  .digital__row, .digital__row1 {
    gap: 20px;
    display: grid  ;
    grid-template-columns: 1fr 1fr;
  }
  .digital__row1{
    padding: 20px 0 0;
  }
  .digital__imgs {
    display: none;
  }
  .digital {
    padding: 50px 0 40px;
  }
  .tarif{
    padding-top: 50px;
  }
  .digital__button {
    justify-content: space-between;
    font-size: 10px;
    width: 100%;
  }
  .digital__name {
    font-size: 26px;
    line-height: 31px;
  }
  .digital__info {
    font-size: 14px;
  }
  .digital__info span {
    font-size: 14px;
    line-height: 20px;
    color: #323232;
  }
  .digital__price {
    font-size: 31px;
    padding: 10px 0 10px;
  }
  .digital__price span {
    font-size: 14px;
  }
  .digital__item {
    border-radius: 20px;
    padding: 20px;
    aspect-ratio: auto;
  }
  .digital__row1 .digital__item:first-child .digital__info span {
    position: absolute;
  }
  .digital__row1 .digital__item:last-child .digital__info span {
    display: none;
  }
  .digital__row1 .digital__item:first-child .digital__info span {
    position: absolute;
    bottom: -10px;
    min-width: calc(100vw - 40px);
    left: 0;
    font-size: 10px;
  }
  .digital__row1 .digital__item:first-child .digital__info span.block {
    position: inherit;
    min-width: 100%;
    font-size: 14px;
    color: #323232;
  }
  .digital__row1 .digital__item:last-child .digital__info span.block {
    display: block;
  }
  .digital__body {
    padding-bottom: 20px;
  }
  .digital__title {
    padding-top: 200px;
    padding-left: 150px;
    font-size: 32px;
  }
  .digital__title:before {
    content: url(/img/digital1-mobile.png);
    position: absolute;
    width: 196px;
    height: 273px;
    top: 0;
    left: 0;
  }
}
@media (max-width: 450px) {
  .digital__row, .digital__row1 {
    gap: 20px;
    display: grid  ;
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: auto;
  }
  .digital__row1 .digital__item:first-child .digital__info span {
    bottom: -15px;
    width: 100%;
    left: 0;
    font-size: 10px;
    max-width: 300px;
    min-width: 200px;
    margin: auto;
    left: calc(50% - 150px);
    line-height: 12px;
  }
  .digital__title:before {

    top: auto;
    left: calc(50% - 88px);
    bottom: 72px;
  }
  .digital__title {
    padding-top: 229px;
    position: relative;
    padding-left: 0;
  }
}

.advantages__container {
  background: #ebebeb;
  padding: 60px 110px;
  max-width: 1360px;
  border-radius: 20px;
}
.advantages__row {
  display: grid;
  grid-template-columns: repeat(3, 265px);
  justify-content: space-between;
  gap: 40px;
  padding-top: 40px;
}
.advantages_info {
  font-size: 26px;
  line-height: 37px;
  color: #323232;
  font-weight: 700;
}
.advantages_info span {
  font-weight: 400;
}
.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 20px;
}

@media (max-width: 1400px) {
  .advantages__container {
    max-width: calc(100% - 40px);
  }
}
@media (max-width: 1100px) {
  .advantages__container {
    padding: 60px 60px;
  }
}
@media (max-width: 1000px) {
  .advantages__row {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
  }
  .advantages_info {
    text-align: center;
  }
  .advantages__item {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .advantages__row {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 20px;
    padding-top: 40px;
  }
  .advantages__container {
    padding: 40px;
  }
  .advantages__title {
    font-size: 32px;
  }
  .advantages_info {
    font-size: 18px;
    line-height: 24px;
    text-align: left;
  }
}
@media (max-width: 400px) {
  .advantages_info {
    font-size: 16px;
    line-height: 22px;
  }
  .advantages__container {
    padding: 20px;
  }
}
.footer {
  background: #e5171e;
}
.footer___row {
  padding: 110px 0;
}
.menu-item a {
  font-size: 40px;
  line-height: 53px;
  color: #f2f3f7;
  font-weight: 400;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 1024px) {
  .footer___row {
    padding: 60px 0;
  }
  .menu-item a {
    font-size: 32px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .menu-item a {
    font-size: 20px;
    line-height: 1;
  }
  .footer___row {
    padding: 40px 0;
  }
  .footer__menu {
    gap: 10px;
    padding: 0 40px;
  }
}
.cookie{
  display: none;
  position: fixed;
  max-width: 400px;
  z-index: 3;
  bottom: 40px;
  left: 80px;
}
.cookie.active{
  display: flex;
}
.cookie__contanier {
  margin: auto;
  background: #ffffff;
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.380);
}
.cookie__p {
  font-size: 12px;
  line-height: 110%;
  color: #878787;
  padding-bottom: 10px;
  font-weight: 500;
}
.cookie__button {
  font-size: 14px;
  color: #ffffff;
  background: #9d9d9d;
  padding: 6px 10px;
  border-radius: 9px;
  border: none;

}
@media screen and (max-width: 767px) {
  .cookie__p {
    font-size: 12px;
  }
  .cookie__button {
    font-size: 12px;
  }
  .cookie__contanier {

    padding: 14px 20px;
    border-radius: 10px;
  }
  .cookie{
    bottom: 15px;
    width: 90%;
    left: 5%;
  }
}
.feedback__body {
  background: #ebebeb;
  padding: 60px 110px;
  max-width: 1360px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.feedback__title {
  font-size: 42px;
  line-height: 53px;
  text-align: left;
}
.feedback__img2 {
  position: absolute;
  right: 370px;
}
.feedback {
  padding: 110px 0 200px;
}
.feedback__img {
  margin-left: 340px;
}
.feedback_button {
  padding: 18px 51px;
  font-size: 22px;
}
@media screen and (max-width: 1230px) {
  .feedback__img2 {
    display: none;
  }
  .feedback {
    padding: 60px 0 80px;
  }
}
@media screen and (max-width: 1100px) {
  .feedback__body {
    padding: 60px 60px;
  }
  .feedback__img {
    margin-left: auto;
    display: block;
  }
  .feedback__title {
    font-size: 34px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .feedback__img {
    max-width: 200px;
    margin-left: 30px;
  }
  .feedback__body {
    padding: 28px 40px;
    flex-direction: column;
    gap: 20px;
    align-items: baseline;
  }
  .feedback__title {
    font-size: 20px;
    line-height: 24px;
  }
  .feedback_button {
    padding: 13px 38px;
    font-size: 15px;
  }
  .feedback {
    padding: 60px 0 150px;
  }
  .feedback__img2 {
    display: block;
    right: 0;
    bottom: 0;
    max-height: 420px;
    top: -78px;
  }
}

@media screen and (max-width: 400px) {
  .feedback__body {
    padding: 20px 20px;
  }
  .feedback__img2 {
    max-height: 320px;
    top: -64px;
  }
  .feedback {
    padding: 60px 0 120px;
  }
}
.forms__content {
  background: #ebebeb;
  padding: 80px 110px;
  border-radius: 60px;
}
.forms__h3{
  font-size: 32px;
  color: #323232;
  font-weight: 700;
  padding-bottom: 40px;
}
.popup .forms__content form textarea, .popup .forms__content form input[type="text"], .popup .forms__content form input[type="tel"], .popup .forms__content form input[type="email"], .popup .forms__content form input[type="number"] {
  width: 100%;
  height: 30px;
  border: none;
  border-bottom: 2px solid #323232;
  line-height: 30px;
  font-size: 18px;
  color: #323232;
  background: #ff000000;
  font-weight: 500;
  padding-left: 5px;
}
.popup .forms__content form input::placeholder, .popup .forms__content form textarea::placeholder{
  color: #323232;
  font-weight: 500;
  opacity: 1;
}
.element--padding {
  padding-bottom: 30px;
}
. forms__content--onlineclient .element--padding {
    padding-bottom: 15px;
}
.popup .forms__content form input {
  width: 100%;
}
.popup .forms__content label i {
  width: 18px;
  height: 18px;
  border: 1px solid #8a8a8a;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  float: left;
  box-sizing: border-box;
  min-width: 18px;
}
.popup .forms__content  label span {
  font-size: 12px;
  color: #323232;
  font-weight: 500;
  display: block;
}
.popup .forms__content label span a{
  display: inline;
  color: #323232;
  font-weight: 700;
}
.popup .forms__content label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.popup .forms__content label i:after {
  content: '';
  background-image: url(../img/checkbox.png);
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -ms-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.popup .forms__content label input[type="checkbox"]:checked+i:after {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

label {
  display: inline-block;
  max-width: 100%;
}
.element_checkbo{
  cursor: pointer;
}
.element__p {
  font-size: 10px;
  color: #999999;
  font-weight: 500;
  padding-left: 30px;
}
.element_checkbox {
  margin-bottom: 15px;
}
.feedback_btn {
  margin-top: 60px;
}
.modal-success{
  display: none;
}
.element_checkbox label{
  display: flex;
  align-items: center;
  gap: 15px;
}
.form__img{
  position: absolute;
  bottom: 15px;
  right: 100px;
}
.suggestions-suggestions{
  background:#ebebeb;

}
.suggestions-suggestions span{
  display: inline-block;
  padding-left: 0;
  font-size: 16px;
  color: #323232;
  font-weight:500;

}
.feedback_btn-hidden:disabled {
  opacity: .5;
  pointer-events: none;
  cursor: not-allowed;
}
.forms__h4{
  font-size: 23px;
  color: #323232;
  font-weight: 700;
  padding-bottom: 20px;
}
.popup .select_pop {
  width: 100%;
  height: 30px;
  border: none;
  border-bottom: 2px solid #323232;
  line-height: 30px;
  font-size: 18px;
  color: #323232;
  background: #ff000000;
  font-weight: 500;
  font-family: inherit;
}
.forms__content--online {
  padding: 40px 110px;
  position: relative;
}
.form__img1 {
  position: absolute;
  bottom: -45px;
  right: 110px;
}
.button-noactive:hover{
  border: 2px solid #e30f19;
}
.button-noactive{
  font-weight: 700;
  text-align: center;
  min-width: 260px;
  border: 2px solid #646464;
  background: #66339900;
  color: #646464;
}
/*.fa-telegram{*/
/*  font: normal normal normal 14px / 1 FontAwesome;*/
/*  font-size: 30px;*/
/*  color: #3591ca;*/
/*  padding-right: 10px;*/
/*  display: inline-block;*/
/*  text-rendering: auto;*/
/*  -webkit-font-smoothing: antialiased;*/
/*  font-family: "FontAwesome" !important;*/
/*}*/
/*.fa-telegram:before {*/
/*  content: "\f2c6";*/
/*}*/
.forms__h5 {
  font-size: 20px;
  color: #323232;
  font-weight: 700;
  padding-bottom: 40px;
  line-height: 1.3;
}
.element-tg{
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-bottom: 20px;
}
.element-tg-hidden {
  pointer-events: none;
  opacity: 0.5;
}
.plashkas {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.plashkas__button{
  padding: 12px 24px;
}
.forms__content-success{
  padding: 60px;
}
.forms__text {
  font-size: 15px;
  line-height: 25px;
  color: #323232;
  font-weight: 500;
}
.forms__h3-success{
  padding-bottom: 20px;
}
.rezim {
  background: #ebebeb;
  padding: 40px 60px;
  border-radius: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.forms__content-rezim {
  display: flex;
  justify-content: right;
  gap: 20px;
  position: relative;
}
.rezim__h2 {
  font-size: 16px;
  line-height: 26px;
  color: #323232;
  font-weight: 700;
  padding-bottom: 15px;
}
.rezim__block p {
  font-size: 16px;
  line-height: 26px;
  color: #323232;
  font-weight: 700;
}
.rezim__block {
  overflow: hidden;
  max-width: 212px;
}

.rezim__block:after {
  content: "\A0";
  display: block;
  overflow: hidden;
  border-bottom: 1px dotted #323232;
  margin-top: -3px;
}
.rezim__day {
   float: left;
  border: 1px solid #646464;
  padding: 1px 5px;
  border-radius: 4px;
  margin-right: 5px;
 }
.rezim__hours {
  float: right;
  margin-left: 5px;
  padding: 1px 0;
}
.rezim__block p:first-child:after, .rezim__block p:last-child:before {
  content: "";
  display: inline-block;
}
.form__img--success {
  position: absolute;
  left: 100px;
  top: -42px;
}
@media screen and (max-width: 900px) {
  .forms__content {
    padding: 70px 70px;
  }
  .form__img {
    position: absolute;
    bottom: 6px;
    right: 84px;
  }
  .forms__content-success {
    padding: 60px;
  }
  .form__img--success {
    position: absolute;
    left: 47px;
    top: -81px;
  }
  }
@media screen and (max-width: 767px) {
  .forms__content {
    padding: 30px;
  }
  .popup__content {
    padding: 30px;
  }
  .forms__h3 {
    font-size: 24px;
    padding-bottom: 25px;
  }
  .popup .forms__content form textarea, .popup .forms__content form input[type="text"], .popup .forms__content form input[type="tel"], .popup .forms__content form input[type="email"], .popup .forms__content form input[type="number"], .popup .select_pop {
    font-size: 16px;
  }
  .element--padding {
    padding-bottom: 20px;
  }
  .popup .forms__content form label span {
    font-size: 10px;
  }
  .feedback_btn {
    margin-top: 30px;
    padding: 12px 20px;
    font-size: 14px;
  }
  .form__img {
    max-width: 150px;
    right: -2px;
    bottom: -1px;
  }
  .form__img1 {
    max-width: 150px;
    right: -26px;
    bottom: -33px;
  }
  .forms__h5 {
    font-size: 16px;
    color: #323232;
    font-weight: 700;
    padding-bottom: 25px;
    line-height: 1.3;
  }

  .plashkas {
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
  }
  .plashkas__button {
    font-size: 13px;
    padding: 10px;
  }
  .form__img--success {
    display: none;
  }
  .forms__h3-success {
    padding-bottom: 15px;
  }
  .forms__content-success {
    border-radius: 35px;
  }
  .rezim {
    padding: 30px;
    border-radius: 35px;
    gap: 30px;
  }
}
.banner__button {
    position: fixed;
    z-index: 99;
    bottom: 50px;
  }
.banner__button:hover{
  background-color: #ffffff;
}
  .tarif__img, .digital__imgs, .feedback__img2{

    transition: transform 0.7s;
  }
  .animated1__now, .animated2__now, .animated3__now{
    transform: scale(1.2);
  }

  .digital__imgs--animated, .feedback__imgs--animated{
    transform: scale(1.1);
  }
  .advantages__item img{
    transition: transform 0.7s;
  }
  .advantages__item:hover img{
    transform: scale(1.2);
  }


@media screen and (max-width: 767px) {
.button.banner__button {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 20px;
    right: 20px;
    bottom: 20px;
}
  .advantages__item img {
   max-height: 80px;
 }
  .advantages__item {
    align-items: baseline;
  }
}

.header__link_lk a{
  color: #ffffff;
}

.header__link_lk {
  background-color: #828282;
  border: 2px solid #828282;
}

.header__link_lk:hover {
  color: #828282;
}

.header__link_lk a:hover {
  color: #828282;
}

.fa-vk{
  font: normal normal normal 14px / 1 FontAwesome;
  font-size: 30px;
  color: #3591ca;
  padding-right: 10px;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "FontAwesome" !important;
}
.fa-vk:before {
  content: "\f189";
}