:root {
    --white: #ffffff;
    --white-transparent: rgba(255, 255, 255, 0.6);
    --background-white: #f9fafb;
    --footer-white: #fafafb;
    --light-gray: #f2f7fa;
    --placeholder-gray: #adbcc4;
    --dark-purple: #110626;
    --dark-purple-transparent: rgba(17, 6, 38, 0.95);
    --purple: #2d274c;
    --purple-transparent: rgba(45, 39, 76, 0.5);
    --hot-pink: #ed0973;
    --hot-pink-transparent: rgba(237, 9, 115, 0.5);
    --light-blue: #ccdde8;
    --ocean-blue: #34bbda;
    --button-ocean-blue: #15a0c0;
    --webmoney-blue: #036cb5;
    --capitalist-green: #93bc37
}

@font-face {
    font-family: Lato;
    src: url(/themes/shakesv3/fonts/Lato/Lato-Regular.ttf) format("truetype");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: Lato;
    src: url(/themes/shakesv3/fonts/Lato/Lato-Italic.ttf) format("truetype");
    font-style: italic;
    font-weight: 400
}

@font-face {
    font-family: Lato;
    src: url(/themes/shakesv3/fonts/Lato/Lato-Bold.ttf) format("truetype");
    font-style: normal;
    font-weight: 700
}

@font-face {
    font-family: Lato;
    src: url(/themes/shakesv3/fonts/Lato/Lato-Black.ttf) format("truetype");
    font-style: normal;
    font-weight: 900
}

* {
    -webkit-appearance: none
}

.body, .html {
    height: 100%
}

.body {
    min-width: 320px;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: Lato, Arial, Helvetica, sans-serif
}

.body__inner {
    flex: 1 0 auto
}

.sprite-wrap {
    height: 0;
    width: 0;
    position: absolute;
    visibility: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px 15px;
    box-sizing: border-box;
    z-index: 500;
    transition: background-color .3s, box-shadow .3s, padding .5s, opacity .3s
}

.header_minimize {
    padding: 20px 15px;
    background-color: #110626;
    box-shadow: 0 10px 15px -7px rgba(0, 0, 0, .6), inset 0 -10px 15px -5px rgba(31, 11, 71, .5)
}

.header__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 320px;
    margin: 0 auto
}

.shakes-logo {
    flex-shrink: 0;
    width: 250px;
    height: 30px;
}

.header__button, .menu__button, .social__button {
    padding: 0;
    border: none;
    background-color: transparent;
    box-sizing: content-box;
    cursor: pointer
}

.header__button {
    flex-shrink: 0;
    margin-left: 10px;
}

.header__button-icon {
    width: 30px;
    height: 30px;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    min-width: 320px;
    padding: 40px 15px;
    background: linear-gradient(to bottom, var(--dark-purple) 0, var(--dark-purple-transparent) 25%, transparent 100%);
    box-sizing: border-box;
    z-index: -1;
    transform: translateY(-100%);
    transition: padding .3s
}

.menu_active {
    transform: translateY(0);
    z-index: 1000
}

.menu_minimize {
    padding: 20px 15px
}

.menu__header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 320px;
    margin: 0 auto 50px auto
}

.menu__button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-left: 10px
}

.menu__button-item {
    position: relative;
    width: 30px;
    height: 3px;
    background-color: transparent
}

.menu__button-item::after, .menu__button-item::before {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 50px;
    box-shadow: 0 0 5px 2px rgba(255, 255, 255, .3)
}

.menu__button-item::before {
    transform: rotate(45deg)
}

.menu__button-item::after {
    transform: rotate(-45deg)
}

.menu__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 30px;
    font-weight: 700
}

.menu__link {
    position: relative;
    display: block;
    padding: 15px 0;
    margin: 15px 0
}

.menu__link:active, .menu__link:link, .menu__link:visited {
    color: var(--white);
    text-decoration: none
}

.menu__link:hover::before {
    width: 100%;
    box-shadow: 0 0 10px 2px rgba(237, 9, 115, .5)
}

.menu__link::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: var(--hot-pink);
    border-radius: 20px;
    transition: .2s
}

.wave {
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 10
}

.wave_reverse {
    transform: scale(-1, -1)
}

.wave_top-outside {
    top: -39px
}

.wave_top-inside {
    top: -1px
}

.wave_bottom-inside {
    bottom: -1px
}

.wave_bottom-outside {
    bottom: -39px
}

.wave__path {
    -webkit-animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
    -webkit-animation-delay: -6s;
    animation-delay: -6s;
    -webkit-animation-duration: 12s;
    animation-duration: 12s
}

@-webkit-keyframes move-forever {
    0% {
        transform: translate3d(90px, 0, 0)
    }
    100% {
        transform: translate3d(-85px, 0, 0)
    }
}

@keyframes move-forever {
    0% {
        transform: translate3d(90px, 0, 0)
    }
    100% {
        transform: translate3d(-85px, 0, 0)
    }
}

.anchor {
    position: absolute
}

.anchor_advantage {
    top: -60px
}

.anchor_prize {
    top: -220px
}

.anchor_feedback {
    top: -100px
}

.anchor_conf {
    top: 570px
}

.anchor_gallery {
    top: -120px
}

.rellax-item {
    position: absolute;
}

.section-1 {
    position: relative;
    padding: 100px 15px 200px 15px;
    background: url("/themes/shakesv3/shakes-pro/images/section-1-bg-mobile.jpg") center bottom no-repeat;
    background-size: cover;
    overflow: hidden;
    z-index: 50;
}

.section-1__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 50
}

.info {
    position: relative;
    color: var(--white);
    text-align: center
}

.info__text,
.info__title {
    font-weight: 900;
    text-transform: uppercase;
}

.info__text {
    font-size: 30px;
}

.info__title {
    margin: 0;
    font-size: 46px;
    white-space: nowrap;
}

.info__slogan {
    position: relative;
    margin-top: 30px;
    font-size: 16px;
    font-style: italic
}

.info__slogan::before {
    position: absolute;
    content: '';
    top: -15px;
    left: 50%;
    width: 40px;
    height: 3px;
    background-color: var(--ocean-blue);
    border-radius: 20px;
    transform: translateX(-50%)
}

.section-1__form {
    height: 1075px
}

.social {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
    font-size: 16px;
    font-weight: 700;
}

.social__link {
    display: flex;
    align-items: center
}

.social__link:active, .social__link:hover, .social__link:link, .social__link:visited {
    color: var(--white);
    text-decoration: none
}

.social__item:first-child {
    margin-bottom: 10px
}

.social__subinfo {
    padding: 0;
    margin: 0;
    font-size: 14px;
    text-align: center;
    color: var(--white);
}

.social__icon {
    width: 35px;
    height: 35px;
    margin-right: 7px;
}

.card {
    position: relative;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 21px 57px -23px #22033b;
    background-color: var(--white);
    border-radius: 10px
}

.card__inner {
    border-radius: inherit
}

.card__header {
    position: relative;
    box-sizing: border-box;
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
    background-color: var(--light-gray)
}

.card__title {
    padding: 15px 0;
    color: var(--purple);
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--white);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px
}

.card__title_section-1::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    width: 35px;
    height: 3px;
    border-radius: 5px;
    background-color: var(--ocean-blue);
    transform: translateX(-50%)
}

.card__content {
    box-sizing: border-box;
    position: relative;
    background-color: var(--white);
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit
}

.form {
    background-color: var(--white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px
}

.form__inner {
    padding: 20px 20px 0 20px
}

.form__input-wrap {
    display: flex;
    flex-direction: column
}

.form__input-group {
    margin-bottom: 20px
}

.form__input-content {
    position: relative;
    display: flex;
    align-items: center
}

.form__input-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    display: inline-block;
    width: 20px;
    height: 20px;
    z-index: 10;
    transform: translateY(-50%)
}

select.form__input {
    color: var(--placeholder-gray)
}

.form__input {
    width: 100%;
    height: 40px;
    padding: 0 0 0 40px;
    border: none;
    font-size: 16px;
    font-family: inherit;
    color: var(--purple);
    background-color: var(--light-gray);
    border-radius: 5px;
    box-sizing: border-box;
    outline: 0;
    -webkit-appearance: none
}

.form__input:focus {
    box-shadow: 0 0 0 2px var(--ocean-blue), 0 0 0 2px var(--ocean-blue);
    -webkit-animation: input-flash .8s forwards;
    animation: input-flash .8s forwards
}

@-webkit-keyframes input-flash {
    to {
        box-shadow: 0 0 50px 25px transparent, 0 0 0 2px var(--ocean-blue)
    }
}

@keyframes input-flash {
    to {
        box-shadow: 0 0 50px 25px transparent, 0 0 0 2px var(--ocean-blue)
    }
}

.form__input::-moz-placeholder {
    color: var(--placeholder-gray)
}

.form__input:-ms-input-placeholder {
    color: var(--placeholder-gray)
}

.form__input::-ms-input-placeholder {
    color: var(--placeholder-gray)
}

.form__input::placeholder {
    color: var(--placeholder-gray)
}

.form__footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: var(--light-gray);
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit
}

.form__button {
    padding: 10px 25px;
    border: none;
    outline: 0;
    font-size: 20px;
    font-family: inherit;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(to right, var(--ocean-blue), var(--button-ocean-blue));
    border-radius: 60px;
    box-shadow: 0 18px 60px -5px rgba(52, 187, 218, .8);
    box-sizing: content-box;
    cursor: pointer
}

.errorMessage {
    position: absolute;
    left: 0;
    bottom: -15px;
    color: red;
    font-size: 9px
}

.errorMessage#RegistrationForm_password_em_ {
    line-height: 8px;
    position: relative;
    margin-top: -12px;
}

.errorMessage#Profile_skype_em_ {
    position: relative;
    bottom: -2px;
    margin-bottom: -15px;
}

.form small {
    font-size: x-small;
    color: var(--placeholder-gray);
    width: 100%;
    text-align: center
}

.form small a {
    font-size: x-small;
    color: var(--ocean-blue);
    text-decoration: none
}

.grecaptcha-badge {
    visibility: hidden
}

.comet {
    width: 248px;
    height: 85px;
    background: url("/themes/shakesv3/shakes-pro/images/parallax/comet.png") no-repeat;
    background-size: contain;
}

.satellite {
    width: 127px;
    height: 99px;
    background: url("/themes/shakesv3/shakes-pro/images/parallax/satellite.png") no-repeat;
    background-size: contain;
}

.satellite-1 {
    width: 348px;
    height: 271px;
    background: url("/themes/shakesv3/shakes-pro/images/parallax/satellite-1.png") no-repeat;
    background-size: contain;
}

.airship {
    width: 144px;
    height: 82px;
    background: url("/themes/shakesv3/shakes-pro/images/parallax/airship.png") no-repeat;
    background-size: contain;
}

.planet-violet {
    width: 150px;
    height: 150px;
    background: url("/themes/shakesv3/shakes-pro/images/parallax/planet-violet.svg") no-repeat;
    background-size: contain;
}

.planet-orange {
    width: 32px;
    height: 32px;
    background: url("/themes/shakesv3/shakes-pro/images/parallax/planet-orange.svg") no-repeat;
    background-size: contain;
}

.planet-pink {
    width: 140px;
    height: 89px;
    background: url("/themes/shakesv3/shakes-pro/images/parallax/planet-pink.svg") no-repeat;
    background-size: contain;
}

.planet-red {
    width: 123px;
    height: 123px;
    background: url("/themes/shakesv3/shakes-pro/images/parallax/planet-red.svg") no-repeat;
    background-size: contain;
}

.planet-purple {
    width: 160px;
    height: 114px;
    background: url("/themes/shakesv3/shakes-pro/images/parallax/planet-purple.svg") no-repeat;
    background-size: contain;
}

.planet-blue {
    width: 130px;
    height: 78px;
    background: url("/themes/shakesv3/shakes-pro/images/parallax/planet-blue.svg") no-repeat;
    background-size: contain;
}

.satellite_section-1,
.airship_section-1,
.planet-violet_section-1,
.m-1-1_section-1,
.m-3_section-1,
.m-5_section-1,
.m-7_section-1 {
    display: none;
}

.comet_section-1 {
    top: 125px;
    left: 40px;
    width: 160px;
    height: 55px;
    z-index: 30
}

.planet-orange_section-1 {
    top: 310px;
    right: 20px;
    z-index: 40
}

.m-2_section-1 {
    top: 35px;
    right: 0;
    width: 15px;
    height: 15px;
    z-index: 60;
}

.m-4_section-1 {
    top: 390px;
    right: -15px;
    width: 30px;
    height: 26px;
}

.m-6_section-1 {
    top: 280px;
    left: 10px;
    width: 52px;
    height: 31px;
    z-index: 40;
}

.section-2 {
    position: relative;
    padding-bottom: 20px;
    background-color: var(--background-white);
    z-index: 100
}

.section-2__inner {
    position: relative;
    width: 100%;
    height: 150vw;
    min-height: 461px;
    margin: 0 auto;
    background: url("/themes/shakesv3/shakes-pro/images/section-2-bg-mobile.png") center no-repeat;
    background-size: 100vw auto;
    color: var(--white);
    z-index: 50;
}

.section-2__title {
    padding-top: 17vw;
    margin: 0;
    font-size: 30px;
    text-align: center;
}

.section-2__info-group {
    padding: 0;
    margin: 0;
    font-size: 12px;
    list-style: none;
}

.section-2__info {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.section-2__info_manager {
    top: 19%;
    left: 36%;
}

.section-2__info_test {
    top: 33%;
    left: 10%;
}

.section-2__info_terms {
    top: 29%;
    right: 3%;
}

.section-2__info_geo {
    top: 50%;
    left: 39%;
}

.section-2__info_approve {
    top: 50%;
    left: 8%;
}

.section-2__info_gifts {
    top: 46%;
    right: 13%;
}

.section-2__info_call {
    bottom: 16%;
    left: 22%;
}

.section-2__info_ui {
    bottom: 12%;
    right: 20%;
}

.section-2__info-icon {
    width: 10vw;
    min-width: 32px;
    max-width: 60px;
    height: 10vw;
    min-height: 32px;
    max-height: 60px;
    margin: 10px 0;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2)) drop-shadow(0 0 10px rgba(237, 45, 135, 0.7)) drop-shadow(0 0 20px rgba(237, 45, 135, 0.5));
}

.section-2__info-text {
    font-size: max(1em, min(4em, 3vw));
    font-weight: bold;
    text-align: center;
}

.section-2__info-text_sub {
    font-size: 10px;
    font-weight: normal;
    font-style: italic;
    color: var(--white-transparent);
}

.section-2__info-text_geo {
    margin-bottom: 3px;
}

.m-5-1_section-2,
.m-8_section-2 {
    display: none;
}

.planet-orange_section-2 {
    top: 450px;
    left: 10px;
    width: 40px;
    height: 40px;
    z-index: 60;
}

.planet-pink_section-2 {
    bottom: 100px;
    right: 10px;
    width: 70px;
    height: 44px;
    z-index: 60;
}

.m-4-1_section-2 {
    bottom: 0;
    right: 25px;
    width: 25px;
    height: 22px;
    z-index: 60;
}

.m-5-2_section-2 {
    bottom: 60px;
    left: -30px;
    width: 80px;
    height: 80px;
    z-index: 60;
}

.section-3 {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 220px 0 110vw 0;
    background: url("/themes/shakesv3/shakes-pro/images/section-3-bg-mob.jpg") center bottom no-repeat;
    background-size: cover;
    z-index: 150;
}

.section-3__inner {
    position: relative;
    z-index: 50
}

.section-3__link {
    display: block;
    max-width: 200px
}

.section-3__link:active, .section-3__link:hover, .section-3__link:link, .section-3__link:visited {
    text-decoration: none;
    color: var(--white)
}

.section-3__title {
    margin: 0;
    text-align: center;
    font-size: 30px
}

.section-3__gopro {
    bottom: -270px;
    left: -50px;
    width: 60px;
    height: 48px;
    background: url("/themes/shakesv3/shakes-pro/images/gopro.png") no-repeat;
    background-size: contain;
    z-index: 40;
}

.section-3__galaxy {
    top: -140px;
    left: -50px;
    width: 90px;
    height: 114px;
    background: url("/themes/shakesv3/shakes-pro/images/galaxy.png") no-repeat;
    background-size: contain;
    z-index: 40;
}

.section-3__iwatch-blue {
    bottom: -90px;
    left: -50px;
    width: 80px;
    height: 95px;
    background: url("/themes/shakesv3/shakes-pro/images/iwatch-blue.png") no-repeat;
    background-size: contain;
}

.section-3__laptop {
    top: -180px;
    left: 100px;
    width: 110px;
    height: 115px;
    background: url("/themes/shakesv3/shakes-pro/images/laptop.png") no-repeat;
    background-size: contain;
    z-index: 50;
    transform: translateX(-50%);
}

.section-3__iphone {
    top: -120px;
    right: -40px;
    width: 70px;
    height: 107px;
    background: url("/themes/shakesv3/shakes-pro/images/iphone.png") no-repeat;
    background-size: contain;
}

.section-3__iwatch-pink {
    bottom: -70px;
    right: -50px;
    width: 90px;
    height: 85px;
    background: url("/themes/shakesv3/shakes-pro/images/iwatch-pink.png") no-repeat;
    background-size: contain;
    z-index: 60;
}

.section-3__gamepad {
    bottom: -300px;
    right: -40px;
    width: 110px;
    height: 87px;
    background: url("/themes/shakesv3/shakes-pro/images/gamepad.png") no-repeat;
    background-size: contain;
    z-index: 8;
    transform: rotate(30deg);
}

.section-3__imac {
    bottom: -210px;
    left: 0;
    width: 105px;
    height: 94px;
    background: url("/themes/shakesv3/shakes-pro/images/imac.png") no-repeat;
    background-size: contain;
    z-index: 60;
}

.section-3__airpods {
    bottom: -190px;
    right: -20px;
    width: 70px;
    height: 94px;
    background: url("/themes/shakesv3/shakes-pro/images/airpods.png") no-repeat;
    background-size: contain;
    z-index: 40;
}

.section-3__cars {
    position: absolute;
    bottom: -11%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 320px;
    transform: translateX(-50%);
    z-index: 150;
}

.section-3__car {
    flex-shrink: 0;
}

.section-3__car_mini {
    width: 41vw;
    max-width: 193px;
    min-width: 131px;
    z-index: 50;
    transform: translate(70%, -35%);
}

.section-3__car_porshe {
    width: 63vw;
    max-width: 310px;
    min-width: 201px;
    z-index: 100;
}

.section-3__car_bmw {
    width: 47vw;
    max-width: 223px;
    min-width: 150px;
    z-index: 50;
    transform: translate(-60%, -40%)
}

.planet-red_section-3,
.planet-blue_section-3,
.m-5_section-3,
.m-5-2_section-3 {
    display: none;
}

.section-4 {
    position: relative;
    z-index: 100;
    background-color: var(--background-white);
    color: var(--purple)
}

.section-4__inner {
    position: relative;
    max-width: 360px;
    padding: 70px 15px 20px 15px;
    margin: 0 auto;
    z-index: 50
}

.section-4__title {
    margin: 0;
    font-weight: 900
}

.section-4__title_feedback {
    font-size: 30px;
    text-transform: uppercase
}

.section-4__feedback {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px
}

.section-4__feedback-head {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.section-4__image-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    flex-shrink: 0
}

.section-4__image {
    width: 100%;
    height: 100%;
    position: absolute;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .2);
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity .2s;
    z-index: 10
}

.section-4__image_active {
    opacity: 1
}

.section-4__image-quotes {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 20px;
    height: 18px;
    z-index: 50;
}

.section-4__image-quotes_partners {
    right: auto;
    left: 10px
}

.section-4__feedback-swiper {
    width: 100%
}

.swiper-feedback {
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.swiper-feedback__paragraph {
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.6;
    opacity: .7
}

.swiper-feedback__user {
    display: flex;
    align-items: flex-end
}

.swiper-feedback__user_partners {
    justify-content: flex-end
}

.swiper-feedback__user-name {
    margin-right: 15px;
    font-size: 20px;
    font-weight: 700
}

.swiper-feedback__user-position {
    padding: 0 10px 3px 10px;
    border-radius: 20px;
    font-size: 15px;
    color: var(--white);
    background-color: var(--ocean-blue)
}

.swiper-thumbs {
    width: 130px;
    padding: 10px 5px;
    margin-left: auto;
    margin-right: 0;
    box-sizing: border-box
}

.swiper-thumbs_partners {
    margin-left: 0;
    margin-right: auto
}

.swiper-feedback .swiper-slide {
    background-size: cover;
    background-position: center;
    padding: 0
}

.swiper-button-next, .swiper-button-prev {
    width: 40px;
    height: 40px
}

.swiper-button-next::after, .swiper-button-prev::after {
    width: 24px;
    height: 12px;
    background-image: url(/themes/shakesv3/shakes-pro/images/arrow-gray.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

.swiper-thumbs .swiper-slide {
    height: 55px;
    padding: 0;
    opacity: .4;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: -2px 3px 4px 0 rgba(0, 0, 0, .1);
    transition: opacity .3s
}

.swiper-thumbs .swiper-slide:hover {
    opacity: 1;
    cursor: pointer
}

.swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1
}

.swiper-footer {
    margin-top: 15px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.swiper-feedback__pagination {
    display: flex;
    justify-content: center;
    align-items: center
}

.swiper-feedback__pagination_partners {
    order: 1
}

.swiper-feedback__pagination .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    width: auto;
    margin: 0 5px;
    font-size: 20px;
    color: rgba(45, 39, 76, .5)
}

.swiper-feedback__pagination .swiper-pagination-current {
    font-size: 30px;
    font-weight: 700;
    color: #2d274c
}

.swiper-feedback__pagination .swiper-pagination-current, .swiper-feedback__pagination .swiper-pagination-total {
    margin: 0 3px
}

.swiper-button-next, .swiper-button-prev {
    position: static;
    transform: translateY(0);
    outline: 0
}

.swiper-pagination {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.swiper-pagination-bullet {
    width: 4px;
    height: 11px;
    margin: 0 4px;
    border-radius: 5px
}

.swiper-pagination-bullet-active {
    width: 7px;
    height: 30px;
    transform: translateY(5px)
}

.m-1-2_section-4_1 {
    display: none;
}

.m-1-2_section-4 {
    top: 51%;
    left: 50%;
    width: 35px;
    height: 28px;
    transform: scale(-1, 1);
}

.section-5 {
    position: relative;
    background: var(--background-white) url("/themes/shakesv3/shakes-pro/images/map.png") center 130px no-repeat;
    background-size: 140%;
    z-index: 100;
}

.section-5__inner {
    position: relative;
    padding: 80px 15px 100px 15px;
    margin: 0 auto;
    z-index: 50
}

.section-5__head {
    position: relative;
    margin-bottom: 40px
}

.section-5__label  {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 280px;
    height: 37px;
    background: url("/themes/shakesv3/shakes-pro/images/section-5-label.png") center no-repeat;
    background-size: contain;
    transform: translateX(-50%);
}

.section-5__title {
    margin: 0;
    font-size: 30px;
    font-weight: 900;
    color: var(--purple);
    text-align: center
}

.section-5__gradient {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--background-white));
    z-index: 10
}

.gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: 190px;
    grid-gap: 15px;
    justify-items: center
}

.gallery__thumb {
    width: 100%;
    height: 100%;
    margin: 0;
    border: 5px solid var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 19px -13px rgba(0, 0, 0, .67);
    box-sizing: border-box
}

.gallery__thumb-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover
}

.satellite-1_section-5,
.m-1-2_section-5,
.m-5_section-5,
.m-5_section-5_1,
.m-5-2_section-5,
.m-6-1_section-5,
.m-7_section-5,
.m-9_section-5,
.m-10_section-5 {
    display: none;
}

.section-6 {
    position: relative;
    background: url("/themes/shakesv3/shakes-pro/images/section-6-bg-mob.jpg") center bottom no-repeat;
    background-size: cover;
    overflow: hidden;
}

.section-6__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    margin: 0 auto;
    z-index: 50
}

.section-6__label {
    display: none
}

.form__button_section-6 {
    position: relative;
    text-transform: uppercase;
    z-index: 100
}

.form__button_section-6:active, .form__button_section-6:hover, .form__button_section-6:link, .form__button_section-6:visited {
    text-decoration: none;
    color: var(--white)
}

.social_section-6 {
    margin: 40px 0 0 0
}

.m-11_section-6,
.m-4_section-6,
.m-2_section-6,
.m-6_section-6 {
    display: none;
}

.planet-purple_section-6 {
    bottom: 165px;
    right: 20px;
    width: 80px;
    height: 49px;
    opacity: 0.5;
    z-index: 30;
}

.m-3-1_section-6 {
    top: 50px;
    right: 100px;
    width: 33px;
    height: 35px;
    transform: rotate(20deg);
    z-index: 30;
}

.m-5_section-6 {
    left: 10px;
    bottom: 150px;
    width: 50px;
    height: 50px;
    opacity: 0.5;
}

.footer {
    position: relative;
    flex-shrink: 0;
    background-color: var(--footer-white);
    z-index: 100
}

.footer__inner {
    max-width: 360px;
    padding: 30px 0;
    margin: 0 auto
}

.footer__icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%
}

.footer__link {
    margin-bottom: 15px
}

.footer__logo-list {
    display: flex;
    justify-content: space-between;
    width: 85%
}

.main-logo {
    width: 190px
}

.footer__logo, .main-logo__item-1, .main-logo__item-2 {
    fill: var(--light-blue);
    transition: fill .1s
}

.footer__link:hover .main-logo__item-1 {
    fill: var(--purple)
}

.footer__link:hover .main-logo__item-2 {
    fill: var(--ocean-blue)
}

.footer__logo {
    height: 40px;
    cursor: pointer
}

.footer__logo_webmoney {
    width: 100px
}

.footer__logo_capitalist {
    width: 80px
}

.footer__logo_wire-transfer {
    width: 60px
}

.footer__logo_webmoney:hover {
    fill: var(--webmoney-blue)
}

.footer__logo_capitalist:hover {
    fill: var(--capitalist-green)
}

.footer__logo_wire-transfer:hover {
    fill: var(--purple)
}

.footer__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px
}

.address {
    margin-bottom: 5px;
    text-align: center;
    color: var(--placeholder-gray);
    font-size: 12px
}

.address img {
    width: 350px;
    max-width: 100%;
    margin-top: -2px;
}


.privacy-policy {
    font-size: 12px
}

.privacy-policy:active, .privacy-policy:hover, .privacy-policy:link, .privacy-policy:visited {
    color: var(--placeholder-gray)
}

.animation__element_hidden {
    visibility: hidden;
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.animation__element_visible {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    60% {
        opacity: 0
    }
    20% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    60% {
        opacity: 0
    }
    20% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInDownPhone {
    0% {
        opacity: 0;
        transform: translateY(-40px)
    }
    100% {
        opacity: 1;
        transform: translateY(-20px)
    }
}

@keyframes fadeInDownPhone {
    0% {
        opacity: 0;
        transform: translateY(-40px)
    }
    100% {
        opacity: 1;
        transform: translateY(-20px)
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInRightCar {
    0% {
        opacity: 0;
        -webkit-transform: translate(-75%, -40%);
        transform: translate(-75%, -40%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(-65%, -40%);
        transform: translate(-65%, -40%)
    }
}

@keyframes fadeInRightCar {
    0% {
        opacity: 0;
        -webkit-transform: translate(-75%, -40%);
        transform: translate(-75%, -40%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(-65%, -40%);
        transform: translate(-65%, -40%)
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(20px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(20px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInLeftCar {
    0% {
        opacity: 0;
        -webkit-transform: translate(80%, -35%);
        transform: translate(80%, -35%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(70%, -35%);
        transform: translate(70%, -35%);
    }
}

@keyframes fadeInLeftCar {
    0% {
        opacity: 0;
        -webkit-transform: translate(80%, -35%);
        transform: translate(80%, -35%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(70%, -35%);
        transform: translate(70%, -35%);
    }
}

.animation .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

.animation .fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.animation .fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

.animation .fadeInDownPhone {
    -webkit-animation-name: fadeInDownPhone;
    animation-name: fadeInDownPhone
}

.animation .fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

.animation .fadeInRightCar {
    -webkit-animation-name: fadeInRightCar;
    animation-name: fadeInRightCar
}

.animation .fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

.animation .fadeInLeftCar {
    -webkit-animation-name: fadeInLeftCar;
    animation-name: fadeInLeftCar
}

.animation__element_visible.animation__element_delay-1 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.animation__element_visible.animation__element_delay-2 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.animation__element_visible.animation__element_delay-3 {
    -webkit-animation-delay: .7s;
    animation-delay: .7s
}

.animation__element_visible.animation__element_delay-4 {
    -webkit-animation-delay: .9s;
    animation-delay: .9s
}

.animation__element_visible.animation__element_delay-5 {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s
}

.animation__element_visible.animation__element_delay-6 {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s
}

.animation__element_visible.animation__element_delay-7 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s
}

.animation__element_visible.animation__element_delay-8 {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s
}

.animation__element_visible.animation__element_delay-9 {
    -webkit-animation-delay: 1.9s;
    animation-delay: 1.9s
}

.animation__element_visible.animation__element_delay-10 {
    -webkit-animation-delay: 2.1s;
    animation-delay: 2.1s
}

.animation__element_visible.animation__element_delay-11 {
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s
}

@media screen and (max-width: 320px) {

    .section-2__inner {
        background-size: 320px 461px;
    }

    .section-2__title {
        padding-top: 50px;
    }

    .section-3 {
        padding-bottom: 350px;
    }
}


@media screen and (min-width: 375px) {

    .section-2__info-text_sub {
        font-size: max(1em, min(4em, 1vw));
    }

    .section-2__info_manager {
        top: 20%;
        left: 38%;
    }

    .section-2__info_terms {
        right: 7%;
    }

    .section-2__info_test {
        left: 13%;
    }

    .section-2__info_geo {
        top: 49%;
    }

    .section-2__info_approve {
        top: 52%;
        left: 9%;
    }

    .section-2__info_call {
        bottom: 17%;
        left: 23%;
    }

    .section-2__info_ui {
        bottom: 14%;
        right: 23%;
    }

    .section-2__info_gifts {
        top: 47%;
        right: 14%;
    }
}

@media screen and (min-width: 420px) {

    .section-3 {
        padding-bottom: 460px;
    }
}

@media screen and (min-width: 500px) {

    .section-2__info_manager {
        top: 20%;
        left: 40%;
    }

    .section-2__info_geo {
        top: 43%;
        left: 37%;
    }

    .section-2__info_call {
        bottom: 19%;
    }

    .section-2__info_ui {
        bottom: 15%;
    }

    .section-2__info_test {
        top: 29%;
        left: 9%;
    }

    .section-2__info_terms {
        top: 31%;
        right: 7%;
    }

    .section-2__info_approve {
        top: 53%;
        left: 9%;
    }

    .section-2__info_gifts {
        top: 49%;
        right: 16%;
    }
}

@media screen and (min-width: 640px) {
    .anchor_advantage {
        top: -40px
    }

    .anchor_prize {
        top: -320px
    }

    .anchor_feedback, .anchor_gallery {
        top: -150px
    }

    .anchor_conf {
        top: 850px
    }

    .header {
        padding: 50px 30px
    }

    .header__inner {
        max-width: 460px
    }

    .header__link {
        flex-shrink: 0;
    }

    .shakes-logo {
        width: 400px;
        height: 49px
    }

    .header_minimize {
        padding: 20px 30px
    }

    .header__button {
        margin-left: 40px;
    }

    .header__button-icon {
        width: 40px;
        height: 40px;
    }

    .menu {
        padding: 50px 30px
    }

    .menu_minimize {
        padding: 20px 30px
    }

    .menu__header {
        max-width: 460px
    }

    .menu__logo {
        width: 400px
    }

    .menu__button {
        width: 40px;
        height: 40px;
        margin-left: 40px
    }

    .menu__button-item {
        width: 50px;
        height: 5px
    }

    .menu__button-item::after, .menu__button-item::before {
        height: 5px
    }

    .menu__list {
        font-size: 40px
    }

    .menu__link {
        margin: 30px 0
    }

    .section-1 {
        padding: 150px 20px 350px 20px
    }

    .info__title {
        font-size: 97px;
    }

    .info__text {
        font-size: 64px;
    }

    .info__slogan {
        margin-top: 40px;
        font-size: 24px
    }

    .info__slogan::before {
        top: -25px;
        width: 72px;
        height: 6px
    }

    .social {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 30px 0;
        font-size: 22px
    }

    .social__link:first-child {
        margin: 0 30px 0 0
    }

    .social__icon {
        width: 50px;
        height: 50px;
        margin-right: 10px
    }

    .card {
        width: 500px;
        max-width: unset;
        height: 578px;
    }

    .card__title {
        padding: 30px 0;
        font-size: 24px
    }

    .card__title::before {
        width: 60px;
        height: 6px
    }

    .form__inner {
        padding: 50px 50px 0 50px
    }

    .form__input-group {
        margin-bottom: 25px
    }

    .errorMessage {
        bottom: -20px;
        font-size: 12px
    }

    .errorMessage#RegistrationForm_password_em_ {
        line-height: 10px;
    }

    .errorMessage#Profile_skype_em_ {
        margin-bottom: -20px;
    }

    .form__input-icon {
        left: 20px;
        width: 30px;
        height: 30px
    }

    .form__input {
        height: 60px;
        padding: 0 0 0 70px;
        font-size: 24px
    }

    .form__footer {
        padding: 25px 0
    }

    .form__button {
        padding: 20px 55px;
        font-size: 30px
    }

    .airship_section-1,
    .planet-violet_section-1,
    .m-1-1_section-1,
    .m-7_section-1 {
        display: block;
    }

    .comet_section-1 {
        top: 230px;
        left: 115px;
        width: 248px;
        height: 85px;
        z-index: 30;
    }

    .airship_section-1 {
        top: 500px;
        left: 30px;
        z-index: 40;
    }

    .planet-violet_section-1 {
        top: 420px;
        right: -40px;
        z-index: 30;
    }

    .planet-orange_section-1 {
        top: 580px;
        right: 60px;
        z-index: 40;
    }

    .m-1-1_section-1 {
        left: -5px;
        bottom: 800px;
        width: 43px;
        height: 40px;
        z-index: 40;
    }

    .m-2_section-1 {
        top: 80px;
        right: 5px;
        width: 25px;
        height: 25px;
    }

    .m-4_section-1 {
        top: 620px;
        right: -30px;
        width: 50px;
        height: 44px;
    }

    .m-6_section-1 {
        top: 690px;
        left: 50px;
    }

    .m-7_section-1 {
        bottom: 460px;
        right: 30px;
        width: 19px;
        height: 16px;
        z-index: 40;
    }

    .section-2 {
        padding-bottom: 50px
    }

    .section-2__inner {
        width: 640px;
        height: 922px;
        background-size: contain;
    }

    .section-2__title {
        padding-top: 95px;
        font-size: 50px
    }

    .section-2__info-icon {
        margin: 20px 0;
    }

    .section-2__info-text {
        font-size: 20px;
    }

    .section-2__info-text_sub {
        font-size: 16px;
        line-height: 1.4;
    }

    .section-2__info-text_geo {
        margin-bottom: 5px;
    }

    .section-2__info_call {
        bottom: 15%;
    }

    .section-2__info_ui {
        bottom: 12%;
    }

    .m-5-1_section-2,
    .m-8_section-2 {
        display: block;
    }

    .planet-pink_section-2 {
        bottom: 180px;
        right: 30px;
        width: 140px;
        height: 89px;
    }

    .planet-orange_section-2 {
        top: 700px;
        left: 20px;
        width: 80px;
        height: 80px;
    }

    .m-4-1_section-2 {
        bottom: 20px;
        right: 30px;
        width: 49px;
        height: 42px;
        z-index: 60;
    }

    .m-5-1_section-2 {
        bottom: -1000px;
        right: 20px;
        width: 92px;
        height: 92px;
        z-index: 70;
    }

    .m-5-2_section-2 {
        bottom: 110px;
        left: -50px;
        width: 143px;
        height: 143px;
    }

    .m-8_section-2 {
        top: 450px;
        left: 30px;
        width: 41px;
        height: 40px;
        z-index: 60;
    }

    .section-3 {
        padding: 300px 0 450px 0;
    }

    .section-3__link {
        max-width: 450px
    }

    .section-3__title {
        font-size: 60px
    }

    .section-3__galaxy {
        top: -200px;
        left: -65px;
        width: 120px;
        height: 153px
    }

    .section-3__laptop {
        top: -200px;
        left: 50%;
        width: 154px;
        height: 161px
    }

    .section-3__iphone {
        top: -170px;
        right: -80px;
        width: 106px;
        height: 159px
    }

    .section-3__iwatch-blue {
        left: -90px;
        bottom: -100px;
        width: 114px;
        height: 137px
    }

    .section-3__iwatch-pink {
        right: -90px;
        bottom: -80px;
        width: 123px;
        height: 119px
    }

    .section-3__gopro {
        left: -70px;
        bottom: -310px;
        width: 90px;
        height: 73px
    }

    .section-3__gamepad {
        right: -75px;
        bottom: -300px;
        width: 139px;
        height: 111px
    }

    .section-3__imac {
        left: 50px;
        bottom: -240px;
        width: 170px;
        height: 149px
    }

    .section-3__airpods {
        right: 80px;
        bottom: -200px;
        width: 100px;
        height: 130px
    }

    .section-3__cars {
        width: 100%;
        max-width: unset
    }

    .planet-red_section-3,
    .m-5_section-3 {
        display: block;
    }

    .planet-red_section-3 {
        top: 7%;
        right: 20%;
        opacity: 0.6;
        z-index: 30;
    }

    .m-5_section-3 {
        top: 32%;
        right: 3%;
        width: 49px;
        height: 49px;
        transform: scale(-1, 1);
        z-index: 30;
    }

    .section-4__inner {
        max-width: 650px;
        padding: 100px 30px;
    }

    .section-4__title_feedback {
        max-width: 330px;
        font-size: 55px
    }

    .section-4__image-wrap {
        width: 245px;
        height: 245px
    }

    .section-4__image {
        border: 5px solid var(--white);
        box-shadow: 0 10px 35px 0 rgba(0, 0, 0, .3)
    }

    .section-4__image-quotes {
        right: -10px;
        width: 51px;
        height: 45px
    }

    .section-4__image-quotes_partners {
        left: -10px
    }

    .swiper-feedback__paragraph {
        margin: 30px 0 50px 0;
        font-size: 24px
    }

    .swiper-feedback__user-name {
        margin-right: 20px;
        font-size: 30px
    }

    .swiper-feedback__user-position {
        padding: 0 20px 3px 20px;
        font-size: 23px
    }

    .swiper-thumbs {
        width: 246px;
        padding: 15px 13px
    }

    .swiper-thumbs .swiper-slide {
        height: 60px;
        box-shadow: -3px 5px 10px 0 rgba(0, 0, 0, .2)
    }

    .swiper-button-next, .swiper-button-prev {
        width: 50px;
        height: 50px
    }

    .swiper-button-next::after, .swiper-button-prev::after {
        width: 36px;
        height: 18px
    }

    .swiper-footer {
        margin-top: 50px
    }

    .swiper-feedback__pagination .swiper-pagination {
        margin: 0 20px;
        font-size: 30px
    }

    .swiper-feedback__pagination .swiper-pagination-current {
        font-size: 40px
    }

    .swiper-feedback__pagination .swiper-pagination-current, .swiper-feedback__pagination .swiper-pagination-total {
        margin: 0 5px
    }

    .swiper-pagination-bullet {
        width: 5px;
        height: 13px;
        margin: 0 7px;
        border-radius: 5px
    }

    .swiper-pagination-bullet-active {
        width: 10px;
        height: 45px;
        transform: translateY(10px)
    }

    .m-1-2_section-4 {
        left: 50%;
        width: 54px;
        height: 52px;
    }

    .section-5__inner {
        max-width: 650px;
        padding: 100px 25px 100px 25px
    }

    .section-5__label {
        top: -30px;
        width: 495px;
        height: 66px
    }

    .section-5__title {
        font-size: 45px
    }

    .gallery__thumbs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 200px);
        grid-gap: 25px
    }

    .section-6__inner {
        padding: 160px 0
    }

    .social_section-6 {
        margin: 60px 0 0 0
    }

    .planet-purple_section-6 {
        bottom: 190px;
        right: 50px;
        width: 160px;
        height: 114px
    }

    .m-3-1_section-6 {
        top: 100px;
        right: 130px;
    }

    .m-5_section-6 {
        left: 10px;
        bottom: 170px;
        width: 108px;
        height: 108px;
    }

    .m-6_section-6 {
        display: block;
        top: 70px;
        left: 70px;
        width: 85px;
        height: 56px;
        transform: rotate(180deg);
        z-index: 30;
    }

    .footer__inner {
        max-width: 550px;
        padding: 40px 0
    }

    .footer__link {
        margin-bottom: 30px
    }

    .footer__logo {
        height: 53px
    }

    .main-logo {
        width: 280px
    }

    .footer__logo-list {
        width: 100%
    }

    .footer__logo_webmoney {
        width: 180px
    }

    .footer__logo_capitalist {
        width: 160px
    }

    .footer__logo_wire-transfer {
        width: 133px
    }

    .footer__info {
        margin-top: 50px
    }

    .address {
        margin-bottom: 10px;
        font-size: 14px;
        margin-bottom: 10px;
        display: flex;
        font-size: 14px;
        justify-content: center;
        gap: 5px;
        align-items: flex-start;
    }

    .privacy-policy {
        font-size: 14px
    }
}

@media screen and (min-width: 960px) {
    .anchor_advantage {
        top: -30px
    }

    .anchor_prize {
        top: -280px
    }

    .anchor_feedback {
        top: -160px
    }

    .anchor_conf {
        top: -130px
    }

    .anchor_gallery {
        top: -140px
    }

    .header {
        padding: 25px 30px
    }

    .header_minimize {
        background-color: #110626;
        padding: 10px 30px
    }

    .header__inner {
        max-width: 1024px
    }

    .shakes-logo {
        width: 230px;
        height: 28px
    }

    .header__button {
        display: none
    }

    .menu {
        position: static;
        width: auto;
        height: auto;
        min-width: unset;
        padding: 0;
        opacity: 1;
        z-index: 1;
        background: 0 0;
        overflow: visible;
        transform: translateY(0)
    }

    .menu__header {
        display: none
    }

    .menu__list {
        flex-direction: row;
        margin-right: -20px;
        font-size: 15px
    }

    .menu__link {
        padding: 20px 0;
        margin: 0 15px
    }

    .menu__link::before {
        bottom: auto;
        top: 45px
    }

    .wave {
        height: 100px
    }

    .wave_top-outside {
        top: -99px
    }

    .wave_bottom-outside {
        bottom: -99px
    }

    .section-1 {
        padding: 100px 30px 200px 30px;
        background-image: url("/themes/shakesv3/shakes-pro/images/section-1-bg-desktop.jpg");
    }

    .section-1__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1024px;
        margin: 0 auto
    }

    .info {
        margin: 50px 50px 0 0;
        text-align: left
    }

    .info__title {
        font-size: 85px;
    }

    .info__text {
        font-size: 46px;
    }

    .info__slogan {
        margin: 25px 0 0 50px;
        font-size: 20px
    }

    .info__slogan::before {
        width: 36px;
        height: 4px;
        top: 50%;
        left: -50px;
        transform: translate(0, -50%)
    }

    .section-1__form {
        height: 469px
    }

    .social {
        margin: 25px 0 0 0;
        font-size: 18px
    }

    .social__icon {
        width: 30px;
        height: 30px
    }

    .card {
        width: 320px
    }

    .card_section-1 {
        margin-top: 20px
    }

    .card__title {
        padding: 15px 0;
        font-size: 16px
    }

    .card__title_section-1::before {
        width: 40px;
        height: 5px
    }

    .form-wrap {
        margin-bottom: 0
    }

    .form__inner {
        padding: 22px 22px 0 22px
    }

    .form__input-group {
        margin-bottom: 18px
    }

    .form__input-icon {
        left: 13px;
        width: 20px;
        height: 20px
    }

    .form__input {
        height: 40px;
        padding: 0 0 0 50px;
        font-size: 16px
    }

    .form__input:focus {
        -webkit-animation: input-flash .3s forwards;
        animation: input-flash .3s forwards
    }

    .form__input-wrap {
        flex-direction: row
    }

    .form__input-wrap .form__input-group:first-child {
        margin-right: 15px
    }

    .form__button {
        padding: 15px 45px;
        font-size: 20px;
        box-shadow: 0 10px 30px -5px rgba(52, 187, 218, .8)
    }

    .form__footer {
        padding: 11px 0 22px 0;
        background-color: var(--white)
    }

    .errorMessage {
        bottom: -14px;
        font-size: 9px
    }

    .errorMessage#RegistrationForm_password_em_ {
        line-height: 8px;
    }

    .errorMessage#Profile_skype_em_ {
        margin-bottom: -12px;
    }

    .m-4_section-1,
    .m-1-1_section-1,
    .m-7_section-1,
    .airship_section-1 {
        display: none;
    }

    .m-3_section-1,
    .m-5_section-1 {
        display: block;
    }

    .comet_section-1 {
        top: 200px;
        left: 50px;
    }

    .satellite_section-1 {
        top: 200px;
        right: 220px;
    }

    .planet-violet_section-1 {
        top: 50px;
        right: auto;
        left: 430px;
        width: 145px;
        height: 145px;
    }

    .planet-orange_section-1 {
        top: 120px;
        left: 410px;
    }

    .m-2_section-1 {
        top: 65px;
        right: -7px;
    }

    .m-3_section-1 {
        top: 100px;
        left: 100px;
        width: 36px;
        height: 29px;
    }

    .m-5_section-1 {
        top: 90px;
        right: 10px;
        width: 62px;
        height: 62px;
    }

    .m-6_section-1 {
        top: 350px;
        left: auto;
        right: 440px;
        width: 87px;
        height: 52px;
    }

    .section-2 {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 50px
    }

    .section-2__inner {
        width: 100%;
        height: 600px;
        margin: 0;
        background: url("/themes/shakesv3/shakes-pro/images/section-2-bg-desktop.png") center no-repeat;
        background-size: contain;
    }

    .section-2__title {
        padding-top: 110px;
        font-size: 40px;
    }

    .section-2__star {
        position: absolute;
        top: 170px;
        left: 52%;
        width: 337px;
        height: 321px;
        background-image: url(/themes/shakesv3/shakes-pro/images/star.png);
        transform: translateX(-52%);
        z-index: 10
    }

    .section-2__content {
        position: absolute;
        top: 50%;
        left: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 75%;
        max-width: 1030px;
        transform: translate(-50%, -50%);
        z-index: 50
    }

    .section-2__info-group {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%
    }

    .section-2__info-group:first-child {
        margin-bottom: 50px
    }

    .section-2__info {
        position: static
    }

    .section-2__info-icon {
        margin: 0 0 10px;
    }

    .section-2__info_gifts, .section-2__info_test {
        transform: translateX(-25px)
    }

    .section-2__info_manager, .section-2__info_terms {
        transform: translate(-40px, 60px)
    }

    .section-2__info_call, .section-2__info_geo {
        transform: translateY(60px)
    }

    .section-2__info-text {
        font-size: 17px;
    }

    .section-2__info-text_sub {
        font-size: 14px;
    }

    .m-5-1_section-2 {
        display: none;
    }

    .planet-orange_section-2 {
        top: 150px;
        left: -40px;
        width: 65px;
        height: 65px;
    }

    .planet-pink_section-2 {
        bottom: 70px;
        right: -80px;
        width: 90px;
        height: 57px;
    }

    .m-4-1_section-2 {
        bottom: -70px;
        right: 100px;
        width: 25px;
        height: 22px;
    }

    .m-5-2_section-2 {
        bottom: auto;
        top: 80px;
        left: -150px;
        width: 120px;
        height: 120px;
    }

    .m-8_section-2 {
        top: -70px;
        left: 50px;
        width: 25px;
        height: 23px;
    }

    .section-3 {
        padding: 200px 0 380px 0;
        background-image: url(/themes/shakesv3/shakes-pro/images/section-3-bg-desktop.jpg)
    }

    .section-3__inner {
        z-index: 100
    }

    .section-3__link {
        max-width: 250px
    }

    .section-3__title {
        font-size: 40px
    }

    .section-3__astronaut {
        left: 300px;
        bottom: 500px
    }

    .section-3__imac {
        left: -140px;
        bottom: -170px;
        width: 190px;
        height: 171px;
        z-index: 40
    }

    .section-3__galaxy {
        top: -40px;
        left: -340px;
        width: 118px;
        height: 150px
    }

    .section-3__airpods {
        right: -80px;
        bottom: -150px;
        width: 104px;
        height: 140px;
        transform: rotate(-25deg)
    }

    .section-3__gopro {
        left: -320px;
        bottom: -250px;
        width: 137px;
        height: 110px
    }

    .section-3__iwatch-pink {
        right: -290px;
        bottom: -60px;
        width: 138px;
        height: 139px
    }

    .section-3__gamepad {
        right: -280px;
        bottom: -250px;
        width: 151px;
        height: 120px;
        transform: rotate(0)
    }

    .section-3__iwatch-blue {
        left: -170px;
        top: -150px;
        bottom: auto;
        width: 127px;
        height: 150px;
        z-index: 50
    }

    .section-3__iphone {
        top: -180px;
        right: -180px;
        width: 98px;
        height: 150px;
        z-index: 70
    }

    .section-3__laptop {
        top: -230px;
        width: 153px;
        height: 160px;
        z-index: 50
    }

    .section-3__cars {
        bottom: -180px
    }

    .section-3__car {
        flex-shrink: 1;
        max-width: unset;
    }

    .section-3__car_mini {
        width: 369px;
        transform: translate(140px, -50px);
    }

    .section-3__car_bmw {
        width: 427px;
        transform: translate(-155px, -60px);
    }

    .section-3__car_porshe {
        width: 580px;
    }

    .planet-blue_section-3 {
        display: block;
        top: -195px;
        left: 110px;
        z-index: 150;
    }

    .planet-red_section-3 {
        top: 29%;
        right: 7%;
        opacity: 1;
    }

    .m-5_section-3 {
        right: auto;
        left: 26%;
    }

    .section-4__inner {
        max-width: 1024px;
        padding: 180px 30px 70px 30px
    }

    .section-4__title_feedback {
        font-size: 40px;
        max-width: 300px
    }

    .section-4__feedback {
        flex-direction: row;
        align-items: flex-start
    }

    .section-4__feedback-head {
        justify-content: flex-start;
        margin-right: 30px
    }

    .section-4__feedback-head_partners {
        order: 1;
        margin: 0 0 0 30px
    }

    .section-4__image-wrap {
        width: 180px;
        height: 180px
    }

    .section-4__image-quotes {
        width: 40px;
        height: 35px
    }

    .section-4__label {
        position: absolute;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center
    }

    .section-4__label_feedback {
        top: -50px;
        left: 120px;
        width: 499px;
        height: 85px;
        background-image: url(/themes/shakesv3/shakes-pro/images/feedback-label.png)
    }

    .section-4__feedback-swiper {
        max-width: 460px
    }

    .swiper-button-next::after, .swiper-button-prev::after {
        width: 24px;
        height: 12px
    }

    .swiper-feedback__paragraph {
        margin: 0 0 20px 0;
        font-size: 14px
    }

    .swiper-feedback__user-name {
        font-size: 20px
    }

    .swiper-feedback__user-position {
        padding: 0 15px 3px 15px;
        font-size: 16px
    }

    .swiper-footer {
        margin-top: 20px
    }

    .swiper-feedback__pagination .swiper-pagination {
        font-size: 20px
    }

    .swiper-feedback__pagination .swiper-pagination-current {
        font-size: 30px
    }

    .swiper-pagination-bullet {
        width: 3px;
        height: 8px;
        margin: 0 3px
    }

    .swiper-pagination-bullet-active {
        width: 4px;
        height: 18px;
        transform: translateY(2px)
    }

    .m-1-2_section-4 {
        top: 135%;
        left: -21%;
        width: 37px;
        height: 35px;
    }

    .section-5 {
        background-size: contain;
        background-position: center 100px
    }

    .section-5__inner {
        max-width: 1170px
    }

    .section-5__label {
        top: -50px;
        width: 825px;
        height: 108px
    }

    .section-5__gradient {
        height: 200px
    }

    .gallery__thumbs {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 180px)
    }

    .satellite-1_section-5,
    .m-1-2_section-5,
    .m-5_section-5,
    .m-5-2_section-5,
    .m-6-1_section-5,
    .m-7_section-5,
    .m-9_section-5,
    .m-10_section-5 {
        display: block;
    }

    .satellite-1_section-5 {
        left: 100px;
        bottom: -100px;
        width: 150px;
        height: 117px;
        z-index: 40;
    }

    .m-1-2_section-5 {
        bottom: 40px;
        left: 50px;
        width: 37px;
        height: 35px;
        transform: scale(-1, 1);
        z-index: 40;
    }

    .m-5_section-5 {
        bottom: -80px;
        left: 100px;
        width: 80px;
        height: 80px;
        z-index: 40;
        transform: scale(-1, 1);
    }

    .m-5-2_section-5 {
        top: 80px;
        right: 30px;
        width: 80px;
        height: 80px;
        z-index: 40;
    }

    .m-6-1_section-5 {
        bottom: -1200px;
        left: 250px;
        width: 45px;
        height: 25px;
        z-index: 40;
    }

    .m-7_section-5 {
        bottom: 10px;
        right: 300px;
        width: 19px;
        height: 16px;
        transform: scale(-1, 1);
        z-index: 40;
    }

    .m-9_section-5 {
        bottom: -40px;
        right: 200px;
        width: 42px;
        height: 41px;
        transform: rotate(-90deg);
        z-index: 40;
    }

    .m-10_section-5 {
        top: 50px;
        right: 100px;
        width: 30px;
        height: 18px;
        transform: rotate(-45deg);
    }

    .section-6 {
        background-image: url(/themes/shakesv3/shakes-pro/images/section-6-bg-desktop.jpg)
    }

    .section-6__inner {
        position: relative;
        padding: 200px 0 100px 0
    }

    .section-6__label {
        position: absolute;
        top: 140px;
        left: 50%;
        display: block;
        width: 900px;
        height: 159px;
        transform: translateX(-50%);
        background: url("/themes/shakesv3/shakes-pro/images/section-6-label.png") center no-repeat;
        background-size: contain;
    }

    .form__button_section-6 {
        padding: 15px 35px
    }

    .social_section-6 {
        margin: 60px 0 0 0
    }

    .m-5_section-6,
    .m-6_section-6 {
        display: none;
    }

    .m-2_section-6,
    .m-4_section-6,
    .m-11_section-6 {
        display: block;
    }

    .planet-purple_section-6 {
        top: 800px;
        right: 30px;
        width: 201px;
        height: 122px;
        opacity: 1;
        z-index: 60;
    }

    .m-2_section-6 {
        bottom: 200px;
        right: 50px;
        width: 25px;
        height: 25px;
        transform: rotate(230deg) scale(1, -1);
    }

    .m-3-1_section-6 {
        top: auto;
        bottom: 140px;
        right: auto;
        left: 100px;
    }

    .m-4_section-6 {
        top: 100px;
        left: 180px;
        width: 34px;
        height: 29px;
        transform: scale(-1, 1);
    }

    .m-11_section-6 {
        right: 30px;
        bottom: -3000px;
        width: 61px;
        height: 55px;
        z-index: 60;
    }

    .footer__inner {
        max-width: 1024px;
        padding: 30px
    }

    .footer__link {
        margin: 0
    }

    .footer__icons {
        flex-direction: row;
        justify-content: space-between
    }

    .footer__logo-list {
        width: 520px
    }

    .footer__info {
        margin-top: 30px
    }

    @-webkit-keyframes fadeInRightCar {
        0% {
            opacity: 0;
            transform: translate(-175px, -60px)
        }
        100% {
            opacity: 1;
            transform: translate(-155px, -60px)
        }
    }@keyframes fadeInRightCar {
         0% {
             opacity: 0;
             transform: translate(-175px, -60px)
         }
         100% {
             opacity: 1;
             transform: translate(-155px, -60px)
         }
     }@-webkit-keyframes fadeInLeftCar {
          0% {
              opacity: 0;
              transform: translate(160px, -50px)
          }
          100% {
              opacity: 1;
              transform: translate(140px, -50px)
          }
      }@keyframes fadeInLeftCar {
           0% {
               opacity: 0;
               transform: translate(160px, -50px)
           }
           100% {
               opacity: 1;
               transform: translate(140px, -50px)
           }
       }
}

@media screen and (min-width: 1200px) {
    .anchor_gallery {
        top: -180px
    }

    .header {
        padding: 40px 50px
    }

    .header_minimize {
        padding: 10px 50px
    }

    .header__inner {
        max-width: 1170px
    }

    .menu__list {
        font-size: 16px
    }

    .menu__link {
        margin: 0 20px
    }

    .section-1 {
        padding: 150px 50px 200px 50px
    }

    .section-1__inner {
        max-width: 1170px
    }

    .info {
        margin: 50px 50px 0 0
    }

    .info__title {
        font-size: 101px;
    }

    .info__text {
        font-size: 66px;
    }

    .info__slogan {
        margin-top: 40px;
        font-size: 24px
    }

    .social {
        margin: 40px 0 0 0;
        font-size: 22px
    }

    .social__icon {
        width: 35px;
        height: 35px
    }

    .card {
        width: 373px
    }

    .form__inner {
        padding: 30px 30px 15px 30px
    }

    .form__footer {
        padding: 15px 0 25px 0
    }

    .errorMessage {
        font-size: 10px
    }

    .m-4_section-1,
    .airship_section-1,
    .satellite_section-1,
    .m-1-1_section-1 {
        display: block;
    }

    .satellite_section-1,
    .planet-violet_section-1,
    .m-6_section-1 {
        opacity: 0;
        transition: opacity 0.3s;
    }

    .planet-violet_section-1 {
        top: 70px;
        left: 1040px;
    }

    .planet-orange_section-1 {
        top: 160px;
        right: auto;
        left: 1030px;
    }

    .comet_section-1 {
        top: 280px;
        left: 560px;
    }

    .airship_section-1 {
        top: 100px;
        left: 120px;
        width: 178px;
        height: 102px;
    }

    .m-1-1_section-1 {
        top: 400px;
        left: 200px;
        bottom: auto;
        width: 48px;
        height: 40px;
    }

    .m-2_section-1 {
        top: 80px;
        right: -5px;
    }

    .m-3_section-1 {
        top: 150px;
        left: 620px;
    }

    .m-4_section-1 {
        top: -80px;
        right: -160px;
        width: 19px;
        height: 16px;
    }

    .m-5_section-1 {
        top: 130px;
        right: 130px;
    }

    .m-6_section-1 {
        top: 450px;
        right: 900px;
    }

    .section-2__inner {
        margin: 0 auto;
        width: 1461px;
        height: 755px;
        padding-top: 100px
    }

    .section-2__title {
        padding-top: 80px;
        font-size: 45px
    }

    .section-2__content {
        max-width: 1030px
    }

    .section-2__info-text {
        font-size: 20px;
    }

    .section-2__info-text_sub {
        font-size: 16px;
    }

    .section-2__star {
        top: 310px
    }

    .planet-pink_section-2 {
        display: none;
    }

    .m-5-1_section-2,
    .m-5-2_section-2 {
        width: 200px;
        height: 200px;
    }

    .planet-orange_section-2 {
        top: 150px;
        left: -100px;
        width: 98px;
        height: 98px;
    }

    .planet-pink_section-2 {
        bottom: 70px;
        right: -150px;
        width: 150px;
        height: 95px;
    }

    .m-4-1_section-2 {
        bottom: -140px;
        right: 150px;
        width: 49px;
        height: 42px;
    }

    .m-5-1_section-2 {
        display: block;
        bottom: -170px;
        right: 30px;
    }

    .m-5-2_section-2 {
        top: 70px;
        left: -280px;
    }

    .m-8_section-2 {
        top: -130px;
        left: 70px;
        width: 41px;
        height: 40px;
    }

    .section-3 {
        padding: 200px 0 400px 0
    }

    .section-3__link {
        max-width: 350px
    }

    .section-3__title {
        font-size: 45px
    }

    .section-3__imac {
        left: -180px;
        bottom: -170px;
        width: 238px;
        height: 207px
    }

    .section-3__galaxy {
        top: -40px;
        left: -420px;
        width: 151px;
        height: 192px
    }

    .section-3__iwatch-blue {
        left: -240px;
        top: -150px;
        width: 144px;
        height: 172px
    }

    .section-3__laptop {
        top: -230px;
        width: 193px;
        height: 202px
    }

    .section-3__iphone {
        top: -180px;
        right: -210px;
        width: 133px;
        height: 200px
    }

    .section-3__iwatch-pink {
        right: -350px;
        bottom: -60px;
        width: 155px;
        height: 149px
    }

    .section-3__airpods {
        right: -130px;
        bottom: -150px;
        width: 140px;
        height: 200px
    }

    .section-3__gamepad {
        right: -430px;
        bottom: -250px;
        width: 173px;
        height: 129px
    }

    .section-3__gopro {
        left: -450px;
        bottom: -250px;
        width: 149px;
        height: 122px
    }

    .planet-blue_section-3 {
        top: -240px;
        left: 350px;
        width: 202px;
        height: 120px
    }

    .m-5_section-3 {
        top: 35%;
        left: 10%;
    }

    .m-5-2_section-3 {
        display: block;
        top: 1400px;
        left: 7%;
        width: 130px;
        height: 130px;
        z-index: 40;
    }

    .section-4__inner {
        max-width: 1170px;
        padding: 200px 0 150px 0
    }

    .section-4__title {
        font-size: 45px
    }

    .section-4__label_feedback {
        width: 522px;
        height: 89px
    }

    .section-4__image-wrap {
        width: 200px;
        height: 200px
    }

    .section-4__feedback-swiper {
        max-width: 660px
    }

    .m-1-2_section-4_1 {
        display: block;
        right: 6%;
        bottom: -500px;
        width: 101px;
        height: 82px;
        z-index: 40;
    }

    .satellite-1_section-5 {
        width: 348px;
        height: 271px;
        left: 100px;
        bottom: -100px;
        opacity: 0;
        transition: opacity .2s
    }

    .m-5_section-5 {
        bottom: -160px;
        left: 100px;
        width: 146px;
        height: 146px;
    }

    .m-5_section-5_1 {
        display: block;
        bottom: -1150px;
        right: 60px;
        width: 200px;
        height: 200px;
        z-index: 40;
    }

    .m-5-2_section-5 {
        top: 40px;
        right: 170px;
        width: 150px;
        height: 150px;
    }

    .m-6-1_section-5 {
        bottom: -1100px;
        left: 500px;
        width: 85px;
        height: 56px;
    }

    .m-7_section-5 {
        bottom: 20px;
        right: 600px;
    }

    .m-9_section-5 {
        bottom: -40px;
        right: 480px;
    }

    .m-10_section-5 {
        top: 0;
        right: 100px;
        width: 50px;
        height: 30px;
        transform: rotate(-45deg);
    }

    .section-6__inner {
        padding: 250px 0 150px 0
    }

    .section-6__label {
        top: 170px;
        width: 1188px;
        height: 210px
    }

    .social_section-6 {
        margin: 80px 0 0 0
    }

    .planet-purple_section-6 {
        top: 1200px;
        right: 450px
    }

    .m-2_section-6 {
        bottom: 400px;
        right: 150px;
    }

    .m-3-1_section-6 {
        bottom: 350px;
        left: 300px;
    }

    .m-4_section-6 {
        top: 150px;
        left: 400px;
    }

    .footer__inner {
        max-width: 1170px;
        padding: 30px 0
    }

    .footer__logo-list {
        width: 550px
    }
}

@media screen and (min-width: 1350px) {
    .planet-pink_section-2 {
        display: block
    }
}

@media screen and (min-width: 1650px) {
    .satellite_section-1,
    .planet-violet_section-1,
    .m-6_section-1,
    .satellite-1_section-5 {
        opacity: 1;
    }
}
