@font-face {
  font-family: 'NunitoSans Light';
  src: url("../fonts/NunitoSans-Light.ttf");
  src: local("NunitoSans-Light"), url("../fonts/NunitoSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'NunitoSans Regular';
  src: url("../fonts/NunitoSans-Regular.ttf");
  src: local("NunitoSans-Regular"), url("../fonts/NunitoSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'NunitoSans SemiBold';
  src: url("../fonts/NunitoSans-SemiBold.ttf");
  src: local("NunitoSans-SemiBold"), url("../fonts/NunitoSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'NunitoSans Bold';
  src: url("../fonts/NunitoSans-Bold.ttf");
  src: local("NunitoSans-Bold"), url("../fonts/NunitoSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'NunitoSans ExtraBold';
  src: url("../fonts/NunitoSans-ExtraBold.ttf");
  src: local("NunitoSans-ExtraBold"), url("../fonts/NunitoSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

body, html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-size: 15px;
  min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

ul, li {
  display: block;
  padding: 0px;
  margin: 0px;
}

textarea {
  resize: none;
}

p {
  font-size: 16px;
}

img {
  border-style: none;
}

button {
  border: 0;
  background: transparent;
  padding: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: none;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoratio {
  display: none;
}

[hidden] {
  display: none;
}

p, nav {
  margin: 0;
  padding: 0;
}

a, a:hover, a:active, a:focus,
button, input, button:hover, button:active, button:focus,
input:focus, input:active {
  text-decoration: none;
  outline: none;
  /*  -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-timing-function: ease;*/
}

input {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-jcsb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.f-jcsa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.f-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.f-jcsb-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.f-jcsa-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.f-center-center {
  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;
}

.f-dc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.f-dc-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.f-dc-jcsb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.f-dc-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.f-dc-center-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
}

.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  pointer-events: none;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-75 {
  padding-top: 75px;
}

.pb-75 {
  padding-bottom: 75px;
}

.title {
  color: #003295;
  font-size: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: 'Montserrat Medium';
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42%;
  height: 1px;
  background: #003295;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 45px;
  -webkit-box-shadow: 0px 6px 7.2px 0px #FFFFFF70 inset,  0px -5px 11.1px 0px #00000070 inset, 0px 4px 4px 0px #00000026;
          box-shadow: 0px 6px 7.2px 0px #FFFFFF70 inset,  0px -5px 11.1px 0px #00000070 inset, 0px 4px 4px 0px #00000026;
  color: #fff;
}

.btn-blue {
  background: linear-gradient(183.87deg, #6130DB 3.17%, #35037F 87.19%);
}

.btn-blue:active {
  -webkit-box-shadow: 0px 6px 7.2px 0px rgba(87, 87, 87, 0.44) inset, 0px -5px 11.1px 0px rgba(87, 87, 87, 0.44) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 6px 7.2px 0px rgba(87, 87, 87, 0.44) inset, 0px -5px 11.1px 0px rgba(87, 87, 87, 0.44) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.btn-pupure {
  background: linear-gradient(157.8deg, #D100F3 17.58%, #5900B2 105.7%);
}

.btn-pupure:active {
  -webkit-box-shadow: 0px 6px 7.2px 0px rgba(87, 87, 87, 0.44) inset, 0px -5px 11.1px 0px rgba(87, 87, 87, 0.44) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 6px 7.2px 0px rgba(87, 87, 87, 0.44) inset, 0px -5px 11.1px 0px rgba(87, 87, 87, 0.44) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.btn-fiol {
  background: linear-gradient(157.8deg, #AC41FF 17.58%, #453AC0 105.7%);
}

.btn-fiol:active {
  -webkit-box-shadow: 0px 6px 7.2px 0px rgba(87, 87, 87, 0.44) inset, 0px -5px 11.1px 0px rgba(87, 87, 87, 0.44) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 6px 7.2px 0px rgba(87, 87, 87, 0.44) inset, 0px -5px 11.1px 0px rgba(87, 87, 87, 0.44) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.hidden {
  overflow: hidden;
}

.none {
  display: none;
}

a, span, p, input, button, select, option, textarea, label, blockquote {
  font-family: 'NunitoSans Regular';
  font-size: 20px;
  line-height: normal;
  color: #fff;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

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

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #A5A5A5;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #A5A5A5;
}

input::placeholder, textarea::placeholder {
  color: #A5A5A5;
}

textarea {
  height: 100%;
}

/*label.error {
    font-family: 'Montserrat Medium';
    font-size: 14px;
    color: #C62828;
    margin-top: 3px;
    display: inline-block;
}
b, strong {
	font-family: 'Montserrat Bold';
}*/
input, textarea {
  border: none;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 15px;
}

body {
  background: linear-gradient(90.01deg, #080C5A 0.01%, #370182 37%, #4702A7 99.99%);
}

body::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.container {
  width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.intro .elem-100 {
  position: absolute;
  left: 370px;
  bottom: 55px;
}

.intro-wrapper {
  position: relative;
  padding-top: 150px;
}

.intro-image {
  position: absolute;
  top: -285px;
  right: -300px;
  width: 1246px;
  z-index: -10;
}

.intro-image video {
  position: absolute;
  width: 814px;
  aspect-ratio: 1 / 1;
  right: 165px;
  -o-object-fit: cover;
     object-fit: cover;
  top: 192px;
  border-radius: 50%;
}

.intro__logo {
  width: 140px;
  height: 120px;
  display: inline-block;
  margin-bottom: 60px;
}

.intro__title {
  font-family: 'NunitoSans ExtraBold';
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
  line-height: 103%;
}

.intro__descr {
  font-size: 32px;
  font-family: 'NunitoSans SemiBold';
  line-height: 113%;
  margin-bottom: 70px;
}

.intro-info {
  width: 410px;
}

.intro__button {
  font-family: 'NunitoSans Bold';
  text-align: center;
  line-height: 21px;
  padding: 20px 25px;
  font-size: 24px;
  width: 346px;
  margin-bottom: 36px;
}

.intro__about {
  font-size: 25px;
  text-decoration: underline;
}

.abonent {
  position: relative;
}

.abonent-wrapper {
  position: relative;
}

.abonent .elem-1 {
  position: absolute;
  right: 225px;
  top: -118px;
  width: 130px;
}

.abonent .elem-2 {
  position: absolute;
  right: -136px;
  top: -175px;
  width: 410px;
}

.abonent .elem-3 {
  position: absolute;
  left: -77px;
  top: 195px;
}

.abonent-title {
  position: relative;
  padding: 26px;
  margin-bottom: 30px;
}

.abonent-title__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.abonent-title__text {
  text-align: center;
  font-size: 28px;
  text-align: center;
  margin: 0 auto;
  width: 480px;
  text-transform: uppercase;
}

.abonent-title__text span {
  text-transform: uppercase;
  font-size: 28px;
}

.abonent-title__text span.bold {
  font-family: 'NunitoSans Bold';
}

.abonent-title__text span.purpure {
  color: #E53AF4;
}

.abonent-arrow {
  margin: auto 0;
}

.abonent-arrow img {
  opacity: .1;
}

.abonent-arrow img:not(:last-child) {
  margin-bottom: 10px;
}

.abonent-arrow img:nth-child(1) {
  -webkit-animation: pulseOne 1s infinite linear;
          animation: pulseOne 1s infinite linear;
}

.abonent-arrow img:nth-child(2) {
  -webkit-animation: pulseTwo 1s 0.2s infinite linear;
          animation: pulseTwo 1s 0.2s infinite linear;
}

.abonent-arrow img:nth-child(3) {
  -webkit-animation: pulseThree 1s 0.3s infinite linear;
          animation: pulseThree 1s 0.3s infinite linear;
}

.abonent-inner {
  position: relative;
  margin-top: 30px;
}

.abonent__question {
  font-family: 'NunitoSans Bold';
  margin-bottom: 40px;
  font-size: 30px;
}

.abonent__question img {
  margin: 0 20px 0 5px;
}

.abonent-btns {
  margin-bottom: 50px;
}

.abonent__button {
  padding: 26px 66px;
  width: 210px;
  border-radius: 45px;
  font-size: 26px;
}

.abonent__button:not(:last-child) {
  margin-right: 110px;
}

.abonent__notification {
  text-align: center;
  font-size: 20px;
  font-family: 'NunitoSans Bold';
}

.application {
  position: relative;
}

.application .elem-4 {
  position: absolute;
  left: -244px;
  top: 70px;
}

.application .elem-5 {
  position: absolute;
  left: -215px;
  bottom: -90px;
}

.application.open {
  display: block;
}

.application-wrapper {
  background: -webkit-gradient(linear, left top, left bottom, from(#6912D8), to(rgba(17, 8, 53, 0.7)));
  background: linear-gradient(180deg, #6912D8 0%, rgba(17, 8, 53, 0.7) 100%);
  padding: 90px 125px 75px 125px;
  border-radius: 12px;
  margin: 0 auto;
  position: relative;
}

.application-form {
  width: 630px;
  position: relative;
  margin: 0 auto;
}

.application-form-elem:not(:last-child) {
  margin-bottom: 70px;
}

.application-form-elem-inner {
  position: relative;
  padding: 14px 32px;
  border-radius: 45px;
}

.application-form-elem-inner::before {
  content: '';
  width: 100%;
  border-radius: 45px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.application-form-elem-inner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 2px);
  height: calc(100% - 4px);
  z-index: 2;
  border-radius: 45px;
}

.application-form-elem:nth-child(1) .application-form-elem-inner::before {
  background: -webkit-gradient(linear, left top, right top, from(#F12BF5), color-stop(95.44%, rgba(241, 43, 245, 0)));
  background: linear-gradient(90deg, #F12BF5 0%, rgba(241, 43, 245, 0) 95.44%);
}

.application-form-elem:nth-child(1) .application-form-elem-inner::after {
  background: #540fb3;
}

.application-form-elem:nth-child(2) .application-form-elem-inner::before {
  background: -webkit-gradient(linear, left top, right top, from(#F12BF5), color-stop(95.44%, rgba(241, 43, 245, 0)));
  background: linear-gradient(90deg, #F12BF5 0%, rgba(241, 43, 245, 0) 95.44%);
}

.application-form-elem:nth-child(2) .application-form-elem-inner::after {
  background: #3b0a85;
}

.application-form-elem__input {
  position: relative;
  background: transparent;
  z-index: 3;
  border: 0;
  font-size: 26px;
  font-family: 'NunitoSans Light';
}

.application-form-elem__input::-webkit-input-placeholder {
  font-family: 'NunitoSans Light';
  opacity: .6;
}

.application-form-elem__input:-ms-input-placeholder {
  font-family: 'NunitoSans Light';
  opacity: .6;
}

.application-form-elem__input::-ms-input-placeholder {
  font-family: 'NunitoSans Light';
  opacity: .6;
}

.application-form-elem__input::placeholder {
  font-family: 'NunitoSans Light';
  opacity: .6;
}

.application-form-elem__name {
  margin: 0  0 11px 23px;
  font-size: 20px;
  font-family: 'NunitoSans Bold';
}

.application-form-elem__error {
  margin-top: 15px;
  margin-left: 23px;
  min-height: 22px;
}

.application-form-elem__error.show {
  display: block;
}

.application-form-elem__button {
  background: linear-gradient(158.47deg, #D100F3 14.14%, #5900B2 87.03%);
  -webkit-box-shadow: 0px 4px 4px 0px #00000026, 0px 4px 4px 0px #FFFFFF40 inset;
          box-shadow: 0px 4px 4px 0px #00000026, 0px 4px 4px 0px #FFFFFF40 inset;
  width: 225px;
  height: 100%;
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  border-radius: 45px;
  font-size: 18px;
}

.application-form-elem__button.disabled {
  cursor: not-allowed !important;
  color: #5f5f5f !important;
  background: #adadad !important;
}

.application-form-elem__button:active {
  -webkit-box-shadow: 0px 6px 7.2px 0px rgba(87, 87, 87, 0.44) inset, 0px -5px 11.1px 0px rgba(87, 87, 87, 0.44) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 6px 7.2px 0px rgba(87, 87, 87, 0.44) inset, 0px -5px 11.1px 0px rgba(87, 87, 87, 0.44) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.application-form__message {
  margin-top: 60px;
  opacity: .6;
  font-size: 18px;
}

.application-form__message a {
  font-size: 18px;
  text-decoration: underline;
}

.advantage {
  position: relative;
}

.advantage .elem-6 {
  position: absolute;
  right: -138px;
  bottom: 90px;
}

.advantage .elem-61 {
  position: absolute;
  right: 0;
  top: 26px;
}

.advantage .elem-62 {
  position: absolute;
  right: 0;
  bottom: -220px;
}

.advantage-wrapper {
  padding: 0 80px;
}

.advantage-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.advantage-item {
  width: 265px;
}

.advantage-item:not(:nth-child(3n + 3)) {
  margin-right: 122px;
}

.advantage-item:not(:nth-child(-n + 3)) {
  margin-top: 64px;
}

.advantage-item-icon {
  width: 253px;
  margin-bottom: 20px;
  height: 253px;
  background: linear-gradient(151.85deg, #BC2EDF 4.92%, #4E10B3 85.4%);
  border-radius: 50%;
  padding: 40px 50px;
}

.advantage-item__text {
  font-size: 20px;
  text-align: center;
  font-family: 'NunitoSans Bold';
}

.filmsMain {
  position: relative;
}

.filmsMain .elem-7 {
  position: absolute;
  left: -75px;
  top: 35px;
}

.filmsMain-title {
  position: relative;
  padding: 34px 190px;
}

.filmsMain-title__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.filmsMain-title__text {
  font-family: 'NunitoSans Bold';
  text-align: center;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  text-transform: uppercase;
}

.filmsSec-wrapper {
  padding: 68px 80px;
  border-radius: 12px;
  position: relative;
  -webkit-box-shadow: 0px 4px 4px 0px #00000040;
          box-shadow: 0px 4px 4px 0px #00000040;
}

.filmsSec__title {
  font-size: 30px;
  margin-bottom: 15px;
  font-family: 'NunitoSans Bold';
}

.filmsSec__descr {
  font-size: 22px;
  font-family: 'NunitoSans SemiBold';
}

.filmsSec-block {
  padding: 0 40px;
  position: relative;
}

.filmsSec-block-panel button {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

.filmsSec-block-panel__prev {
  left: 0;
}

.filmsSec-block-panel__next {
  right: 0;
}

.filmsSec-slider .slick-list {
  padding: 40px 0 !important;
  overflow: hidden;
}

.filmsSec-slider-item {
  height: 246px;
  margin: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.filmsSec-slider-item.slick-center {
  -webkit-transform: scale(1.32);
          transform: scale(1.32);
  position: relative;
}

.filmsSec-slider-item.slick-active {
  position: relative;
  z-index: -1;
}

.filmsSec-slider-item.slick-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(19.9%, rgba(16, 25, 106, 0)), color-stop(89.55%, rgba(16, 25, 106, 0.52)));
  background: linear-gradient(90deg, rgba(16, 25, 106, 0) 19.9%, rgba(16, 25, 106, 0.52) 89.55%);
}

.filmsSec-slider-item.slick-active + .slick-active {
  z-index: 0;
}

.filmsSec-slider-item.slick-active + .slick-active::before {
  background: none;
}

.filmsSec-slider-item.slick-active + .slick-active + .slick-active {
  z-index: -1;
}

.filmsSec-slider-item.slick-active + .slick-active + .slick-active::before {
  background: linear-gradient(88.88deg, rgba(16, 25, 106, 0.52) 1.01%, rgba(16, 25, 106, 0) 73.22%);
}

.filmsSec__button {
  margin-top: 50px;
  font-size: 16px;
  text-align: center;
  font-family: 'NunitoSans SemiBold';
  line-height: 17px;
  padding: 12px;
}

.filmsSec.channel .filmsSec-info {
  width: 298px;
}

.filmsSec.channel .filmsSec-block {
  width: 676px;
}

.filmsSec.channel .filmsSec__descr {
  font-size: 20px;
}

.filmsSec.channel .filmsSec__button {
  width: 240px;
}

.filmsSec.channel .filmsSec-slider .slick-list {
  padding: unset !important;
}

.filmsSec.channel .filmsSec-slider .slick-slide {
  margin: 0 10px;
}

.filmsSec.channel .filmsSec-slider-item {
  border-radius: unset;
  margin: 0;
  margin-bottom: 10px;
  width: 100%;
  height: 110px;
}

.filmsSec.channel .filmsSec-slider-item.slick-center {
  -webkit-transform: unset;
          transform: unset;
}

.filmsSec.channel .filmsSec-slider-item.slick-center::before {
  display: none;
}

.filmsSec.channel .filmsSec-slider-item.slick-center::after {
  display: none;
}

.filmsColorOne {
  position: relative;
}

.filmsColorOne .elem-11 {
  position: absolute;
  right: -250px;
  top: -135px;
  z-index: -1;
}

.filmsColorOne .filmsSec-wrapper {
  background: -webkit-gradient(linear, left top, left bottom, from(#E53AF4), to(rgba(3, 15, 59, 0.12)));
  background: linear-gradient(180deg, #E53AF4 0%, rgba(3, 15, 59, 0.12) 100%);
}

.filmsColorOne .filmsSec-info {
  width: 416px;
}

.filmsColorOne .filmsSec-block {
  width: 595px;
}

.filmsColorOne .filmsSec__button {
  width: 305px;
}

.filmsColorTwo {
  position: relative;
}

.filmsColorTwo .elem-9 {
  position: absolute;
  right: -232px;
  top: -195px;
  z-index: -1;
}

.filmsColorTwo .elem-10 {
  position: absolute;
  left: -370px;
  bottom: -300px;
  z-index: -1;
}

.filmsColorTwo .filmsSec-wrapper {
  background: -webkit-gradient(linear, left top, left bottom, from(#8344DB), to(rgba(49, 77, 175, 0.12)));
  background: linear-gradient(180deg, #8344DB 0%, rgba(49, 77, 175, 0.12) 100%);
  -webkit-box-shadow: 0px 4px 4px 0px #00000040;
          box-shadow: 0px 4px 4px 0px #00000040;
  position: relative;
}

.filmsColorTwo .filmsSec-block {
  width: 595px;
}

.filmsColorTwo .filmsSec-info {
  width: 370px;
}

.filmsColorThree .filmsSec-wrapper {
  background: -webkit-gradient(linear, left top, left bottom, from(#59ADFC), to(rgba(49, 77, 175, 0.12)));
  background: linear-gradient(180deg, #59ADFC 0%, rgba(49, 77, 175, 0.12) 100%);
}

.filmsColorThree .filmsSec-info {
  width: 294px;
}

.filmsColorThree .filmsSec-block {
  width: 595px;
}

.filmsColorThree .filmsSec__button {
  width: 240px;
}

.filmsColorFour .filmsSec-wrapper {
  position: relative;
}

.filmsColorFour .filmsSec-wrapper .elem-8 {
  position: absolute;
  left: -255px;
  bottom: 135px;
  z-index: -1;
}

.filmsColorFour .filmsSec-wrapper {
  background: -webkit-gradient(linear, left top, left bottom, from(#DF268A), to(rgba(49, 77, 175, 0.12)));
  background: linear-gradient(180deg, #DF268A 0%, rgba(49, 77, 175, 0.12) 100%);
}

.filmsColorFour .filmsSec-info {
  width: 370px;
}

.filmsColorFour .filmsSec-block {
  width: 595px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.filmsColorFour .filmsSec__button {
  width: 240px;
}

.filmsColorFive .filmsSec-wrapper {
  background: -webkit-gradient(linear, left top, left bottom, from(#DF268A), to(rgba(49, 77, 175, 0.12)));
  background: linear-gradient(180deg, #DF268A 0%, rgba(49, 77, 175, 0.12) 100%);
}

.filmsColorFive .filmsSec-info {
  width: 290px;
}

.filmsColorFive .filmsSec-block {
  width: 660px;
}

.filmsColorFive .filmsSec__button {
  width: 240px;
}

.filmsColorFive .filmsSec-slider-item {
  margin: 0 7.5px;
  height: unset;
  border-radius: 0;
}

.filmsColorFive .filmsSec-slider-item-service {
  padding: 16px;
  margin-top: 18px;
  width: 100%;
  height: 58px;
  background: url("../img/elem-service.svg") no-repeat center/contain;
}

.filmsColorFive .filmsSec-slider-item > a > img {
  border-radius: 10px;
}

.filmsColorFive .filmsSec-slider-item.slick-center {
  -webkit-transform: unset;
          transform: unset;
}

.filmsColorFive .filmsSec-slider-item.slick-active::before {
  display: none;
}

.filmsColorFive .filmsSec-slider-item.slick-active + .slick-active + .slick-active::before {
  display: none;
}

.filmsColorThree {
  position: relative;
}

.filmsColorThree .films-wrapper {
  background: -webkit-gradient(linear, left top, left bottom, from(#BC2EDF), to(rgba(42, 68, 159, 0.12)));
  background: linear-gradient(180deg, #BC2EDF 0%, rgba(42, 68, 159, 0.12) 100%);
  padding: 54px 62px 54px 100px;
}

.filmsColorThree .films-slider-item.slick-center {
  -webkit-transform: unset;
          transform: unset;
}

.filmsColorThree .films-slider-item {
  margin: 0 7.5px;
  height: unset;
}

.filmsColorThree .films-slider-item a img {
  border-radius: 10px;
}

.footer {
  position: relative;
}

.footer .elem-12 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.footer .elem-13 {
  position: absolute;
  right: -230px;
  bottom: 0;
  z-index: -1;
}

.footer-wrapper {
  padding-bottom: 120px;
  position: relative;
}

.footer__text {
  max-width: 728px;
  text-align: center;
  font-size: 20px;
  opacity: .6;
  margin: 0 auto;
}

.footer-social {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.footer-social-item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-social-item:not(:last-child) {
  margin-right: 18px;
}

.footer-social-item:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.footer-share {
  width: 545px;
  margin: 0 auto 70px auto;
}

.footer-share-inner {
  cursor: pointer;
  padding: 30px 0;
  width: 100%;
  position: relative;
}

.footer-share-inner img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.footer-share__link {
  font-size: 22px;
}

.footer-share-link__text {
  text-align: center;
  font-size: 16px;
  color: #34d234;
  font-family: 'NunitoSans SemiBold';
  margin-top: 10px;
}

@-webkit-keyframes pulseOne {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: .2;
  }
}

@keyframes pulseOne {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: .2;
  }
}

@-webkit-keyframes pulseTwo {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: .5;
  }
}

@keyframes pulseTwo {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: .5;
  }
}

@-webkit-keyframes pulseThree {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pulseThree {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}

.popup {
  background: rgba(13, 1, 87, 0.78);
  overflow: auto;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1010;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.popup.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.popup-wrapper {
  position: relative;
  width: 952px;
  margin: auto;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#E53AF4), to(#26143f));
  background: linear-gradient(180deg, #E53AF4 0%, #26143f 100%);
  min-height: 500px;
  padding: 50px;
}

.popup-close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.popup-close img {
  width: 100%;
  height: 100%;
}

.popup-inner {
  max-width: 400px;
  z-index: 2;
}

.popup__title {
  font-size: 26px;
  text-transform: uppercase;
  font-family: 'NunitoSans Bold';
  text-align: center;
  margin-bottom: 20px;
}

.popup__descr {
  font-size: 26px;
  text-align: center;
  font-family: 'NunitoSans Bold';
}

.popup__button {
  /*background: linear-gradient(183.87deg, #6130DB 3.17%, #35037F 87.19%);
        box-shadow: 0px 1px 8px 0px #CA9FF891 inset;*/
  background: linear-gradient(183.87deg, #6130DB 3.17%, #35037F 87.19%);
  padding: 22px 68px;
  border-radius: 45px;
  font-size: 16px;
  margin-top: 35px;
}

.popup-have .popup-inner {
  max-width: 550px;
}

.popup-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.popup-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup-activate-elem img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.popup-activate-elem img:nth-child(1) {
  left: 110px;
}

.popup-activate-elem img:nth-child(2) {
  right: 110px;
}

.popup-have-elem img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.popup-number-elem img {
  position: absolute;
  top: -140px;
  right: 36px;
}

.popup-sms-elem img {
  position: absolute;
  top: -165px;
  left: -25px;
}

.popup-error-elem img {
  position: absolute;
  top: -46px;
  right: 90px;
}

.err--red {
  color: red;
}
/*# sourceMappingURL=main.css.map */