@charset "UTF-8";

html {
    box-sizing: border-box
}

*,
::before,
::after {
    box-sizing: inherit
}

:root {
    /* --main-color: #3d3bff;
    --main-color-deep: #2a27ff; */
    --black: #151515;
    --white: #ffffff;
    --gray-light: #dbdbdb;
    --gray: #757575;
    --gray-dark: #555555;
    --red: #e30000;
    --main-color: #4f3152;
    --main-color-deep: #4f3152;
    --box-shadow: 0 2px 24px rgba(168, 175, 196, .5);
    --box-shadow-hover: 0 2px 25px rgba(168, 175, 196, .8);
}

body {
    margin: 0;
    font-family: Helvetica, Trebuchet MS, sans-serif;
    color: var(--black);
    -webkit-tap-highlight-color: transparent;
    /* overflow-x: hidden; */
}

.no-js .lazy {
    display: none;
}

section {
    max-width: 100%;
}

::selection {
    background-color: transparent;
    color: var(--main-color-deep);
}

img {
    max-width: 100%;
    display: block;
    border-style: none;
    object-fit: contain;
}

a {
    color: inherit;
    text-decoration: none
}

a:hover,
a:focus {
    outline: 0
}

ul[class],
ol[class] {
    list-style: none;
}

ul {
    padding-left: 1rem
}

input {
    border-radius: 0;
    background-clip: padding-box;
}

.custom-link {
    color: var(--main-color);
    transition: -webkit-filter 300ms;
    transition: filter 300ms;
    transition: filter 300ms, -webkit-filter 300ms
}

.custom-link:hover,
.custom-link:focus {
    -webkit-filter: opacity(.8);
    filter: opacity(.8)
}

.custom-link-dark {
    color: var(--black)
}

p {
    margin-top: 0
}

[hidden] {
    display: none!important
}

.scroll-off {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.grid {
    display: grid;
    grid-template-columns: 1fr
}

@supports not (display: grid) {
    .grid {
        max-width: 50em;
        margin: 0 auto
    }
}

.text-center {
    text-align: center
}

@supports (-webkit-overflow-scrolling:touch) {
    .scroll-off {
        position: fixed
    }
}

.container {
    max-width: 540px;
    margin: 0 auto
}

.grecaptcha-badge { visibility: hidden; }

.button {
    padding: 0;
    border: 0;
    border-radius: 2.5rem;
    font: inherit;
    font-size: 1rem;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
    padding: 22px 14px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    vertical-align: top;
    background-color: var(--main-color);
    border: var(--main-color) solid 2px;
    cursor: pointer;
    transition: .5s;
}

.button:focus {
    outline: 0
}

.button:disabled {
    background: #fff;
    color: #757575;
    cursor: not-allowed;
    border: var(--gray-light) solid 2px;
    cursor: not-allowed;
}

.button:not(:disabled):hover,
.button:not(:disabled):focus {
    background-color: #fff;
    border: var(--main-color) solid 2px;
    color: var(--main-color);
    transition: .5s;
}

.button-dark {
    background-color: var(--black)
}

.button-close {
    padding: 0;
    border: 0;
    font: inherit;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
    width: 45px;
    height: 45px;
    color: #fff;
    background-color: var(--main-color);
    cursor: pointer;
    transition: .5s;
}

.button-close:hover,
.button-close:focus {
    background: var(--main-color-deep);
    transition: .5s;
}

.button-close-icon {
    width: 15px;
    height: 15px;
    vertical-align: middle
}

/* btn-color */
.button:focus,
.btn-color:focus,
.btn-white:focus {
    outline: 0
}

.paymentbtn {
    margin-top: 1rem;
}

.btn-color {
    display: inline-block;
    max-width: 19rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    color: var(--white);
    background-color: var(--main-color);
    border: solid 2px var(--main-color);
    /* box-shadow: var(--box-shadow); */
}

    .btn-color:not(:disabled):hover,
    .btn-color:not(:disabled):focus {
        color: var(--main-color);
        background-color: transparent;
        transition: 500ms
    }

    .btn-color-active {
        color: var(--main-color);
        background-color: var(--white);
        cursor: default;
    }

.btn-white {
    display: inline-block;
    max-width: 18rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    color: var(--main-color);
    background-color: transparent;
    border: solid 2px var(--main-color);
}

    .btn-white:not(:disabled):hover,
    .btn-white:not(:disabled):focus {
        color: var(--white);
        background-color: var(--main-color);
        transition: 500ms
    }

    .btn-white-active {
        color: var(--white);
        background-color: var(--main-color);
        cursor: default;
    }

.hidden {
    display: none!important;
}

.visible {
    display: block!important;
}

.custom-form {
    display: flex;
    flex-direction: column;
    /* font: 15px/20px */
}

.custom-form-field {
    outline: none;
    font: inherit;
    font-size: 1.1rem;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 28px;
    border: 2px solid transparent;
    border-radius: 2rem;
    font-family: inherit;
    line-height: 1;
    background-color: #fff;
    transition: border-color 300ms
}

.custom-form-field:focus {
    outline: 0
}

.custom-form-field-border{
    border-color: var(--gray-light)
}

.custom-form-field-error {
    border-color: #f30
}

.custom-form-row .custom-form-button {
    width: 100%
}

/* checkbox */
input[type=checkbox] {
    /* outline: 2px solid #e30000; */
    outline: 2px solid #dbdbdb;
    background-color: #fff;
    border-radius: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline-offset: 0;
    width: 17px;
    height: 17px;
    cursor: pointer;
    position: relative;
    top: 5px;
}

input[type=checkbox]:focus {
    /* outline: 2px solid #e30000; */
    outline: 2px solid #dbdbdb;
    
}

input[type=checkbox]:checked {
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'/%3E%3C/svg%3E") center center no-repeat;
    background-size: 70%;
    outline: 2px solid #dbdbdb;
}

::placeholder {color: #757575;}
:focus::-webkit-input-placeholder {color: transparent}
:focus::-moz-placeholder          {color: transparent}
:focus:-moz-placeholder           {color: transparent}

/* input:invalid:not(:placeholder-shown) {border-color: red; outline: 2px solid red;} */
/* input:valid:not(:placeholder-shown) {border-color: green} */

/* checkbox end */

.underline {
    box-shadow: inset 0 -70px 0 -12px var(--main-color);
}

.status {
    width: 100%;
    text-align: center;
    margin-top: 2em;
    margin-bottom: .5em;
    font-size: 1.9em;
    line-height: 1.1;
    color: var(--black);
}

.top-alert {
    display: block;
    width: 100%;
    padding: 25px;
    font-size: 1.1em;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    background: #151515;
    color: #fff;
    cursor: pointer;
}

.top-alert span {
    float: right;
    width: 20px;
    padding-left: 25px;
}

.checkbox-wrapper {
    display: block;
    margin-top: 20px;
}

.custom-form-checkbox-wrapper {
    position: relative;
    /* padding-left: 30px; */
    font-size: 1rem;
    line-height: 20px;
    letter-spacing: -.5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.custom-form-checkbox-wrapper svg {
    position: absolute;
    top: 6px;
    left: 5px;
    width: 14px;
    height: 11px;
    font-size: 1.6em;
    color: var(--main-color);
    opacity: 0;
    transition: -webkit-filter 300ms;
    transition: filter 300ms;
    transition: filter 300ms, -webkit-filter 300ms
}

.custom-form-checkbox-wrapper-border::before {
    border-color: var(--gray-light)
}

.custom-form-checkbox-wrapper-dark-color {
    color: var(--gray-dark);
}

.custom-form-checkbox-wrapper-dark svg {
    fill: var(--gray-dark);
}

/* .custom-form-checkbox-wrapper-dark::before {
    background-color: var(--main-color)
} */

.custom-form-checkbox-wrapper-error::before {
    border-color: #f30
}

.custom-form-checkbox:checked+svg {
    opacity: 1
}

.h {
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -.5px;
    word-break: break-word;
}

.h-1 {
    margin-bottom: 35px;
    font-size: 38px;
    line-height: 42px
}

.h-2 {
    margin-bottom: 12px;
    font-size: 38px;
    line-height: 44px;
}

.h-3 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 36px
}

.header-desc {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 26px;
    letter-spacing: -.5px
}

.custom-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.custom-list-item {
    position: relative;
    padding-left: 24px;
    font-size: 1rem;
    line-height: 26px;
    letter-spacing: -.5px
}

.custom-list-item::before {
    position: absolute;
    top: 11px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--black);
    content: ''
}

.custom-list-item:not(:last-child) {
    margin-bottom: 15px
}

.numeric-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: item
}

.numeric-list-item {
    position: relative
}

.numeric-list-item::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    border-radius: 50%;
    color: #fff;
    line-height: 40px;
    text-align: center;
    background-color: var(--main-color);
    content: counter(item);
    counter-increment: item
}

.numeric-list-item:not(:last-child)::after {
    position: absolute;
    background-color: var(--gray-light);
    content: ''
}

.phone {
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    transition: -webkit-filter 300ms;
    transition: filter 300ms;
    transition: filter 300ms, -webkit-filter 300ms
}

.phone:hover,
.phone:focus {
    -webkit-filter: opacity(.8);
    filter: opacity(.8)
}

.phone-small {
    font-size: 1rem
}

.social-icons {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex
}

.social-icons-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 2px #111;
    transition: -webkit-filter 300ms;
    transition: filter 300ms;
    transition: filter 300ms, -webkit-filter 300ms
}

.social-icons-item{-webkit-transition:all 800ms;-moz-transition:all 800ms;-ms-transition:all 800ms;-o-transition:all 800ms;transition:all 800ms}
.social-icons-item:hover{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}

.social-icons-item:hover,
.social-icons-item:focus {
    -webkit-filter: opacity(.8);
    filter: opacity(.8)
}

.social-icons-icon {
    width: 18px;
    height: 18px;
    color: #fff
}

.social-icons li:not(:last-child) {
    margin-right: 9px
}

.sale-up {
    position: absolute;
    top: 0;
    left: 50%;
    width: 110px;
    padding: 20px 0 25px;
    color: #fff;
    line-height: 1;
    letter-spacing: -.5px;
    text-align: center;
    -webkit-transform: translate(-50%, -30px);
    transform: translate(-50%, -30px)
}

.sale-up svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 120px
}

.sale-up span {
    position: relative;
    z-index: 1
}

.sale-up-info {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase
}

.sale-up-value {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 30px
}

.sale-up-limit {
    color: rgba(255, 255, 255, .7);
    font-size: 1rem
}

.ruble {
    height: 2.5rem;
}

@media (min-width:768px) {
    .ruble {
        height: 4rem;
        fill: var(--white);
    }
}

.currency {
    position: relative
}

.currency::before {
    content: 'Р'
}

.currency::after {
    position: absolute;
    bottom: .9rem;
    left: 0;
    width: 1.1rem;
    height: .15rem;
    background-color: #fff;
    content: ''
}

.currency-dark::after {
    background-color: #111
}

.teachers {
    color: var(--gray-dark);
    background-color: #fff
}

.teachers-wrapper,
.video-wrapper {
    padding: 45px 25px
}

.teachers-title {
    color: #111;
    padding: 0 1rem;
}

.teachers-header {
    margin: 0 0 50px;
    text-align: center
}

.teachers-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex
}

.teachers-item {
    width: 270px
}

.teachers-item:not(:last-child) {
    margin-bottom: 45px
}

.teacher {
    letter-spacing: -.5px;
    text-align: center;
}

.eggs:not(:last-child) {
    margin-bottom: 40px
}

.eggs {
    letter-spacing: -.5px;
    text-align: left;
    padding: 2em;
    min-width: 270px;
    min-height: 270px;
    height: 100%;
    border-radius: 2rem;
    box-shadow: 0px 2px 25px 0px rgba(79,88,117,0.3);
}

.eggs-atom {
    width: 100px;
    margin-top: 2em;
    background-color: var(--main-color);
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}

.teacher-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%
}

.teacher-name {
    display: block;
    margin-top: 1.4rem;
    margin-bottom: .5rem;
    color: #111;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2
}

.teacher-info {
    font-size: 1rem;
    line-height: 1.4
}

.video-embed {
    text-align: center;
    padding: 1.5em;
    margin: 0 auto;
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0px 2px 25px 0px rgba(79,88,117,0.3);
}

    @media (min-width: 480px) {
        .video-embed {
            padding: 2em;
        }
    }

    @media (min-width: 1200px) {
        .video-embed {
            width: 67%;
        }
    }

.iframe-video {
    width: 100%;
    height: 45vw;
}

    @media (min-width: 1200px) {
        .iframe-video {
            height: 30vw;
        }
    }

.popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: none;
    justify-content: center;
    min-width: 320px;
    height: 100vh;
    overflow-y: auto;
    color: #111;
    letter-spacing: -.5px;
    background-color: rgba(0, 0, 0, .5)
}

.popup-active {
    display: flex
}

.popup-wrapper {
    position: relative;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    max-width: 560px;
    margin-top: auto;
    margin-bottom: auto;
    background-color: #fff
}

.popup-close {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 2rem;
}

.popup-form {
    color: var(--gray-dark);
}

.popup-form-wrapper {
    padding: 25px 25px 60px;
    border-radius: 2rem;
}

@media (max-width: 576px) {
    .popup-form-wrapper, .popup-close {
        border-radius: 0;
    }
}

.popup-form-header {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
}

.popup-form-title {
    color: #111
}

.popup-message {
    z-index: 20;
    color: #111;
    line-height: 1
}

.popup-message-wrapper {
    padding: 100px 25px 90px
}

.popup-message-icon {
    width: 95px;
    height: 95px
}

.popup-message-icon-error {
    display: none
}

.popup-message-error .popup-message-icon {
    display: none
}

.popup-message-error .popup-message-icon-error {
    display: block
}

.popup-message-title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 26px;
}

.popup-message-desc {
    margin-bottom: 0;
    font-size: 18px
}

.popup-autopayment {
    z-index: 20;
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 28px
}

.popup-autopayment-wrapper {
    padding: 60px 25px
}

.popup-autopayment-title {
    margin-bottom: 5px;
    color: #111;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px
}

.popup-autopayment-desc {
    max-width: 420px;
    margin-bottom: 30px
}

.popup-autopayment-sale {
    margin-bottom: 40px
}

.popup-autopayment-timer {
    margin-bottom: 30px
}

.popup-sale {
    line-height: 1
}

.popup-sale-title {
    color: #111;
    font-weight: 700;
    font-size: 35px;
}

.popup-sale-value {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: var(--black);
    font-weight: 700;
    font-size: 55px;
}

.timer {
    display: flex;
    flex-wrap: wrap;
    font-weight: 700;
}

.timer-title {
    width: 100%;
    margin-bottom: 15px;
    color: #111;
    font-size: 20px;
    line-height: 22px
}

.timer-value {
    left: 44px;
    color: var(--black);
    font-size: 40px
}

.timer-value-minutes::after {
    content: ':'
}

/* footer */

.main-footer {
    display: grid;
    grid-gap: 2rem 1rem;
    padding-top: 50px;
    padding-bottom: 50px;
}

    .footer-item {
        display: flex;
        align-items: center;
        justify-self: center;
    }

        .footer-text {
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .agreement {
            display: contents;
            font-size: .95rem;
            line-height: 1;
            letter-spacing: -.2px;
        }

            .agreement li {
                margin-right: 0;
            }

@media (min-width: 768px) {
    .main-footer {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .agreement {
        display: flex;
        grid-column: 1 / -1;
        grid-column-gap: 1rem;
    }
    .agreement li:not(:last-child) {
        margin-right: .5rem;
    }
}

@media (min-width: 992px) {
    .main-footer .footer-text {
        font-size: 1.4rem;
    }
}

/* social icons */

.social-icons {
    display: flex
}

    .social-icons li:not(:last-child) {
    margin-right: .6rem
    }

    .social-icons-item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        border: solid 2px var(--black);
        -webkit-transition: all 800ms;
        -moz-transition: all 800ms;
        -ms-transition: all 800ms;
        -o-transition: all 800ms;
        transition :all 800ms
    }

    .social-icons-item:hover {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }

        .social-icons-icon {
            width: 18px;
            height: 18px
        }

.page-footer {
    position: relative;
    z-index: 5;
    padding: 50px 20px 40px;
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: -.5px;
    background-color: #fff;
    max-width: 100%;
}

.page-footer-wrapper {
    display: grid;
    grid-gap: 10px 50px;
    /* grid-template: repeat(3, auto)/repeat(2, 1fr); */
    /* align-items: center; */
    text-align: center;
    justify-items: center;
}

.page-footer .normal {
    display: block;
    transition: color 300ms;
    font-style: normal;
}

.page-footer .normal, .page-footer-social-icons, .footer-phone, .page-footer-logo {
    padding: .5rem 0;
}

.page-footer-logo {
    display: block;
    color: #111;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-footer-logo img {
    width: 135px;
    height: 30px
}

.footer-phone {
    display: block;
    color: #111;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-footer-address {
    margin-bottom: 0
}

.page-footer-docs {
    margin-bottom: 0
}

.page-footer-doc {
    display: block;
    transition: color 300ms
}

.page-footer-doc:not(:last-child) {
    margin-bottom: 10px
}

.page-footer-doc:hover,
.page-footer-doc:focus {
    color: #111
}

.page-footer-button {
    background-color: #111
}

.page-footer-apps {
    display: flex;
    margin-bottom: 0
}

.page-footer-app:not(:last-child) {
    margin-right: 8px
}

.page-footer-app svg {
    width: 130px;
    height: 54px
}

.page-footer-copyright {
    margin-bottom: 0;
    font-style: normal
}

.start-screen {
    padding-bottom: 20px;
    color: #fff;
}

.start-screen-header {
    min-height: 36rem;
    padding: 105px 25px 30px;
    text-align: center;
}

.hero-basic {
    background: linear-gradient(rgba(20,5,5,.2), rgba(20,5,5,.2)), url(../img/hero-basic.jpg) no-repeat;
    background-position: 0 50%;
    background-size: cover;
}

.hero-classical {
    background: url(../img/company.jpg) no-repeat;
    background-position: 0% 85%;
    background-size: cover;
}

.hero-mebel {
    background: url(../img/mebel.jpg) no-repeat;
    background-position: 0% 50%;
    background-size: cover;
}

.hero-minikuhni {
    background: url(../img/minikuhni.jpg) no-repeat;
    background-position: 0% 40%;
    background-size: cover;
}

.hero-marketplace {
    background: url(../img/marketplace.jpg) no-repeat;
    background-position: 0% 40%;
    background-size: cover;
}

.hero-facades {
    background: url(../img/facades.jpg) no-repeat;
    background-position: 0% 30%;
    background-size: cover;
}

.hero-other {
    background: url(../img/other.jpg) no-repeat;
    background-position: 40% 30%;
    background-size: cover;
}

.hero-detskaya {
    background: url(../img/detskaya.jpg) no-repeat;
    background-position: 0% 30%;
    background-size: cover;
}

.hero-zakaz {
    background: url(../img/zakaz.jpg) no-repeat;
    background-position: 0% 50%;
    background-size: cover;
}

.hero-b2b {
    background: url(../img/b2b.jpg) no-repeat;
    background-position: 0% 50%;
    background-size: cover;
}

.start-screen-intro {
    display: block;
    margin-bottom: 28px;
    font-size: 13px;
    line-height: 26px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.start-screen-desc {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -.5px
}

.start-screen-sale {
    margin-bottom: 17px;
    color: #111;
    font-weight: 700;
    font-size: 21px;
    line-height: 32px;
    letter-spacing: -.5px
}

.start-screen-wrapper {
    padding: 40px 25px 45px;
    margin-top: 4rem;
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 2px 25px rgba(1, 0, 60, .35)
}

@media (max-width: 408px) {
    .start-screen-wrapper {
        margin-top: 0;
        border-radius: 0;
    }
}

.start-screen-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    justify-content: center;
    width: 100%;
    margin-top: 48px;
    padding: 0 12px
}

.feature {
    margin-bottom: 30px;
    padding: 0 13px;
    color: #111;
    font-weight: 700;
    font-size: 17px;

    line-height: 24px;
    letter-spacing: -.5px;
    background-size: 100px 100px
}

.feature-info {
    display: block;
    margin: 0 0 7px;
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase
}

.price {
    padding-top: 40px;
    padding-bottom: 50px;
    background: #fff
}

.price-wrapper {
    box-shadow: 0 2px 24px rgba(168, 175, 196, .3);
    border-radius: 2rem;
}

@media (max-width:408px) {
    .price-wrapper, .price-sale {
        border-radius: 0;
    }
}

.price-title {
    margin-bottom: 70px;
    padding: 0 25px;
    color: #111;
    letter-spacing: -.5px;
    text-align: center
}

.price-sale {
    position: relative;
    padding: 50px 25px 25px;
    color: #fff;
    line-height: 1;
    letter-spacing: -.5px;
    text-align: center;
    border-radius: 2rem;
    background: var(--main-color)
}

@media (max-width: 408px) {
    .price-sale {
        border-radius: 0;
    }
}

.price-old {
    margin-bottom: 10px;
    font-size: 1rem;
    -webkit-filter: opacity(.5);
    filter: opacity(.5)
}

.price-credit {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px
}

.price-new {
    margin-bottom: 30px;
    font-size: 1rem
}

.price-value {
    display: block;
    line-height: 1;
    letter-spacing: -2px
}

.price-value-old {
    margin-top: 5px;
    font-size: 36px;
    /* text-decoration: line-through */
}

.price-value-old:before {
    border-bottom: 4px solid red;
    position: absolute;
    content: "";
    width: 6.6rem;
    height: 1.4rem;
    transform: rotate(-11deg);
}

.price-value-oredit {
    font-size: 4.5rem
}

.price-value-new {
    margin-bottom: 10px;
    font-size: 40px
}

.price-guarant {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 13px;
    letter-spacing: -.5px
}

.price-guarant svg {
    width: 15px;
    height: 15px;
    margin-right: 5px
}

.buy {
    padding: 40px 25px 50px;
    letter-spacing: -.5px;
    background-color: #fff;
    border-radius: inherit;
}

.buy-checkbox {
    color: var(--gray-dark)
}

.buy-header {
    margin-bottom: 35px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.buy-start {
    margin-bottom: 0;
    color: var(--gray-dark);
    font-size: 1rem
}

.buy-info {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
}

.buy-link {
    color: var(--main-color)
}

.buy-checkbox::before {
    background-color: var(--main-color)
}

.buy-button {
    background-color: var(--main-color)
}

.page-header {
    /* position: fixed; */
    position: absolute;
    /* top: 0; */
    right: 0;
    left: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    min-width: 320px;
    padding: 20px 25px;
    /* border-bottom: 2px solid rgba(255, 255, 255, .1); */
    color: #fff;
    transition: background-color 500ms, color 500ms
}

.page-header-fixed {
    color: #111;
    background-color: #fff
}

.page-header-toggle {
    z-index: 15;
    width: 64px;
    height: 24px;
    --toggle-color: #02b241
}

.page-header-fixed .page-header-toggle {
    --toggle-color: #111
}

.page-header-fixed .page-header-button {
    opacity: 1
}

.page-header-logo {
    /*width: 185px;*/
    max-height: 28px;
    margin: 0 auto;
    font-weight: 700;
    font-size: 1.4em;
    text-transform: uppercase;
}

.page-header-logo-fixed {
    display: none
}

.page-header-fixed .page-header-logo-fixed {
    display: block
}

.page-header-phone-icon {
    width: 24px;
    height: 24px;
}

.toggle {
    padding: 0;
    border: 0;
    font: inherit;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
    position: fixed;
    cursor: pointer;
    transition: opacity 300ms, -webkit-transform 300ms;
    transition: transform 300ms, opacity 300ms;
    transition: transform 300ms, opacity 300ms, -webkit-transform 300ms
}

.toggle:focus {
    outline: 0
}

.toggle-icon {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--toggle-color);
    transition: background-color 300ms
}

.toggle-icon::before,
.toggle-icon::after {
    position: absolute;
    right: 0;
    left: 0;
    height: inherit;
    background-color: var(--toggle-color);
    transition: all 300ms;
    content: ''
}

.toggle-icon::before {
    top: 0
}

.toggle-icon::after {
    bottom: 0
}

.toggle-active {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.toggle-active .toggle-icon {
    background-color: transparent
}

.toggle-active .toggle-icon::before,
.toggle-active .toggle-icon::after {
    top: 50%;
    background-color: #111
}

.toggle-active .toggle-icon::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.toggle-active .toggle-icon::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.toggle-hidden {
    opacity: 0
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: none;
    min-width: 320px;
    color: var(--black);
    overflow-y: auto;
    background-color: rgba(0, 0, 0, .5)
}

    .sidebar-active {
        display: block
    }

    .sidebar-wrapper {
        max-width: 450px;
        min-height: 100vh;
        padding: 6rem 2rem 5rem 2rem;
        background-color: #fff;
        box-shadow: 0 2px 24px rgba(168, 175, 196, .5);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        transition: 300ms
    }

    .sidebar-wrapper-active {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    .sidebar-title {
        display: block;
        margin-bottom: 1.5rem;
        font-weight: 700;
        font-size: 1.5rem;
        letter-spacing: -.5px;
        text-transform: uppercase
    }

    .sidebar-phone {
        display: block;
        padding-bottom: 1.2rem;
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase
    }

    .sidebar-menu {
        padding-bottom: 4rem;
        max-width: 400px
    }

        .sidebar-menu ul {
            padding-left: 0
        }

        .menu-item:not(:first-child) {
            margin-top: 1.2rem
        }

        .menu-link {
            position: relative;
            font-size: 1.1em;
            transition: 500ms
        }

@media (min-width: 576px) {
    .menu-link {
        font-size: 1.2em;
        padding-bottom: .3rem
    }

    .menu-link:before {
        content: "";
        width: 0;
        height: 0.1em;
        position: absolute;
        bottom: 0;
        right: 0;
        background: var(--black);
        transition: 300ms
    }

    .menu-link:hover:before,
    .menu-link:focus:before {
        width: 100%;
        left: 0;
        /* background: var(--main-color); */
    }

    .menu-link-active {
        cursor: default;
    }

    .menu-link-active:before {
        display: none;
        cursor: default;
    }
}

.faq {
    padding: 30px 0;
    letter-spacing: -.5px;
    background-color: #fff
}

.faq-title {
    margin-bottom: 45px;
    color: #111;
    text-align: center;
}

.faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 830px;
    margin: 0 auto 40px;
    border-top: 2px solid var(--gray-light);
    counter-reset: item
}

.faq-order {
    width: 270px;
    margin: 0 auto;
    font-size: 1rem;
    text-align: center
}

.faq-button {
    width: 270px;
    margin-bottom: 15px
}

.faq-link {
    padding: 0;
    border: 0;
    font: inherit;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer
}

.faq-link:focus {
    outline: 0
}

.faq-item {
    padding-bottom: 30px;
    border-bottom: 2px solid var(--gray-light);
    overflow-y: hidden;
    transition: padding-bottom 500ms
}

.faq-item.close {
    padding-bottom: 0
}

.faq-item-title {
    display: flex;
    margin-bottom: 0;
    padding: 30px 25px 15px;
    color: #111;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    cursor: pointer;
    transition: padding-bottom 500ms
}

.faq-item-title::before {
    margin-right: 20px;
    counter-increment: item;
    content: counter(item) "."
}

.faq-item.close .faq-item-title {
    padding-bottom: 30px
}

.faq-item-intro {
    margin-right: 20px
}

.faq-item-icon {
    flex-shrink: 0;
    align-self: center;
    width: 40px;
    height: 20px;
    margin-left: auto;
    --toggle-color: var(--black);
    --toggle-color-active: transparent
}

.faq-item.close .faq-item-icon {
    --toggle-color-active: var(--black)
}

.faq-item-desc {
    margin-bottom: 0;
    padding-right: 25px;
    padding-left: 60px;
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 26px;
    transition: max-height 500ms
}

.faq-item.close .faq-item-desc {
    max-height: 0
}

.tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow-x: auto
}

.tabs::-webkit-scrollbar {
    display: none
}

.tabs-button {
    padding: 0;
    border: 0;
    font: inherit;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    margin: 0;
    cursor: pointer
}

.tabs-button:focus {
    outline: 0
}

.learning-process {
    color: var(--gray-dark);
    letter-spacing: -.5px
}

.learning-process-wrapper {
    padding: 40px 25px 70px
}

.learning-process-header {
    margin-bottom: 30px;
    text-align: center;
}

.learning-process-title {
    color: #111;
}

.learning-process-item {
    width: 265px
}

.process-block-title {
    margin-top: 0;
    margin-bottom: 5px;
    color: #111;
    font-size: 20px;
    line-height: 26px
}

.process-block-desc {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 26px
}

.process-block-photo {
    width: 215px;
    height: 135px;
    -webkit-transform: translateX(-25px);
    transform: translateX(-25px)
}

.what-get {
    color: #111;
    letter-spacing: -.5px;
    background-color: #fff
}

.what-get-wrapper {
    padding: 40px 25px;
}

.what-get-header {
    margin-bottom: 25px
}

.what-get-desc {
    color: var(--gray-dark)
}

.what-get-list {
    margin-bottom: 30px;
    /* box-shadow: var(--box-shadow-hover);
    padding: 2rem;
    border-radius: 2rem; */
}

.what-get-button {
    width: 270px;
    margin-bottom: 15px
}

.what-get-order {
    margin-bottom: 0;
    text-align: center
}

.what-get-sale {
    display: block;
    margin-bottom: 0;
    font-size: 1rem
}

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

.benefit-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1
}

.benefit-desc {
    margin-bottom: 0;
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 20px
}

.resume {
    padding: 60px 0 20px;
    letter-spacing: -.5px
}

.resume .txt span {
    color: #111
}

.resume-header {
    margin-bottom: 40px;
    text-align: center;
}

.resume-title {
    color: #111
}

.resume-wrapper {
    font-size: 1rem;
    line-height: 26px;
    background-color: #fff;
    box-shadow: var(--box-shadow-hover);
    border-radius: 0rem;
    margin: 3em auto;
    color: var(--gray-dark);
}

@media (min-width:768px) {
    .resume-wrapper {
        border-radius: 2rem;
    }
}

.bhd {box-shadow: var(--box-shadow-hover)!important;}

.resume-intro {
    display: flex;
    flex-direction: column;
    padding: 25px 25px 30px
}

.resume-start {
    margin-bottom: 30px;
    color: #111;
    font-size: 26px;
    line-height: 30px
}

.resume-student {
    position: relative;
    width: 225px;
    margin-bottom: 30px;
    padding: 10px 0 10px 75px;
    font-size: 13px;
    line-height: 20px
}

.resume-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%
}

.resume-text {
    color: #111;
    line-height: 1
}

.resume-profession {
    display: block
}

.resume-salary {
    width: 200px;
    margin-bottom: 0
}

.resume-value {
    color: #111;
    font-weight: 300;
    font-size: 38px;
    line-height: 42px
}

.resume-instruments {
    max-width: 240px;
    margin-top: 20px
}

.resume-instruments-list {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px
}

.resume-instrument:not(:last-child) {
    margin-right: 12px
}

.resume-skills {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e5f5
}

.resume-skills-list {
    margin-top: 20px
}

.instrument-logo {
    position: relative;
    cursor: pointer
}

/* .instrument-logo::before {
    position: absolute;
    bottom: -5px;
    left: 50%;
    z-index: 2;
    display: none;
    width: 20px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='230' height='140'%3E style %3Cpolygon class='shadow' points='5,135 115,5 225,135' fill='%23fff' /%3E%3C/svg%3E") center no-repeat;
    background-size: contain;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    content: ''
} */

.instrument-logo img {
    width: 35px;
    height: 35px
}

.instrument-logo:hover::before,
.instrument-logo:focus::before {
    display: block
}

.instrument-desc {
    position: absolute;
    bottom: -15px;
    z-index: 1;
    display: none;
    width: 275px;
    padding: 10px 15px;
    font-size: 11px;
    line-height: 20px;
    background-color: #fff;
    box-shadow: 0 2px 24px rgba(168, 175, 196, .5);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    transition: opacity 300ms
}

.instrument-logo:hover+.instrument-desc,
.instrument-logo:focus+.instrument-desc {
    display: block
}

.instrument-name {
    display: block;
    font-size: 1rem;
    line-height: 25px
}

.diploma {
    padding: 30px 25px 50px;
    color: #fff;
    background: #fff
}

.diploma-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 35px
}

.diploma-desc {
    max-width: 350px;
    margin-top: 0;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    line-height: 26px
}

.diploma-photo {
    width: 250px;
    height: 175px;
    padding: 75px 40px 40px 150px;
    font-weight: 700;
    font-size: 9px;
    line-height: 11px;
    background: url(img/diploma.svg) center no-repeat;
    background-size: contain;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .2)
}

.about-wrapper {
    padding: 50px 25px 25px
}

.about-header {
    margin-bottom: 35px
}

.about-title {
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 28px
}

.about-desc {
    font-size: 1rem;
    line-height: 20px
}

.about-desc:not(:last-child) {
    margin-bottom: 15px
}

.about-item {
    width: 165px;
    margin-bottom: 25px
}

.statistics {
    font-size: 1rem;
    line-height: 22px
}

.statistics-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px
}

.statistics-desc {
    max-width: 180px
}

.reminder-wrapper {
    padding: 40px 0
}

.reminder-header {
    width: 100%;
    padding: 0 25px;
    margin: 0 auto 42px;
    text-align: center;
}

.reminder-desc {
    margin-bottom: 0;
    color: var(--gray-dark);
}

.reminder-form-wrapper {
    padding: 40px 25px 45px;
    background: #fff;
    box-shadow: 0 2px 25px rgba(1, 0, 60, .35)
}

.reminder-form-wrapper {
    padding: 40px 25px 45px;
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 2px 25px rgba(1, 0, 60, .35)
}

@media (max-width: 408px) {
    .reminder-form-wrapper {
        border-radius: 0;
    }
}

@media (min-width: 321px) {
    .eggs {
        min-width: 285px;
    }
}

@media (min-width: 576px) {
    .button-close {
        width: 60px;
        height: 60px
    }
}

@media (min-width:768px) {
    .container {
        width: 708px;
        max-width: none
    }
    .button-close-icon {
        width: 20px;
        height: 20px;
        fill: #fff;
    }
    .custom-form-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between
    }
    .h-1 {
        margin-bottom: 42px;
        font-size: 45px;
        line-height: 48px
    }
    .h-2 {
        margin-bottom: 18px;
        font-size: 45px;
        line-height: 52px
    }
    .h-3 {
        margin-bottom: 25px;
        font-size: 38px;
        line-height: 40px
    }
    .header-desc {
        font-size: 18px;
        line-height: 32px
    }
    .numeric-list {
        display: flex;
        flex-wrap: wrap
    }
    .numeric-list-item {
        padding-top: 60px
    }
    .social-icons-item {
        width: 40px;
        height: 40px
    }
    .social-icons-icon {
        width: 20px;
        height: 20px
    }
    .social-icons li:not(:last-child) {
        margin-right: 12px
    }
    .teachers-wrapper,
    .video-wrapper {
        padding: 70px 0
    }
    .teachers-header {
        margin-bottom: 70px
    }
    .teachers-list {
        flex-wrap: wrap;
        justify-content: center
    }
    .teachers-item {
        margin: 0 40px
    }
    .eggs {
        margin: 0 25px;
        min-width: 300px;
    }
    .popup-form-wrapper {
        padding: 60px 60px 70px
    }
    .popup-message-wrapper {
        padding: 85px 25px 85px 195px
    }
    .popup-message-icon {
        position: absolute;
        top: 50%;
        left: 55px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
    .popup-autopayment {
        font-size: 18px
    }
    .popup-autopayment-wrapper {
        padding-right: 50px;
        padding-left: 50px
    }
    .popup-autopayment-title {
        font-size: 25px;
        line-height: 30px
    }
    .popup-autopayment-desc {
        margin-bottom: 40px
    }
    .popup-autopayment-sale {
        margin-bottom: 30px
    }
    .popup-autopayment-timer {
        margin-bottom: 45px
    }
    .popup-sale-title {
        font-size: 47px
    }
    .popup-sale-value {
        font-size: 70px
    }
    .timer-title {
        font-size: 25px;
        line-height: 27px
    }
    .page-footer {
        padding: 50px 0 65px
    }
    .page-footer-logo {
        grid-column: 1/2;
        grid-row: 1/2
    }
    .page-footer-logo img {
        width: 295px
    }
    .page-footer-phone {
        display: flex;
        grid-column: 1/2;
        grid-row: 2/3
    }
    .page-footer-docs {
        grid-column: 1/2;
        grid-row: 4/5
    }
    .page-footer-doc {
        grid-column: 1/2;
        grid-row: 4/5
    }
    .page-footer-button {
        grid-column: 1/2;
        grid-row: 3/4;
        width: 240px
    }
    .page-footer-copyright {
        grid-column: 1/2;
        grid-row: 5/6
    }
    .start-screen {
        padding-bottom: 25px
    }
    .start-screen-header {
        /* padding: 110px 25px 230px; */
        padding: 140px 25px 230px
    }
    .start-screen-intro {
        margin-bottom: 15px;
        font-size: 1rem;
        line-height: 26px
    }
    .start-screen-sale {
        margin-bottom: 20px;
        margin-top: 10px;
        font-size: 24px;
        line-height: 1
    }
    .start-screen-wrapper {
        margin-top: -190px;
        padding: 30px 30px 40px;
    }
    .start-screen-features {
        grid-template-columns: repeat(4, auto);
        max-width: 708px;
        margin-right: auto;
        margin-left: auto;
        padding: 0
    }
    .feature {
        margin-bottom: 0;
        padding: 0 30px;
        border-right: 2px solid var(--gray-light);
        font-size: 20px
    }
    .feature:nth-child(4n) {
        padding-right: 0;
        border-right: none
    }
    .feature:first-child {
        padding-left: 0
    }
    .price {
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .price-title {
        margin-bottom: 50px
    }
    .price-sale {
        padding: 50px 85px 30px
    }
    .price-old {
        margin-bottom: 25px
    }
    .price-credit {
        margin-bottom: 35px;
        font-size: 20px;
        line-height: 1.4;
    }
    .price-new {
        margin-bottom: 50px;
        font-size: 18px
    }
    .payment-link {
        margin-top: 20px;
        margin-bottom: 50px;
        font-size: 18px;
        line-height: 20px;
    }
        .payment-link a {
            border-bottom: 2px solid currentColor;
        }
    .price-value-old {
        font-size: 38px
    }
    .price-value-oredit {
        font-size: 6rem;
        font-weight: 700;
    }
    .price-value-new {
        font-size: 50px
    }
    .buy {
        padding: 55px 125px 60px
    }
    .buy-header {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 25px
    }
    .buy-start:not(:last-child) {
        margin-right: 40px
    }
    .page-header {
        padding-right: 30px;
        padding-left: 30px
    }
    .page-header-toggle {
        width: 32px;
        height: 22px
    }
    /*.page-header-logo {
        width: 475px
    }*/
    /* .sidebar-phone {
        margin-bottom: 40px
    } */
    .faq {
        padding: 30px 0 70px
    }
    .faq-title {
        margin-bottom: 45px;
        text-align: center
    }
    .faq-list {
        margin-bottom: 50px
    }
    .faq-order {
        font-size: 18px
    }
    .faq-button {
        margin-bottom: 20px
    }

    .learning-process-wrapper {
        padding: 50px 0 70px
    }
    .learning-process-header {
        margin-bottom: 40px;
        text-align: center
    }
    .learning-process-item {
        width: 210px
    }
    .process-block-title {
        margin-bottom: 20px
    }
    .process-block-desc {
        margin-bottom: 40px
    }
    .what-get-wrapper {
        padding: 70px 0;
    }
    .what-get-header {
        margin-bottom: 50px
    }
    .what-get-list {
        margin-bottom: 40px
    }
    .what-get-benefit {
        margin: 0 auto;
        width: 570px
    }
    .what-get-button {
        margin-bottom: 20px
    }
    .what-get-sale {
        font-size: 18px;
        line-height: 32px
    }
    .benefit {
        position: relative;
        padding-top: 10px;
    }
    .benefit-icon {
        position: absolute;
        top: 0;
        left: 0
    }
    .benefit-title {
        font-size: 20px
    }
    .benefit-desc {
        font-size: 1rem;
        line-height: 26px
    }
    .resume {
        padding: 60px 0
    }
    .resume-header {
        text-align: center
    }
    .resume-wrapper {
        max-width: 768px;
    }
    .resume-intro {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-self: center;
        padding-top: 40px
    }
    .resume-start {
        width: 100%;
        text-align: center
    }
    .resume-student {
        margin-bottom: 0
    }
    .resume-instruments {
        margin-top: 0
    }
    .resume-skills {
        width: 100%
    }
    .resume-skills-list {
        display: flex;
        flex-wrap: wrap
    }
    .resume-skill {
        width: 50%;
        padding-right: 30px
    }
    .instrument-desc {
        right: 0
    }
    .diploma {
        position: relative;
        min-height: 258px;
        padding: 60px 320px 40px 25px
    }
    .diploma-photo {
        position: absolute;
        top: 40px;
        right: 25px
    }
    .about-wrapper {
        padding: 70px 0 45px
    }
    .about-title {
        width: 100%;
        margin-bottom: 45px;
        font-size: 45px;
        line-height: 48px;
        text-align: center;
    }
    .about-desc {
        font-size: 18px;
        line-height: 28px
    }
    .about-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between
    }
    .statistics-title {
        display: block;
        margin-bottom: 20px;
        font-size: 70px;
        line-height: 1
    }
    .reminder-form-wrapper {
        padding: 82px 30px 40px
    }
    .reminder-wrapper {
        padding: 60px 0
    }
    .reminder-header {
        width: 708px
    }
    .reminder-form-wrapper {
        padding: 82px 30px 40px
    }
    /* .page-footer .normal, .page-footer-social-icons, .footer-phone, .page-footer-logo {
    padding: 15px 0 0 20px;
	} */
}

@media (min-width:1200px) {
    .container {
        width: 1170px
    }
    .custom-form-row .custom-form-field {
        width: 400px;
        margin-bottom: 0;
    }
    .custom-form-row .custom-form-button {
        width: 275px
    }
    .h-1 {
        margin-bottom: 12px;
        font-size: 4.2em;
        line-height: 80px
    }
    .h-2 {
        font-size: 55px;
        line-height: 62px
    }
    .h-3 {
        margin-bottom: 30px;
        font-size: 34px
    }
    .page-header-logo {
    padding-right: 40px;
    }
    .header-desc {
        width: 830px;
        margin: 0 auto
    }
    .custom-list-item {
        max-width: 570px
    }
    .numeric-list-item:not(:last-child)::after {
        top: 19px;
        right: 15px;
        left: 55px;
        height: 2px
    }
    .teachers-wrapper,
    .video-wrapper {
        padding: 60px 0
    }
    .teachers-item {
        margin: 0 60px
    }
    .eggs {
        margin: 0 30px;
        min-width: 300px
    }
    .teachers-item:not(:last-child) {
        margin-bottom: 55px
    }
    /* .popup-close {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    } */
    .page-footer {
        padding: 65px 0
    }
    .page-footer-wrapper {
        grid-gap: 5px 85px;
        grid-template: repeat(2, auto)/repeat(3, 1fr)
    }
    .page-footer-phone {
        grid-column: 2/3;
        grid-row: 1/2
    }
    .page-footer-address {
        grid-column: 1/2;
        grid-row: 2/3
    }
    .page-footer-docs {
        grid-column: 2/3;
        grid-row: 2/3
    }
    .page-footer-apps {
        grid-column: 2/3;
        grid-row: 3/4;
        align-self: flex-end
    }
    .page-footer-social-icons {
        grid-column: 3/4;
        grid-row: 1/1
    }
    .page-footer-copyright {
        grid-column: 3/4;
        grid-row: 3/4;
        align-self: flex-end
    }
    .start-screen {
        padding-bottom: 55px
    }
    .start-screen-header {
        padding: 150px 25px 130px
    }
    .start-screen-intro {
        margin-bottom: 25px;
        font-size: 18px;
        line-height: 32px
    }
    .start-screen-desc {
        width: 830px;
        margin: 0 auto;
        font-size: 26px;
        line-height: 33px
    }
    .start-screen-wrapper {
        margin-top: -103px
    }
    .start-screen-features {
        max-width: 1170px
    }
    .feature {
        font-size: 26px;
        line-height: 1
    }
    .feature-info {
        font-size: 13px;
        line-height: 23px
    }
    .price {
        padding-top: 60px
    }
    .price-wrapper {
        display: flex;
        flex-wrap: wrap
    }
    .price-title {
        margin-bottom: 60px
    }
    .price-sale {
        flex-grow: 1;
        padding-top: 100px;
        padding-bottom: 40px
    }
    .price-credit {
        font-size: 23px
    }
    .price-new {
        margin-bottom: 70px;
        font-size: 20px
    }
    .price-buy {
        width: 585px
    }
    .buy {
        padding-right: 85px;
        padding-left: 85px
    }
    .page-header {
        padding: 15px 30px 14px
    }
    .page-header-button {
        margin-left: 40px;
        padding: 11px 17px;
        opacity: 0;
        transition: opacity 500ms, -webkit-filter 300ms;
        transition: opacity 500ms, filter 300ms;
        transition: opacity 500ms, filter 300ms, -webkit-filter 300ms
    }
    /*.page-header-logo {
        width: 330px
    }*/
    .page-header-phone-icon {
        display: none
    }
    .page-header-phone {
        margin-left: 130px
    }
    .faq {
        padding: 60px 0
    }
    .tabs-button {
        margin-bottom: 5px;
        border-bottom: 3px solid transparent;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase
    }
    .tabs-button:not(:last-child) {
        margin-right: 45px
    }
    .tabs-button.active {
        border-color: var(--button)
    }
 
    .learning-process-wrapper {
        padding: 70px 0 85px
    }
    .learning-process-header {
        margin-bottom: 50px
    }
    .learning-process-item:not(:last-child) {
        width: 310px;
        padding-right: 105px
    }
    .what-get-wrapper {
        padding: 60px 0
    }
    .what-get-header {
        text-align: center
    }
    .what-get-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px
    }
    .what-get-benefit {
        width: 550px;
        margin-bottom: 50px
    }
    .benefit {
        padding-left: 90px
    }
    .benefit-icon {
        width: 50px;
        height: 50px
    }
    .resume {
        padding: 60px 0
    }
    .resume-wrapper {
        max-width: 970px
    }
    .resume-intro {
        padding: 40px 70px
    }
    .diploma {
        padding-right: 100px;
        padding-left: 100px
    }
    .diploma-photo {
        right: 100px
    }
    .about-wrapper {
        display: flex;
        justify-content: space-between
    }
    .about-header {
        width: 500px;
        margin-bottom: 0
    }
    .about-title {
        margin-bottom: 50px;
        font-size: 60px
    }
    .about-desc:not(:last-child) {
        margin-bottom: 20px
    }
    .about-list {
        width: 560px
    }
    .about-item {
        width: 245px
    }
    .statistics-title {
        margin-bottom: 10px;
        font-size: 60px
    }
    .reminder-wrapper {
        padding: 60px 0
    }
    .reminder-header {
        width: 1170px;
        text-align: center
    }
    .reminder-title {
        margin-bottom: 15px;
        text-align: center
    }
    .reminder-title {
        margin-bottom: 15px;
        text-align: center
    }
    /* .page-footer .normal, .page-footer-social-icons, .footer-phone, .page-footer-logo {
    padding: 15px 0 0 40px;
	} */
}

@media (min-width:768px) and (max-width:1199.9px) {
    .custom-form-row .custom-form-field {
        width: 315px;
        border-radius: 2rem;
    }
    .buy-header {
        justify-content: center
    }
    .learning-process-item:nth-child(odd) {
        margin-right: 185px
    }
    .about-header {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 60px
    }
    .about-desc {
        width: 330px;
        margin-bottom: 0
    }
    .about-item {
        width: 170px
    }
    .about-item:first-child {
        width: 100%;
        margin-bottom: 60px
    }
}

@media (max-width:767.9px) {
    .numeric-list-item {
        padding-left: 55px
    }
    .numeric-list-item:not(:last-child)::after {
        top: 50px;
        bottom: 10px;
        left: 19px;
        width: 2px
    }
    .teachers-list {
        flex-direction: column
    }
    .teachers-item {
        margin: 0 auto
    }
    .popup-form-header {
        padding-right: 25px
    }
    .popup-message-wrapper {
        align-items: center
    }
    .popup-message-icon {
        margin-bottom: 25px
    }
    .popup-message-desc {
        text-align: center
    }
    .popup-autopayment-wrapper {
        align-items: center;
        text-align: center
    }
    .timer {
        justify-content: center
    }
    .page-footer-logo {
        margin-bottom: 5px
    }
    .start-screen-sale {
        /*max-width: 250px*/
        text-align: center;
    }
    .start-screen-features {
        max-width: 400px;
        margin-right: auto;
        margin-left: auto
    }
    .buy-start:not(:last-child) {
        margin-bottom: 15px;
        margin-right: 10px;
    }
    .faq-title {
        padding: 0 25px
    }
    .process-block {
        padding-top: 5px
    }
    .benefit-title {
        margin-top: 10px
    }
    .resume-header {
        padding: 0 25px
    }
    .instrument-desc {
        left: 0
    }
}

@media (max-width:1199.9px) {
    .page-header-button {
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100vw;
        transition: bottom 500ms
    }
    .page-header-button-fixed {
        bottom: 0
    }
    .mobile-off {
        display: none
    }
    .tabs-button {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        font-size: 0;
        background-color: var(--gray-light)
    }
    .tabs-button:not(:last-child) {
        margin-right: 10px
    }
    .tabs-button.active {
        background-color: var(--button)
    }
    .learning-process-item {
        padding-bottom: 25px
    }
    .what-get-benefit {
        margin-bottom: 25px
    }
    .what-get-wrapper {
        text-align: center;
        max-width: 570px;
    }
}

/*============================
 ts schedule 
 ===========================*/
.schedule-container {
    max-width: 900px;
}

 .schedule-tabs {
    box-shadow: var(--box-shadow-hover);
}
.ts-schedule {
    padding: 3em 0 4em;
}

.schedule-listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }

@media (min-width: 737px) {
    .schedule-listing:first-child {
        border-top-left-radius: 2rem;
        border-top-right-radius: 2rem;
    }
    .schedule-listing:last-child {
        border-bottom-left-radius: 2rem;
        border-bottom-right-radius: 2rem;
    }
    .schedule-tabs {
        border-radius: 2rem;
    }
}

  .schedule-listing .schedule-slot-time {
    background: var(--main-color);
    color: #fff;
    padding: 60px 28px;
    border-radius: inherit;
    font-size: 1.2rem;
    font-weight: 700;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    text-transform: uppercase;
    text-align: center;
}
    .schedule-listing .schedule-slot-time span {
      line-height: 1.3em;
      font-size: 2em;
      padding-bottom: 10px;
    }
    .schedule-listing .schedule-slot-time p {
        display: block;
        font-weight: 400;
        margin: 0;
        padding-bottom: 15px;
      }
  .schedule-listing .schedule-slot-info {
    display: flex;
    align-items: center;
    position: relative;
    padding: 35px 40px 35px 40px;
    border-top: 1px solid #f7f7f7;
    border-bottom: 1px solid #f7f7f7;
    border-radius: inherit;
    line-height: 1.5;
    border-left: none;
    width: 100%; }
        .schedule-listing .schedule-slot-info h3 {
            font-size: 24px;
            margin-top: .5rem;
            margin-bottom: 0;
        }
        .schedule-listing .schedule-slot-info p {
            margin-bottom: 0;
            font-size: 1.2rem;
            line-height: 1.4;
        }
        .schedule-listing .schedule-slot-info p:not(:last-child) {
            margin-bottom: .4rem;
        }
    .schedule-listing .schedule-slot-info .schedule-slot-speakers {
      position: absolute;
      left: 40px;
      top: 0;
      height: 80px;
      width: 80px;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -ms-border-radius: 50%;
      bottom: 0;
      margin: auto; }
      .schedule-listing .schedule-slot-info .schedule-slot-title strong {
        font-size: 1rem;
        margin-left: 12px; }
  .schedule-listing:nth-of-type(even) .schedule-slot-time {
    background: var(--main-color-deep); }
  .schedule-listing.launce .schedule-slot-time {
    padding: 40px 28px; }
  .schedule-listing.launce .schedule-slot-title {
    float: left;
    margin-bottom: 0; }
  .schedule-listing.launce .schedule-slot-info-content img {
    float: right; }

@media (max-width: 1199px) {
    .schedule-listing .schedule-slot-time {
          -ms-flex: 0 0 30%;
          flex: 0 0 30%;
          max-width: 30%;
      }
}

@media (max-width: 767px) {
    .ts-schedule-info {
    margin-top: 40px;
    margin-bottom: 40px; }
    .ts-schedule-info ul {
      min-height: 150px; }
      .ts-schedule-info ul li a {
        width: 100px;
        height: 100px;
        padding: 35px 0; }
        .ts-schedule-info ul li a h3 {
          font-size: 1rem;
          margin-bottom: 0; }
        .ts-schedule-info ul li a span {
          text-transform: capitalize;
          font-size: 12px; }
      .ts-schedule-info ul li:nth-child(1) a {
        top: 30px; }
      .ts-schedule-info ul li:nth-child(2) a {
        left: 76px; }
      .ts-schedule-info ul li:nth-child(3) a {
        top: 30px;
        left: 160px;
        right: auto; }
  .schedule-listing {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .schedule-listing .schedule-slot-time {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      padding: 20px 35px; }
    .schedule-listing .schedule-slot-info {
      padding: 35px 40px 35px 35px;
      border-left: 1px dashed #e5e5e5; }
      .schedule-listing .schedule-slot-info .schedule-slot-speakers {
        display: none; }
  .schedule-listing-btn {
    margin-top: 40px; }
  .ts-schedule-nav {
    margin-bottom: 40px; }
    .ts-schedule-nav ul li a {
      display: inline-block;
      padding: 20px 20px;
      margin: 5px 0; }
  .schedule-tabs-item .schedule-listing-item:before, .schedule-tabs-item .schedule-listing-item:after {
    display: none; }
  .schedule-tabs-item .schedule-listing-item.schedule-left {
    margin-top: 0;
    padding: 0px 110px 20px 0; }
  .schedule-tabs-item .schedule-listing-item.schedule-right {
    padding: 0px 20px 0px 110px;
    margin-bottom: 30px; }
  .schedule-tabs-item .schedule-listing-item .schedule-slot-speakers {
    top: 5px; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ts-schedule-info ul {
    margin-top: 50px;
    min-height: 215px; }
    .ts-schedule-info ul li a {
      position: relative;
      padding: 70px 0;
      width: 200px;
      height: 200px;
      margin: 0 8px; }
    .ts-schedule-info ul li:nth-child(1) a {
      left: 0;
      top: 0; }
    .ts-schedule-info ul li:nth-child(2) a {
      left: 0;
      top: 0; }
    .ts-schedule-info ul li:nth-child(3) a {
      left: 0;
      top: 0; }
}
@media (max-width: 767px) {
  .ts-schedule-info {
    margin-top: 40px;
    margin-bottom: 40px; }
    .ts-schedule-info ul {
      min-height: 150px; }
      .ts-schedule-info ul li a {
        width: 100px;
        height: 100px;
        padding: 35px 0; }
        .ts-schedule-info ul li a h3 {
          font-size: 1rem;
          margin-bottom: 0; }
        .ts-schedule-info ul li a span {
          text-transform: capitalize;
          font-size: 12px; }
      .ts-schedule-info ul li:nth-child(1) a {
        top: 30px; }
      .ts-schedule-info ul li:nth-child(2) a {
        left: 76px; }
      .ts-schedule-info ul li:nth-child(3) a {
        top: 30px;
        left: 160px;
        right: auto; }
  .schedule-listing {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .schedule-listing .schedule-slot-time {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      padding: 20px 35px;
      text-align: center;
    }
    .schedule-listing .schedule-slot-info {
      padding: 35px 40px 35px 35px;
      border-left: 1px dashed #e5e5e5; }
      .schedule-listing .schedule-slot-info .schedule-slot-speakers {
        display: none; }
        .schedule-listing .schedule-slot-info .schedule-slot-title {
      font-size: 24px; margin: 0.2em 0 .5em;}
  .schedule-listing-btn {
    margin-top: 40px; }
  .ts-schedule-nav {
    margin-bottom: 40px; }
    .ts-schedule-nav ul li a {
      display: inline-block;
      padding: 20px 20px;
      margin: 5px 0; }
  .schedule-tabs-item .schedule-listing-item:before, .schedule-tabs-item .schedule-listing-item:after {
    display: none; }
  .schedule-tabs-item .schedule-listing-item.schedule-left {
    margin-top: 0;
    padding: 0px 110px 20px 0; }
  .schedule-tabs-item .schedule-listing-item.schedule-right {
    padding: 0px 20px 0px 110px;
    margin-bottom: 30px; }
  .schedule-tabs-item .schedule-listing-item .schedule-slot-speakers {
    top: 5px; }
}

.pt3em {
    padding-top: 3em;
}

/* grid autor */
/* .grid-autor-section {
    padding: 3em 0 4em;
}

.grid-doc-section {
    padding-bottom: 4%;
}

.grid-autor {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(400px,1fr));
    grid-auto-rows: minmax(15px,auto);
    box-shadow: var(--box-shadow);
    border-radius: 2rem;
} */
/* .grid-autor .item:first-child {
    background: var(--main-color);
} */

/* .grid-autor .item {
    color: #111;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
    justify-items: center;
}

.grid-autor .autor-photo {
    min-height: 40rem;
    background: url(../img/irina-3-600.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.grid-autor .item div {
    padding: 12%;
    font-size: 1.1rem;
    line-height: 1.3;
}

.grid-autor .svidetelstvo {
    padding: 20px;
}

.grid-autor .item span {
    display: block;
    font-size: 1.8em;
    line-height: 1.1em;
    font-weight: 700;
    padding-bottom: .6em;
}

.grid-autor img {
    display: block;
    width: 100%;
} */



/* grid reviews */
.grid-reviews-section {
    padding: 3em 0 4em;
}

.grid-reviews {
    display: grid;
    /*grid-template-columns: repeat(auto-fit,minmax(300px,1fr));*/
    grid-auto-rows: minmax(15px,auto);
    grid-gap: 2em;
    padding: 6% 7%;
}
.grid-reviews .item:first-child {
    justify-items: start;
}

.grid-reviews .item:last-child {
    justify-items: end;
    text-align: end;
}

.one {
  grid-column: 1;
}
.two { 
  grid-column: 2 / 3;
}
.three {
  grid-column: 1 / 2;
}
.four {
  grid-column: 3;
}

.grid-reviews .item {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    min-height: 260px;
}

.grid-reviews .item span {
    display: block;
    font-size: 1.5em;
    font-weight: 700;
    padding-bottom: .6em;
}

/* .grid-reviews .item .txt {
    margin: 9%;
}

.grid-reviews img {
    margin: 20%;
} */

@media (max-width: 768px) {
    .page-header-logo {
        font-size: 1em;
        /* text-transform: capitalize; */
    }
    .reviews-txt {
        grid-area: reviews-txt;
    }
    .reviews-img {
        grid-area: reviews-img;
    }
    .grid-reviews {
        grid-template-columns: 1fr;
        grid-template-areas:
        "reviews-txt"
        "reviews-img";
    }
    .grid-reviews .item:first-child, .grid-reviews .item:last-child  {
        justify-items: center;
        text-align: center;
        min-height: auto;
    }
    .grid-reviews {
        padding: 3em 2em;
    }
}

@media (max-width: 480px) {
    .h-1 {font-size: 2.2em;}
}

/*! communication widget v2.2 | (c) https://wxxx.ru/knopka */
/* communication widget */
.communication-widget {
    font-family: sans-serif;
    z-index: 9;
    font-size: 1rem;
    border: none;
    outline: none;
    user-select: none;
}

.communication-widget {
    display: block;
    position: fixed;
    right: 30px;
    bottom: 30px;
}

.communication-widget.left {
    right: auto;
    left: 30px;
}

.communication-widget .communication-btn {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4f3152 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 38 35'%3E%3Cpath fill-rule='evenodd' d='M36.9 10.05c-1-4.27-4.45-7.6-8.8-8.4-2.95-.5-6-.78-9.1-.78-3.1 0-6.15.27-9.1.8-4.35.8-7.8 4.1-8.8 8.38-.4 1.5-.6 3.07-.6 4.7 0 1.62.2 3.2.6 4.7 1 4.26 4.45 7.58 8.8 8.37 2.95.53 6 .45 9.1.45v5.2c0 .77.62 1.4 1.4 1.4.3 0 .6-.12.82-.3l11.06-8.46c2.3-1.53 3.97-3.9 4.62-6.66.4-1.5.6-3.07.6-4.7 0-1.62-.2-3.2-.6-4.7zm-14.2 9.1H10.68c-.77 0-1.4-.63-1.4-1.4 0-.77.63-1.4 1.4-1.4H22.7c.76 0 1.4.63 1.4 1.4 0 .77-.63 1.4-1.4 1.4zm4.62-6.03H10.68c-.77 0-1.4-.62-1.4-1.38 0-.77.63-1.4 1.4-1.4h16.64c.77 0 1.4.63 1.4 1.4 0 .76-.63 1.38-1.4 1.38z'%3E%3C/path%3E%3C/svg%3E") center center no-repeat;
    background-size: 28px 28px;
    transition: background-color 300ms;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.2);
}

.communication-widget .communication-btn:hover {
    animation: communicationJiggle ease-in-out 400ms infinite;
}

.communication-widget .communication-btn .animation-btntop {
    position: relative;
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    background: #4f3152;
    animation-name: communicationFadeInOut;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 3s;
}

.communication-widget .communication-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.communication-widget.open .communication-btn .animation-btntop {
    display: none;
}

.communication-widget .communication-ring {
    display: none;
    border: 1px solid #4f3152;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    animation: communicationPulsate infinite 1.5s;
}

.communication-widget.ring .communication-ring {
    display: block;
}

.communication-widget.open .communication-ring {
    display: none;
}

.communication-widget.open .communication-btn {
    background: #4f3152 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 53.758 53.758'%3E%3Cg%3E%3Cpath d='M29.35,26.781l7.582-7.583c0.698-0.697,0.698-1.829,0-2.527 c-0.697-0.698-1.829-0.698-2.526,0l-7.582,7.583l-7.583-7.583c-0.699-0.698-1.829-0.698-2.528,0c-0.698,0.698-0.698,1.83,0,2.527 l7.582,7.583l-7.582,7.582c-0.698,0.698-0.698,1.83,0,2.527c0.699,0.698,1.829,0.698,2.528,0l7.583-7.582l7.582,7.582 c0.697,0.698,1.829,0.698,2.526,0c0.698-0.697,0.698-1.829,0-2.527L29.35,26.781z'/%3E%3C/g%3E%3C/svg%3E") center center no-repeat;
    border: none;
    outline: none;
    width: 48px;
    height: 48px;
    animation: communicationRotate 400ms;
}

.communication-widget .communication-links {
    padding-bottom: 6px;
    display: none;
    animation: communicationOpen 300ms;
}

.communication-widget.open .communication-links {
    display: block;
}

.communication-widget .communication-links a {
    margin-bottom: 8px;
    position: relative;
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background-color 300ms;
    border: none;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.2);
    align-items: center;
    justify-content: center;
}

.communication-widget .communication-links svg {
    fill: #fff;
    width: 30px;
    height: 30px;
}

.communication-widget .communication-links a:hover {
    -webkit-animation-name: communicationPop;
    animation-name: communicationPop;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.communication-widget .telegram--i {
    background: #0078FF;
}

.communication-widget #telegram--i {
    padding-right: 3px;
}

.communication-widget .whatsapp--i {
    background: #25D366;
}

.communication-widget .viber--i {
    background: #7D3DAF;
}

.communication-widget .messenger--i {
    background: #0078FF;
}

.communication-widget .skype--i {
    background: #00AFF0;
}

.communication-widget .vk--i {
    background: #4680C2;
}

.communication-widget #vk--i {
    padding-top: 1px;
}

.communication-widget .call--i {
    background: #0EBE2C;
}

.communication-widget #call--i {
    padding: 3px;
}

.communication-widget .communication-links a:hover span {
    display: block;
}

.communication-widget .communication-links a img {
    display: block;
    width: 50px;
    height: 50px;
    float: left;
}

.communication-widget .communication-links a span {
    position: absolute;
    display: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    right: 56px;
    top: 16px;
    border-radius: 10px;
    padding: 2px 9px;
    color: #444;
    animation: communicationTooltip 200ms;
}

.communication-widget.left .communication-links a span {
    right: auto;
    left: 56px;
    top: 14px;
}

.communication-input.communication-required {
    animation: communicationRequired 400ms;
}

@-webkit-keyframes communicationPop {
    50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    }
}
@keyframes pop {
    50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    }
}

@keyframes communicationJiggle {
    0% {
        transform: none;
    }
    25% {
        transform: rotateZ(5deg);;
    }

    75% {
        transform: rotateZ(-5deg)
    }
    100% {
        transform: none;
    }
}

@keyframes communicationOpen {
    0% {
        opacity: 0;
        transform: translate(0, 20px)
    }
    50% {
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

@keyframes communicationLiveChatOpen {
    0% {
        opacity: 0;
        transform: translate(380px, 0)
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

@keyframes communicationTooltip {
    0% {
        opacity: 0;
        transform: translate(15px, 0)
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

@keyframes communicationRotate {
    0% {
        transform: rotate(-90deg)
    }
    100% {
        transform: rotate(0deg)
    }
}

@keyframes communicationPulsate {
    50% {
        transform: scale(1, 1);
        opacity: 1;
    }
    100% {
        transform: scale(2, 2);
        opacity: 0;
    }
}

@keyframes communicationRequired {
    30% {
        transform: translate(-7px, 0);
    }
    50% {
        transform: translate(7px, 0);
    }
    70% {
        transform: translate(-3px, 0);
    }
    90% {
        transform: translate(0, 0);
    }
}

@keyframes communicationFadeInOut {
    0% {
        opacity:1;
    }
    45% {
        opacity:1;
    }
    55% {
        opacity:0;
    }
    100% {
        opacity:0;
    }
}

@media (min-width: 768px) {
    .communication-widget .communication-btn {
        height: 60px;
        width: 60px;
    }
    .communication-widget.open .communication-btn {
    width: 58px;
    height: 58px;
    }
    .communication-widget .communication-btn .animation-btntop {
    width: 60px;
    height: 60px;
    }
    .communication-widget .communication-btn svg {
    width: 26px;
    height: 26px;
    }
    .communication-widget .communication-links {
        padding-bottom: 10px;
    }
    .communication-widget .communication-links a {
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
    }
    .communication-widget .communication-links svg {
    width: 36px;
    height: 36px;
    }
    .communication-widget .communication-links a span {
    right: 70px;
    top: 20px;
    }
    .communication-widget.left .communication-links a span {
    left: 70px;
    top: 20px;
    }
}
/* communication widget end */


/* main */

.grid {
    display: grid;
    grid-template-columns: 1fr
}

@supports not (display: grid) {
    .grid {
        max-width: 50em;
        margin: 0 auto
    }
}

.box-shadow {
    border-radius: 2rem;
    box-shadow: var(--box-shadow);
    transition: box-shadow 500ms
}

.box-side {
    padding: 2.8rem;
}

    @media (min-width: 768px) {
        .box-side {
            padding: 2.6rem
        }
    }

/* common author */
.author {
    padding: 3em 0 4em;
}

    .author-item {
        align-items: center;
    }

        .author-item .author-txt {
            font-size: 1.2rem;
            line-height: 1.4;
        }

            .author-txt li:not(:last-child) {
                padding-bottom: .4rem;
            }

        .author-txt span {
            display: block;
            font-size: 1.8em;
            line-height: 1.1em;
            font-weight: 700;
            padding-bottom: .6em;
        }
    
        .author-item .author-photo {
            min-height: 25rem;
            background: url(../img/irina-3-600.jpg);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            border-radius: 2rem;
        }

@media (max-width: 408px) {
    .author-item, .author-item .author-photo {
        border-radius: 0;
    }
}

@media (min-width: 1200px) {
    .author-item {
        grid-template-columns: 1fr 1fr;
    }

    .certificate {
        max-width: 970px;
        margin: 0 auto;
    }

    /* .what-get-list {
        max-width: 970px;
    } */

    .author-item .author-txt {
        font-size: 1.15rem;
    }

    .author-item .author-photo {
        min-height: 40rem;
        border-radius: 2rem;
    }
}
/* end common author */

/* certificate */
.certificate-photo {
    margin: 0 auto;
    padding-top: 1rem;
}

.certificate-txt {
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: center;
}

@media (min-width: 768px) {
    .certificate-photo {
        min-height: 22rem;
        padding: 2rem;
    }
}
/* end certificate */

/* pay button */
.buybuton {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    border: 0;
    box-sizing: border-box;
    box-shadow: 0 10px 20px rgb(0 0 0 / 15%);
    border-radius: 2rem;
    padding: 20px 14px;
    vertical-align: top;
    background-color: var(--main-color);
    border: var(--main-color) solid 2px;
    cursor: pointer;
    transition: .5s;
    color: #fff;
    font-size: 20px;
    width: 260px;
    z-index: 1;
}
/* end pay button */

/* payment-buttons */
.common-tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}
    .common-tab li {
        padding-top: .5rem;
        padding-right: .5rem;
    }

    .common-hero .btn-color, .common-hero .btn-white {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

.common-hero .button {
    width: auto;
}
/* end payment-buttons */