.scroll-is-locked {
  position: fixed;
  width: 100%;
  left: 0;
}

body {
  background-color: #111111;
  color: #ffffff;
  font-family: 'Helvetica';
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

main {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
}

.mx-n-15 {
  margin-left: -15px;
  margin-right: -15px;
}

.mx-n-28 {
  margin-left: -28px;
  margin-right: -28px;
}

.ml-a {
  margin-left: auto;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.px-28 {
  padding-left: 28px;
  padding-right: 28px;
}

.pr-15 {
  padding-right: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.underline {
  text-decoration: underline;
}

.nowrap {
  white-space: nowrap;
}

.d-none {
  display: none;
}

.noise {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  pointer-events: none;
}

@-webkit-keyframes noiseAnimation {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  10% {
    -webkit-transform: translate(-5%, -5%);
    transform: translate(-5%, -5%);
  }
  20% {
    -webkit-transform: translate(-10%, 5%);
    transform: translate(-10%, 5%);
  }
  30% {
    -webkit-transform: translate(5%, -10%);
    transform: translate(5%, -10%);
  }
  40% {
    -webkit-transform: translate(-5%, 15%);
    transform: translate(-5%, 15%);
  }
  50% {
    -webkit-transform: translate(-10%, 5%);
    transform: translate(-10%, 5%);
  }
  60% {
    -webkit-transform: translate(15%);
    transform: translate(15%);
  }
  70% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  80% {
    -webkit-transform: translate(-15%);
    transform: translate(-15%);
  }
  90% {
    -webkit-transform: translate(10%, 5%);
    transform: translate(10%, 5%);
  }
  to {
    -webkit-transform: translate(5%);
    transform: translate(5%);
  }
}

@keyframes noiseAnimation {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  10% {
    -webkit-transform: translate(-5%, -5%);
    transform: translate(-5%, -5%);
  }
  20% {
    -webkit-transform: translate(-10%, 5%);
    transform: translate(-10%, 5%);
  }
  30% {
    -webkit-transform: translate(5%, -10%);
    transform: translate(5%, -10%);
  }
  40% {
    -webkit-transform: translate(-5%, 15%);
    transform: translate(-5%, 15%);
  }
  50% {
    -webkit-transform: translate(-10%, 5%);
    transform: translate(-10%, 5%);
  }
  60% {
    -webkit-transform: translate(15%);
    transform: translate(15%);
  }
  70% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  80% {
    -webkit-transform: translate(-15%);
    transform: translate(-15%);
  }
  90% {
    -webkit-transform: translate(10%, 5%);
    transform: translate(10%, 5%);
  }
  to {
    -webkit-transform: translate(5%);
    transform: translate(5%);
  }
}

.noise::after {
  content: "";
  pointer-events: none;
  will-change: transform;
  -webkit-animation: noiseAnimation 1s steps(4) infinite;
  animation: noiseAnimation 1s steps(4) infinite;
  opacity: .8;
  background-image: url("../img/noise.png");
  width: 200%;
  height: 200%;
  display: block;
  position: absolute;
  top: -50%;
  left: -50%;
}

.paint-spray {
  max-width: 1270px;
  width: 1164.5px;
  height: 364px;
  margin: auto;
  background: 0 0 / cover no-repeat;
}

.link_circle {
  display: block;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  margin: auto;
  position: relative;
}

.link_circle::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  border-radius: 50%;
}

.link_circle .link__title {
  width: 100%;
  font-size: 22px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.link_circle .link__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  background-color: #d9461a;
  text-align: center;
  color: #ffffff;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.link_circle .link__text {
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.025em;
  margin-bottom: 1rem;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.link_circle .icon {
  display: block;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.link_circle:hover .link__content {
  -webkit-transform: scale(1) translateZ(0);
  transform: scale(1) translateZ(0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.link_circle:hover .link__text,
.link_circle:hover .icon {
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.link_circle_small {
  width: 158px;
  height: 158px;
}

.link_circle_small .link__text {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.icon {
  background: center / contain no-repeat;
}

.icon-fire {
  background-image: url("../img/emoji/emoji-fire.png");
  width: 26px;
  height: 26px;
}

.icon-love {
  width: 35px;
  height: 35px;
  background-image: url("../img/emoji/emoji-love.png");
}

.icon-peach {
  width: 35px;
  height: 35px;
  background-image: url("../img/emoji/emoji-peach.png");
}

.icon-devil {
  width: 35px;
  height: 35px;
  background-image: url("../img/emoji/emoji-devil.png");
}

.icon-movie {
  width: 22px;
  height: 22px;
  background-image: url("../img/emoji/emoji-movie.png");
}

.icon-bed {
  width: 36px;
  height: 24px;
  background-image: url("../img/emoji/emoji-bed.png");
}

.icon-hundred {
  width: 35px;
  height: 43px;
  background-image: url("../img/emoji/emoji-hundred.png");
}

.icon-swag {
  width: 27px;
  height: 27px;
  background-image: url("../img/emoji/emoji-swag.png");
}

.icon-ok {
  width: 27px;
  height: 27px;
  background-image: url("../img/emoji/emoji-ok.png");
}

.icon-hello {
  width: 27px;
  height: 27px;
  background-image: url("../img/emoji/emoji-hello.png");
}

.icon-hero {
  width: 25px;
  height: 22px;
  background-image: url("../img/emoji/emoji-hero.png");
}

.icon-bag {
  width: 27px;
  height: 27px;
  background-image: url("../img/emoji/emoji-bag.png");
}

.icon-home {
  width: 27px;
  height: 27px;
  background-image: url("../img/emoji/emoji-home.png");
}

.icon-duck {
  width: 27px;
  height: 27px;
  background-image: url("../img/emoji/emoji-duck.png");
}

.icon-attach {
  width: 25px;
  height: 32px;
  background-image: url("../img/svg/attach.svg");
}

.icon__arrow-right {
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 22px;
  background-image: url("../img/svg/arrow-right-white.svg");
}

.icon__sound-play {
  display: block;
  width: 44px;
  height: 44px;
  background-image: url("../img/svg/sound-play.svg");
}

.icon__play-video {
  display: block;
  width: 80px;
  height: 80px;
  background-image: url("../img/svg/play-video.svg");
}

.icon__play-main {
  display: block;
  width: 81px;
  height: 81px;
  background-image: url("../img/play-btn-main.png");
}

.input {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  opacity: 1;
  -webkit-opacity:1;
  border: 0;
  background-color: transparent;
  -webkit-background-color: transparent;
  color: #ffffff !important;
  padding: 25px 0;
  -webkit-transition: all 50000s;
  transition: all 50000s;
}

.input:focus {
  outline: 0;
}

.textarea {
  overflow: hidden;
}

.form__group {
  border-bottom: 1px solid #fff;
  margin-bottom: 40px;
  position: relative;
}

.btn {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.btn:focus {
  outline: 0;
}

.btn_submit {
  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;
  width: 100%;
  padding: 0;
  color: #ffffff;
  text-align: left;
  font-size: 16px;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.btn_submit:hover {
  opacity: 0.5;
}

.btn_submit:hover .btn-circle {
  -webkit-transform: scale(0.85294);
  transform: scale(0.85294);
}

.btn_submit:hover .btn-circle::after {
  -webkit-transform: scale(1.17241);
  transform: scale(1.17241);
}

.btn-circle {
  display: inline-block;
  width: 68px;
  height: 68px;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
}

.btn-circle::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/svg/arrow-right-white-outline.svg") center/32px 32px no-repeat;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

select:focus {
  outline: none;
}

.ui-selectmenu-button.ui-button {
  border-radius: 50px;
  border: 1px solid #fff;
  padding: 9px 18px 9px 20px;
  font-size: 13px;
  font-family: 'Helvetica';
  font-weight: normal;
  outline: none;
  text-align: center;
}

.ui-selectmenu-text {
  margin-right: 0;
}

.ui-menu .ui-menu-item-wrapper {
  font-size: 13px;
  padding: 9px 25px;
}

.ui-selectmenu-menu .ui-menu {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 20px;
  background-color: #000000;
}

[data-scrolldown] {
  opacity: 0.25;
  -webkit-filter: blur(0.1px);
  filter: blur(0.1px);
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  will-change: filter;
  -webkit-transition: all 1s;
  transition: all 1s;
}

[data-scrolldown].animated {
  opacity: 1;
  -webkit-filter: blur(0.1px);
  filter: blur(0.1px);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

[data-scroll="fadeUpHidden"] {
  -webkit-transform: translate3d(0, 80px, 0);
  transform: translate3d(0, 80px, 0);
  will-change: transform;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

[data-scroll="fadeUpHidden"].animated {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.remodal-overlay {
  background: rgba(8, 8, 8, 0.6);
}
.remodal-wrapper {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /*touch-action: none;*/
}
.remodal {
  max-width: 1110px;
  border-radius: 0;
  padding: 140px 150px 100px 150px;
}

.remodal .form__group {
  border-bottom: 1px solid #c2c2c2;
}

.remodal .form__group .input {
  color: #555555 !important;
}

.remodal .form__group .input::-webkit-input-placeholder {
  color: #555555;
}

.remodal .form__group .input:-ms-input-placeholder {
  color: #555555;
}

.remodal .form__group .input::-ms-input-placeholder {
  color: #555555;
}

.remodal .form__group .input::placeholder {
  color: #555555;
}

.remodal .form__group .icon-attach {
  display: block;
  position: absolute;
  right: 17px;
  top: 17px;
}

.remodal .btn_submit {
  color: #555555;
}

.remodal .btn-circle {
  border: 1px solid #838383;
}

.remodal .btn-circle:after {
  background: url(../img/svg/arrow-right-black-outline.svg) center/32px 32px no-repeat;
}

.remodal .home-order-title {
  border-bottom: 1px solid #c2c2c2;
}

.remodal .services__list {
  margin-top: 35px;
}

.remodal .services__list li a {
  border: 1px solid #d4d4d4;
  font-size: 12px;
  margin-bottom: 15px;
}

.remodal .services__list li a:hover {
  border: 1px solid #707070;
  color: #373737;
  opacity: 1;
}

.remodal .services__list li.active a {
  border: 1px solid #707070;
  color: #373737;
  opacity: 1;
}

.remodal_track-video {
  padding: 48px;
  max-width: 900px;
  background: #000000;
}

.remodal_track-video iframe {
  width: 100%;
  height: 500px;
}

.remodal_track-video .remodal-close {
  right: 18px;
  top: 18px;
}

.remodal-title {
  font-size: 24px;
  margin-bottom: 70px;
}

.remodal-title .icon {
  display: inline-block;
  vertical-align: bottom;
}

.file-label {
  color: #555555;
  padding: 25px 0;
  margin: 0;
  cursor: pointer;
  width: 100%;
  position: relative;
}

.remodal-close {
  width: 18px;
  height: 18px;
  right: 54px;
  top: 54px;
  left: auto;
  background: url(../img/svg/close-gray.svg) center center/contain no-repeat;
}

.p-modal-description {
  font-size: 20px;
  margin-bottom: 80px;
  line-height: 1.5;
}

.p-modal-description a {
  color: #5341ff;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header__content_desktop {
  padding: 43px 0;
}

.header__logo {
  display: block;
  width: 110px;
}

.header__mail {
  display: block;
  width: 50px;
  height: 50px;
  margin-left: auto;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
}

.header__mail::before, .header__mail::after,
.header__store::before, .header__store::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: center / contain no-repeat;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.h-list {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.header__mail::before {
  width: 15px;
  height: 15px;
  background-image: url("../img/svg/envelope-white.svg");
}

.header__store::before {
  width: 19px;
  height: 16px;
  background-image: url("../img/images/carte-white.svg");
}

.header__mail::after,
.header__store::after {
  width: 22px;
  height: 22px;
  background-image: url("../img/svg/smiley-face-white.svg");
  opacity: 0;
}

.header__mail:hover::before,
.header__store:hover::before {
  opacity: 0;
}

.header__mail:hover::after,
.header__store:hover::after{
  opacity: 1;
}

.header__content_desktop .nav__link:hover {
  color: #a7a7a7;
}

#p-home-main {
  padding-top: 75px;
}

.home-main__wrapper {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

.home-main__media {
  margin-bottom: 70px;
}

.home-main__media img {
  width: 100%;
}

.home-main__description {
  display: inline-block;
  font-size: 12px;
  line-height: 2.5;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.home-main__description img {
  width: 133px;
}

#p-home-about {
  padding-top: 155px;
}

.home-about__title {
  font-size: 120px;
  letter-spacing: -0.005em;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 100px;
}

.home-about__better {
  display: inline-block;
  width: 433px;
  height: 120px;
  position: relative;
}

.home-about__better-img {
  display: block;
  width: 100%;
  padding-bottom: 81.2933%;
  position: absolute;
  top: -25%;
  left: 0;
  font-size: 0;
  background: left center / auto 108% no-repeat;
}

.home-about__description {
  font-size: 15px;
  line-height: 2;
}

#p-home-projects {
  padding-top: 120px;
  padding-bottom: 60px;
}

.projects__target {
  display: block;
  width: 475px;
  max-width: 100%;
}

.projects__target:hover .projects__btn-year {
  -webkit-transform: translateX(20px) translateY(-50%);
  transform: translateX(20px) translateY(-50%);
}

.projects__target:hover .projects__btn-arrow {
  -webkit-transform: translateX(-10px) translateY(-50%);
  transform: translateX(-10px) translateY(-50%);
}

.projects__target_large {
  width: 760px;
}

.projects__img {
  height: 475px;
  background: center / cover no-repeat;
}

.projects__img_halyk {
  background-position: center top;
  background-size: 760px auto;
}

.projects__btn {
  border-bottom: 1px solid #fff;
  padding: 20px 0;
  position: relative;
  margin-bottom: 10px;
}

.projects__btn-year {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  border-bottom: 1px solid transparent;
}

.projects__btn-title {
  width: 100%;
  padding-left: 96px;
  padding-right: 42px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.projects__btn-arrow {
  /*width: 32px;*/
  /*height: 32px;*/
  width: 19px;
  height: 14px;
  /*background: url("../img/svg/arrow-right-white.svg") center/contain no-repeat;*/
  background-image: url("../img/svg/arrow-right-white-new.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.projects__arrow {
  display: block;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  position: relative;
}

.projects__arrow::before, .projects__arrow::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  border-radius: 50%;
}

.projects__arrow::after {
  border: 0;
  background: url(../img/svg/arrow-right-white-outline.svg) center/82px 82px no-repeat;
}

.projects__arrow:hover .projects__arrow-content {
  -webkit-transform: scale(1) translateZ(0);
  transform: scale(1) translateZ(0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.projects__arrow:hover .projects__arrow-text,
.projects__arrow:hover .icon {
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.projects__item {
  margin-bottom: 200px;
}

.projects__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.projects__item:nth-child(even) .projects__target {
  margin-left: auto;
}

.projects__item:nth-child(even) .projects__arrow:nth-child(odd) {
  -webkit-transform: translate(-10px, 10px);
  transform: translate(-10px, 10px);
}

.projects__item:nth-child(even) .projects__arrow:nth-child(even) {
  -webkit-transform: translate(10px, 10px);
  transform: translate(10px, 10px);
}

.projects__item:nth-child(even) .projects__arrow::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.projects__item:nth-child(odd) .projects__arrow::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.projects__item:first-child .projects__arrow::after, .projects__item:nth-last-child(2) .projects__arrow::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.projects__item:last-child {
  margin-bottom: 0;
}

.projects__item:last-child .projects__arrow::after {
  content: normal;
}

.projects__arrow-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  background-color: #d9461a;
  text-align: center;
  color: #ffffff;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: scale(0);
  transform: scale(0);
  font-size: 15px;
  border: 1px solid #fff;
}

.projects__arrow-content .icon {
  display: block;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.projects__arrow-text {
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.025em;
  margin-bottom: 1rem;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.projects__arrow-title {
  width: 100%;
  font-size: 22px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#p-home-review {
  padding-top: 40px;
}

.home-review-title {
  font-size: 24px;
  border-bottom: 1px solid #fff;
  padding-bottom: 25px;
  font-weight: 400;
}

.home-review {
  padding-top: 65px;
  padding-bottom: 65px;
}

.review__preview {
  width: 350px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
}

.review__preview::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.review__preview-media {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.review__preview-media-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  background: center / cover no-repeat;
}

.review__preview-media-inner.active {
  opacity: 1;
}

.review__list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.review__link {
  position: relative;
  padding: 23px 0;
}

.review__link.active .review__play {
  display: block;
}

.review__name {
  font-size: 24px;
}

.review__job {
  font-size: 14px;
  color: #a7a7a7;
}

.review__play {
  display: none;
  width: 152px;
  height: 134px;
  background: url("../img/play-animation-2.png") 0 0/auto 100% no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#p-home-services {
  padding-top: 120px;
}

.home-services {
  padding-left: 0;
  margin-bottom: 0;
  border-top: 1px solid #fff;
  list-style: none;
}

.home-services__link {
  display: block;
  font-size: 150px;
  font-weight: 300;
  border-bottom: 1px solid #fff;
  padding: 20px 0 30px;
  position: relative;
}

.home-services__link::after {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  right: 0;
  background: url("../img/svg/arrow-right-white-outline.svg") center/contain;
  -webkit-transform: translate(-40px, -50%);
  transform: translate(-40px, -50%);
  opacity: 0;
  -webkit-transition: opacity .2s, -webkit-transform .3s;
  transition: opacity .2s, -webkit-transform .3s;
  transition: transform .3s, opacity .2s;
  transition: transform .3s, opacity .2s, -webkit-transform .3s;
}

.home-services__link:hover::after {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
}

#p-home-advantages {
  padding-top: 120px;
}

.home-advantages__description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 110px;
}

.home-advantages__description span {
  font-size: 20px;
}

.home-advantages__description .icon {
  display: inline-block;
  width: 33px;
  height: 33px;
  vertical-align: text-bottom;
}

.home-advantages__description .icon-elephant {
  background-image: url("../img/emoji/emoji-elephant.png");
}

.home-advantages {
  margin-bottom: 100px;
}

.advantages__item.active .advantages__image {
  display: block;
}

.advantages__title {
  font-size: 24px;
  letter-spacing: 0.025em;
}

.advantages__value {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.advantages__image {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  display: none;
  background-position-x: 0;
}

.advantages__image_gesture {
  width: 246px;
  height: 218px;
  top: 64%;
  left: 47%;
  background: url(../img/hand-animation.png) 0 0/cover no-repeat;
}

.advantages__image_heart {
  width: 257px;
  height: 228px;
  top: 70%;
  left: 51%;
  background: url(../img/heart-animation.png) 0 0/cover no-repeat;
  background-size: cover;
}

.advantages__image_crown {
  width: 225px;
  height: 199px;
  top: 50%;
  left: 40%;
  background: url(../img/home-advantages-3-animate.png) 0 0/cover no-repeat;
  background-size: cover;
}

.home-advantages-youtube .link__title {
  font-size: 24px;
}

#p-home-order {
  padding-top: 30px;
  padding-bottom: 50px;
}

.home-order-title {
  font-size: 18px;
  border-bottom: 1px solid #fff;
  padding-bottom: 25px;
  font-weight: 700;
  margin-bottom: 40px;
}

.home-order-title .icon {
  display: inline-block;
  vertical-align: text-bottom;
  margin-left: 10px;
}

.inner__title {
  font-size: 72px;
  padding: 0 0 66px 0;
  border-bottom: 1px solid #fff;
  font-weight: normal;
}

.pt-90 {
  padding-top: 90px;
}

.p-90 {
  padding: 90px 0;
}

#p-page-main {
  padding-top: 210px;
}

.bottom__line {
  border-bottom: 1px solid #fff;
}

.letters__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.letters__list li {
  margin-right: 5px;
}

.letters__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 100%;
  font-size: 16px;
  font-family: 'Helvetica';
  -webkit-transition: 350ms;
  transition: 350ms;
}

.letters__list li a:hover {
  border: 1px solid #fff;
}

.letters__list li.active a {
  border: 1px solid #fff;
}

.services-section {
  padding: 45px 0;
  font-size: 18px;
}

.services__left {
  padding-right: 85px;
}

#p-inner-services {
  padding-top: 70px;
}

.services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 45px;
  margin-bottom: 20px;
}

.services__list li a {
  font-size: 18px;
  font-family: 'Helvetica';
  padding: 9px 17px;
  border: 1px solid #fff;
  border-radius: 50px;
  margin-right: 15px;
  margin-bottom: 30px;
  display: block;
  font-family: 'Helvetica';
  font-weight: normal;
}

.services__list li a:hover {
  opacity: 0.5;
}

.services__list li.active a {
  opacity: 0.5;
}

.p-services-description {
  margin-bottom: 50px;
  line-height: 1.8;
}

.p-services-description .icon {
  display: inline-block;
  position: relative;
  bottom: -15px;
  margin-left: 5px;
}

.p-services-description .icon.icon-bed {
  bottom: -8px;
  margin-left: -2px;
}

#p-agent-agent {
  border-bottom: 1px solid #fff;
}

#p-agent-agent .p-agent-title .icon {
  display: inline-block;
  vertical-align: middle;
}

.agent__list {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.agent__list li {
  margin-bottom: 50px;
}

.agent__list li a {
  font-size: 22px;
  font-family: 'Helvetica';
  font-weight: 300;
}

.agent__list li a:hover {
  opacity: 0.5;
}

.agent__list li a.active {
  opacity: 0.5;
}

.agent__list li.active a {
  opacity: 0.5;
}

.p-agent-title {
  font-size: 24px;
  font-family: 'Helvetica';
  margin-bottom: 40px;
  line-height: 1.8;
}

.p-agent-title span {
  font-size: 20px;
  margin-left: 23px;
}

.p-agent-title img {
  margin-left: 10px;
}

.p-agent-description {
  font-size: 20px;
  line-height: 1.8;
}

.p-agent-slog {
  font-size: 24px;
  font-family: 'Helvetica';
  margin-bottom: 40px;
  line-height: 1.8;
}

.page-advantages {
  margin: 90px 0;
}

#p-agent-industries {
  border-bottom: 1px solid #fff;
  padding: 95px 0;
}

#p-agent-industries .p-agent-title {
  margin-bottom: 0;
}

#p-agent-useful {
  padding: 90px 0;
  border-bottom: 1px solid #fff;
}

#p-agent-can {
  padding: 90px 0;
}

.home-team-title {
  font-size: 24px;
  font-family: 'Helvetica';
  font-weight: 400;
  padding: 0 0 28px 0;
  margin: 0 0 48px 0;
  border-bottom: 1px solid #fff;
}

.team__block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.team__item1 {
  margin-bottom: 58px;
  height: 654px;
}

.team__item3 {
  padding-left: 30px;
}

#p-agent-order {
  padding-top: 114px;
  padding-bottom: 52px;
}

.competitors__left {
  padding-right: 40px;
}

.competitors__left .p-agent-description {
  font-size: 18px;
  margin-bottom: 60px;
}

.competitors__left .p-agent-description .icon-swag {
  display: inline-block;
  vertical-align: bottom;
}

.competitors__right {
  padding-left: 45px;
}

#p-agent-competitors {
  padding-top: 57px;
  padding-bottom: 50px;
}

.competitors-content {
  border-top: 1px solid #fff;
  padding: 57px 0;
}

.company__block {
  margin-top: 60px;
}

.companies__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.companies__list li {
  margin-bottom: 18px;
}

.companies__list li a {
  font-size: 16px;
}

.companies__list li a:hover {
  color: #2627ea;
  border-bottom: 1px solid #2627ea;
}

#p-agent-form .p-agent-description {
  font-size: 18px;
}

#p-agent-form .p-agent-description .icon {
  display: inline-block;
  vertical-align: bottom;
}

#p-agent-form .btn {
  padding-left: 57px;
  opacity: 0.5;
}

.p-agent-form-left {
  padding-right: 138px;
}

.download__link {
  padding-bottom: 115px;
  font-size: 18px;
  position: relative;
  display: block;
  z-index: 2;
}

.download__link:after {
  content: '';
  width: 20px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
  background: url(../img/svg/arrow-right-white.svg) center/contain no-repeat;
}

.download__link.mobile {
  display: none;
}

.company__col {
  width: 33.3%;
  padding-right: 10px;
}

.created-img {
  max-width: 110px;
}

.p-contacts-title {
  font-size: 72px;
  font-weight: normal;
  margin-bottom: 17px;
}

.contacts__right {
  padding-left: 70px;
  position: relative;
}

.contacts__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contacts__list li {
  padding: 25px 0;
  border-bottom: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 98px;
}

#p-contacts-order {
  margin-top: 137px;
}

.p-contact {
  text-transform: uppercase;
  font-family: 'Helvetica';
  letter-spacing: 1px;
  font-weight: normal;
  color: #727272;
  display: inline-block;
  width: 150px;
  font-size: 14px;
}

.contact-data {
  font-size: 18px;
  display: inline-block;
  width: calc(100% - 160px);
  line-height: 1.5;
}

.contact-data:hover {
  opacity: 0.5;
}

#map {
  width: 100%;
  height: 520px;
  padding-right: 100px;
}

[class*="ymaps-2"][class*="-ground-pane"] {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.address-hover .contact-data {
  cursor: pointer;
}

.arrow-contacts__image {
  width: 310px;
  height: 217px;
  right: 100%;
  bottom: 135px;
  background: url(../img/arrow-animation.png) 0 0/cover no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 1;
  display: none;
  background-position-x: 0;
}

.arrow-contacts__image.active {
  display: block;
}

.p-portfolio-filter {
  border-bottom: 1px solid #fff;
}

.p-portfolio-filter .services__list {
  margin-top: 0;
}

.p-portfolio-filter .services__list li a {
  font-size: 12px;
}

.p-portfolio-filter .ui-selectmenu-button.ui-button {
  width: 94px;
  float: right;
}

.p-portfolio-filter .ui-selectmenu-icon.ui-icon {
  width: 9px;
  height: 7px;
  background: url("../img/svg/mult-white.svg") center/contain no-repeat;
  margin-top: 5px;
  margin-left: 5px;
}

#p-portfolio-projects {
  padding: 47px 0 0 0;
}

#p-portfolio-projects .projects__target {
  margin-bottom: 80px;
}

#p-portfolio-projects .projects__img {
  height: 350px;
}

.years__list {
  width: 10%;
}

.services-mob {
  display: none;
}

#p-career-scope {
  margin: 85px 0 70px 0;
}

.p-career-description {
  font-size: 18px;
  font-family: 'Helvetica';
  font-weight: normal;
  margin-bottom: 48px;
  line-height: 1.8;
}

.p-career-description .icon {
  display: inline-block;
  vertical-align: middle;
}

.p-career-description a {
  text-decoration: underline;
  color: #6c61ff;
}

.career__left-text {
  padding-left: 80px;
}

.p-career-image {
  height: 505px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 70px 0 85px 0;
}

.p-career-title {
  font-size: 60px;
  font-weight: normal;
  font-family: 'Helvetica';
  margin-bottom: 57px;
}

.career-generation-title {
  font-size: 18px;
  padding: 0 0 27px 0;
  border-bottom: 1px solid #fff;
}

.career-generation-title .icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 14px;
}

.generation__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.generation__list .btn {
  margin-top: 35px;
  font-size: 16px;
  color: #a7a7a7;
}

.generation__name {
  font-size: 24px;
  font-family: 'Helvetica';
  padding: 45px 0;
  border-bottom: 1px solid #646464;
  position: relative;
  cursor: pointer;
  line-height: 1;
}

.generation__name:after {
  content: '';
  display: block;
  width: 33px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: 0;
  background: url(../img/svg/arrow-right-white-outline.svg) center/contain no-repeat;
  -webkit-transform: translate(-40px, -50%);
  transform: translate(-40px, -50%);
  opacity: 0;
  transition: opacity .2s, -webkit-transform .3s;
  -webkit-transition: opacity .2s, -webkit-transform .3s;
  transition: transform .3s, opacity .2s;
  transition: transform .3s, opacity .2s, -webkit-transform .3s;
}

.generation__name:hover:after {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
}

.generation__name.open {
  border: none;
}

.generation__name.open:after {
  opacity: 1;
  -webkit-transform: translate(0, -50%) rotate(-90deg);
  transform: translate(0, -50%) rotate(-90deg);
}

.generation__content {
  display: none;
  padding: 100px 0 62px 282px;
  border-bottom: 1px solid #646464;
}

.generation__content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.generation__content ul li {
  position: relative;
  margin-bottom: 14px;
  font-size: 15px;
  font-family: 'Helvetica';
  font-weight: normal;
  line-height: 1.8;
  padding-left: 20px;
}

.generation__content ul li:after {
  content: '\2014';
  position: absolute;
  left: 0;
  top: 0;
}

.generation__row {
  margin-bottom: 75px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.generation-duties {
  margin-left: 90px;
}

.generation-duties p {
  line-height: 1.7;
}

#p-career-values {
  margin: 130px 0;
}

.p-career-item {
  padding-bottom: 42px;
  padding-top: 90px;
  border-bottom: 1px solid #646464;
}

.p-career-item:first-of-type {
  padding-top: 0;
}

.p-career-item .p-career-description {
  color: #c2c2c2;
}

.values__title {
  font-size: 30px;
  font-family: 'Helvetica';
  margin-bottom: 47px;
}

#p-career-resume {
  background-color: #fff;
  color: #101010;
  padding: 130px 0;
}

.resume-text {
  text-align: center;
  max-width: 670px;
  margin: 0 auto;
}

.resume-text .btn {
  color: #0f0f0f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.resume-text .btn-circle {
  border: 1px solid #2a2a2a;
  margin-left: 25px;
}

.resume-text .btn-circle:after {
  background: url(../img/svg/arrow-right-black-outline.svg) center/32px 32px no-repeat;
}

#p-career-office {
  margin-top: 85px;
}

.show-in-map {
  text-decoration: underline;
  line-height: 1.5;
}

.project-detail-images img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.project-detail {
  padding-top: 160px;
}

.project-detail__header {
  padding-bottom: 77px;
}

.project__name {
  text-align: center;
  font-size: 36px;
  margin-bottom: 25px;
}

.project__link {
  text-align: center;
  font-size: 18px;
  display: block;
}

.project__link:hover {
  opacity: 0.5;
}

.project__about {
  padding-top: 85px;
}

.project-member {
  margin-bottom: 35px;
  padding-right: 10px;
  font-size: 16px;
}

.project-navigation {
  display: block;
  font-size: 150px;
  font-weight: 300;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  padding: 80px 0;
  position: relative;
  margin-top: 90px;
  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;
}

.project-navigation .project-next {
  position: relative;
  display: block;
  width: 80px;
  height: 60px;
  -webkit-transition: .3s;
  transition: .3s;
}

.project-navigation .project-next::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: url("../img/svg/arrow-right-white-outline.svg") center/contain no-repeat;
}

.project-navigation .project-next:hover {
  -webkit-transform: scale(0.85294);
  transform: scale(0.85294);
  opacity: 0.5;
}

.project-navigation .project-prev {
  position: relative;
  display: block;
  width: 80px;
  height: 60px;
  -webkit-transition: .3s;
  transition: .3s;
}

.project-navigation .project-prev::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: url("../img/svg/arrow-right-white-outline.svg") center/contain no-repeat;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.project-navigation .project-prev:hover {
  -webkit-transform: scale(0.85294);
  transform: scale(0.85294);
  opacity: 0.5;
}

.founder__image {
  width: 335px;
}

.founder__title {
  font-size: 26px;
  margin-bottom: 45px;
}

.founder__text {
  font-size: 19px;
  line-height: 1.68;
  letter-spacing: 0.475px;
  font-weight: 300;
  margin-bottom: 45px;
}

.founder__name {
  font-size: 20px;
  line-height: 140%;
  font-style: normal;
}

.founder__name-title {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  line-height: 24px;
  margin-top: 5px;
}

.founder__block {
  padding: 0 0 65px 0;
  border-bottom: 1px solid #fff;
}

.founder__block .swiper {
  margin: auto;
  width: 100%;
}

.founder__block .swiper-slide {
  height: auto;
}

.founder__block .swiper-slide__inner {
  height: 100%;
}

.founder__right {
  display: flex;
  flex-direction: column;
}

.founder-slider__nav {
  display: flex;
  margin-top: 48px;
}

.founder-slider-prev,
.founder-slider-next {
  background: url(../img/svg/arrow-white-circle.svg) center/49px 49px no-repeat;
  width: 50px;
  height: 50px;
  position: static;
  margin-top: 0;
}
.founder-slider-prev {
  margin-right: 24px;
}

.swiper-button-next.founder-slider-next:hover {
  transform: translateX(0);
}
.swiper-button-prev.founder-slider-prev:hover {
  transform: translateX(0) rotate(180deg);
}

.agent__info {
  padding-top: 80px;
}

#p-agent-agent .p-agent-description {
  margin-bottom: 50px;
}

#p-agent-sphere {
  border-bottom: 1px solid #fff;
  padding: 70px 0;
}

#p-agent-useful-2 {
  padding: 90px 0;
}

#p-agent-industries-2 {
  padding: 95px 0;
  border-bottom: 1px solid #fff;
}

.goto__portfolio {
  font-size: 18px;
  margin-top: 57px;
  display: block;
}

.goto__portfolio:hover {
  opacity: 0.5;
}

.p-agent__form {
  margin-bottom: 120px;
}

.p-agent-title_mob {
  display: none;
}

.agent__top {
  padding-right: 100px;
}

.download-prez {
  position: relative;
}

.download-prez.active .download__image {
  display: block;
}

.download__image {
  width: 257px;
  height: 228px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/download-animation.png) 0 0/cover no-repeat;
  background-size: cover;
  position: absolute;
  -webkit-transform: translate(-60%, -50%);
  transform: translate(-60%, -50%);
  z-index: 1;
  display: none;
  background-position-x: 0;
}

.sound-page {
  overflow: hidden;
}

.sound-bg {
  background-color: #000000;
}

.music-sections {
  position: relative;
}

.music-sections .music-cover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 11;
  cursor: url(../img/svg/cursor-play-2.png), auto;
}

.music-sections .music-cover.played {
  cursor: auto;
  pointer-events: none;
  opacity: 0;
}

#sound-main {
  padding-top: 200px;
  height: 100vh;
}

.sound-main__title {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  font-size: 48px;
  color: #FFFFFF;
}

.sound-main__title span {
  font-size: 120px;
  display: block;
}

.sound-main__content {
  margin-top: 90px;
}

.sheet-lines {
  position: relative;
  height: 140px;
}

.sheet-lines.loaded .sheet-line {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.sheet-line {
  height: 1px;
  background-color: #4042A3;
  margin-bottom: 34px;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

.sheet-line:nth-of-type(1) {
  -webkit-transition: .7s ease;
  transition: .7s ease;
}

.sheet-line:nth-of-type(2) {
  -webkit-transition: .9s ease;
  transition: .9s ease;
}

.sheet-line:nth-of-type(3) {
  -webkit-transition: 1.1s ease;
  transition: 1.1s ease;
}

.sheet-line:nth-of-type(4) {
  -webkit-transition: 1.3s ease;
  transition: 1.3s ease;
}

.sheet-line:nth-of-type(5) {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
}

.sheet-line:last-child {
  margin-bottom: 0;
}

.sheet-notes__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 15px 15px;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  bottom: -15px;
  -webkit-transition: .6s;
  transition: .6s;
  z-index: 2;
}

.sheet-note {
  width: 50px;
  height: 50px;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sheet-note.show {
  opacity: 1;
  pointer-events: auto;
}

.sheet-note .sheet-note-circle {
  content: '';
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  cursor: pointer;
}

.sheet-note .sheet-note-circle:hover {
  background-color: #4042A3;
}

.sheet-note.play .sheet-note-circle {
  background-color: #4042A3;
}

.sheet-note.sheet-note-1 {
  bottom: 60px;
  left: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.sheet-note.sheet-note-2 {
  left: 175px;
  top: 24px;
  -webkit-transition: 1s;
  transition: 1s;
}

.sheet-note.sheet-note-3 {
  left: 386px;
  bottom: -11px;
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

.sheet-note.sheet-note-4 {
  right: 285px;
  bottom: 25px;
  -webkit-transition: 2s;
  transition: 2s;
}

.sheet-note.sheet-note-5 {
  right: 0;
  top: -9px;
  -webkit-transition: 2.5s;
  transition: 2.5s;
}

.sheet-note.anim .sheet-hover-line {
  height: 100%;
}

.sheet-note.slide .sheet__text {
  left: 2px;
}

.sheet__title {
  position: absolute;
  bottom: 61%;
  left: 24px;
  height: 154px;
}

.sheet-hover-line {
  width: 1px;
  height: 0;
  position: absolute;
  bottom: 0;
  background: #fff;
  -webkit-transition: .8s ease;
  transition: .8s ease;
  z-index: -1;
}

.sheet-slide {
  position: absolute;
  overflow: hidden;
  top: 0;
  width: 200px;
  height: 30px;
}

.sheet-slide.anim .sheet__text {
  left: 2px;
}

.sheet__text {
  position: absolute;
  top: 0;
  padding: 0px 6px;
  border-left: 4px solid #4042A3;
  left: -200px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .6s ease;
  transition: .6s ease;
}

.sheet__text p {
  white-space: nowrap;
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  color: #FFFFFF;
}

.sound-animation-area {
  height: 327px;
  padding: 90px 0 40px 0;
  position: relative;
}

.sound-animation-area:hover #tooltip {
  opacity: 1;
}

.sound-wave {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  top: -88px;
  object-fit: cover;
  height: 473px;
  z-index: -1;
}

.sound-wave.active {
  opacity: 1;
}

.sound-wave.sound-wave-anim {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.sound-wave.mobile {
  display: none;
}

#tooltip {
  opacity: 0;
  position: absolute;
  font-size: 12px;
  font-family: "Helvetica";
  color: #fff;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 10;
}

.btn__play-main {
  display: none;
  width: 81px;
  height: 81px;
  position: absolute;
  top: 81px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}

.main-equalizer {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid #fff;
  z-index: 9;
  cursor: pointer;
}

.main-equalizer .equalizer {
  opacity: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  right: 0;
  left: 0;
  width: 22px;
  height: 17px;
}

.main-equalizer .equalizer .sound-bar {
  width: 1.5px;
  -webkit-animation-name: sound2;
  animation-name: sound2;
}

.main-equalizer .equalizer .sound-bar:nth-child(1) {
  height: 10px;
  left: 0;
}

.main-equalizer .equalizer .sound-bar:nth-child(2) {
  left: 5px;
  height: 15px;
}

.main-equalizer .equalizer .sound-bar:nth-child(3) {
  left: 9px;
  height: 7px;
}

.main-equalizer .equalizer .sound-bar:nth-child(4) {
  left: 14px;
  height: 15px;
}

.main-equalizer .equalizer .sound-bar:nth-child(5) {
  left: 19px;
  height: 12px;
}

.main-equalizer.muted {
  background: url(../img/svg/play-blue.svg) center center/contain no-repeat;
  border: none;
}

.main-equalizer.muted .equalizer {
  opacity: 0;
  pointer-events: none;
}

#sound-question {
  padding-top: 39px;
  padding-bottom: 170px;
}

.sound-question__text {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  font-size: 64px;
  color: #FFFFFF;
  line-height: 1.4;
}

.sound-question__text.mobile {
  display: none;
}

#sound-about {
  padding-top: 200px;
  position: relative;
  padding-bottom: 175px;
}

.sound-about__title {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  font-size: 64px;
  color: #FFFFFF;
  margin-bottom: 22px;
  margin-left: 75px;
}

.sound-about__text {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  color: #FFFFFF;
  max-width: 341px;
  margin-left: auto;
  line-height: 1.3;
}

.sound-about-anim {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-56%);
  transform: translateY(-56%);
  left: -160px;
  height: 536px;
  width: 100%;
  z-index: -1;
}
.sound-about-anim img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sound-about__content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  z-index: 1;
}

/*.sound-about__content:hover .sound-about-gif {
  opacity: 1;
}*/

.sound-about__content:hover .sound-about-img {
  opacity: 0;
}

.sound-about-img {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 100%;
  max-width: 100%;
}

.sound-about-gif {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 100%;
  max-width: 100%;
  opacity: 1;
}

#sound-advantages {
  padding-top: 150px;
  padding-bottom: 40px;
}

.sound-advantages__title {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  font-size: 48px;
  color: #FFFFFF;
  margin-bottom: 90px;
}

.sound-advantages__image {
  width: 50%;
  margin-top: -233px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: -1;
  height: 900px;
}

.sound-advantages__image img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  left: 0;
}

.sound-advantages__image .advantages-sound-mob {
  display: none;
}

.sound-advantages__right {
  width: 50%;
  padding-left: 12px;
}

.sound-advantages__list {
  margin: 0;
  padding: 0;
  max-width: 633px;
  list-style: none;
  margin-left: 0px;
  padding-top: 3px;
}

.sound-advantages__list li {
  margin-bottom: 90px;
  position: relative;
  padding-left: 0px;
}

.sound-advantages__list li:before {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 6px;
}

.sound-advantages__list li:nth-of-type(1):before {
  background-color: #6DBFAE;
}

.sound-advantages__list li:nth-of-type(2):before {
  background-color: #7457E9;
  top: 10px;
}

.sound-advantages__list li:nth-of-type(3):before {
  background-color: #7457E9;
}

.sound-advantages__name {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.sound-advantages__text {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.4;
}

#sound-types {
  padding-top: 50px;
  padding-bottom: 90px;
}

.sound-types__title {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  font-size: 48px;
  color: #FFFFFF;
  margin-bottom: 97px;
  position: relative;
  z-index: 1;
}

.sound-types__block {
  width: calc(33.33% - 58px);
}
.sound-types__block img {
  transform: scale(0.8);
  width: 100%;
  height: 100%;
  margin-top: -10px;
}
.sound-types__block:first-child img {
  transform: rotate(-76deg) scale(0.8);
}
.sound-types__block:nth-child(2) img {
  transform: scale(0.8);
  margin-top: -28px;
}
.sound-types__block:last-child img {
  transform: scale(0.85);
  margin-top: -18px;
}
.sound-types__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sound-types__list li {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 23px;
  padding-left: 28px;
  position: relative;
}

.sound-types__list li:after {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
}

.sound-types__list li:nth-of-type(1):after {
  background-color: #5D21EB;
}

.sound-types__list li:nth-of-type(2):after {
  background-color: #6930F3;
}

.sound-types__list li:nth-of-type(3):after {
  background-color: #7B47FA;
}

.sound-types__list li:nth-of-type(4):after {
  background-color: #9062FE;
}

.sound-types__list li:nth-of-type(5):after {
  background-color: #8BE7FF;
}

.sound-types__list li:last-of-type:after {
  background-color: #6EE1FF;
}

.sound-types__anim {
  height: 347px;
  position: relative;
  overflow: hidden;
}

.sound-types__anim video {
  max-height: 100%;
  max-width: 100%;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  position: absolute;
  top: 0;
  left: 0;
}

.sound-types__anim-text {
  position: absolute;
  top: 33%;
  text-align: center;
  /*left: 0;*/
  left: -30px;
  right: 0;
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  color: #FFFFFF;
}

/*.sound-types__anim .sound-types__gif {
  opacity: 0;
}*/

.sound-types__anim.media video {
  -webkit-transform: rotate(-85deg) scale(1.2);
  transform: rotate(-85deg) scale(1.2);
}

.sound-types__anim.art video {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

#sound-run .sound-types__anim.art video {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sound-types__anim.art .sound-types__anim-text {
  top: 33%;
}

.sound-types__anim.science .sound-types__anim-text {
  left: -3px;
  top: 33%;
}

.sound-types__anim:hover .sound-types__gif {
  opacity: 1;
}

#sound-author {
  position: relative;
  padding-top: 80px;
  padding-bottom: 198px;
}
.mob-sd {
  display: none;
}
.sound-author__background-wr {
  height: 1px;
  width: 100%;
  position: relative;
}
.sound-author__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
}
.sound-author__background-2 {
  position: absolute;
  bottom: 538px;
  right: 0;
  height: 200px;
}
.sound-author__background img {
  width: 100%;
  object-fit: contain;
}

.sound-author__title {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  font-size: 78px;
  color: #FFFFFF;
  margin-bottom: 146px;
}

.sound-author__name {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  font-size: 64px;
  color: #FFFFFF;
  position: relative;
  max-width: 356px;
  margin-bottom: 53px;
}

.sound-author__name img {
  position: absolute;
  top: -50%;
  left: -79px;
  z-index: -1;
}

.sound-author__text {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 30px;
  line-height: 1.4;
}
.sound-author__block-text .sound-author__text:last-child {
  margin-bottom: 0;
}
.sound-author__block-text a {
  color: #7440E9;
}
.sound-author__info {
  max-width: 573px;
  margin-top: -72px;
}

.sound-author__image {
  width: 521px;
  height: 521px;
  border-radius: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.sound-author__text-left-1 {
  max-width: 686px;
  font-size: 48px;
  line-height: 62px;
}
.sound-author__text-right {
  margin-top: 50px;
  margin-left: auto;
  max-width: 564px;
  font-size: 18px;
  line-height: 23px;
}
.sound-author__text-left-2 {
  margin-top: 114px;
  max-width: 564px;
}
.sound-author__title-2 {
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 34px;
}
.sound-author__block {
  position: relative;
  margin-top: 400px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.sound-portfolio-container {
  max-width: 1300px;
  margin: 100px auto 0;
}

.sound-portfolio__title {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  color: #FFFFFF;/*
  margin-bottom: 150px;*/
  margin-bottom: 40px;
}

.sound-portfolio__item {
  display: block;
  margin-bottom: 250px;
  position: relative;
}
.sound-portfolio__col .sound-portfolio__item:last-child {
  margin-bottom: 10px;
}

.sound-portfolio__item > div {
  height: 100%;
}

.sound-portfolio__item:hover .sound-audio__poster {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.sound-portfolio__item:hover .equalizer {
  opacity: 1;
}

.sound-portfolio__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.sound-portfolio__col {
  width: 25%;
}

.sound-portfolio__col:nth-of-type(even) {
  padding-top: 153px;
}

.sound-portfolio__bottom {
  padding-left: 38px;
  min-height: 100px;
}

#tooltip-track {
  position: fixed;
  left: 0;
  top: -35px;
  width: 160px;
  height: 152px;
  margin: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: -1;
}

#tooltip-track img {
  display: block;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

#tooltip-track.show {
  opacity: 1;
}

.sound-audio__track {
  width: 158px;
  margin: 0 14px;
}

.sound-audio__track p {
  position: relative;
  z-index: 1;
}

.sound-audio__track img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.sound-audio__name {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.sound-audio__duration {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.sound-audio__poster {
  display: none;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: .5s;
  transition: .5s;
}

.btn__sound-play {
  margin-top: 16px;
  height: 44px;
  width: 44px;
  padding: 0;
}

.btn__sound-play.muted .icon {
  background-image: url("../img/svg/sound-stop.svg");
}

.equalizer {
  opacity: 0;
  width: 35px;
  height: 25px;
  position: absolute;
  left: 0;
}

.equalizer .sound-bar {
  width: 3px;
  height: 3px;
  background: #fff;
  -webkit-animation: sound 0ms -800ms linear infinite alternate;
  animation: sound 0ms -800ms linear infinite alternate;
  position: absolute;
  bottom: 1px;
}

.equalizer.muted .sound-bar {
  -webkit-animation: none;
  animation: none;
}

.sound-bar:nth-child(1) {
  left: 0px;
  height: 17px;
  -webkit-animation-duration: .71s;
  animation-duration: .71s;
}

.sound-bar:nth-child(2) {
  left: 8px;
  height: 25px;
  -webkit-animation-duration: .73s;
  animation-duration: .73s;
}

.sound-bar:nth-child(3) {
  left: 16px;
  height: 12px;
  -webkit-animation-duration: .77s;
  animation-duration: .77s;
}

.sound-bar:nth-child(4) {
  left: 24px;
  height: 25px;
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
}

.sound-bar:nth-child(5) {
  left: 32px;
  height: 20px;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

#sound-photos {
  padding-top: 75px;
}

.sound__swiper {
  cursor: url(../img/cursor-1.png), auto;
}

.sound__swiper-image {
  height: 574px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#sound-video {
  padding-top: 138px;
}

.sound__video {
  max-width: 1172px;
  height: 674px;
  margin: 0 auto;
  position: relative;
}

.sound__video .video__media {
  width: 100%;
  height: 100%;
  /* -o-object-fit: cover;
      object-fit: cover;*/
  -o-object-position: center center;
  object-position: center center;
}

.sound__video .iframe-wrapper {
  height: 100%;
}

.sound__video .video__link img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.sound-video__btn {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 70%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}

#sound-run {
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
}

#sound-run .sound-types__anim {
  max-width: 398px;
  margin: 0 auto;
}

#sound-run .sound-run-text {
  display: inline-block;
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  font-size: 36px;
  text-transform: uppercase;
  color: #FFFFFF;
  position: absolute;
  top: 55%;
  -webkit-animation: marquee 10s linear infinite;
  animation: marquee 10s linear infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  white-space: nowrap;
  overflow: hidden;
}

#sound-run .sound-run-text p {
  display: inline-block;
}

.sound-text-wrapper {
  overflow: hidden;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translate(-20%);
    transform: translate(-20%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translate(-20%);
    transform: translate(-20%);
  }
}

@-webkit-keyframes sound {
  0% {
    height: 3px;
  }
  50% {
    height: 25px;
  }
}

@keyframes sound {
  0% {
    height: 3px;
  }
  50% {
    height: 25px;
  }
}

@-webkit-keyframes sound2 {
  0% {
    height: 3px;
  }
  50% {
    height: 15px;
  }
}

@keyframes sound2 {
  0% {
    height: 3px;
  }
  50% {
    height: 15px;
  }
}

/* PRODUCTION FLUID ANIMATION */
.fluid-wr {
  position: relative;
  margin-bottom: 80px;
}
.fluid-wr-text {
  font-size: 62px;
  line-height: 140%;
  font-weight: 500;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.fluid-wr-text-t {
  width: 1100px;
  text-transform: uppercase;
}
.fluid-wr-text .blue {
  color: #2E69FF;
}
.fluid-anim-text-wr {
  position: relative;
  display: inline-block;
}
.fluid-t0 {
  width: 360px;
  display: inline-block;
}
.fluid-t1,
.fluid-t2,
.fluid-t3,
.fluid-t4 {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  animation: fluid-t1-anim 3s infinite;
}
.fluid-t2 {
  animation-delay: 0.75s;
}
.fluid-t3 {
  animation-delay: 1.5s;
}
.fluid-t4 {
  animation-delay: 2.25s;
}
@keyframes fluid-t1-anim {
  0% {
    visibility: visible;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: hidden;
  }
}
#fluid {
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(20px);
  filter: sepia(57%) saturate(1) hue-rotate(-22deg) grayscale(0.1) contrast(1) brightness(1.35);
}
.page-production {
  font-family: 'HelveticaNeueCyr';
}
.production__text-md {
  font-size: 48px;
  line-height: 130%;
  width: 820px;
}
.production__text-md span {
  color: #2E69FF;
}

.production__text-sm {
  font-size: 18px;
  line-height: 150%;
  margin: 60px 0 70px 50%;
  width: 470px;
  padding-left: 15px;
}
.production__text-container:last-child .production__text-sm {
  padding-right: 50px;
}
/*PRODUCTION INFINITY LINE*/
.production__infinity-line-wr {
  width: 100vw;
  overflow: hidden;
  position: relative;
  height: 400px;
  display: flex;
  text-align: center;
}
.production__infinity-line-text {
  font-weight: 500;
  font-size: 296px;
  line-height: 220px;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate3d(0, 100px, 0);
  transition: all 1.5s;
}
.production__infinity-line-text span {
  font-weight: 700;
  font-size: 107.25px;
  line-height: 1;
  display: block;
}
.production__infinity-line {
  display: flex;
  width: max-content;
  position: relative;
  margin: 0 0 30px 100vw;
}
.production__infinity-line-list {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  column-gap: 20px;
  width: max-content;
  padding-right: 20px;
  margin-bottom: 0;
  transform: translateX(100%);
  font-family: 'SegoeUIVF';
}
.production__infinity-line-list.animated {
  animation: scrolling-left 30s 0s linear infinite;
}
.production__infinity-line-list:last-child.animated {
  animation: scrolling-left2 30s 15s linear infinite;
}
@keyframes scrolling-left {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes scrolling-left2 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(-300%);
  }
}
.production__infinity-line-list li {
  border-radius: 75px;
  overflow: hidden;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-size: 35px;
  flex-shrink: 0;
}
.production__infinity-line-list li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.production__infinity-line-list .name-logo {
  padding: 26px 52px 34px 52px;
  border: 1.25px solid white;
  background: #050505;
}
.production__infinity-line-list .img-sm-logo {
  width: 163.5px;
}
.production__infinity-line-list .img-md-logo {
  width: 220px;
}
.production__infinity-line-list .blue-logo {
  padding: 26px 52px 34px 52px;
  background: #2E69FF;
}
.production__services .production__text-md {
  margin: 95px auto 40px auto;
  width: 100%;
}
.production__services-list-item {
  padding: 40px 0;
}
.production__services-list-item-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr ;
  font-size: 14px;
  letter-spacing: 0.56px;
  line-height: 150%;
}
.production__services-list-item-inner p:first-child {
  font-size: 32px;
  letter-spacing: 0.96px;
  line-height: 130%;
  margin-right: 20px;
}
.production__services-list-item-inner img {
  border-radius: 18px;
  overflow: hidden;
  height: 94px;
  width: 213px;
}
.production__services-list-item-text {
  padding-left: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  height: fit-content;
  font-size: 15.5px;
  line-height: 1.5;
}
.production__services-list-item-text.clamped {
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
.production__services-show-more {
  display: none;
}
.page-production #p-inner-services {
  font-family: 'Helvetica';
}
.page-production #p-home-order {
  padding-top: 100px;
  font-family: 'Helvetica';
}
.page-outstaffing .section-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  margin: 70px 0 60px 0;
}
.out-main-body {
  overflow: hidden;
}
.out-intro-wr {
  height: 160vh;
  position: relative;
}
.out-intro {
  position: sticky;
  top: 0;
  width: 100%;
  height: 80vh;
  background: url(../img/outstaffing.png) center/cover no-repeat;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 47.5px;
  line-height: 120%;
  margin-top: 136px;
}
.out-intro__circle {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vh;
  height: 100vh;
  left: 50%;
  top: 50%;
  min-height: 606px;
  min-width: 606px;
  transform: translate(-50%, -90%);
  transition: transform linear;
  z-index: -1;
  mix-blend-mode: color;
}
.out-intro__circle.seen {
  visibility: visible;
  background-image: url(../img/svg/outstaffing-circle.svg);
}
.out-intro .container.out-intro__text {
  position: static;
  padding: 0 15px;
  transform: unset;
  height: fit-content;
  width: 800px;
  opacity: 0;
  transition: opacity 1s 0.5s ease-in;
}
.out-intro__text br {
  display: none;
}
.out-intro__text span {
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1.5px white;
  text-stroke: 1.5px white;
  position: relative;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 130%;
}
.out-intro .container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 80vh;
}
.out-intro .imgs-container {
  position: relative;
  height: 100%;
}
.out-intro img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 69px;
  height: 69px;
  opacity: 0;
  transition: all ease-in-out 1.5s, opacity ease-in-out 1.5s 0.5s;
}
.out-intro img.xs {
  width: 53px;
  height: 53px;
}
.out-intro img.s {
  width: 62px;
  height: 62px;
}
.out-intro img.l {
  width: 78px;
  height: 78px;
}
.out-intro img.moved {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.out-intro .laravel {
  top: 15%;
  transition: all ease-in-out 1.5s 0.2s, opacity ease-in-out 1.5s 0.7s;
}
.out-intro .moved.laravel {
  top: 10%;
  left: 18%;
}
.out-intro .capacitor {
  top: 35%;
  transition: all ease-in-out 1.5s 0.5s, opacity ease-in-out 1.5s 1s;
}
.out-intro .moved.capacitor {
  top: 30%;
  left: 10%;
}
.out-intro .js {
  top: 20%;
}
.out-intro .moved.js {
  top: 15%;
  left: 38%;
}
.out-intro .cordova {
  top: 80%;
  transition: all ease-in-out 1.5s 0.2s, opacity ease-in-out 1.5s 0.7s;
}
.out-intro .moved.cordova {
  top: 85%;
  left: 73%;
}
.out-intro .ionic {
  top: 68%;
  transition: all ease-in-out 1.5s 0.35s, opacity ease-in-out 1.5s 0.85s;
}
.out-intro .moved.ionic {
  top: 73%;
  left: 87%;
}
.out-intro .figma {
  top: 75%;
  transition: all ease-in-out 1.5s 0.1s, opacity ease-in-out 1.5s 0.6s;
}
.out-intro .moved.figma {
  top: 80%;
  left: 10%;
}
.out-intro .photoshop {
  top: 88%;
  transition: all ease-in-out 1.5s 0.35s, opacity ease-in-out 1.5s 0.85s;
}
.out-intro .moved.photoshop {
  top: 93%;
  left: 26%;
}
.out-intro .illustrator {
  top: 70%;
  transition: all ease-in-out 1.5s 0.25s, opacity ease-in-out 1.5s 0.75s;
}
.out-intro .moved.illustrator {
  top: 76%;
  left: 29%;
}
.out-intro .react {
  top: 25%;
  transition-delay: 0.3s;
}
.out-intro .moved.react {
  top: 20%;
  left: 24%;
}
.out-intro .bitrix {
  top: 80%;
  transition: all ease-in-out 1.5s 0.3s, opacity ease-in-out 1.5s 0.8s;
}
.out-intro .moved.bitrix {
  top: 86%;
  left: 94%;
}
.out-intro .csharp {
  top: 25%;
  transition: all ease-in-out 1.5s 0.25s, opacity ease-in-out 1.5s 0.75s;
}
.out-intro .moved.csharp {
  top: 20%;
  left: 75%;
}
.out-intro .elastic {
  top: 35%;
  transition: all ease-in-out 1.5s 0.2s, opacity ease-in-out 1.5s 0.7s;
}
.out-intro .moved.elastic {
  top: 30%;
  left: 92%;
}
.out-intro .python {
  top: 39%;
  transition: all ease-in-out 1.5s 0.5s, opacity ease-in-out 1.5s 1s;
}
.out-intro .moved.python {
  top: 34%;
  left: 80%;
}
.out-definition {
  position: relative;
  margin: 180px auto 10px auto;
  font-size: 46px;
  line-height: 130%;
  text-align: center;
  height: 100%;
}
.out-definition-main {
  width: 934px;
  margin: auto;
  background: #000000;
  position: relative;
}
.out-definition span {
  color: #1C58F6;
}
.js-definition-1:hover,
.js-definition-2:hover {
  cursor: pointer;
}
.js-definition-1,
.js-definition-2 {
  white-space: nowrap;
}
.out-definition-1,
.out-definition-2 {
  position: absolute;
  bottom: 20px;
  left: 35%;
  font-size: 14px;
  line-height: 140%;
  text-align: left;
  padding: 20px;
  width: 510px;
  border-radius: 20px;
  transform: translateY(100%);
  background: rgba(21, 28, 47, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.45);
  background: rgba(21, 28, 47, 0.7);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.out-definition-2 {
  left: auto;
  right: 8%;
}
.out-definition-1.visible,
.out-definition-2.visible {
  visibility: visible;
  opacity: 1;
}
.out-definition sup {
  display: inline;
}
.out-info-wr {
  position: relative;
  height: 250vh;
}
@media (max-aspect-ratio: 9/10) {
  .out-info-wr {
    height: 200vh;
  }
}
.out-info {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
}
.out-info-1,
.out-info-2 {
  position: absolute;
  top: 22vh;
  left: 50%;
  transform: translate(-50%, 0%);
  height: 100vh;
  width: calc(100% - 30px);
  transition: opacity 0.8s ease, visibility 0.8s ease, top 1s ease;
  opacity: 1;
  visibility: visible;
  display: flex;
  flex-direction: column;
}
.out-info-1.hidden{
  opacity: 0;
  visibility: hidden;
  top: 15vh;
}
.out-info-2.hidden {
  opacity: 0;
  visibility: hidden;
  top: 29vh;
}
.out-info .container{
  position: relative;
  width: 100%;
  height: 100%;
}
.out-info-imgs-wr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
}
.out-info-imgs {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
.out-info-imgs .container {
  position: relative;
  padding: 0;
}
.out-info .light-1,
.out-info .light-2,
.out-info .light {
  position: absolute;
  z-index: -1;
  top: 25vh;
  left: 0;
  height: 1342px;
  width: 1875px;
  max-width: unset;
  transform: rotate(-3deg) scale(0) translate(-17%, -27%);
  transition: all 0s ease-out;
  transform-origin: -150px -150px;
}
.out-info .light-1.show,
.out-info .light-2.show {
  transition: all 1s ease-out;
  transform: rotate(-3deg) scale(1) translate(-17%, -27%);
}
.out-info .light-1 {
  background:  url(../img/svg/out-light-1.svg) top / cover no-repeat;
}
.out-info .light-2 {
  background:  url(../img/svg/out-light-2.svg) top / cover no-repeat;
}
.out-info-1.lightened .out-info__text-1,
.out-info-2.lightened .out-info__text-1,
.out-info-1.lightened .out-info__text-2,
.out-info-2.lightened .out-info__text-2 {
  opacity: 1;
  transition: all 1s ease-out 0.1s;
}
.out-info .grid-1 {
  position: absolute;
  top: 25vh;
  left: 0;
  width: 587px;
  aspect-ratio: 1/1;
  transform: translate(-15%, -40%);
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 250%);
  mask-size: cover;
  mask-position: center;
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  z-index: -1;
}
.out-info .grid-2 {
  position: absolute;
  top: 25vh;
  left: 50%;
  width: 587px;
  aspect-ratio: 1/1;
  transform: translate(-28%, 15%);
  z-index: -1;
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 250%);
  mask-size: cover;
  mask-position: center;
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
}
.out-info__text-1 {
  font-size: 30px;
  line-height: 130%;
  width: 852px;
  opacity: 0.3;
}
.out-info-2 .out-info__text-1 {
  width: 1020px;
}
.out-info__text-2 {
  font-size: 18px;
  line-height: 150%;
  margin: 40px 0 0 50%;
  opacity: 0.3;
}
.out-info-1 .out-info__text-2 {
  padding-right: 120px;
}
.out-info-2 .out-info__text-2 {
  padding-right: 80px;
}
.out-specialization ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 47px;
  margin-bottom: 190px;
  position: relative;
}
.out-specialization ul .grid-1,
.out-specialization ul .grid-2,
.out-specialization ul .grid-3 {
  width: 587px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-30%, -35%);
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 150%);
  mask-size: cover;
  mask-position: center;
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 150%);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
}
.out-specialization ul .grid-2 {
  left: auto;
  right: 0;
  transform: rotate(90deg) translate(20%, -10%);
}
.out-specialization ul .grid-3 {
  top: auto;
  bottom: 0;
  transform: translate(20%, 45%);
}
.out-specialization ul li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 28px;
  height: 220px;
  position: relative;
  overflow: hidden;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}
.out-specialization ul li .title {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}
.out-specialization ul li.dark-blue {
  backdrop-filter: blur(5.199999809265137px);
  border: 1px solid rgba(143, 174, 255, 0.23);
  background: rgba(28, 88, 246, 0.2);
  backdrop-filter: blur(2.3px);
  -webkit-backdrop-filter: blur(2.3px);
}

.out-specialization ul li.blue {
  background: #001595;
}
.out-specialization ul li.white {
  background: #E7EAF3;
  color: #031A9B;
}
.out-specialization ul li .circle-1,
.out-specialization ul li .circle-2 {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,88,246,0.2) 0%, rgba(28,88,246,0) 100%);
  position: absolute;
  top: -500px;
  left: 20px;
  filter: blur(100px);
}
.out-specialization ul li .circle-2 {
  top: auto;
  bottom: 20px;
}
.out-specialization ul > li:nth-of-type(1) .circle-2 {
  top: 50px;
  bottom: auto;
  left: -320px;
}
.out-specialization ul > li:nth-of-type(3) .circle-1 {
  top: -520px;
  left: -250px;
}
.out-specialization ul > li:nth-of-type(3) .circle-2 {
  top: auto;
  bottom: 50px;
  left: -320px;
}
.out-specialization ul > li:nth-of-type(2),
.out-specialization ul > li:nth-of-type(5),
.out-specialization ul > li:nth-of-type(8) {
  transition-delay: 0.3s;
}
.out-specialization ul > li:nth-of-type(3),
.out-specialization ul > li:nth-of-type(6),
.out-specialization ul > li:nth-of-type(9) {
  transition-delay: 0.6s;
}
.out-tech .container {
  position: relative;
}
.out-tech .circle-1,
.out-tech .circle-2,
.out-tech .circle-3 {
  width: 620px;
  height: 620px;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: -470px;
  opacity: 0.85;
}
.out-tech .circle-2 {
  width: 720px;
  height: 720px;
  top: 200px;
  right: -470px;
  left: auto;
}
.out-tech .circle-3 {
  top: 500px;
  right: -370px;
  left: auto;
}
.out-tech .block {
  margin: 64px 0 0 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  justify-content: space-between;
  gap: 76px;
}
.out-tech .block > p {
  justify-self: flex-end;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8);
}
.out-tech ul {
  display: grid;
  justify-self: flex-end;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 600px;
}
.out-tech ul.extended {
  grid-template-columns: 1fr 2fr;
}
.out-tech .card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 180px;
  height: 180px;
  aspect-ratio: 1 / 1;
  padding: 30px;
  font-size: 18px;
  line-height: 130%;
}
.out-tech ul.extended .card {
  width: 100%;
  height: 275px;
  padding: 20px;
  justify-content: flex-start;
  aspect-ratio: unset;
}
.out-tech ul.extended .card img {
  margin-bottom: 10px;
}
.out-tech ul.extended .card .text,
.out-tech ul.extended .card .text-x {
  font-weight: 300;
  font-size: 11px;
  line-height: 130%;
  letter-spacing: 0.02em;
  margin-top: 10px;
}
.out-tech ul.extended .card .text-x {
  font-size: 13px;
}
.out-tech ul.extended .inner-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  margin-bottom: 35px;
  width: 100%;
  justify-content: space-between;
}
.out-tech .card img {
  height: 88px;
}
.out-clients {
  margin-top: 30px;
  overflow: hidden;
}
.out-clients__slider2-container {
  display: none;
}
.out-clients__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 88px;
}
.out-clients__info-img-container {
  height: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.out-clients__about {
  line-height: 150%;
  margin-top: 10px;
  display: none;
  text-align: center;
  width: 100%;
}
.out-clients__about p {
  width: 320px;
  text-align: center;
  margin: auto;
}
.out-clients__about.nomad p {
  width: 306px;
}
.out-clients__about.shown {
  display: block;
}
.out-clients__about img {
  width: 223px;
  margin-bottom: 47px;
}
.out-clients__about.nomad img {
  width: 132px;
}
.out-clients__about.kerimbayev img {
  width: 217px;
}
.out-clients__about.bat img {
  width: 146px;
}
.out-clients__about.santo img {
  width: 180px;
}
.out-clients__about.stada img {
  width: 126px;
}
.out-clients__left-wr .rellax {
  transition: transform 0.45s 0s;
}
.out-clients__stars {
  position: absolute;
  width: 88%;
  height: auto;
  top: 0;
  left: 50%;
  transform: translate(-48%, -100%);
  transition: all 0s ease-in;
}
.out-clients__stone {
  background: url("../img/stone.png") right bottom/contain no-repeat;
  width: 580px;
  height: 230px;
  filter: drop-shadow(-166px 73px 26px rgba(0, 0, 0, 0.5));
  margin: 0 auto -5px auto;
}
.out-clients__left-wr {
  position: relative;
  width: 100%;
}
.out-clients__circle-wr,
.out-clients__circle2-wr {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  animation: outCircleAnim ease-in-out 10s infinite;
}
.out-clients__circle {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 25%)!important;
  width: 130%;
  height: 130%;
  filter: blur(160px);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}
.out-clients__circle.animating,
.out-clients__circle-2.animating{
  animation: fadeInOut ease-in-out 0.8s!important;
}

@keyframes fadeInOut {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes outCircleAnim {
  0% { transform: scale(1); }
  25% { transform: scale(0.9); }
  50% { transform: scale(1.1); }
  75% { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.out-clients__circle-2 {
  display: none;
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}
.out-clients__info-text-container {
  display: none;
  font-size: 18px;
  line-height: 120%;
  margin-top: 43px;
  padding-left: 10px;
}
.out-clients__info-text-container.shown {
  display: block;
}
.out-clients__info-text-container p {
  margin-bottom: 16px;
}
#nomad .out-clients__stars {
  filter: brightness(0) saturate(100%) invert(70%) sepia(54%) saturate(2804%) hue-rotate(319deg) brightness(101%) contrast(101%);
}
#nomad .out-clients__circle {
  background: #E74013;
  transform: translate(-50%, 30%)!important;
  width: 100%;
  height: 100%;
}
#nomad .out-clients__info-text-container span {
  color: #E74013;
}
#kerimbayev .out-clients__stars {
  filter: brightness(0) saturate(100%) invert(86%) sepia(91%) saturate(1255%) hue-rotate(313deg) brightness(99%) contrast(104%);
}
#kerimbayev .out-clients__circle {
  background: radial-gradient(circle, rgba(0,10,255,1) 0%, rgba(0,10,255,0) 66%);
  filter: blur(70px);
  transform: translate(-65%, 18%)!important;
  width: 145%;
  height: 145%;
}
#kerimbayev .out-clients__circle-2 {
  display: block;
  background: radial-gradient(circle, rgb(255,168,0) 0%, rgba(0,10,255, 0.2) 55%);
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  filter: blur(80px);
  transform: translate(20%, 20%);
}
#kerimbayev .out-clients__info-text-container span {
  color: #FF9C00;
}
#bat .out-clients__stars {
  filter: brightness(0) saturate(100%) invert(69%) sepia(54%) saturate(512%) hue-rotate(99deg) brightness(96%) contrast(88%);
}
#bat .out-clients__circle {
  background: radial-gradient(circle, rgba(31,78,154,1) 0%, rgba(31,78,154,0) 66%);
  transform: translate(-50%, 27%)!important;
  width: 160%;
  height: 160%;
  filter: unset;
}
#bat .out-clients__info-text-container span {
  color: #3381FF;
}
#siemens .out-clients__circle {
  background: radial-gradient(circle, rgba(23,153,145,1) 0%, rgba(2,10,46,1) 100%);
  transform: translate(-50%, 15%)!important;
  width: 110%;
  height: 110%;
  filter: blur(100px);
}
#siemens .out-clients__info-text-container span {
  color: #06F2CF;
}
#santo .out-clients__stars {
  filter: brightness(0) saturate(100%) invert(66%) sepia(48%) saturate(2691%) hue-rotate(337deg) brightness(96%) contrast(94%);
}
#santo .out-clients__circle {
  background: radial-gradient(circle, rgba(45,43,106,1) 0%, rgba(0,0,0,1) 100%);
  filter: blur(110px);
  transform: translate(-50%, 30%)!important;
  width: 150%;
  height: 150%;
}
#santo .out-clients__info-text-container span {
  color: #EE8332;
}
#stada .out-clients__stars{
  filter: brightness(0) saturate(100%) invert(91%) sepia(91%) saturate(169%) hue-rotate(305deg) brightness(112%) contrast(103%);
}
#stada .out-clients__circle {
  background: radial-gradient(circle, rgba(214,0,88,1) 0%, rgba(0,93,185,0.6) 80%);
  filter: blur(100px);
  transform: translate(-50%, 20%)!important;
  width: 98%;
  height: 100%;
}
#stada .out-clients__info-text-container span {
  color: #D60058;
}
.out-clients__slider-container {
  position: relative;
}
.out-clients__slider-container .swiper-button-next,
.out-clients__slider-container .swiper-button-prev {
  width: 48px;
  height: 48px;
  right: 15px;
  transition: transform .3s, -webkit-transform .3s;
}
.out-clients__slider-container .swiper-button-prev {
  left: 15px;
}
.out-clients__slider-container .swiper-button-next:hover .btn-circle,
.out-clients__slider-container .swiper-button-prev:hover .btn-circle {
  -webkit-transform: scale(0.85294);
  transform: scale(0.85294);
}
.out-clients__slider-container .swiper-button-next .btn-circle,
.out-clients__slider-container .swiper-button-prev .btn-circle {
  width: 48px;
  height: 48px;
  transition: transform .3s, -webkit-transform .3s;

}
.out-clients__slider-container .swiper-button-next .btn-circle:after,
.out-clients__slider-container .swiper-button-prev .btn-circle:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/svg/arrow-right-white2.svg) center / 30px 24px no-repeat;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}
.swiper.out-clients__slider {
  width: calc(100% - 60px*2 - 15px*2);
  margin-left: calc(60px + 15px);
}
.out-clients__slider .swiper-slide {
  background: #1A1A1A;
  opacity: 0.5;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.out-clients__slider .swiper-slide.active {
  opacity: 1;
}
@media(hover: hover) and (pointer: fine) {
  .out-clients__slider .swiper-slide:hover {
    opacity: 1;
    cursor: pointer;
  }
}
.out-clients__slider .swiper-slide img {
  max-width: 70%;
  max-height: 56%;
}

@media (max-width: 1480px) {
  .sound-advantages__image {
    margin-top: -226px;
    height: 800px;
  }
  .sound-advantages__list li {
    margin-bottom: 56px;
  }
}
@media (max-width: 1300px) {
  .fluid-wr-text {
    font-size: 60px;
  }
}
@media (max-width: 1200px) {
  .fluid-wr-text-t {
    width: 100%;
  }
  .out-info-1 .out-info__text-1,
  .out-info-2 .out-info__text-1 {
    width: 100%;
  }
  .out-info__text-2 {
    margin: 40px 0 0 calc(33% + 23px);
  }
  .out-info .grid-1,
  .out-info .grid-2 {
    width: 487px;
  }
  .out-specialization ul .grid-1,
  .out-specialization ul .grid-2,
  .out-specialization ul .grid-3 {
    width: 487px;
  }
  .out-tech .block > p {
    justify-self: flex-start;
  }
  .out-clients__info-img-container {
    height: 490px;
  }
  .out-clients__stone {
    width: 480px;
  }
  .swiper.out-clients__slider {
    width: calc(100% - 54px*2 - 15px*2);
    margin-left: calc(54px + 15px);
  }
}
@media (max-height: 800px) {
  #sound-main {
    padding-top: 19vh;
  }
  .sound-main__title {
    font-size: 40px;
  }
  .sound-main__title span {
    font-size: 90px;
  }
  .sound-main__content {
    margin-top: 60px;
  }
}

.footer {
  padding: 130px 0;
}

.footer__logo-img {
  width: 95px;
  margin: 5px 0 15px;
}

.footer__logo-description {
  font-size: 14px;
}

.footer__title {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer__item_gap {
  margin-bottom: 65px;
}

.footer__item a:hover {
  color: #a7a7a7;
}

.footer__item a:hover .email-img {
  opacity: 0.5;
}

.footer__item_email .footer__title {
  margin-bottom: 0;
}

.email-img {
  vertical-align: sub;
  max-width: 123px;
}

.footer__location-description {
  margin-bottom: 45px;
}
.sound-wave-gif {
  opacity: 0;
}
.sound-wave-img {
  transform: scale(1.2);
}

.sent-img {
  object-fit: fill;
  width: 98px;
  height: 98px;
}
.sent-title {
  margin-top: 35px;
  font-weight: 700;
  font-size: 32px;
  line-height: 37px;
  color: #000000;
}
.sent-text {
  margin-top: 25px;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #000000;
}
.sent-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.remodal-fos-sent {
  padding: 200px 50px 210px;
  max-width: 910px;
}
.remodal-fos-sent .remodal-close {
  top: 107px;
  right: 96px;
  width: 24px;
  height: 24px;
}

.remodal-unsubscribe {
  padding: 280px 50px 280px;
  max-width: 910px;
}
.unsubscribe-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.remodal-unsubscribe .remodal-close {
  top: 107px;
  right: 96px;
  width: 24px;
  height: 24px;
}
.remodal-unsubscribe .sent-title {
  margin: 0;
}


/*# sourceMappingURL=desktop.css.map */

/*header*/
.nav__store {
  position: relative;
}
.nav__store:after {
  content: '';
  position: absolute;
  width: 26px;
  height: 12px;
  background: url("../img/images/new.svg") center / contain no-repeat;
  right: -18px;
  top: -11px;
}
.header__store {
  display: none;
  width: 50px;
  height: 50px;
  margin-left: auto;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
}
.nav__link {
  font-size: 13px;
}
.header__store-count {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: center;
  border-radius: 50%;
  background-color: #FF0000;
  width: 16px;
  height: 16px;
  font-size: 10px;
  line-height: 14px;
  color: white;
}
.nav_mobile  .nav__store:after {
  right: -14px;
}
.header__content_mobile .header__store.link-icon {
  width: 29px;
  height: 29px;
  align-self: baseline;
}
.header__content_mobile .header__store::before {
  width: 11px;
  height: 9px;
}
.header__content_mobile .header__store-count {
  width: 10px;
  height: 10px;
  font-size: 6px;
  line-height: 10px;
}
.header__content_mobile .header__store::after {
  width: 13px;
  height: 13px;
}
.well {
  position: relative;
  transition: 1s cubic-bezier(0.5, 0, 0.5, 1);
}
.panel {
  position: relative;
}

.home-main__flex-container {
  display: flex;
  /*column-gap: 40px;*/
  justify-content: space-between;
}
.home-main__video {
  width: 68.89%;
}
.home-main__video video {
  /*width: 700px;*/
  width: 100%;
  /*height: 394px;*/
  display: flex;
}
.mx-n-35 {
  margin-left: -35px;
  margin-right: -35px;
}
.px-35 {
  padding-left: 35px;
  padding-right: 35px;
}
.home-main__column-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  width: 27.4%;
  /*flex: 1 1;*/
}
.home-main__column-block .projects__btn-title {
  padding-left: 0;
}
.home-main__column-block .projects__target {
  width: 100%;
}
h2.home-about__title {
  font-weight: 400;
  font-size: 66px;
  line-height: 140%;
  color: #FFFFFF;
}
h2.home-about__title span.blue {
  color: #1C58F6;
}
.home-main__title {
  font-weight: 500;
  font-size: 50px;
  line-height: 136%;
  color: #FFFFFF;
}
.home-main__text {
  margin-top: 8px;
  font-weight: 400;
  font-size: 16px;
}
.home-about__title [data-scrolldown] {
  transition: opacity 1s, transform 1s;
}
.home-word-change-wr {
  display: inline-block;
  position: relative;
}
.home-word-change-t0 {
  width: 360px;
  display: inline-block;
}
.home-word-change-t1,
.home-word-change-t2,
.home-word-change-t3,
.home-word-change-t4,
.home-word-change-t5,
.home-word-change-t6,
.home-word-change-t7 {
  position: absolute;
  top: 0;
  left: 0;
  width: max-content;
  visibility: hidden;
  animation: home-word-change-anim 5.25s infinite;
}
.home-word-change-t1 {
  animation-delay: 0.75s;
}
.home-word-change-t2 {
  animation-delay: 1.5s;
}
.home-word-change-t3 {
  animation-delay: 2.25s;
}
.home-word-change-t4 {
  animation-delay: 3s;
}
.home-word-change-t5 {
  animation-delay: 3.75s;
}
.home-word-change-t6 {
  animation-delay: 4.5s;
}
@keyframes home-word-change-anim {
  0% {
    visibility: visible;
  }
  14.3% {
    visibility: hidden;
  }
  28.6% {
    visibility: hidden;
  }
  42.86% {
    visibility: hidden;
  }
  57.14% {
    visibility: hidden;
  }
  71.43% {
    visibility: hidden;
  }
  85.71% {
    visibility: hidden;
  }
  100% {
    visibility: hidden;
  }
}
.projects__link {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 177px;
  height: 177px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  transition: border-color .2s;
}
.projects__link-icon {
  display: block;
  width: 76px;
  height: 76px;
  mask: url("../img/svg/arrow-down-blue.svg") center / contain no-repeat;
  -webkit-mask: url("../img/svg/arrow-down-blue.svg") center / contain no-repeat;
  background: #FFFFFF;
  transition: all .2s;
}
.projects__link:hover {
  border-color: #1C58F6;
}
.projects__link:hover .projects__link-icon {
  background: #1C58F6;
}
.projects__item:nth-child(even) .projects__link:hover .projects__link-icon {
  transform: rotate(-90deg);
}
.projects__item:nth-child(odd) .projects__link:hover .projects__link-icon {
  transform: rotate(90deg);
}
a.home-services__link::after {
  width: 79px;
  height: 62px;
  background: url("../img/svg/arrow-right-white2.svg") center/contain;
}
span.btn-circle::after {
  background: url("../img/svg/arrow-right-white2.svg") center/30px 24px no-repeat;
}
.projects__link-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #FFFFFF;
  white-space: nowrap;
  transition: opacity .2s .1s, color .2s;
}
.projects__link-text.hidden-text {
  opacity: 0;
  transition: opacity .2s 0s, color .2s;
}
.projects__link:hover .projects__link-text {
  color: #1C58F6;
  opacity: 0;
  transition: opacity .2s 0s, color .2s;
}
.projects__link:hover .projects__link-text.hidden-text {
  opacity: 1;
  transition: opacity .2s .1s, color .2s;
}
.news__dd-container {
  width: 98px;
}
.news__block {
  margin-top: 144px;
  padding-right: 100px;
}
.news-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}
.select2-container--dd-theme .select2-selection--single {
  padding: 8px 18px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 45px;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.select2-container--dd-theme .select2-selection--single .select2-selection__rendered {
  padding: 0;
  padding-bottom: 4px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}
.select2-container--dd-theme .select2-selection--single .select2-selection__arrow {
  margin-left: 6px;
  position: static;
  flex-shrink: 0;
  width: 14px;
  height: 8px;
  background: url("./../img/svg/arrow-bottom-white.svg") center/contain no-repeat;
  transition: transform 0.2s;
}
.select2-container--dd-theme .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container--dd-theme.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: rotate(180deg);
}
.select2-container--dd-theme .select2-results__option.select2-results__option--selected {
  background-color: #050505;
  color: #fff;
}
.select2-container--dd-theme .select2-dropdown {
  background-color: #050505;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 13px;
}
.select2-container--dd-theme .select2-results__options {
  padding: 10px 0;
}
.select2-container--dd-theme .select2-results__option {
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 18px;
  transition: color .1s;
}
.select2-container--dd-theme .select2-results__option:not(.select2-results__option--selected):hover {
  color: rgba(255, 255, 255, 0.5);
}
.select2-container--open .select2-dropdown--below {
  transform: translateY(-1px);
}
.select2-container--open .select2-dropdown--above {
  transform: translateY(1px);
}
.news__list {
  margin-top: 58px;
}
.news__item {
  padding-right: 40px;
}
.news__item + .news__item {
  margin-top: 40px;
}
.news__item a {
  display: block;
  width: fit-content;
  cursor: pointer;
}
.news__item a:hover .news__item-title {
  color: rgba(255, 255, 255, 0.6);
}
.news__item a:hover .news__item-text {
  color: rgba(255, 255, 255, 0.3);
}
.news__item-title {
  font-weight: 400;
  font-size: 22px;
  line-height: 25px;
  transition: color .1s;
}
.news__item-text {
  margin-top: 6px;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.5);
  transition: color .1s;
}
.remodal-wrapper.fullscreen {
  padding: 0;
  overflow: visible;
}
.remodal-wrapper.fullscreen::after {
  display: none;
  content: none;
}
.news-modal {
  margin: 0;
  padding: 150px 0 170px 0;
  max-width: 100%;
  height: 100%;
  border-radius: 0;
  background-color: #050505;
  color: #fff;
  overflow: auto;
}
.modal-news-title {
  font-weight: 700;
  font-size: 54px;
  line-height: 62px;
}
.modal-news-subTitle {
  margin-top: 18px;
  font-weight: 400;
  font-size: 26px;
  line-height: 140.49%;
  color: rgba(255, 255, 255, 0.7);
}
.content-row {
  margin-top: 100px;
}
.news__avatar {
  width: 139px;
  height: 139px;
  border-radius: 50%;
  background: center / cover no-repeat;
}
.news__avatar-1 {
  background-image:  url("../img/news/news-avatar-1.png");
}
.news__avatar-2 {
  background-image:  url("../img/news/news-avatar-2.png");
}
.news__avatar-3 {
  background-image:  url("../img/news/news-avatar-3.png");
}
.news__avatar-4 {
  background-image:  url("../img/news/news-avatar-4.png");
}
.news__avatar-5 {
  background-image:  url("../img/news/news-avatar-5.png");
}
.news__avatar-6 {
  background-image:  url("../img/news/news-avatar-6.png");
}
.news__text-list {
  margin: 0;
  margin-top: 80px;
  padding-right: 130px;
}
.news__text-item + .news__text-item {
  margin-top: 20px;
}
.news__title-s {
  font-weight: 400;
  font-size: 14px;
  line-height: 129.99%;
  color: rgba(255, 255, 255, 0.6);
}
.news__text-s {
  margin-top: 7px;
  font-weight: 400;
  font-size: 16px;
  line-height: 129.99%;
  color: rgba(255, 255, 255, 0.9);
}
.news__text-top {
  font-weight: 400;
  font-size: 24px;
  line-height: 139.99%;
}
.news__text-top .text-purple {
  color: #1C58F6;
}
.news__text-main {
  margin-top: 80px;
  font-weight: 400;
  font-size: 22px;
  line-height: 141.49%;
  color: #F2F2F2;
}
.news__text-main.m-option {
  margin-top: 40px;
}
.news-modal .container {
  position: relative;
}
.news-modal .remodal-close {
  right: 0;
  top: -70px;
  width: 27px;
  height: 27px;
  mask: url(../img/svg/close-gray.svg) center center/contain no-repeat;
  -webkit-mask: url(../img/svg/close-gray.svg) center center/contain no-repeat;
  background: #fff;
}
.news__media-wrapper {
  margin-top: 100px;
  position: relative;
  width: 100%;
  height: 402px;
}
.news__button_play {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  border-radius: 50%;
  z-index: 2;
  background: url("../img/svg/news-play.svg") center / contain no-repeat;
  cursor: pointer;
}
.news__media-text {
  margin-top: 35px;
}
.news__text-m {
  font-weight: 400;
  font-size: 16px;
  line-height: 140.49%;
  color: rgba(255, 255, 255, 0.7);
}
.news__link {
  color: #7085EF;
  text-decoration: underline;
  transition: color .2s;
}
.news__link:hover {
  color: #BA28DF !important;
}
.d-table-none {
  display: none;
}
.news__media-source {
  margin-top: 10px;
  font-weight: 300;
  font-size: 12px;
  line-height: 131%;
  color: rgba(255, 255, 255, 0.6);
  transition: color .1s;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
}
.news__media-source:hover {
  color: rgba(255, 255, 255, 0.8);
}
.news__media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news__media-wrapper .video__media {
  width: 100%;
  height: 100%;
  -o-object-position: center center;
  object-position: center center;
}
.news__media-wrapper .iframe-wrapper {
  height: 100%;
}
.news__text-list-2 {
  margin-top: 40px;
  padding-left: 66px;
  width: 76%;
}
.news__text-point {
  position: relative;
  font-weight: 400;
  font-size: 22px;
  line-height: 141.49%;
  color: #F2F2F2;
  list-style: none;
}
.news__text-point + .news__text-point {
  margin-top: 10px;
}
.news__text-point::after {
  content: '';
  position: absolute;
  left: -27px;
  top: 14px;
  width: 10px;
  height: 10px;
  background-color: #8E5AFF;
  border-radius: 50%;
}
.swiper .news__media-wrapper {
  margin: 0;
}
.news-slide-1-1 {
  background: url("../img/news/news-slide-1-1.png") center / cover no-repeat;
}
.news-slide-1-2 {
  background: url("../img/news/news-slide-1-2.png") center / cover no-repeat;
}
.news-slide-1-3 {
  background: url("../img/news/news-slide-1-3.png") center / cover no-repeat;
}
.swiper.news-slider {
  width: 100%;
}
.news__slider-nav {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-slider .swiper-pagination {
  padding: 0 36px;
  position: static;
  width: auto;
}
.news-slider .swiper-button-next,
.news-slider .swiper-button-prev {
  position: static;
  width: 30px;
  height: 24px;
  margin-top: 0;
}
.news-slider .swiper-button-prev {
  background: url("../img/svg/slider-arrow-left.svg") center / contain no-repeat;
  transform: none;
}
.news-slider .swiper-button-next {
  background: url("../img/svg/slider-arrow-right.svg") center / contain no-repeat;
}
.news-slider .swiper-button-next:hover,
.news-slider .swiper-button-prev:hover{
  transform: none;
}
.news-slider.swiper {
  margin-top: 100px;
}
.swiper.news-slider {
  height: auto;
}
p.p-career-description a {
  color: #7085EF;
  text-decoration: underline;
  transition: color .2s;
}
p.p-career-description a:hover {
  color: #BA28DF !important;
}
a.download__link {
  margin-bottom: 115px;
  padding: 0;
  width: fit-content;
}
a.download__link:after {
  margin-left: 12px;
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 16px;
  background: url(../img/images/arrright.svg);
  transition: transform .3s;
}
a.download__link:hover:after {
  transform: translateX(50%);
}
.goto__portfolio:hover {
  opacity: 1;
}
.goto__portfolio > i {
  transition: transform .3s;
}
.goto__portfolio:hover > i {
  transform: translateX(50%);
}

/* HOME_PAGE SLIDER */
.home_video_swiper_frame {
  overflow-x: clip;
  overflow-x: hidden;
  position: relative;
}
.home-main__video_container {
  padding-left: clamp(25px, 5vw, 70px);
  padding-right: clamp(25px, 5vw, 70px);
}
.home_swiper_button {
  width: clamp(25px, 4vw, 50px);
  height: clamp(25px, 4vw, 50px);
  background-color: white;
  transition: background-color .3s;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.home_swiper_button:hover {
  background-color: #1C58F6;
}
.swiper-button-prev.home_swiper_prev {
  transform: none;
  -webkit-mask-image: url("../img/svg/home_swiper_prev.svg");
  mask-image: url("../img/svg/home_swiper_prev.svg");
  left: 0;
}
.swiper-button-next.home_swiper_next {
  transform: none;
  right: 0;
  -webkit-mask-image: url("../img/svg/home_swiper_next.svg");
  mask-image: url("../img/svg/home_swiper_next.svg");
}
.pagination_box {
  position: relative;
  width: 100%;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination_box .swiper-pagination {
  position: static;
  line-height: 0.5;
}
.pagination_box .swiper-pagination-bullet {
  background: white;
  transition: width .4s, opacity .3s;
  border-radius: 27px;
}
.pagination_box .swiper-pagination-bullet-active {
  width: 21px;
}
.home_swiper_button:hover {
  transform: none !important;
}


