@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;
}

.ibg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

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: 'Nunito Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 20px;
}

a {
  display: block;
  color: #5F5B5B;
  line-height: normal;
}

.wrapper {
  overflow: hidden;
}

.main-title {
  font-size: 96px;
  font-weight: 600;
  color: #5F5B5B;
}

.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: 15px 30px;
  background-color: #00e70000;
  border: 2px solid #E7A300;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #E7A300;
  font-weight: 600;
}

.button:hover {
  background-color: #E7A300;
  box-shadow: 0 0 40px 40px #E7A300 inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #5F5B5B;
}

.button_second {
  background-color: #fff;
}

.button_second._active {
  background-color: #00E700;
}


.label {
  font-size: 24px;
  font-weight: 300;
  line-height: 133%;
}

.section__top {
  margin-bottom: 65px;
}

.page {
  padding: 80px 0px 0 0;
}

.page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}

.page__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}

.page__content {

}

.dropdown__content {
  position: relative;
}

.dropdown__button {
  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;
  padding: 14px 30px;
  font-size: 20px;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  line-height: 160%;
}

.dropdown__button:after {
  content: "";
  display: block;
  background-image: url(../img/icons/drop-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 10px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.dropdown__button._active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown__list {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-color: #fff;
}

.dropdown__list._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown__list-item {
  font-size: 20px;
  padding: 14px 30px;
  cursor: pointer;
}

.dropdown__input-hidden {
  display: none;
}

._has-padding {
  padding: 0px 24px;
}

.title {
  color: rgb(238, 238, 238);
  font-size: 36px;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
  padding-bottom: 33px;
  font-family: Nunito-Sans-7pt-Expanded;
}

.subtitle {
  color: rgb(255, 255, 255);
  font-size: 36px;
  font-weight: 600;
  line-height: 100%;
}
.text{
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 300;
  line-height: 150%;
}

@media (max-width: 767px) {
  .title {
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    padding-bottom: 47px;
  }
  .agency-scheme__row {
    gap: 28px;
  }
  .subtitle {
    font-size: 22px;
  }
.text {
    font-size: 16px;
    line-height: 22px;
  }
}

.label {
  font-size: 24px;
  color: #00E700;
}

.section {
  padding: 100px 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: 1560px;
  max-width: 1216px;
  padding: 0px;
}
.visual__container {
  max-width: 1560px;
}
.section-bg {
  background: #1B2428;
  padding: 25px 0;
}
.blog__container {
    padding: 0 24px;
}
.black {
  color: #30323A;
}

.modal {
  min-height: 100vh;
  padding: 100px 36px;
}

.header__container {
  border-bottom: 1px solid  rgb(190, 190, 190);
  padding: 15px 0px;
  position: relative;
  z-index: 1;
}

.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: 20px;
  cursor: pointer;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__link {
  border: 2px solid #5F5B5B;
  padding: 15px 35px;
  font-weight: 600;
  line-height: normal;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.header__link:hover {
  background-color: #5F5B5B;
  color: #FFF;
  box-shadow: 0 0 40px 40px #5F5B5B inset;
}
.header__menu-button {
  cursor: pointer;
  width: 39px;
  height: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 39px;
  flex: 0 0 39px;
  position: relative;
}

.header__menu-button:before,
.header__menu-button:after {
  height: 2px;
  width: 100%;
  left: 0;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  border-radius: 5px;
  background-color: #ffffff;
}

.header__menu-button:after,
.header__menu-button:before {
  content: "";
}

.header__menu-button:before {
  top: 0;
}

.header__menu-button:after {
  bottom: 0;
  width: 22px;
}

.header__menu-button span {
  top: 50%;
  width: 60%;
  -webkit-transform: scale(1) translate(0px, -50%);
      -ms-transform: scale(1) translate(0px, -50%);
          transform: scale(1) translate(0px, -50%);
}

.header__items._active .header__menu-button span {
  -webkit-transform: scale(0) translate(0px, -50%);
      -ms-transform: scale(0) translate(0px, -50%);
          transform: scale(0) translate(0px, -50%);
  background-color: #292B32;
}

.header__items._active .header__menu-button:before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0px, -50%);
      -ms-transform: rotate(-45deg) translate(0px, -50%);
          transform: rotate(-45deg) translate(0px, -50%);
}

.header__items._active .header__menu-button:after {
  bottom: 50%;
  width: 100%;
  -webkit-transform: rotate(45deg) translate(0px, 50%);
      -ms-transform: rotate(45deg) translate(0px, 50%);
          transform: rotate(45deg) translate(0px, 50%);
}



.menu nav {
  margin: 0 auto;
  padding: 0px 30px;
}

.menu._active {
  left: 0;
  top: 0;
}

.menu__list {
  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;
  margin-bottom: 24px;
}

.menu__link {
  line-height: 120%;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: #30323A;
}

.menu__link:hover {
  color: #00E700;
}


.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  left: 24px;
}


.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: #1B2428;
  max-width: 940px;
  padding: 60px;
  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: 26px;
  height: 26px;
  top: 0;
  right: 0;
  cursor: pointer;
}
@media (max-width: 1600px) {
  .visual__container {
    max-width: calc(100% - 40px);
  }
}
@media (max-width: 1256px) {
  .container {
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 767px) {
  .menu {
    padding: 120px 0px 30px 0px;
  }

  .menu nav {
    padding: 0px 20px;
  }

  .menu__list {
    margin-bottom: 20px;
    gap: 20px;
  }

  .item {
    padding: 12px;
  }
  .section {
    padding: 40px 0px;
  }
}

@media (max-width: 600px) {


  .header__icon {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }


  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 12px;
  }

}

@media (max-width: 492px) {

  .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

}
.input-text {
  padding: 12px 12px 12px 0;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-bottom: 2px solid #464954;
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 500;
  color: #000;
  font-size: 18px;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  column-gap: 32px;
  margin-left: auto;
}
.header__menu a:hover {
  color: #E7A300;
}
.header__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 24px;
  font-size: 25px;
  font-weight: 600;
  color: #5F5B5B;
}
.header__logo img {
  width: auto;
  height: 29px;
  max-width: 250px;
}
.header__menu a {
  color: rgb(255, 255, 255);
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
}
div.header__button {
  padding: 0;
}

  .header__menu {
    column-gap: 38px;
  }


  .header__nav {
    display: none;
  }
  .header__menu-button {
    display: block;
  }
  .menu {
    position: fixed;
    top: -100%;
    left: -100%;
    background: rgb(27, 36, 40);
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: auto;
    padding: 150px 0 30px 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .menu._active nav.header__nav {
    display: block;
  }
  .header__logo {
    z-index: 11;
  }
  .header__content {
    z-index: 11;
  }
  .header__menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 25px;
  }
  .menu._active nav.header__nav {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
  }
@media (max-width: 1256px) {
  .menu._active nav.header__nav{
    max-width: calc(100% - 40px);
  }
}
.header__menu a {
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  text-transform: uppercase;
}
.menu-item__childs a{
  color: rgba(238, 238, 238, 0.57);
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  text-transform: none;
}

.header__menu a:hover, .header__menu .menu_activ, .header__menu--top .menu_activ {
  color: #EF341D;
}
.header__menu--childs {
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.header {
  position: absolute;
  margin: auto;
  width: 100%;
}
.header__text{
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    text-transform: uppercase;
    font-family: Montserrat;
}
.banner__title{
  font-family: Nunito Sans;
  text-transform: uppercase;
}

.header__menus--top {
  margin-left: auto;
  padding-right: 30px;
}
.header__menu--top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  column-gap: 32px;
  margin-left: auto;
}
.header__menu--top a {
  color: rgb(255, 255, 255);
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
}
.header__menu--top a:hover {
    color: #EF341D;
}
.header__body._active p.header__text {
  display: none;
}
.header__body._active:before {
  border-bottom: 1px solid rgb(216, 215, 219);
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -15px;
  z-index: 111;
}
.adress__name{
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  text-align: left;
}
.adress__descript, .adress__descript a{
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  text-align: left;
}
.menu__address {
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  display: flex;
  max-width: 700px;
}
.adress__items{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-left: 1px solid #ffffff;
  width: 269px;
}
.adress__items:last-child{
  width: auto;
}
.adress__img{
  max-width: 120px;
}
.menu__address--block {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  padding: 0px 30px;
  margin-top: 40px;
}
@media (max-height: 970px) {
  .menu__address--block--header {
    display: none;
  }
}

@media (max-width: 1410px) {
  .header__menu--top {
    gap: 20px;
  }
}
@media (max-width: 1340px) {
  .header__text {
    display: none;
  }
}
@media (max-width: 1260px) {
  .header__menus--top {
    display: none;
  }

}

@media (max-width: 767px) {
  .header__menu a {
    font-size: 20px;
  }
  .header__menu--childs {
    padding-top: 15px;
    gap: 15px;
  }
  .menu-item__childs a {
    font-size: 18px;
  }
  .header__menu {
    row-gap: 15px;
  }
  .header__container {
    padding: 0;
  }
  .header {
    padding: 48px 0px 24px;
  }
  .header__logo img {
    width: 134px;
  }
  .header__container {
    padding: 0;
    padding-bottom: 24px;
  }
  .header__text {
    display: block;
  }

.menu {
    top: 0;
  }
}

.footer__main {
  background: #1B2428;
  padding-top: 68px;
}
footer___row {
  border-top: 1px solid rgb(216, 215, 219);
  padding-top: 68px;
}
.footer__logo {
  padding-bottom: 64px;
}
.footer___menu a {
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  text-transform: uppercase;
      font-family: Nunito-Sans-7pt-Expanded;
}
.footer___menu {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.menu__address--block-footer{
  padding: 0;
  margin-top: 40px;
  padding-bottom: 100px;
}
.footer___row {
  position: relative;
}
.footer___row:before {
  content: '';
  position: absolute;
  border-top: 1px solid rgb(255, 255, 255);
  width: 100%;
  top: -68px;
}
@media (max-width: 767px) {
  .footer__logo {
    padding-bottom: 24px;
  }
  .footer___menu a {
    font-size: 18px;
  }
  .footer___menu {
    gap: 20px;
  }
  .menu__address {
    flex-direction: column;
  }
  .adress__items {
    border-bottom: 1px solid #ffffff;
    width: 100%;
  }
  .adress__items:last-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__main {
    padding-top: 55px;
  }
  .feedback--bottom {
    padding-top: 80px;
  }
  .feedback.feedback--bottom {
    padding: 60px 0;
  }
  .footer___row:before {
    top: -55px;
  }
  .menu__address--block.menu__address--block-footer {
    padding-bottom: 65px;
  }
}
.banner {
  background: #1B2428;
  padding-top: 220px;
  position: relative;
}
.banner__footnote{
  color: rgba(238, 238, 238, 0.93);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  padding-bottom: 60px;
  text-align: center;
}
.banner__title p{
  color: rgb(255, 255, 255);
  font-size: 65px;
  font-weight: 700;
  line-height: 89px;
  text-align: left;
  padding-bottom: 15px;
      font-family: Nunito-Sans-7pt-Expanded;
}
.banner__title p:last-child{
  letter-spacing: -0.7px;
  font-size: 64px;
  padding-bottom: 30px;
}
.banner__on{
  color: rgb(84, 84, 84);
  font-size: 64px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
  font-family: Nunito-Sans-7pt-Expanded;
}
.banner__button{
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 48px;
  padding: 20px 32px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 27px;
  font-weight: 400;
  line-height: 143%;
  text-align: left;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  margin: auto;
  width: fit-content;
  justify-content: center;
  display: flex;
}
.banner__button:hover {
  background: rgb(239, 52, 29);
  color: rgb(255, 255, 255);
  border: 1px solid  rgb(239, 52, 29);
}
.banner__lists{
  padding-top: 96px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 96px;
}
.banner__list--cyrcle{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(84, 84, 84);
}
.banner__list{
  color: rgb(255, 255, 255);
  font-size: 28px;
  font-weight: 400;
  line-height: 143%;
  text-align: center;
}
.banner__info{
  max-width: 784px;
  margin: auto;
  visibility: hidden;
}
.banner__footnote, .banner__title p, .banner__lists, .banner__button, .header__menus--top.animated, .header__content.animated, .banner__text, .banner__forms{

  visibility: hidden;
}
.banner__vkl {
  padding-bottom: 95px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: baseline;
}
.banner__strs {
  display: block;
  margin: auto;
  padding-bottom: 50px;
  width: 22px;
}
.banner__str{
  position: absolute;
}
@keyframes jumpInfinite {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 10px;
  }
  100% {
    margin-top: 0;
  }
}
video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.banner__off video{
  display: block;
}
.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-image: linear-gradient(to bottom, rgba(27,36,40,0.74), rgb(27,36,40));
}
.banner__container.container {
  position: relative;
}
.banner_slider-switcher {
  border-radius: 29px;
  box-shadow: 0px 0px 16.1px 2px rgba(0, 0, 0, 0.1);
  background: rgb(84, 84, 84);
  width: 87px;
  height: 45px;
  cursor: pointer;
  position: relative;
}
.banner_slider-switcher:after {
  background-color: #ffffff;
  content: '';
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 4px;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  transition: left 0.25s;
  box-shadow: inset 0px 0px 7.6px 3px rgba(0, 0, 0, 0.1),0px 0px 4.2px 0px rgba(0, 0, 0, 0.34);
      animation: banquets-pulse 1s infinite;
}
@keyframes banquets-pulse {
    0% {
        box-shadow: 0 0 0 0px #ffffff;
    }

    100% {
        box-shadow: 0 0 0 5px rgba(207, 241, 207, 0);
    }
}
.banner_slider-switcher[aria-checked=true]:after {
  right: 4px;
  left: auto;
  animation:none;
}
.banner__off .banner_slider-switcher {
  background: #EF341D;
}
.banner__off .banner__on{
  color: #ffffff;
}
.banner__off .banner__button {
  background: rgb(239, 52, 29);
  color: rgb(255, 255, 255);
  border: 1px solid  rgb(239, 52, 29);
}
.banner__off .banner__button:hover {
  color: rgba(255, 255, 255, 0.4);
  background: rgb(239 52 29 / 0%);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.banner__off .banner__list--cyrcle {
  background:#EF341D;
}
@media (max-width: 1390px) {
  .banner__list {
    font-size: 24px;
  }

}
@media (max-width: 1024px) {
  .banner__lists {
    flex-direction: column;
  }
  .banner__list {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .banner__title p {
    font-size: 26px;
    line-height: 1.2;
  }
  .banner__title p:last-child {
    letter-spacing: -0.7px;
    font-size: 26px;
    padding-bottom: 15px;
    line-height: 1.2;
  }
  .banner {
    padding-top: 160px;
  }
  .banner__footnote {
    padding-bottom: 80px;
  }
  .banner__on {
    font-size: 48px;
  }
  .banner_slider-switcher {

    width: 35px;
    height: 18px;
  }
  .banner_slider-switcher:after {

    top: 1px;
    left: 2px;
    height: 16px;
    width: 16px;
  }
  .banner_slider-switcher[aria-checked=true]:after {
    right: 2px;
  }
  .banner__on {
    font-size: 26px;
  }
  .banner__vkl {
    gap: 5px;
    max-width: 316px;
    margin: auto;
    padding-bottom: 80px;
    align-items: center;
  }
  .banner__button {
    font-size: 16px;
    text-align: center;
    order: 3;
    margin-bottom: 80px;
  }
  .banner__list {
    font-size: 14px;
  }
  .banner__list--cyrcle {
    display: none;
  }
  .banner__item {
    display: flex;
    flex-direction: column;
  }
  .banner__lists {
    padding-top: 0;
    padding-bottom: 80px;
  }
}
.agency-scheme__item {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.agency-scheme__row {
  display: flex;
  flex-direction: column;
  gap: 33px;
}
@media (max-width: 680px) {

}

.trust__row{
  display: flex;
  flex-wrap: wrap;
  gap: 7px 5px;
  max-width: 1338px;
    margin: auto;
}

@media (min-width: 768px) {
.trust__row {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
    }
        .trust__img {
        width: 100%;
    }
}
.trust__img {
  border-radius: 10px;
  max-width: 218px;
}
.trust__p{
  color: rgba(238, 238, 238, 0.78);
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
  padding-top: 30px;
}

.trust__p a {
    color: rgba(238, 238, 238, 0.78);
    display: inline;
}
@media (max-width: 767px) {
  .trust__row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 5px;
    justify-content: center;
  }
  .trust__img {
    border-radius: 6px;
    max-width: 104px;
  }
}
.text__item{
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.rating__img{
  cursor: pointer;
  height: 20px;
  width: 100%;
  object-fit: cover;
  object-position: right;
}
.rating__title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
.rating__title a {
  height: auto;
  display: flex;
}
@media (max-width: 767px) {

  .rating__title {
    grid-template-columns: 1fr;
  }
}
.cinema__online {
  padding-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
}
@media (min-width: 767px) {

      .cinema__online {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}
.cinema__img{
  max-width: 100%;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cinema__online {
    gap: 10px;
    padding-top: 20px;
  }
  .cinema__img {
    max-width: calc(50% - 10px);
  }
}
.advantages__title--our {
  text-decoration: line-through;
}
.advantages__title--your {
  color: #EF341D;
}
.advantages__text {
  padding-left: 14px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 0;
  transition: all 0.5s, color 0.5s;
  overflow: hidden;
}

.advantages__title {
  border-bottom: 1px solid rgb(190, 190, 190);
  margin-bottom: 25px;
}
.advantages__subtitle sub {
  color: rgb(255, 255, 255);
  font-family: Montserrat;
  font-size: 17px;
  font-weight: 500;
  line-height: 150%;
  display: block;
}
.advantages__body {
  border-bottom: 1px solid rgb(190, 190, 190);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.advantages__more{
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease-in-out, color 300ms ease-in-out;
}
.advantages__on:hover .advantages__more{
  background-color: #EF341D;
  border: 1px solid #EF341D;
}
 .advantages__body--active  .advantages__more svg {
  -ms-transform: rotate(-45deg) translate(0px, -50%);
  transform: rotate(180deg);
}
.advantages__more svg {

   transition: all 300ms ease-in-out, color 300ms ease-in-out;
}
.advantages__on{
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}
.advantages__subtitle {
  display: flex;
  align-items: baseline;
  gap: 5px;
    font-family: Nunito-Sans-7pt-Expanded;
}
.advantages__body--active .advantages__text {
  display: flex;
      max-height: 100vh;
    transition: 0.5s ease-in;
}
.advantages__body--active .advantages__more{
  background-color: #EF341D;
  border: 1px solid #EF341D;
}
.advantages--fadeOff .advantages__text{
  -webkit-animation-name: fadeOff !important;
  animation-name: fadeOff !important;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.advantages--fadeIn .advantages__text{
  -webkit-animation-name: fadeIn !important;
  animation-name: fadeIn !important;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both
}
@keyframes fadeOff {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}
@media (max-width: 900px) {
  .advantages__subtitle {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .advantages__subtitle sub {
    display: none;
  }
}
@media (max-width: 767px) {
  .subtitle {
    font-size: 20px;
    line-height: 27px;
  }
  .advantages__more {
    width: 40px;
    height: 40px;
    min-height: 40px;
    min-width: 40px;
  }
  .advantages__more svg {
    width: 17px;
    height: 17px;
  }
  .advantages__subtitle {
    max-width: 240px;
  }
  .advantages__text {
    font-size: 16px;
  }
}
.feedback.feedback--bottom {
  padding: 80px 0;
}
.feedback__title{
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 500;
  line-height: 114.5%;
  letter-spacing: -0.2px;
  padding-bottom: 20px;
  font-family: Nunito-Sans-7pt-Expanded;
}
.feedback__text {
  background: #ffffff00;
}
.feedback__agree{
  font-size: 12px;
  font-weight: 300;
  line-height: 114.5%;
  letter-spacing: -0.2px;
  text-align: left;
  padding-top: 14px;
}
.feedback__agree a{
color: #EF341D;
display: inline;
}
.feedback__text {
  background: #ffffff00;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 300;
  line-height: 114.5%;
  letter-spacing: -0.2px;
  text-align: left;
  width: 100%;
}
.feedback__text::placeholder{
  opacity: 1;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 300;
}
.popup__content .feedback__text {
  background: #ffffff00;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 300;
  line-height: 114.5%;
  letter-spacing: -0.2px;
  text-align: left;
  width: 100%;
}
.popup__content .feedback__text::placeholder{
  opacity: 1;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 300;
}
.feedback__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.feedback__block {
  border: 1px solid rgb(255, 255, 255);
  padding: 20px;
}
.feedback__button {
  background: #ffffff00;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 300;
  line-height: 114.5%;
  letter-spacing: -0.2px;
  text-align: left;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  transition: all 300ms ease-in-out, color 300ms ease-in-out;
}
.feedback__block--btn:hover{
  background: rgb(239, 52, 29);
}
.feedback__block:hover svg {
  transform: translateX(10px);
}
.feedback__block svg {
  transition: all 300ms ease-in-out;
}
@media (max-width: 767px) {
  .feedback {
    padding-top: 0;
  }
  .feedback__title {
    font-size: 20px;
  }
  .feedback__text::placeholder, .feedback__text{
    font-size: 16px;
  }
  .feedback__form {
    grid-template-columns: 1fr;
  }
}
.customization .customization__row {
  padding-top: 40px;
  /*max-width: calc(100% - (100% - 1560px) / 2);
  margin-right: 0;
  margin-left: auto;*/
}
.customization__img {
  max-width: 100%;
}


@media (max-width: 767px) {
  .customization__title {
    padding-bottom: 15px;
  }
  .customization__text {
    text-align: center;
  }
  .customization__row {
    padding-top: 20px;
  }
}
.support__items {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  display: grid;
}
.support__item {
  padding: 21px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(255, 255, 255);
  transition: all 300ms ease-in-out;
}
.support__item:hover {
  background: #ef341d;
  border: 1px solid #ef341d;
}
.support__row {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.support__item img {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .support__item {
    padding: 20px;
  }
  .support__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .support__items {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    display: grid;
  }
  .support__item {
    padding: 10px 5px;
  }
  .support__row {
    gap: 30px;
  }
  .support__title {
    padding-bottom: 20px;
    text-align: left;
  }
}

.authorization--fadeIn {
  display: flex;
  -webkit-animation-name: fadeIn !important;
  animation-name: fadeIn !important;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.authorization--fadeOff{
  display: none;
  -webkit-animation-name: fadeOff !important;
  animation-name: fadeOff !important;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.authorization__subtitle {
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  text-align: left;
  padding: 54px 0 35px;
}
.authorization__more {
  width: 32px;
  aspect-ratio: 1;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.authorization__on {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgb(255, 255, 255);
  cursor: pointer;
}
.subscriber-authorization__row {
  display: grid;
  gap: 96px;
  grid-template-columns: 1fr 1fr;
}
.subscriber-authorization__img {
  width: 100%;
  background: rgb(27 35 35);
  background: #000000;
    padding: 15px 15px;
}
/*.subscriber-authorization__item:last-child {
    background: #000000;
    padding: 15px 15px;
}*/
.authorization__more svg, .authorization__more path {
  transition: all 300ms ease-in-out, color 300ms ease-in-out;

}
.authorization__active svg {
  transform: rotate(45.00deg);

}
.authorization__active path, .authorization__on:hover .authorization__more path{
  stroke: #ffffff;

}
.authorization__more{
  transition: all 300ms ease-in-out, color 300ms ease-in-out;
}
.authorization__active .authorization__more, .authorization__on:hover .authorization__more{
  background: rgb(239, 52, 29);
}
.authorization__on--mobile{
  display: none;
}
@media (max-width: 767px) {
  .subscriber-authorization__title {
    padding-bottom: 0;
  }
  .subscriber-authorization__row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .authorization__subtitle {
    font-size: 15px;
    padding: 35px 0 35px;
  }
  .authorization__active svg {
    transform: rotate(135.00deg);
  }

.authorization__on--mobile{
  display: flex;
}
.subscriber-authorization__item:first-child{
  display: none;
}
.subscriber-authorization__img {

    margin-top: 30px;
}
}
.provider__item{
  padding:51px 25px 19px;
  position: relative;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  height: auto!important;
  display: flex !important;
  flex-direction: column;
  background-repeat: no-repeat;
  overflow: hidden;
  background-image: url("../img/provider/fon.png");
  min-width: 425px;
}
.provider__item--1{
  //background-image: url("../img/provider/1.jpeg");
  position: relative;
}
.provider__item:before{
content: '';
position: absolute;
top: -90px;
height: 100%;
width: 100%;
background-image: url("../img/provider/1-1.png");
background-repeat: no-repeat;
background-position: right;
right: -34px;
}

/*.provider__item--1:before{*/

/*  background-image: url("../img/provider/1-1.png");*/
/*}*/
/*.provider__item--2:before{*/

/*  background-image: url("../img/provider/2-1.png");*/
/*}*/
/*.provider__item--3:before{*/

/*  background-image: url("../img/provider/3-1.png");*/
/*}*/
/*.provider__item--4:before{*/

/*  background-image: url("../img/provider/4-1.png");*/
/*}*/
/*.provider__item--5:before{*/

/*  background-image: url("../img/provider/5-1.png");*/
/*}*/
/*.provider__item--2{
  background-image: url("../img/provider/2.jpeg");
}
.provider__item--3{
  background-image: url("../img/provider/3.jpeg");
}
.provider__item--4{
  background-image: url("../img/provider/4.jpeg");
}
.provider__item--5{
  background-image: url("../img/provider/5.jpeg");
}*/
.provider__plashka{
  border-radius: 10px 0px 10px 0px;
  padding: 7px 12px 7px 12px;
  text-align:center;
  color: rgb(238, 238, 238);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  position: absolute;
  left: 0;
  top: 0;
}
/*.provider__item--1 .provider__plashka{*/
/*  background: rgb(35, 164, 14);*/
/*}*/
/*.provider__item--2 .provider__plashka{*/
/*  background: rgb(239, 52, 29);*/
/*}*/
/*.provider__item--3 .provider__plashka{*/
/*  background: rgb(247, 157, 20);*/
/*}*/
/*.provider__item--4 .provider__plashka{*/
/*  background: rgb(41, 170, 227);*/
/*}*/
/*.provider__item--5 .provider__plashka{*/
/*  background: rgb(175, 86, 208);*/
/*}*/
.provider__name{
  color: rgb(238, 238, 238);
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: left;
  padding-bottom: 35px;
}
.provider__info{
display: flex;
  flex-direction: column;
  gap: 17px;
  padding-bottom: 33px;
}
.provider__info p{
  color: rgb(238, 238, 238);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}
.provider__btn{
  border-radius: 10px;
  background: rgb(239, 52, 29);
  width: 214px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  margin-top: auto;
}
.provider__btn:hover {
  background: rgb(239 52 29 / 0%);
  border: 1px solid #ffffff;
}
.provider__btn a {
  color: #ffffff;
}
.provider__row.swiper {
  /*max-width: calc(100% - (100% - 1560px) / 2);
  margin-right: 0;
  margin-left: auto;*/
}
.provider__wrapper{
  /*display: flex;
  gap: 40px;*/
}
/*@media (max-width: 1600px) {
  .provider__row.swiper  {
    max-width: calc(100% - 20px);
  }
}*/



@media (min-width: 1920px) {

.provider__item{
  max-width: 425px;
}
       }     
@media (max-width: 767px) {
  .provider__name {
    font-size: 22px;
    line-height: 1.3;
    padding-bottom: 20px;
  }
  .provider__item {
    padding: 40px 25px 19px;
    background-position: right;
  }
  .provider__info p {
    font-size: 14px;
    line-height: 1.2;
  }
  .provider__info {
    gap: 15px;
    padding-bottom: 25px;
  }
  .provider__plashka {
    font-size: 12px;
    padding: 5px 10px;
  }
  .provider__btn {
    font-size: 16px;
    width: 100%;
    margin-top: auto;
  }
  .provider__item{
    height: auto!important;
    display: flex !important;
    flex-direction: column;
  }
  .provider__title span{
    display: block;
  }
}
.modern__item{
  max-width: 686px;
}
.modern-wrapper.swiper-wrapper{
  display: flex;
}
.modern-wrapper.swiper-wrapper .modern__item{
  height: auto;
}
.modern-wrapper.swiper-wrapper .modern__item img{
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.modern__text {
  padding-bottom: 30px;
}
.swiper-free-mode>.swiper-wrapper.modern-wrapper {
  transition-timing-function: linear;
}
.modern-swiper-1 {
  margin-bottom: 27px;
}
.modern-swiper-2 .modern-wrapper.swiper-wrapper .modern__item{
  width: 156px;
}
.modern-swiper-2 .modern-wrapper .modern__item img, .modern-swiper-1 .modern-wrapper .modern__item img {
  border-radius: 10px;
}
.modern__container {
  border-top: 1px solid rgb(255, 255, 255);
  padding-top: 75px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .modern__container {
    padding-top: 45px;
    margin-top: 5px;
  }
}
.karta__title{
  color: rgb(28, 19, 34);
  font-size: 36px;
  font-weight: 700;
  line-height: 49px;
  text-align: left;
  font-family: Nunito-Sans-7pt-Expanded;
}
.karta__text{
  color: rgb(28, 19, 34);
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: left;
  padding: 33px 0 80px;
}
.karta__img {
    width: 100%;
    max-width: 80%;
    margin: auto;
    display: block;
}
.karta p{
  max-width: 937px;
}
.karta{
  padding: 52px 0 52px;
}
@media (max-width: 767px) {
  .karta__title {
    font-size: 20px;
    line-height: 27px;
  }
  .karta__text {
    font-size: 16px;
    padding: 33px 0 40px;
  }
  .karta {
    padding: 45px 0;
  }
}
.search__input{
  border-radius: 15px;
  background: rgb(238, 238, 238);
  padding: 18px 27px;
  width: 100%;
  cursor: pointer;
}
.search__text{
  color: rgb(28, 19, 34);
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
}
.search__item{
  display: flex;
  gap: 32px;

}
.search__lupa{
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: rgb(239, 52, 29);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 60px;
}
#search__text {
  color: rgb(28, 19, 34);
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}
.search__lupa svg {
  margin-left: 6px;
  margin-top: 6px;
}
.search {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .search {
    padding: 44px 0;
  }
}
@media (max-width: 767px) {
  .search__input {
    padding: 7px;
    border-radius: 3px;
  }
  .search__lupa {
    width: 21px;
    height: 21px;
    border-radius: 3px;
    background: rgb(239, 52, 29);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 13px;
  }
  .search__lupa svg {
    margin-left: 2px;
    margin-top: 2px;
    max-width: 10px;
    height: 10px;
  }
  .search__item {
    display: flex;
    gap: 5px;
  }
  #search__text {
    font-size: 6px;
  }
  .search {
    padding: 20px 0 44px 0;
  }
}
.profile__name{
  color: rgb(255, 255, 255);
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}
.profile__row{
  display: flex;
  justify-content: space-between;
}
.profile__text {
  padding-bottom: 88px;
}
.profile__item {
  display: flex!important;
  flex-direction: column;
  gap: 13px;
  transition: all 300ms ease-in-out;
  //max-width:118px;
}
.profile__item:hover {
  transform: scale(1.35)!important;
}
.profile {
  padding-bottom: 80px;
}
.profile__wrapper{
  justify-content: space-between;

}
.profile__row.swiper{
  overflow: visible;
}

@media (min-width: 1100px) {
.profile__item{
  max-width: 118px;
}
.profile__row {
    padding: 0 40px!important;

}
.profile__wrapper {
    //gap: 70px;
}
}
@media (max-width: 1100px) {
  .profile__item.swiper-slide{
    max-width: 118px!important;
  }
  .profile__item:hover {
    transform: scale(1)!important;
  }
  .profile__item.swiper-slide {
    transform: scale(0.8)!important;
  }
  .profile__item.swiper-slide.swiper-slide-active {
    transform: scale(1)!important;
  }
  .profile__row.swiper{
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .profile__text {
    padding-bottom: 30px;
  }
  .profile__name {
    font-size: 16px;
  }
}
#polzunok .ui-slider-range {
  background: rgb(239, 52, 29);
}
#polzunok {
  border-radius: 10px;
  background: rgb(238, 238, 238);
  height: 8px;
  border: none;
}
span.ui-slider-handle.ui-corner-all.ui-state-default {
  background: rgb(239, 52, 29);
  border: none;
  border-radius: 50%;
  width: 29px;
  height: 29px;
  top: -13px;
  cursor: pointer;
  animation: banquets-pulse 1s infinite;
}
span.ui-slider-handle.ui-corner-all.ui-state-default:before {
content: '';
  width: 11px;
  height: 11px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 5.5px);
  left: calc(50% - 5.5px);
}
.player {
  padding-bottom: 60px;
}
.player__text.text {
  padding-bottom: 32px;
}
.player__item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 26px;
}
.player__row {
    max-width: calc(100% - 180px);
    margin: auto;
}
.player__item--left {
  display: flex;
  gap: 31px;
}
.player__time {
  color: rgb(238, 238, 238);
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-top: 40px;
}
.player__time span {
  background: rgb(239, 52, 29);
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.player__icon--text {
  color: rgb(236, 240, 241);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
}
.player__icons{
  border-radius: 15px;
  padding: 9px 8px 7px 10px;
  background: rgb(38, 47, 51);
  aspect-ratio: 1;
}
.player__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-top: 40px;
  transition: all 300ms ease-in-out;
}
.player__menu {
  padding-left: 40px;
}
.player__icon--text {
  position: absolute;
  top: 0;
  width: max-content;
  opacity: 0;
  transition: all 300ms ease-in-out;
}
.player__icon:hover .player__icon--text, .player__icon-active .player__icon--text  {
  opacity: 1;
}
.player__icon:hover .player__icons, .player__icon-active .player__icons {
  background: rgb(239, 52, 29);
}
.player__item--right {
  display: flex;
  gap: 80px;
}
.player__prev, .player__next{
  display: none;
}
@media (max-width: 767px) {
  .player__prev, .player__next{
    display: block;
  }
  .player__item--left{
    display: none;
  }
  .player__item {
    flex-direction: column;
    gap: 44px;
  }
  .player__item--center {
    display: flex;
    justify-content: space-between;
  }
  .player__item--right {
    justify-content: space-between;
  }
  .player__icon {
    padding-top: 25px
  }
  .profile {
    padding-bottom: 50px;
  }
  .player__item {
    padding-bottom: 60px;
  }
  .player__text {
    text-align: center;
  }
  .player {
    padding-bottom: 50px;
  }

  .player__icon--text {
    font-size: 14px;
    line-height: 16px;
  }
  .player__row {
    max-width: 100%;
}
}
.visual__menu{
  display: flex;
  flex-direction: column;
  gap: calc(20px* 0.28);
    padding-top: 45px;
}
.visual__menu p{
  font-size: 13px;
  cursor: pointer;
  border-radius: 5px;
  font-size: calc(34px* 0.36);
    padding: calc(18px* 0.36) calc(48px* 0.36) calc(18px* 0.36) calc(10px* 0.36);
}
.visual__menu p:hover, .visual__conten-2__osnovnoy p:hover{
  background: rgb(239, 52, 29);
  cursor: pointer;
}
.visual__menu--active{
  border-radius: 10px;
  background: rgb(46, 54, 62);
}
.visual__row {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  justify-content: center;
}
.visual__item {
  width: 750px;
  height: auto;
  background: #000000;
}
.visual__bg {
  margin: 20px;
  background: rgb(27 35 35);
  padding: 25px 14px;
  display: flex;
  gap: calc(60px* 0.36);
  height: calc(100% - 40px);
  padding: calc(50px* 0.39) calc(60px* 0.34);
}
.visual__icons-logo {
  padding-bottom: 25px;
  max-width: 25px;
}
.visual-icons__img svg {
  max-height: calc(30px* 0.39);
  max-width: calc(30px* 0.39);
}
.visual-icons__img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 29px;
  height: calc(60px* 0.39);
}
.visual__icon {
  display: flex;
  flex-direction: column;
  gap: 10px;
  gap: calc(20px* 0.39);
}
.visual__conten-1 {
  display: flex;
  gap: 5px;
  align-items: center;
}
.visual-conten__replenish {
      font-size: calc(28px* 0.36);
    padding: calc(20px* 0.36) calc(40px* 0.3);
    background: rgb(46, 54, 62);
    border-radius: calc(10px* 0.39);
}
.visual-conten-balances {
  display: flex;
  gap: calc(100px* 0.21);
    padding-left: calc(45px* 0.36);
}
.visual-conten-balance p {
  font-size: calc(34px* 0.34);
  font-weight: 300;
}
.visual-conten-balance .balance__result {
  color: #23A40E;
  font-weight: 700;
}
.visual-conten-balance {
  display: flex;
  gap: 5px;
  align-items: center;
}
.visual-conten-balance svg {
  height: calc(34px* 0.39);
  width: auto;
}
.visual__conten-2__osnovnoy p{
      font-size: calc(28px* 0.36);
    cursor: pointer;
    border-radius: calc(10px* 0.39);
    padding: calc(20px* 0.36) calc(40px* 0.3);
    background: rgb(46, 54, 62);
    cursor: pointer;
}
.visual__conten-2 {
  padding-top: calc(60px * 0.36);
}
.visual__conten-2__osnovnoy img {
  max-height: calc(60px* 0.4);
}
.visual__conten-2__osnovnoy {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ustro__name{
  font-size: calc(34px* 0.36);
    padding-top: calc(40px* 0.36);
    padding-bottom: calc(40px* 0.36);
}
.ustro__text {
  font-size: calc(28px * 0.36);
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ustro__text span {
  color: rgba(255, 255, 255, 0.5);
  font-size: calc(20px * 0.36);
}
.ustro__item {
  display: flex;
  align-items: center;
  gap: calc(16px * 0.36);
}
.ustro__item svg {
  max-width: calc(58px* 0.36);
  max-height: calc(58px* 0.36);
}
.ustro__img {
  max-width: 22px;
}
.ustro__row {
  display: flex;
  flex-wrap: wrap;
  gap: calc(20px* 0.36) calc(16px* 0.36);
}
.visual-icons__img:hover {
  background-color: #EF341D;
  border-radius: 5px;
}
.visual-icons__img:hover path {
  fill: #ffffff;
}
.dannie__item{
  font-size: calc(28px* 0.36);
  cursor: pointer;
  border-radius: calc(10px* 0.36);
  padding: calc(20px* 0.36) calc(45px* 0.36);
  cursor: pointer;
  font-weight: 300;
  background: rgb(46, 54, 62);
}
.dannie__item:hover{
  background-color: #EF341D;
}
.dannie__row{
  display: flex;
  gap: 10px;

}
.info-dan__item{
  font-size: calc(30px* 0.36);
  color: #EEEEEEB3;
}
.info-dan__item span{
  color: #ffffff;
}
.visual__conten-2__info-dan {
  padding-top: calc(90px* 0.36);
}
.info-dan__row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.visual__conten-2__vhod {
  padding-top: calc(90px* 0.36);
}
.ustro__name-3 {
  padding-top: calc(60px * 0.36);
  padding-bottom: calc(23px* 0.36);
}
.ustro__name-profil{
  font-size: 12px;
  cursor: pointer;
  border-radius: 5px;
  padding: 8px 8px;
  background: rgb(46, 54, 62);
  cursor: pointer;
  display: flex;
  gap: 5px;
  justify-content: start;
  width: fit-content;
  margin-top: 10px;
}
.ustro__name-profil:hover{
  background-color: #EF341D;
}
.ustro__name-profil svg {
  max-width: 12px;
  max-height: 12px;
}
.conten-2__list{
  font-size: calc(28px* 0.36);
}
.conten-2__list {
  display: flex;
  align-items: center;
  gap: calc(17px* 0.36);
}
.conten-2__list svg {
  max-width: calc(40px* 0.36);
  max-height: calc(40px* 0.36);
}
.visual__conten-2__lists {
  padding-top: calc(29px* 0.36);
    display: flex;
    flex-direction: column;
    gap: calc(20px* 0.36);
}
.conten-2__list:hover svg{
  filter: brightness(0) saturate(100%) invert(18%) sepia(55%) saturate(4668%) hue-rotate(355deg) brightness(121%) contrast(88%);
}
.conten-3__title {
  font-size: calc(28px* 0.36);
    padding-bottom: calc(20px* 0.36);
    padding-top: calc(60px* 0.36);
}
.conten-3__lists {
  display: flex;
  gap: 10px;
}
.conten-3__list {
    font-size: calc(28px* 0.36);
    border-radius: calc(10px* 0.36);
    padding: calc(20px* 0.36) calc(24px* 0.36);
    cursor: pointer;
    background: rgb(46, 54, 62);
    min-width: calc(60px* 0.36);
    text-align: center;
}
.visual__conten-3:nth-last-child(3) .conten-3__list {
    
    padding: calc(20px* 0.36) calc(37px* 0.36);
 
}
.conten-3__list--active{
  background-color: #EEEEEE;
  color: #262F33;
}
.conten-3__list:hover{
  background-color: #EF341D;
  color: #ffffff;
}
.conten-3__list svg {
  max-width: max-content;
  max-height: 12px;
}
@media (max-width: 767px) {
.visual{
  display: none;
}
}


.cookie {
  display: none;
  position: fixed;
  max-width: 100%;
  z-index: 3;
  bottom: 40px;
  right: 40px;
}
.cookie.active {
  display: flex;
}
.cookie__contanier {
  margin-left: auto;
  background: #1b2428;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 1px 7px 1px #ffffff;
  display: flex;
  gap: 60px;
  align-items: center;
}
.cookie__p {
  font-size: 14px;
  line-height: 110%;
  color: #ffffff;
  font-weight: 300;
}
.cookie__p a {
  color: #ffffff;
  text-decoration: underline;
  display: inline;
}
.cookie__button {
  font-size: 14px;
  color: #ffffff;
  background: #6f2c9000;
  border-radius: 9px;
  border: 1px solid rgb(255, 255, 255);
  width: 140px;
  height: 34px;
  font-weight: 300;
}
.cookie__p span {
  display: block;
}
@media (max-width: 960px) {
  .cookie.active {
    right: 0;
    left: 0;
    margin: auto;
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .cookie__p {
    font-size: 10px;
  }
  .cookie__contanier {
    flex-direction: column;
    gap: 10px;
    align-items: end;
  }
  .cookie__p span {
    padding-top: 5px;
  }
  .cookie__button {
    width: 100%;
    height: 100%;
    padding: 5px 10px;
    font-size: 12px;
  }
}
.kanal__title{
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 700;
  line-height: 114.5%;
  letter-spacing: -0.2px;
  position: relative;
}
.kanal__text{
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
  line-height: 114.5%;
  letter-spacing: -0.2px;
  padding-top: 40px;
  padding-bottom: 25px;
}
.kanal__row{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.kanal__item {
  border-radius: 10px;
}
.kanal__text span {
  display: block;
}
@media (max-width: 1024px) {
  .popup__body {
    max-width: calc(100% - 40px);
    margin: auto;
  }
}
@media (max-width: 767px) {
  .kanal__text {
    display: none;
  }
  .popup__content {
    padding: 30px;
  }
  .kanal__title {
    font-size: 20px;
    padding-bottom: 30px;
    padding-right: 30px;
  }
  .kanal__item {
    max-width: 42px;
  }
  .kanal__row {
    gap: 7px;
  }
  .popup__body {
    padding: 40px 0;
  }
}

.banner-business .banner__title p {
  padding-bottom: 0;
  text-align: center;
}

.banner-business .banner__title p:nth-child(2) {
  letter-spacing: 2px;
}
.banner-business .banner__title p:nth-child(3) {
  letter-spacing: 5px;
}
.banner-business .banner__title {
  padding-bottom: 70px;
}
.banner__text {
  color: rgb(238, 238, 238);
  font-size: 24px;
  font-weight: 400;
  line-height: 143%;
  text-align: center;
  max-width: 840px;
  margin: auto;
  padding-bottom: 100px;
}
.banner__forms{
  max-width: 840px;
  margin: auto;
}

.banner__forms .feedback__block {
  padding: 18px;
}

.banner__forms  .feedback__text::placeholder{
  font-size: 16px;
}

.banner__forms  .feedback__text{
  font-size: 16px;
}

.sphere__name{
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 700;
  line-height: 114.5%;
  letter-spacing: -0.2px;
  text-align: left;
  position: relative;
}
.sphere__name span{
  display: block;
}
.sphere__text{
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
  line-height: 114.5%;
  letter-spacing: -0.2px;
  padding-bottom: 25px;
  padding-top: 13px;
}
.sphere__href{
  border: 2px solid rgb(255, 255, 255);
  cursor: pointer;
  width: 100%;
  padding: 10px 33px;
  margin-top: auto;
}
.sphere__href a{
  color: rgb(255, 255, 255);
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 600;
  line-height: 160%;
  display: flex;
  gap: 22px;
  align-items: center;
}
.sphere__item {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1), 0px 6px 13px 0px rgba(0, 0, 0, 0.1), 0px 24px 24px 0px rgba(0, 0, 0, 0.09), 0px 55px 33px 0px rgba(0, 0, 0, 0.05), 0px 97px 39px 0px rgba(0, 0, 0, 0.01), 0px 152px 42px 0px rgba(0, 0, 0, 0);
  background: rgb(38, 47, 51);
  padding: 20px;
  width: calc(25% - 15px);
  display: flex;
  flex-direction: column;
}
.sphere__row{
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  justify-content: center;
}
.sphere__href svg{
  transition: all 300ms ease-in-out;
}
.sphere__href:hover svg{
  transform: translateX(10px);
}
.sphere__title {
    padding-bottom: 60px;
}
.sphere__title {
  padding-bottom: 66px;
}
.sphere__content{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
}
.sphere__content p{
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
  line-height: 114.5%;
  letter-spacing: -0.2px;
}

@media (max-width: 1200px) {
  .sphere__item {
    padding: 10px;
  }
  .sphere__text {
    font-size: 12px;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 1024px) {
  .sphere__item {

    min-width: 333px;
    padding: 20px;
  }
  .sphere__text {
    font-size: 14px;
    letter-spacing: -0.2px;
  }
}

@media (max-width: 767px) {
  .banner__text {
    font-size: 18px;
    padding-bottom: 50px;
  }
  .banner-business .banner__title {
    padding-bottom: 40px;
  }
  .banner__forms {
    padding-bottom: 30px;
  }
  .sphere__title {
    padding-bottom: 45px;
  }
  .sphere__name {
    font-size: 20px;
  }
  .sphere__content {
    padding-top: 20px;
  }
.sphere__title {
    padding-bottom: 40px;
}
}
.variants__row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.variants__item{
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1),0px 6px 13px 0px rgba(0, 0, 0, 0.1),0px 24px 24px 0px rgba(0, 0, 0, 0.09),0px 55px 33px 0px rgba(0, 0, 0, 0.05),0px 97px 39px 0px rgba(0, 0, 0, 0.01),0px 152px 42px 0px rgba(0, 0, 0, 0);
  background: rgb(38, 47, 51);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.red{
  color: #EF341D;
}
@media (max-width: 767px) {
  .variants__row {
    grid-template-columns: 1fr;
  }
  .variants{
    padding-bottom: 0;
  }
}
.choice__name{
  color: rgb(67, 75, 83);
  font-size: 24px;
  font-weight: 700;
  line-height: 114.5%;
  letter-spacing: -0.2px;
  padding-bottom: 16px;
}
.choice__text{
  color: rgb(67, 75, 83);
  font-size: 14px;
  font-weight: 500;
  line-height: 114.5%;
  letter-spacing: -0.2px;
  max-width: 600px;
}
.choice__item{
  background: rgb(255, 255, 255);
  padding: 20px;
}
.choice__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 20px;
}
.choice {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .choice {
    padding: 40px 0;
  }
  .choice__name {
    font-size: 18px;
  }
  .choice__row {
    grid-template-columns: 1fr;
  }
}
.content {
  padding-top: 125px;
  padding-bottom: 0;
}
.content__text  {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767px) {
  .content{
    padding-top: 150px;
  }
  .content__text {
    font-size: 14px;
    line-height: 130%;
  }
}
@media (max-width: 1500px) and (min-width: 1300px){

.visual__item {
    width: auto;
    height: auto;
    background: #000000;
    max-width: 48%;
}
.visual__bg {
    margin: 15px;
    background: rgb(27 35 35);
    padding: 25px 15px;
    display: flex;
    gap: 25px;
    height: calc(100% - 30px);
    justify-content: center;
}
}
@media (max-height: 920px) and (min-width: 1440px){
.banner {
    padding-top: 150px;
}
}
@media (max-width: 1500px) and (min-width: 767px){

.banner__title p {
    font-size: 58px;
    line-height: 1.2;
}
 .banner__on {
    font-size: 56px;
    line-height: 1.2;
}
.banner__title p:last-child {
    letter-spacing: -0.7px;
    font-size: 57px;
    padding-bottom: 26px;
}
.banner {
    padding-top: 150px;
}
.banner__info {
    max-width: 697px;
    margin: auto;
}
.banner__list {
    font-size: 28px;
}
.banner__vkl {
    padding-bottom: 65px;
}
.banner__footnote {
    padding-bottom: 50px;
}
.title {
    font-size: 32px;
      padding-bottom: 25px;
}
.subtitle, .karta__title{
font-size: 32px;
}
.agency-scheme__row {
    gap: 25px;
}
.trust__row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.trust__img {
    width: 100%;
}
.text{
    font-size: 20px;
}
.cinema__online {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.advantages__more {
    width: 50px;
    height: 50px;
}
.advantages__more svg {
    max-height: 25px;
    width: auto;
}


}
.header__menu.menu._active a {
    font-family: Nunito-Sans-7pt-Expanded;
}

@media (max-width: 767px) {

}
@media (max-width: 767px) {

}

.site-login {
  text-align: center;
}

.btn-login  {
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
  /*background: rgb(239, 52, 29);*/
  padding: 10px 20%;
  margin: 10px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
  font-weight: 400;
  line-height: 143%;
  text-align: left;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}

.btn-login:hover {
  background: rgb(239, 52, 29);
  color: rgb(255, 255, 255);
  border: 1px solid  rgb(239, 52, 29);
}

.site-login h1 {
  margin-bottom: 10px;
  font-size: 24px;
}

.site-login p {
  margin-bottom: 15px;
  font-size: 18px;
}

.site-login .mb-3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.site-login input {
  margin-bottom: 10px;
  margin-left: 10px;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}


.adminka-page ol {
  margin-top: 80px;
}

.adminka-page .breadcrumb-item {
  display: -webkit-inline-box;
}

.sphere__content ul {
  padding-left: 19px;
  font-size: 14px;

}

.sphere__content ul li {
  font-size: 14px;
  list-style: circle;
}


.sphere__content ol {
  padding-left: 19px;
  font-size: 14px;

}

.sphere__content ol li {
  font-size: 14px;
  margin-bottom: 10px;
}

.sphere__content ul li::marker {
  color: #EF341D;
}

#connection_main--pjax-form0 .feedback__title {
  text-align: center;
}

.sphere {
  padding-top: 100px;
}


@media (max-width: 767px) {
  .sphere {
    padding-top: 40px;
  }
}

.field-services-icon_file {
  margin: 15px 0;
}

.form_save-button {
  margin: 15px 0;
}

.button-group-content {
  display: flex; /* Располагает дочерние элементы в ряд */
  width: fit-content; /* Ширина контейнера подстраивается под содержимое */
  border-collapse: collapse; /* Убирает промежутки между кнопками */
  border: 1px solid rgba(var(--bs-dark-rgb));
  margin-top: 50px;
}

.button-group-content .btn-content{
  display: inline-block; /* Позволяет задавать отступы и размеры */
  padding: 15px 60px;
  margin: 0;
  color: rgba(var(--bs-dark-rgb));
  text-decoration: none;
}


.button-group-content ._activ{
  background-color: rgba(var(--bs-dark-rgb));
  color: #fff;
}

.button-group-content-block {
  margin-top: 50px;
  width: fit-content;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.button-group-content-block .btn-content {
  display: inline-block; /* Позволяет задавать отступы и размеры */
  padding: 10px 50px;
  margin: 0;
  color: rgba(var(--bs-dark-rgb));
  text-decoration: none;
  background-color: rgba(var(--bs-dark-rgb));
  color: #fff;
}

.content__text .details_info table{
  border: 0.75pt solid rgb(255 255 255);
}
