*, body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a:hover {
    color: inherit;
    transition: ease-in-out 0.3s;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

p{
    margin: 0;
    padding: 0;
}

button {
    color: inherit;
    background-color: inherit;
    border: none;
}

input {
    outline: none;
    border: 0;
    background: transparent;
}

.pointer {
    cursor: pointer;
}

.background{
    background: rgb(60, 80, 224, 0.1)

}

a.btn-background{
    background-color: #3C50E0;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: bold;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #ffffff;
}

/* HEADER */

.m-container{
    max-width: 1200px;
    padding: 0 15px;
    margin: auto;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu{
    padding: 30px 0 30px 0;
}

.menu .main__menu{
    display: flex;
    justify-content: flex-start;
}

.menu .main__menu .main__menu-item{
    position: relative;
}

.menu .main__menu .main__menu-item a{
    color: #172955;
    line-height: 180%;
    margin-right: 30px;
    font-size: 16px;
}

.menu .main__menu .main__menu-item.burger{
    display: none;
}

@media screen and (max-width: 1100px){
    .menu .main__menu .main__menu-item a{
        margin-right: 10px;
    }
}

@media screen and (max-width: 1000px){
    .menu .main__menu .main__menu-item a{
        font-size: 14px;
    }
}

@media screen and (max-width: 900px){
    header{
        position: relative;
        z-index: 1000;
    }
    .header{
        height: 57px;
    }
    .menu .main__menu .main__menu-item:not(:last-child){
        display: none;
    }
    .menu .main__menu .main__menu-item.burger{
        display: block;
    }
    .menu .main__menu .main__menu-item.burger:before {
        content: url("/images/burger.svg");
    }
    .menu .main__menu .main__menu-item.burger.opened:before{
        content: url("/images/burger-close.svg");
    }

}

.menu .main__menu .main__menu-item a:hover{
    transition: 0.3s;
    color: #3C50E0;
}

.menu .main__menu .main__menu-item a:after{
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    top: 8px;
    right: 15px;
    background: #3C50E0;
    border-radius: 0 100px 100px 100px;
    visibility: hidden;
}

.menu .main__menu .main__menu-item a:hover:after{
    transition: 0.3s;
    visibility: visible;
}

/* HEADER END */

/* SECTION 1 */

.section-1{
    position: relative;
    text-align: center;
    padding: 25px 0 25px 0;
}

.section-1 .ellipse-1{
    position: absolute;
    top: 0;
    right: 60px;
}

.section-1 .ellipse-2{
    position: absolute;
    top: 150px;
    left: 78px;
}

.section-1 .ellipse-3{
    position: absolute;
    top: 244px;
    right: 37px;
}

.section-1 .ellipse-4{
    position: absolute;
    top: 464px;
    left: 0;
}

.section-1 .ellipse-5{
    position: absolute;
    top: 434px;
    right: 175px;
}

@media screen and (max-width: 1380px){
    .section-1 .ellipse-3{
        display: none;
    }
    .section-1 .ellipse-5{
        top: 184px;
        width: 43px;
        height: 43px;
    }
}

@media screen and (max-width: 1200px){
    .section-1 .ellipse-4{
        display: none;
    }
}

@media screen and (max-width: 1060px){
    .section-1 .ellipse-2{
        width: 42px;
        height: 42px;
        top: 78px;
        left: -11px;
    }
}

@media screen and (max-width: 1000px){
    .section-1{
        padding: 65px 0 25px 0;
    }
    .section-1 .ellipse-1{
        width: 85px;
        height: 43px;
        right: 0;
    }
    .section-1 .ellipse-5{
        top: 234px;
    }
}

@media screen and (max-width: 700px){
    .section-1 .ellipse-5{
        display: none;
    }
}

.section-1 .first-info p{
    font-size: 22px;
    line-height: 35px;
    color: #172955;
}

.section-1 .first-info h1{
    margin-top: 10px;
    color: #ff5670;
    font-size: 42px;
    line-height: 75px;
}

.section-1 .first-info div{
    color: #ff5670;
    font-weight: bold;
    font-size: 28px;
    line-height: 50px;
}

.section-1 .second-info{
    padding-top: 50px;
}

.section-1 .second-info p{
    font-weight: normal;
    font-size: 22px;
    line-height: 40px;
    color: #172955;
}

.section-1 .second-info h2{
    font-size: 28px;
    font-weight: bold;
    line-height: 50px;
    color: #3c50e0;
}

@media screen and (max-width: 700px){
    .section-1 .first-info p{
        font-size: 16px;
        line-height: 160%;
        color: #172955;
    }
    .section-1 .first-info h1{
        font-size: 32px;
        line-height: 110%;
    }

    .section-1 .first-info div{
        font-size: 18px;
        line-height: 180%;
    }

    .section-1 .second-info p{
        font-size: 16px;
        line-height: 180%;
    }
}

.offer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 630px){
    .offer .offer-item{
        margin-top: 25px;
    }
}

.offer .offer-item p{
    padding-top: 10px;
}

.offer .offer-item:not(:last-child){
    margin-right: 30px;
}

@media screen and (max-width: 600px){
    .offer .offer-item{
        margin-right: 0 !important;
    }
}

/* SECTION 1 END */

/* SECTION 2 */

.section-2{
    padding: 70px 0 100px 0;
    position: relative;
}

.section-2 .section-2_top{
    text-align: center;
}

.section-2 .section-2_top h2{
    color: #172955;
    font-weight: bold;
    font-size: 24px;
    line-height: 43px;
    margin-bottom: 20px;
}

.section-2 .section-2_center{
    padding-top: 96px;
}

.section-2 .section-2_center p{
    font-size: 24px;
    line-height: 43px;
    color: #172955;
}

.section-2 .section-2_center p span{
    color: #ff5670;
}

.section-2 .section-2_center .section-2_center-bottom{
    margin-top: 30px;
}

.section-2 .register-image{
    text-align: right;
}

.section-2 .register-block{
    margin-top: 130px;
}

.section-2 .register-block .register-title{
    font-size: 24px;
    line-height: 43px;
    color: #172955;
    text-align: center;
}


.section-2 .register-block .register-title span{
    color: #ff5670;
}

.section-2 .register-block .register-title-2{
    text-align: center;
    margin-top: 30px;
    font-size: 24px;
    font-weight: bold;
    line-height: 180%;
}

@media screen and (max-width: 700px){
    .section-2 .section-2_top h2{
        font-size: 18px;
        line-height: 180%;
    }
    .section-2 .section-2_center{
        padding-top: 56px;
        text-align: center;
    }
    .section-2 .section-2_center p{
        font-size: 16px;
        line-height: 180%;
    }
    .section-2 .register-block{
        margin-top: 90px;
    }
    .section-2 .register-block .register-title{
        font-size: 16px;
        line-height: 180%;
    }
    .section-2 .register-block .register-title-2{
        font-size: 18px;
        line-height: 180%;
    }
}

.section-2 .register-block .register-title-2 span{
    color: #ff5670;
}

.section-2 .register-block .register-form{
    text-align: center;
}

.section-2 .register-block .register-form .form-title{
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #172955;
}

.section-2 .register-block .register-form .form-body{
    display: flex;
    justify-content: center;
}

.section-2 .register-block .register-form .btn-background{
    padding: 21px 84px;
}

@media screen and (max-width: 617px){
    .section-2 .register-block .register-form .form-body{
        display: flex;
        justify-content: center;
    }
    .section-2 .register-block .register-form .form-body .form-right .title{
        margin-top: 40px;
    }
    .section-2 .register-block .register-form .form-body .form-right .form-group{
        text-align: center !important;
    }
    .section-2 .register-block .register-form .form-body .form-right .form-info{
        text-align: center !important;
    }
    .section-2 .register-block .register-form .form-body .form-right .social{
        justify-content: center !important;
    }
}

.section-2 .register-block .register-form .form-body{
    margin-top: 40px;
}

.section-2 .register-block .register-form .form-body .title{
    color: #484848;
    font-size: 16px;
    line-height: 135%;
    text-align: center;
}

.section-2 .register-block .register-form .form-body .form-group{
    margin-top: 25px;
}

.section-2 .register-block .register-form .form-body .form-group input{
    background: #FFFFFF;
    border-radius: 100px;
    width: 270px;
    padding: 16px 20px;
    color: #172955;
    opacity: 0.5;
    font-size: 14px;
}

.section-2 .register-block .register-form .form-body .form-right .form-group{
    text-align: left;
}


.section-2 .register-block .register-form .form-body .form-right .form-info{
    font-size: 16px;
    line-height: 21px;
    color: #484848;
    margin-top: 30px;
    text-align: left;
}

.section-2 .register-block .register-form .form-body .form-right .social{
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

label{
    padding: 10px;
    position: relative;
}

label .text p{
    font-size: 14px;
    color: #4F4F4F;
}

label input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

label .checkmark{
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -25px;
    height: 25px;
    width: 25px;
    border-radius: 5px;
    border: 1px solid #CBCBCB;
}

label input:checked ~ .category__products-wrapper .category__products .category__products-filters .category__products-filters-item .category__products-filters-select .category__products-filters-list .category__products-checkbox-wrapper .category__products-checkbox .checkmark:after {
    color: transparent
}

label .checkmark:after {
    content: "";
    position: absolute;
    display: none
}

label input:checked ~ .checkmark:after {
    display: block
}

label .checkmark:after{
    top: 2px;
    left: 8px;
    width: 8px;
    height: 15px;
    border: solid #3C50E0;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form-bottom{
    margin-top: 40px;
}

.form-bottom .police{
    display: flex;
    justify-content: space-between;
    width: 330px;
    margin: 0 auto;
}

.form-bottom .police label{
    padding: 0;
    position: absolute;
}

.form-bottom .police label .checkmark{
    border: 0;
    background-color: #484848;
}

.form-bottom .police label .checkmark:after{
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
}

.form-bottom .police p{
    font-size: 11px;
    line-height: 15px;
    color: #172955;
    padding-left: 35px;
    text-align: left;
}

.form-bottom .police p a{
    color: #1ec8fe;
}

.form-bottom .register{
    margin-top: 30px;
}

/* SECTION 2 END */





/* Custom Select */

select {
    z-index: 3;
    float: left;
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
    cursor: pointer;
}
.custom-select-wrapper select {
    display: none;
}
.custom-select {
    position: relative;
    display: inline-block;
    font-size: 14px;
    width: 270px;
}

@media screen and (max-width: 1010px){
    .custom-select-trigger{
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}

.custom-select.opened .custom-select-trigger{
    border-radius: 33px 33px 0 0 !important;
    border-top: 1px solid rgba(124, 124, 124, .4) !important;
    border-right: 1px solid rgba(124, 124, 124, .4) !important;
    border-left: 1px solid rgba(124, 124, 124, .4) !important;
    border-bottom: 0;
}

.custom-select-trigger {
    position: relative;
    display: block;
    background-color: #FFFFFF;
    border: 1px solid rgba(124, 124, 124, .4);
    box-sizing: border-box;
    border-radius: 100px;
    padding: 16px 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #172955;
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
    outline: 0;
    text-align: left;
}

.custom-select-trigger:after {
    content: url("/images/register-form/dropdown.svg");
    vertical-align: middle;
    position: absolute;
    display: block;
    right: 20px;
    top: 15px;
    transition: 0.3s;
}
.custom-select.opened .custom-select-trigger:after {
    transition: 0.3s;
    margin-top: 5px;
    transform: rotate(180deg);
}
.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 1px solid rgba(124, 124, 124, .2);
    border-radius: 33px;
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    transform: translateY(-15px);
    z-index: 1;
}
.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}
.option-hover:before {
    background: #f9f9f9;
}
.custom-option {
    position: relative;
    border-top: 1px solid rgba(124, 124, 124, .2);
    border-left: 1px solid rgba(124, 124, 124, .2);
    border-right: 1px solid rgba(124, 124, 124, .2);
    height: 39px;
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    color: #172955;
    cursor: pointer;
    transition: all 0.05s ease-in-out;
    background-color: #ffffff;
    opacity: 1;
}

.custom-option:last-child{
    border-bottom-left-radius: 33px;
    border-bottom-right-radius: 33px;
}
.custom-option:hover,
.custom-option.active {
    opacity: 1;
}

/* SELECT END */

/* MINI CARD */
.product__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    width: 329px;
    margin-bottom: 30px;
    min-height: 400px;
    background: #FFFFFF;
    box-sizing: border-box;
    border-radius: 10px;
}

.product__item-sub{
    width: 270px;
    margin: 0 auto;
}

.product__item .sale_tag{
    width: 67px;
    height: 29px;
    position: absolute;
    top: 85px;
    left: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__item .sale_tag svg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.product__item .sale_tag span{
    z-index: 2;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    color: #FFF;
}

@media screen and (max-width: 540px) {
    .product__item .product__item-buy .product__item-button {
        margin-top: 20px;
    }
}

.product__item .product__item-img {
    padding-top: 43px;
    padding-right: 35px;
    padding-left: 35px;
}

.product__item .product__item-img a img {
    display: block;
    width: 180px;
    height: 180px;
}

.product__item .product__item-name{
    padding: 10px 0 15px 0;
}

.product__item .product__item-name a {
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: #000000;
    margin-top: 10px;
    font-family: Roboto, sans-serif;
}

.product__item .product__item-line{
    position: absolute;
    top: 83%;
}

.product__item .product__item-buy {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.product__item .product__item-buy .product__item-button a{
    text-transform: uppercase;
}

.product__item .product__item-buy .product__item-price {
    font-weight: 700;
    font-size: 24px;
    line-height: 135%;
    letter-spacing: .05em;
    color: #3C50E0;
    display: flex;
    flex-direction: column;
}

.product__item .product__item-buy .product__item-price .products__item-price-old{
    letter-spacing: 0.05em;
    text-decoration-line: line-through;
    color: #BFBFBF;
    font-size: 16px;
    line-height: 135%;
}

.product__item .product__item-addition {
    margin-top: 20px;
}

.product__item .product__item-addition span {
    display: block;
    font-size: 14px;
    line-height: 135%;
    color: #BFBFBF;
}

.product__item .product__item-addition span:last-child {
    margin: 3px 0 18px 0;
}

.product-slider .microfiche-controls {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 212px;
    height: 32px;
    background-color: #EBEDFC;
    border-radius: 100px;
    padding-left: 10px;
    padding-right: 20px;
    margin: 0 auto;
}

.product-slider .microfiche-controls .microfiche-prev-button {
    visibility: hidden;
}

.product-slider .microfiche-controls .microfiche-prev-button:after {
    visibility: visible;
    content: url("../images/slider/arrow-left_black.svg");
}

.product-slider .microfiche-controls .microfiche-next-button {
    visibility: hidden;
}

.product-slider .microfiche-controls .microfiche-next-button:after {
    visibility: visible;
    content: url("../images/slider/arrow-right_black.svg");
}

.product-slider .microfiche-controls .selected {
    visibility: hidden !important;
}

.product-slider .microfiche-controls .selected:after {
    visibility: visible !important;
    content: url("../images/slider/selected-slide.svg") !important;
}

.product-slider .microfiche-controls .microfiche-bullet {
    visibility: hidden;
}

.product-slider .microfiche-controls .microfiche-bullet:after {
    content: url("../images/slider/deselected-slide.svg");
}

.product-slider .microfiche-controls .microfiche-bullets .microfiche-bullet {
    visibility: hidden;
}

.product-slider .microfiche-controls .microfiche-bullets .microfiche-bullet:after {
    visibility: visible;
}

@media screen and (max-width: 700px) {
    .product-slider .microfiche-controls .microfiche-prev-button:after {
        display: none;
    }

    .product-slider .microfiche-controls .microfiche-next-button:after {
        display: none;
    }

    .product-slider .microfiche-controls .microfiche-bullets {
        display: flex;
    }
}

.slider-bottom{
    text-align: center;
    margin-top: 25px;
    color: #ff5670;
    font-size: 24px;
    font-weight: bold;
}

.how-to-work{
    padding-top: 132px;
}

.block-title{
    color: #172955;
    font-size: 24px;
    line-height: 43px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 100px;
}


.how-to-work .work-image{
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.how-to-work .work-text{
    padding-top: 10px;
}

@media screen and (max-width: 768px){
    .how-to-work{
        padding-top: 64px;
    }
    .block-title{
        margin-bottom: 50px;
    }
    .how-to-work .row .col-md-4:last-child{
        margin-top: 50px;
    }
}

.how-to-work .register{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 125px 0;
}

.section-4 .block-title{
    padding-top: 100px;
    margin-bottom: 50px;
}

.section-4 .block-bottom-text{
    color: #3C50E0;
    font-weight: bold;
    font-size: 42px;
    line-height: 150%;
    text-align: center;
    padding: 240px 0 100px 0;
}


.section-4 .image-with-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-4 .image-with-text-2{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

@media screen and (max-width: 1100px) {
    .section-4 .image-with-text{
        flex-wrap: wrap;
    }

    .section-4 .image-with-text-2{
        flex-direction: column;
    }
    .section-4 .image-with-text-2 img{
        order: 1;
    }
    .section-4 .image-with-text-2 .text-start{
        order: 2;
    }
}

.section-4 .image-with-text p{
    font-size: 24px;
    line-height: 180%;
    color: #172955;
    padding-left: 28px;
}

.section-4 .image-with-text-2 p{
    font-size: 24px;
    line-height: 180%;
    color: #172955;
    padding-left: 28px;
}

@media screen and (max-width: 700px){
    .section-4 .block-bottom-text{
        font-size: 18px;
        padding: 120px 0 100px 0;
    }
    .section-4 .image-with-text-2{
        align-items: flex-start;
    }
    .section-4 .image-with-text p{
        font-size: 16px;
        padding-left: 0;
        padding-bottom: 15px;
    }

    .section-4 .image-with-text-2 p{
        font-size: 16px;
        padding-left: 0;
    }
}

.section-5 .why-form{
    max-width: 870px;
    padding: 100px 0 0 0;
    margin: 0 auto;
}

.section-5 .why-form .title{
    font-weight: bold;
    font-size: 24px;
    line-height: 180%;
    text-align: left;
    color: #172955;
}

.section-5 .title-2{
    color: #172955;
    font-weight: bold;
    font-size: 24px;
    line-height: 180%;
    text-align: center;
    padding-top: 100px;
}

.section-5 .why-form .radio {
    position: relative;
    margin-bottom: 25px;
    display: flex;
}

.section-5 .why-form .radio_input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute
}

.section-5 .why-form .radio_label {
    font-size: 14px;
    color: #484848;
    cursor: pointer
}

.section-5 .why-form .radio span {
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    color: #172955;
    margin-left: 10px;
}

.section-5 .why-form .radio_label:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #3C50E0;
    background-color: #FFF;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    transition: border .1s linear
}

.section-5 .why-form .radio_label:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #FFF;
    border-radius: 50%;
    opacity: 0;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
    transition: opacity .1s linear
}

.section-5 .why-form .radio_input:checked + .radio_label:after {
    border-color: #FFF;
    background-color: #FFF;
}

.section-5 .why-form .radio_input:checked ~ .radio_label span {
    font-size: 16px;
    line-height: 135%;
    text-align: center;
    color: #1F1F1F;
}

.section-5 .why-form .radio_input:checked + .radio_label:after {
    opacity: 1;
}

.section-5 .why-form .radio_input:checked + .radio_label:before{
    border: 5px solid #3C50E0;
}

.section-5 .why-form textarea{
    border: 1px solid #3C50E0;
    border-radius: 20px;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    color: #172955;
    opacity: 0.4;
    padding: 10px 10px;
    height: 184px;
    width: 420px;
}

#thx {
    color: #0f814f;
    font-size: 16px;
    font-weight: bold;
}

@media screen and (max-width: 1000px) {
    .section-5 .why-form textarea{
        width: 340px;
    }
}

.section-5 .why-form .button-send{
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 766px){
    .section-5 .why-form .button-send{
        justify-content: flex-start;
    }
}

@media screen and (max-width: 360px){
    .section-5 .why-form .title{
        font-size: 18px;
        line-height: 180%;
        text-align: center;
    }
    .section-5 .why-form .button-send{
        margin-top: 40px;
        justify-content: center;
    }
}

.section-5 .why-form .button-send a{
    width: 225px;
}

.section-5 .reviews{
    padding: 66px 0 90px 0;
}

@media screen and (max-width: 768px) {
    .section-5 .reviews{
        text-align: center;
    }
    .section-5 .reviews .review-item:not(:last-child){
        margin-bottom: 60px;
    }
}

.section-5 .reviews .review-item p.name{
    font-size: 20px;
    line-height: 180%;
    color: #172955;
    padding-top: 10px;
}

.section-5 .reviews .review-item p.job{
    font-weight: bold;
    font-size: 20px;
    line-height: 180%;
    color: #172955;
    padding-top: 5px;
}

.section-5 .reviews .review-item p.review-text{
    font-size: 18px;
    line-height: 180%;
    color: #172955;
    opacity: 0.6;
    padding-top: 20px;
}

.footer{
    background: rgb(255, 86, 112, 0.1);
}

.footer .footer-title{
    font-weight: bold;
    font-size: 24px;
    line-height: 180%;
    text-align: center;
    color: #172955;
    padding-top: 70px;
}

.footer .footer-help{
    font-weight: bold;
    font-size: 24px;
    line-height: 180%;
    color: #3C50E0;
    padding-top: 33px;
}

.footer .footer-instruction{
    padding-top: 75px;
    font-size: 24px;
    line-height: 180%;
    color: #172955;
}


.footer .footer-video{
    width: 100%;
    height: auto;
}

video { max-width: 100%; height: auto; }

@media screen and (max-width: 700px){
    .footer .footer-title{
        font-size: 18px;
        line-height: 180%;
    }

    .footer .footer-help{
        font-size: 18px;
        line-height: 180%;
    }

    .footer .footer-instruction{
        font-size: 18px;
        line-height: 180%;
    }
}

/* MOBILE MENU */

.mobile-menu{
    display: none;
    position: fixed;
    overflow: scroll;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #FFFFFF;
}

.mobile-menu .main__menu-mobile .main__menu-mobile-item:first-child{
    padding-top: 100px;
}

.mobile-menu .main__menu-mobile .main__menu-mobile-item{
    padding: 40px 0 0 10px;
}

.mobile-menu .main__menu-mobile .main__menu-mobile-item a{
    text-decoration: underline;
}

/* MOBILE MENU END */















































    /* SLIDER */

.pln {
    color: #000
}

@media screen {
    .str {
        color: #080
    }

    .kwd {
        color: #008
    }

    .com {
        color: #800
    }

    .typ {
        color: #606
    }

    .lit {
        color: #066
    }

    .pun, .opn, .clo {
        color: #660
    }

    .atn {
        color: #606
    }

    .atv {
        color: #080
    }

    .dec, .var {
        color: #606
    }

    .fun {
        color: red
    }
}

@media print, projection {
    .str {
        color: #060
    }

    .kwd {
        color: #006;
        font-weight: bold
    }

    .com {
        color: #600;
        font-style: italic
    }

    .typ {
        color: #404;
        font-weight: bold
    }

    .lit {
        color: #044
    }

    .pun, .opn, .clo {
        color: #440
    }

    .tag {
        color: #006;
        font-weight: bold
    }

    .atn {
        color: #404
    }

    .atv {
        color: #060
    }
}

pre.prettyprint {
    padding: 2px;
    border: 1px solid #888
}

ol.linenums {
    margin-top: 0;
    margin-bottom: 0
}

li.L0, li.L1, li.L2, li.L3, li.L5, li.L6, li.L7, li.L8 {
    list-style-type: none
}

li.L1, li.L3, li.L5, li.L7, li.L9 {
    background: #eee
}

/* SLIDER END */