﻿
html, body {
    line-height: 1.42857143;
     background-color: #fff;
}





a.btn-month {
    padding: 25px 30px;
    border-radius: 8px;
    color: #049C73;
    display: inline-block;
    cursor: pointer;
    min-width: 220px;
    margin-right: 10px;
    text-decoration: none;
    box-shadow: 0 0 0 2px rgba(0,156,115,100), 0 0px 0 0px rgba(0,156,115,100);
    transition: box-shadow ease-in-out 0.2s, transform ease-in-out 0.2s;
}


    a.btn-month:hover {
        box-shadow: 0 0 0 2px rgba(0,156,115,100), 0 8px 0 2px rgba(0,156,115,100);
        transform: translateY(-4px);
    }


a.btn-year {
    padding: 25px 30px;
    border-radius: 8px;
    color: white;
    display: inline-block;
    cursor: pointer;
    background: linear-gradient(135deg,rgba(4,136,115,1) 0%,rgba(4,175,135,1) 100%);
    min-width: 250px;
    box-shadow: 0 0 0 2px rgba(4,156,115,100), 0 0px 0 0px rgba(0,135,100,100);
    text-decoration: none;
    transition: box-shadow ease-in-out 0.2s, transform ease-in-out 0.2s;
}

    a.btn-year:hover {
        box-shadow: 0 0 0 2px rgb(4, 140, 117), 0 8px 0 2px rgb(4, 138, 116);
        transform: translateY(-4px);
    }






/*This will work for firefox*/
@-moz-document url-prefix() {

    .icone_7 {
        --anchorX: 80px;
        --anchorY: 0;
        offset-path: path("M363.52,747.13C397,661,238.82,538.78,238.82,409.64,238.82,205.4,331.05,114.7,402.33,45");
        offset-rotate: auto 90deg;
        offset-anchor: var(--anchorX) var(--anchorY);
    }


    .icone_4_1 {
        --anchorX: 50px;
        --anchorY: 0;
        offset-path: path("M314.5,742c12.2-86.12,162.12-312.42,57.5-396.49C187,196.9,237.07,77.32,255.92,30");
        offset-rotate: auto 90deg;
        offset-anchor: var(--anchorX) var(--anchorY);
    }


    .icone_1 {
        --anchorX: 100px;
        --anchorY: 0;
        offset-path: path("M350.07,756.38c33.44-86.12-204.72-268.58-204.72-397.72,0-204.25,292.11-183.44,285.33-313.67");
        offset-rotate: auto 90deg;
        offset-anchor: var(--anchorX) var(--anchorY);
    }


    .icone_2 {
        --anchorX: 0px;
        --anchorY: 0;
        offset-path: path("M408.89,742c9.72-86.12-333.24-294.89-333.24-424,0-204.25,224.21-264.66,252.62-283.32");
        offset-rotate: auto 90deg;
        offset-anchor: var(--anchorX) var(--anchorY);
    }


    .icone_3 {
        --anchorX: 50px;
        --anchorY: 0;
        offset-path: path("M314.5,742c12.2-86.12,162.12-312.42,57.5-396.49C187,196.9,237.07,77.32,255.92,30");
        offset-rotate: auto 90deg;
        offset-anchor: var(--anchorX) var(--anchorY);
    }


    .icone_4 {
        --anchorX: 0px;
        --anchorY: 0;
        offset-path: path("M350.07,756.38c33.44-86.12-204.72-268.58-204.72-397.72,0-204.25,292.11-183.44,285.33-313.67");
        offset-rotate: auto 90deg;
        offset-anchor: var(--anchorX) var(--anchorY);
    }



    .icone_5 {
        --anchorX: 50px;
        --anchorY: 0;
        offset-path: path("M367.29,742C363.73,655.91,531,507.37,459.94,379.45,416.7,301.56,341.44,68.33,331.05,49.67");
        offset-rotate: auto 90deg;
        offset-anchor: var(--anchorX) var(--anchorY);
    }


    .icone_6 {
        --anchorX: 50px;
        --anchorY: 0;
        offset-path: path("M408.89,742c9.72-86.12-333.24-294.89-333.24-424,0-204.25,224.21-264.66,252.62-283.32");
        offset-rotate: auto 90deg;
        offset-anchor: var(--anchorX) var(--anchorY);
    }
}





/*icone animate start*/



.japlus {
    animation: move_j 2s forwards;
    opacity: 0;
    transform: scale(.5) translateY(200px);
    transform-origin: 50% 50%
}

.icone_1 {
    animation: move 20s infinite;
    opacity: 0;
    transform: scale(0.8);
    animation-delay: 0.1s;
}




.icone_3 {
    animation: move_2 30s infinite;
    opacity: 0;
    transform: scale(0.8);
    animation-delay: 0.1s;
}


.icone_2 {
    animation: move_2 25s infinite;
    opacity: 0;
    transform: scale(0.3);
    animation-delay: 0.1s;
}

.icone_4 {
    animation: move_3 35s infinite;
    opacity: 0;
    transform: scale(0.1);
    animation-delay: 0.1s;
}


.icone_7 {
    animation: move_6 20s infinite;
    opacity: 0;
    transform: scale(0.1);
    animation-delay: 0.1s;
}





.icone_6 {
    animation: move_4 30s infinite;
    opacity: 0;
    transform: scale(0.1);
    animation-delay: 0.1s;
}

.icone_5 {
    animation: move_4 35s infinite;
    opacity: 0;
    transform: scale(0.1);
    animation-delay: 0.1s;
}

.icone_4_1 {
    animation: move_2 40s infinite;
    opacity: 0;
    transform: scale(0.1);
    animation-delay: 10s;
}






@keyframes move_j {

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


@keyframes move_2 {
    0% {
        opacity: 0;
        offset-distance: 0;
        transform: scale(0.3) rotate(0);
    }

    20% {
        opacity: 0;
        transform: scale(0.3) rotate(10deg);
    }

    40% {
        opacity: 1;
    }

    60% {
        transform: scale(0.8) rotate(-25deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        offset-distance: 100%;
        transform: scale(0.3) rotate(10deg);
    }
}


@keyframes move_3 {
    0% {
        opacity: 0;
        offset-distance: 0;
        transform: scale(0.1) rotate(0);
    }

    20% {
        opacity: 0;
        transform: scale(0.1) rotate(10deg);
    }

    40% {
        opacity: 1;
    }

    60% {
        transform: scale(0.7) rotate(45deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        offset-distance: 100%;
        transform: scale(0.1) rotate(10deg);
    }
}



@keyframes move_6 {
    0% {
        opacity: 0;
        offset-distance: 0;
        transform: scale(0.1) rotate(0);
    }

    10% {
        opacity: 0;
        transform: scale(0.1) rotate(10deg);
    }

    25% {
        opacity: 1;
    }

    65% {
        transform: scale(1.0) rotate(-25deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        offset-distance: 100%;
        opacity: 0;
        transform: scale(0.1) rotate(10deg);
    }
}


@keyframes move {
    0% {
        opacity: 0;
        offset-distance: 0;
        transform: scale(.7) rotate(0);
    }

    20% {
        opacity: 0;
        transform: scale(.7) rotate(-10deg);
    }

    40% {
        opacity: 1;
    }

    60% {
        transform: scale(1.2) rotate(15deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        offset-distance: 100%;
        opacity: 0;
        transform: scale(.7) rotate(-10deg);
    }
}


@keyframes move_4 {
    0% {
        opacity: 0;
        offset-distance: 0;
        transform: scale(0.3) rotate(0);
    }

    20% {
        opacity: 0;
        transform: scale(0.3) rotate(-30deg);
    }

    40% {
        opacity: 1;
    }

    70% {
        transform: scale(0.5) rotate(-25deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        offset-distance: 100%;
        transform: scale(0.3) rotate(10deg);
    }
}







.Header {
    background: linear-gradient(135deg, rgba(60,60,120) 0%, rgba(4,175,135,1) 100%);
    min-height: 160px;
    height: 30vh;
    min-height: 230px;
    position: relative;
    overflow: hidden;
}


.cirk {
    position: absolute;
    width: 100%;
    opacity: .5;
    animation-name: cirk;
    animation-duration: 100s;
    animation-direction: normal;
    animation-play-state: running;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
}

@keyframes cirk_2 {


    0% {
        transform: rotate(0) scale(1);
    }

    50% {
        transform: rotate(-180deg) scale(1);
    }

    100% {
        transform: rotate(-360deg) scale(1);
    }
}


@keyframes cirk_1 {


    0% {
        transform: rotate(0) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.cirk_2 {
    position: absolute;
    width: 120%;
    opacity: .6;
    animation-name: cirk_2;
    animation-duration: 100s;
    animation-direction: normal;
    animation-play-state: running;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
}





.Header-text-wraper {
    bottom: 4vh;
    position: absolute;
}

.Header-text-1st-line {
    font-size: 60px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 0 2px #0000001c;
    line-height: 1;
    color: white;
    max-width:800px;
    margin-bottom:10px;
    text-transform: uppercase;
}



.student .Header-text-1st-line {
    font-size: 45px;
  
}

.small_text {
font-size:12px;
}


.Header-text-2nd-line {
    font-size: 18px;
    max-width: 700px;
    text-shadow: 0 2px #0000001c;
    line-height: 1.3;
    padding-left: 5px;
    color: white;
}

.max-wight {
    width: 100%;
    max-width: 1400px;
    padding: 0 60px;
    margin: auto;
}

.Header-img {
    background-image: url(../images/wave_gr.svg);
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    max-width: 2000px;
    background-repeat: no-repeat;
    background-size: 1928px 1200px;
    background-position-y: -200px;
    background-position-x:100px;
}


.main-container {
    margin-top: 8vh;
}

.icone-img {
    width: 44px;
    height: 44px;
    float: left;
    display: block;
    position: absolute;
}

.icone-text {
    font-size: 14px;
    display: inline-block;
    max-width: 290px;
    font-family: "Open Sans",sans-serif;
    margin-left: 60px;
    font-weight:400;
    text-transform: uppercase;
    line-height: 1.45;
}


.icone-block {
    margin-bottom: 3vh;
}


.icone-block_2 {
    margin-bottom: 3vh;
    min-height: 90px;
}


a.btn-highlight {

    color: white !important;
   
    background: linear-gradient(135deg,rgba(4,136,115,1) 0%,rgba(4,175,135,1) 100%);
 
 box-shadow: 0 0 0 2px rgba(4,156,115,100), 0 0px 0 0px rgba(0,135,100,100) !important;
  
 transition: box-shadow ease-in-out 0.2s, transform ease-in-out 0.2s;
}

    a.btn-highlight:hover {
        box-shadow: 0 0 0 2px rgb(4, 140, 117), 0 8px 0 2px rgb(4, 138, 116) !important;
        transform: translateY(-4px);
    }





a.btn-pay {
    padding: 25px 30px;
    border-radius: 8px;
    color: #049C73;
    display: inline-block;
    cursor: pointer;
    min-width: 310px;
    margin-right: 10px;
    text-decoration: none;
    box-shadow: 0 0 0 2px rgba(0,156,115,100), 0 0px 0 0px rgba(0,156,115,100);
    transition: box-shadow ease-in-out 0.2s, transform ease-in-out 0.2s;
}


    a.btn-pay:hover {
        box-shadow: 0 0 0 2px rgba(0,156,115,100), 0 8px 0 2px rgba(0,156,115,100);
        transform: translateY(-4px);
    }



.btn-price-text {
    font-size: 19px;
    font-family: Arial, Helvetica, sans-serif;
}

.btn-description {
    font-size: 14px;
}

.top-space {
    margin-top: 3vh;
    max-width: 700px;
}

.max-wight-800 {
    max-width: 800px;
}

.description-text {
    font-size: 16px;
    max-width: 500px;
    margin-top: 20px;
}

a.registration-link {
    color: #049c73;
    text-decoration: underline;
    cursor: pointer;
}


a.parent-bay-link {
    color: #049c73;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
    padding: 10px;
    margin-left: 20px;
    text-decoration: underline;
    cursor: pointer;
}



.col-sm-6 .recommended-option .subscription-price-wrap .subscription-price .color-month


<div class="col-sm-6 recommended-option" >

<div class="subscription-price-wrap" >
<div class="subscription-price color-month" >
<div class="subscription-price-active" > &nbsp;</div >

<div class="price-big-text" > <b > 290</b > ₽</div >
</div >
</div >




@keyframes pl_moove {
    to {
        offset-distance: 100%;
    }
}


    a.registration-link:hover, a.parent-bay-link:hover {
        color: #29cca0;
    }

.picture_1 {
    position: absolute;
    width: 50%;
    bottom: 0;
    left: 60%;
    max-width: 750px;
}


.parents .picture_1 {
    bottom: -60px;
}


.student .picture_1 {
    bottom: -60px;
}

.conteiner {
    width: 100%;
    overflow: hidden;
    height:100vh;
    min-height:1000px;
    padding-bottom: 0;
    margin-bottom:-50px;
    position: relative;
}

@media screen and (max-width: 1500px) {


    .picture_1 {
        width: 38%;
        left: 70%;
        bottom: -150px;
    }



    .student .picture_1 {
        width: 58%;
        left: 55%;
        bottom: -180px;
    }


    .parents .picture_1 {
        width: 38%;
        left: 70%;
        bottom: -180px;
    }
}

@media screen and (max-width: 1200px) {


    .picture_1 {
        display: none;
    }


    .Header-img {

        background-position-x: -200px;
    }

}


@media screen and (min-width: 2000px) {


    .Header-img {
        max-width: unset;
        background-position-x: center;
        background-size: 1928px 1300px;
    }
}




    @media screen and (max-width: 767px) {


        a.btn-month, a.btn-year {
            display: block;
            text-align: center;
            min-width: 220px;
            padding: 15px 20px;
            margin-right: 0;
            margin-bottom: 15px;
        }

        .icone-block_2 {
            margin-bottom: 3vh;
            min-height: 0;
        }

        .max-wight {
            padding: 0 10px;
            max-width: 300px;
            width: 90%;
        }

        .icone-img {
            width: 36px;
            height: 36px;
            margin-left: -5px;
            margin-top: 2px;
        }

        .picture_1 {
            display: none;
        }

     

        .Header {
            height: auto;
            padding-bottom: 20px;
            padding-top: 20px;
            position: relative;
            min-height: unset;
            text-align: center;
        }

        .Header-text-wraper {
            bottom: auto;
            position: relative;
        }

        .Header-text-1st-line {
            font-size: 30px;
        }

        .student .Header-text-1st-line {
            font-size: 36px;
        }

        a.btn-pay, a.btn-highlight {
            display: block;
            text-align: center;
            min-width: 230px;
            padding: 25px 20px;
            margin-right: 0;
            margin-bottom: 15px;
        }

        .icone-text {
            font-size: 13px;
            font-weight: 400;
            margin-left: 55px;
            line-height: 1.4;
        }

        .description-text {
            font-size: 16px;
            text-align: center;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .icone-block {
            margin-bottom: 15px;
        }


        .Header-img {
            background-size: 1000px 850px;
            opacity: 0.5;
            position: absolute;
            background-position-x: center;
            background-position-y: -250px;
        }

        .main-container {
            margin-top: 40px;
        }

        .top-space {
            margin-top: 20px;
        }

        .Header-text-2nd-line {
            font-size: 14px;
            padding: 0;
            line-height: 1.2;
        }

        a.parent-bay-link {
            font-size: 16px;
            margin-top: 0;
            margin-bottom: 40px;
            text-align: center;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .conteiner {
            height: auto;
        }

        .icone-text, .description-text, .btn-description, .parent-bay-link {
            font-weight: 400;
        }
    }



@media screen and (max-width: 340px) {

    .student .Header-text-1st-line {
        font-size: 24px;
    }
}
