@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*standard classes*/
:root{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #000;
    /*font-family: "Montserrat", sans-serif;*/
    /*font-optical-sizing: auto;*/
    /*font-weight: <weight>;*/
    /*font-style: normal;*/
}
html {
    overflow-x: hidden;
}
body {
    background-color: #f0f3f5;
    overflow-x: hidden;
}
.container{
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
}
@media(max-width: 1199px){
    .container{
        max-width: 960px;
    }
}
@media(max-width: 991px){
    .container{
        padding-left: 24px;
        padding-right: 24px;
        max-width: 720px;
    }
}
@media(max-width: 767px){
    .container{
        max-width: 540px;
    }
}
@media(max-width: 575px){
    .container{
        max-width: 100%;
    }
}

.title{
    font-size: 28px;
    font-weight: bold;
    color: #038E8A;
    line-height: 1.2;
    /*text-align: center;*/
    display: flex;
    /*justify-content: center;*/
    align-items: baseline;
}
.title.orange{
    color: #FB9E07;
}
.title-text{
    position: relative;
    font-size: inherit;

}
.title .dashed{
    margin-left: 3px;
    padding-left: 5.5vw;
    border-bottom: 3px dashed #FB9E07;
}
.title-img{
    display: block;
    margin-left: -12px;
    padding-bottom: 4px;
}
@media(max-width: 767px){
    .title-text{
        display: flex;
        align-items: flex-start;
    }
}
@media(max-width: 440px){
    .title .dashed{
        display: none;
    }
    .title-img{
        /*display: none;*/
    }
}

.video {
    width: 100%;
    height: 100%;
    /*position: relative;*/
    /*padding-bottom: 54.25%;*/
    border: 11px solid;
    border-radius: 20px;
}

.video > * {
    /*position: absolute;*/
    /*left: 0;*/
    /*top: 0;*/
    /*width: 100%;*/
    /*height: 100%;*/
    border-radius: 8px;
}
/*standard classes end*/

header{
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    background-color: #FFFFFF;
}
header .desktop.row{
    min-height: 100px;
    justify-content: space-between;
    align-items: center;
}
/*header .logo img, */
.footer-logo img{
    width: 126px;
}
.nav ul{
    list-style: none;
    padding: 0 -5px 0 -5px;
    margin: 0;
}
.nav li{
    display: inline-block;
    padding: 0 5px;
}
.nav a{
    color: #000;
    font-size: 18px;
    line-height: 25px;
    text-decoration: none;
    font-weight: 600;
}
.mobile-nav a {
    color: #000;
    font-size: 16px;
    line-height: 26px;
    text-decoration: none;
    font-weight: 400;
}
.nav a{
    position: relative;
    padding: 5px 10px;
}
.nav a:before,
.mobile-nav a:before{
    position:absolute;
    bottom: -10px;
    left: 0;
    content: " ";
    border-bottom: 2px solid #F26240;
    transform: scale(0,1);
    width:100%;
    transition: transform 0.3s;
}
.nav a:hover:before,
.mobile-nav a:hover:before{
    /*border-bottom: 2px solid #F26240;*/
    transform: scale(1,1);
}
.nav .mobile-icon{
    display: none;
    margin-bottom: 4px;
    cursor: pointer;
}
.nav .mobile-icon img{
    /*width: 85px;*/
}
.mobile-nav{
    display: none;
    /*text-align: center;*/
    width: 90%;
    position: absolute;
    z-index: 5;
    background-color: #FBFBFB;
    left: 0;
}
.mobile-nav ul{
    display: none;
    list-style: none;
    margin: 0;
    padding: 19px 25px;
}
ul.header-contacts{
    /*margin: 0;*/
    padding: 50px 25px;
}
.mobile-nav li{
    padding: 7px 0;
    border-bottom: 1px solid #E4E9EE;
}
.mobile-nav li:first-child{
    border-bottom: 0;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
}
.mobile-nav li:last-child{
    border-bottom: 0;
}
li.header-contacts-item{
    border-bottom: 0;
    padding: 5px 0;
}
li.header-social-links{
    justify-content: left;
}
li.header-social-links a{
    margin-right: 25px;
}
.mobile-nav a{
    padding: 5px 0px;
}
li.header-contacts-item a{
    color: #22282B;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
}
li.header-contacts-item-mail a{
    color: #22282B;
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
}
.personal{
    display: none;
}
#brick{
    height: 100px;
}


@media (max-width: 991px) {
    header .logo img{
        /*width: 210px;*/
    }
    .nav .desktop{
        display: none;
    }
    .nav .mobile-icon{
        display: block;
    }
    .mobile-nav{
        display: block;
    }
    #section1 {
        background-position: center center;
    }
    .personal{
        display: block;
    }
    header .desktop.row {
        flex-direction: row-reverse;
        min-height: 86px;
    }
    #brick{
        height: 86px;
    }
    .w3-overlay {
        position: fixed;
        display: none;
        width: 100%;
        height: 100%;
        top: 86px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 3;
    }
}
@media(max-width: 767px){
    .w3-overlay {
        top: 60px;
    }
    header .desktop.row {
        min-height: 60px;
    }
    header .logo img {
        width: 170px;
    }
    .nav .mobile-icon img {
        /*width: 60px;*/
    }
    #brick{
        height: 60px;
    }
}

@media(max-width: 575px){
}

#section1{
    position: relative;
    /*background-image: url("/../img/landing/sec1-bg.webp");*/
    /*background-size: cover;*/
}
#section1 .info{
    align-items: stretch;
    /*flex-direction: column;*/
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 75px;
    padding-bottom: 15px;
    /*width: 610px;*/
    min-height: 652px;
    /*text-align: center;*/
    position: relative;
    gap: 2%;
}
#section1 .info .info-content{
    width: 49%;
    background-color: #fff;
    border-radius: 20px;
    border: 2px solid rgba(64, 157, 242, 0.14);
    padding: 40px;
}
#section1 .info .text1,
#section1 .info .text2{
    /*color: #2D2D2D;*/
    /*font-weight: bold;*/
    /*padding-bottom: 55px;*/
}
#section1 .info .text1{
    font-size: 30px;
    font-weight: 800;
    line-height: 39px;
    text-transform: uppercase;
    /*padding-bottom: 28px;*/
}
#section1 .info .text11{
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 16px;
}
#section1 .info .text2{
    font-size : 20px;
    font-weight: 500;
    line-height: 26px;
    padding-bottom: 28px;
    /*text-shadow : 1px 1px 2px rgba(0, 0, 0, 0.3);*/
}
#section1 .info .text2 span{
    font-weight: 700;
    color: #EC5F41;
}
#section1 .info .text22{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 28px;
}
#section1 .info .text22 .text22-block{
    width: 33%;
}
#section1 .info .text22 .text22-block .text22-title{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.5);
    padding-bottom: 4px;
}
#section1 .info .text22 .text22-block .text22-number{
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: #22282B;
    padding-bottom: 4px;
}
#section1 .info .text22 .text22-block .text22-text{
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

#section1 .info .order-button{
    /*width: 221px;*/
    /*height: 42px;*/
    background-color: #F26240;
    color: #fff;
    cursor: pointer;
    line-height: 22px;
    font-weight : 600;
    font-size : 18px;
    text-align: center;
    padding: 18px 45px;
    border-radius: 11px;
    display: inline-block;
}

.top-auth-tabs .entry-tab,
.top-auth-tabs .reg-tab{
    width: 172.5px;
    padding: 10px;
    color: #fff;
    font-size : 20px;
    font-weight: bold;
}
.top-auth-tabs .entry-tab{
    float: left;
    background-color: #33CCCC;
    border-radius: 10px 0 0 10px;
}
.top-auth-tabs .reg-tab{
    float: right;
    background-color: #33CCCC;
    border-radius: 0 10px 10px 0;
}

@media (max-width: 991px) {
    #section1 .main-auth-container {
        /*display: none;*/
        /*position: absolute;*/
        width: 100%;
    }
    #section1 .info .info-content {
        width: 100%;
    }


}
@media (max-width: 767px) {
    #section1 .info {
        /*width: 80%;*/
    }

    #section1 .info {
        padding: 42px 0 40px;
    }


    #section1 .info .text1 {
        font-size: 22px;
        line-height: 28px;
        /*padding-bottom: 16px;*/
    }

    #section1 .info .text11 {
        font-size: 20px;
        font-weight: 600;
        line-height: 26px;
        padding-bottom: 16px;
    }

    #section1 .info .text2 {
        font-size: 16px;
        font-weight: 500;
        line-height: 21px;
        padding-bottom: 16px;
    }

    #section1 .info .text22 {
        padding-bottom: 16px;
        gap: 10px;
    }

    #section1 .info .text22 .text22-block {
        width: 45%;
    }

    #section1 .info .text22 .text22-block:last-child {
        width: 100%;
    }

    #section1 .info .text22 .text22-block .text22-title {
        font-weight: 500;
        font-size: 12px;
        line-height: 17px;
        padding-bottom: 0;
    }

    #section1 .info .text22 .text22-block .text22-number {
        padding-bottom: 0;
    }

    #section1 .info .text22 .text22-block .text22-text {
        font-weight: 500;
        font-size: 12px;
        line-height: 17px;
    }

    #section1 .info .order-button {
        width: 100%;
    }
}
@media (max-width: 575px) {
    #section1 .info{
        width: 100%;
    }
}

/* --- Top form --- */
textarea:focus, input:focus{
    outline: none;
}
.main-auth-container{
    /*position: absolute;*/
    /*top: 125px;*/
    /*right: 8.33%;*/
    width: 49%;
    /*min-height: 320px;*/
    background-color: #fff;
    border-radius: 20px;
    border: 2px solid rgba(64, 157, 242, 0.14);
    padding: 40px;
    z-index: 4;
    /*box-shadow: 1px 1px 2px 0px #8a8989;*/
}
.main-auth-container .entry-tab,
.main-auth-container .reg-tab{
    /*float: left;*/
    /*width: 50%;*/
    /*padding-top: 30px;*/
    /*box-sizing: border-box;*/
    text-align: center;
}
.main-auth-container .entry-tab,
.main-auth-container .reg-tab/*,
.main-auth-container .entry-button*/
{
    color: #b8860b;
    font-size : 14px;
    font-weight: 500;
    line-height: 20px;
}
.main-auth-container .entry-tab span,
.main-auth-container .reg-tab span{
    cursor: initial;
    color: rgba(0, 0, 0, 0.5);
}
.main-auth-container .entry-tab{
    /*border-radius: 10px 0 0;*/
}
.main-auth-container .opened-form.entry-tab{
    /*border-radius: 10px 0 0!important;*/
}
.main-auth-container .reg-tab{
    /*border-radius: 0 10px 0 0;*/
}
.main-auth-container .opened-form.reg-tab{
    /*border-radius: 0 10px 0 0!important;*/
}

.main-auth-container .tab.enabled{
    /*background-color: #2db3b3;*/
}
.main-auth-container .tab.disabled{
    /*background-color: #33CCCC;*/
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
.main-auth-container .form-container{
    /*padding: 32px 27px 36px 27px;*/
}
.main-auth-container .form-title{
    font-size: 24px;
    font-weight: 600;
    line-height: 31px;
    text-align: center;
    color: #22282B;
    padding-bottom: 30px;
}
.main-auth-container input{
    width: 100%;
    margin: 0;
    padding: 10px;
    border: none;
    box-sizing: border-box;
}
.main-auth-container .input-text{
    margin-bottom: 30px;
    /*padding-left: 42px;*/
    height: 58px;
    background-color: #fff;
    border-radius: 11px;
    /*font-style : italic;*/
    font-size : 14px;
    border: 1px solid #E2E2E2;
    color : #A0A0A0;
}
.main-auth-container .email-group,
.main-auth-container .email-reg-group,
.main-auth-container .name-group,
.main-auth-container .phone-group,
.main-auth-container .pswd-group{
    position: relative;
}
.main-auth-container .icon{
    /*width: 21px;*/
    /*position: absolute;*/
    /*top: 10px;*/
    /*left: 10px;*/
}
.main-auth-container .pswd-group .icon{
    top: 8px;
}
.main-auth-container .email-reg-group .icon{
    top: 14px;
}
.main-auth-container .phone-group .icon{
    top: 11px;
}
.main-auth-container .text{
    margin-top: 8px;
    margin-bottom: 20px;
    font-style : italic;
    font-size : 12px;
    color : #A0A0A0;
    text-align: center;
}
.main-auth-container .entry-button{
    height: 58px;
    background-color: #C8AE71;
    border-radius: 11px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    /*line-height: 36px;*/
    /*padding-bottom: 30px;*/
    color: #FFFFFF;
}

/* ---------------- */
.main-auth-container #registration-group {
    display: none;
}
.main-auth-container .entry-tab {
    display: none;
}

/* ---------------- */
.error-input{
    background-color: #f8d3c9!important;
    color: #ff5e38!important;
}
.error-icon{
    fill: #ff5e38!important;
}
.error-text{
    display: none;
    color: #ff5e38!important;
    text-align: left!important;
}
.error-text .wrapper{
    display: flex;
    justify-content: left;
    align-items: center;
}
.error-text .wrapper img{
    display: flex;
    justify-content: left;
    align-items: center;
    width: 21px;
}
.error-text .wrapper .text-wrapper{
    padding-left: 10px;
}

@media (max-width: 1700px) {
    .main-auth-container{
        position: initial;
        /*margin-bottom: 55px;*/
        min-height: initial;
        width: 49%;
    }
    .main-auth-container .form-container{
        /*display: none;*/
    }
    .main-auth-container .entry-tab{
        border-radius: 10px 0 0 10px;
    }
    .main-auth-container .reg-tab{
        border-radius: 0 10px 10px 0;
    }
}
@media (max-width: 375px) {
    .main-auth-container{
        width: 90%;
    }
}
/* --- /Top form --- */

/*functions*/
#functions{
    /*background-image: url('/../img/landing/bg-top.png');*/
    /*background-color: #1BA39C;*/
    /*background-repeat: no-repeat;*/
    /*background-position: left top;*/
    /*background-size: 75%;*/
    padding: 90px 0;
}
.function-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.function-background{
    position: absolute;
    width: 74%;
    height: 100%;
    z-index: -1;
    background-color: rgba(242, 98, 64, 0.04);
    border-radius: 20px;
}
.function-left{
    width: 48%;
    padding: 64px 49px;
}
.function-right{
    width: 52%;
    padding: 38px 0;
}
h2.title-text{
    font-size: 42px;
    font-weight: 700;
    line-height: 50px;
    color: #22282B;
    padding-bottom: 16px;
    letter-spacing: -2px;
}
h2.title-text span{
    color: #F26240;
}
.title .dotted{
    margin-left: 10px;
    padding-left: 3.2vw;
    border-bottom: 3px dotted #F26240;
}
.functions-descr{
    font-size: 21px;
    font-weight: 600;
    /*text-align: center;*/
    /*margin-top: 45px;*/
    /*margin-bottom: 40px;*/
    /*max-width: 640px;*/
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    line-height: 27px;
    padding-bottom: 32px;
}
#functions .list-item{
    align-items: center;
    position: relative;
    min-height: 50px;
}
#functions .list-item img{
    position: absolute;
    top: -14px;
    left: -14px;
}
#functions .list{
    /*margin-bottom: 70px;*/
    /*max-width: 800px;*/
    /*margin-left: auto;*/
    /*margin-right: auto;*/
}
#functions .list .list-item span{
    font-family: 'Inter', sans-serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 27px;
    color: #22282B;
    padding-left: 74px;
}
#functions .list .list-item + .list-item{
    margin-top: 16px;
}
@media(max-width: 1199px) and (min-width: 992px){
    .function-left {
        width: 48%;
        padding: 36px 24px;
    }
}
@media(max-width: 991px) and (min-width: 768px){
    .function-left {
        width: 100%;
        padding: 36px 24px;
    }
    .function-right {
        width: 100%;
        padding: 0;
        min-height: 330px;
    }
    .function-background {
        left: -25px;
        width: calc(100% + 50px);
        height: 72%;
    }

}
@media(max-width: 767px){
    #functions{
        background-image: none;
        padding: 0;
    }
    .function-background {
        left: -25px;
        width: calc(100% + 50px);
        height: 72%;
    }
    .function-left {
         width: 100%;
         padding: 0;
    }
    .function-right {
        width: 100%;
        padding: 20px 0 0 0;
        min-height: 230px;
    }
    h2.title-text {
        font-size: 24px;
        font-weight: 700;
        line-height: 29px;
        padding-bottom: 16px;
        letter-spacing: -1px;
    }
    .title .dotted {
        margin-left: 34px;
        padding-left: 16.2vw;
    }
    .functions-descr {
        font-size: 16px;
        font-weight: 600;
        line-height: 21px;
        padding-bottom: 16px;
    }
    #functions .list .list-item span {
        font-size: 16px;
        line-height: 21px;
    }
}
/*functions end*/

/* For-whom  */
#for-whom{
    /*font-weight: bold;*/
    /*text-align: center;*/
    padding: 90px 0;
}
#for-whom h2.title-text{
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    padding-bottom: 10px;
}
#for-whom .description{
    padding-bottom: 24px;
    font-weight: 500;
    line-height: 27px;
    font-size : 21px;
}
#for-whom .stores{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 40px;
}
#for-whom .store{
    margin: 0 auto;
    padding: 12px 0 24px 15px;
    width: 48%;
    border: 1px solid rgba(242, 98, 64, 0.14);
    border-radius: 20px;
    min-height: 198px;
}
#for-whom .store img{
    /*width: 100%;*/
    padding-bottom: 3px;
}
#for-whom .store .name{
    /*width: 100%;*/
    font-weight: 600;
    line-height: 31px;
    font-size : 24px;
    color: #22282B;
    padding-left: 12px;
}
#stores{
    display: none;
}
@media (max-width: 1199px){
    #for-whom .store {
        /*margin: 0 auto;*/
        /*padding: 12px 0 24px 15px;*/
        width: 45%;
        /*border: 1px solid rgba(242, 98, 64, 0.14);*/
        /*border-radius: 20px;*/
         min-height: unset;
    }
}
@media (max-width: 575px) {
    #for-whom {
        padding: 0 0 21px;
    }
    #for-whom .stores{
        display: none;
    }
    #stores{
        display: block;
    }
    #for-whom h2.title-text {
        font-weight: 700;
        font-size: 24px;
        line-height: 29px;
        padding-bottom: 16px;
    }

    #for-whom .description {
        padding-bottom: 16px;
        font-weight: 500;
        line-height: 21px;
        font-size: 16px;
        letter-spacing: -.3px;
    }

    #for-whom .store {
        width: 100%;
        height: 100%;
        text-align: center;
        padding: 15px;
        min-height: 175px;
    }
    #for-whom .store .img-landing{
        margin-bottom: -14px;
    }
    #for-whom .store .name {
        line-height: 22px;
        font-size: 16px;
        padding-left: 0;
    }
    #for-whom .store-box {
        min-height: 100%;
        height: unset;
        padding-bottom: 30px;
    }
    #stores .glide__bullet{
        width: 30px;
        height: 1px;
        /*border-radius: 50%;*/
        padding: 0;
        border: 1px solid transparent;
        cursor: pointer;
        background-color: #E6E9EA;
        margin-right: -5px;
        transition: 1s ease;
    }
    #stores .glide__bullet:hover{
        background-color: #F26240;
        border: 1px solid #F26240;
        /*animation: 1s show ease;*/
    }
    #stores .glide__bullet--active{
        background-color: #F26240;
        border: 1px solid #F26240;
        animation: 1s show ease;
    }

}
/* For-whom end*/

/*process*/
#process{
    padding: 90px 0 0 0;
}
#process-container{
    position: relative;
    /*overflow-x: auto;*/
}
.sub-wrapper{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 16px 0 32px;
    border-bottom: 1px solid #E6E9EA;
}
.process-description-left{
    width: 48%;
}
.process-description-right{
    width: 52%;
}
.process-descr-1{
    /*margin-top: 36px;*/
    /*max-width: 820px;*/
    /*text-align: center;*/
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: -1.3px;
}
.process-descr-2{
    margin: 28px 0;
    font-size: 24px;
    font-weight: 600;
    /*text-align: center;*/
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    /*max-width: 590px;*/
    line-height: 31px;
    letter-spacing: -1.3px;
    color: rgba(34, 40, 43, 1);
}
.scheme-title{
    margin-top: 32px;
    font-size: 24px;
    font-weight: 600;
    /*text-align: center;*/
    margin-bottom: 40px;
    letter-spacing: -1.3px;
    line-height: 31px;
}
.process-scheme{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    --item-size: 15%;
    background-color: rgba(242, 98, 64, 0.04);
    border-radius: 15px;
    height: 70px;
    max-width: 1160px;
    margin: 0 auto;
}
.process-item{
    width: var(--item-size);
    display: flex;
    /*height: calc(var(--item-size) + 50px);*/
    /*margin-bottom: 30px;*/
    justify-content: center;
    cursor: pointer;
    position: relative;
    border-radius: 15px;
    transition: background-color 1s ease, color 1s;
}
@media screen and (min-width: 992px){
    .process-item:hover, .process-item:focus, .process-item:active{
        color: #ffffff;
        background-color: #F26240;
        /*border: 1px solid #F26240;*/
        border-radius: 15px;
    }
}
/*
.process-item:before{
    position:absolute;
    bottom: 0;
    left: 0;
    content: " ";
    color: #ffffff;
    background: #F26240;
    border: 1px solid #F26240;
    border-radius: 15px;
    transform: scale(0,1);
    width:100%;
    transition: transform 0.3s;
    width: 100%;
    height: 70px;
    z-index: -1;
}
.process-item:hover p{
    color: #ffffff;
}*/
/*.process-item:hover:before{*/
/*    !*border-bottom: 2px solid #F26240;*!*/
/*    transform: scale(1,1);*/
/*}*/

.process-active{
    color: #ffffff;
    background: #F26240;
    border: 1px solid #F26240;
    border-radius: 15px;
    animation: 1s show ease;
}
.process-item-left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.process-img{
    width: 100%;
    height: var(--item-size);
    border: 3px solid #E5E5E5;
    border-radius: 12px;
    padding: 10px;
}
.process-img img{
    max-width: 100%;
    max-height: 100%;
}
.process-title{
    font-size: 21px;
    text-align: center;
    /*color: #038E8A;*/
    font-weight: 500;
    line-height: 27px;
    padding: 20px 0;
}
.arrow-down{
    display: none;
}
.process-text{
    display: none;
}
.arrow-right{
    margin-top: calc(var(--item-size)/2);
    transform: translateY(-50%);
    margin-left: 3px;
    margin-right: 3px;
}
.process-item-clone{
    display: none;
}
@media (max-width: 1199px) and (min-width: 992px){
    .process-title{
        font-size: 18px;
        line-height: 24px;
    }
    .process-item:before{
        height: 64px;
    }
}
@media (max-width: 991px) and (min-width: 768px){
    .process-title{
        font-size: 15px;
        line-height: 22px;
    }
    .process-scheme {
        gap: 5px;
        --item-size: 15.8%;
        height: 64px;
    }
    .process-item:before{
        /*position:absolute;*/
        /*bottom: 0;*/
        /*left: 0;*/
        /*content: " ";*/
        /*color: #ffffff;*/
        /*background: #F26240;*/
        /*border: 1px solid #F26240;*/
        /*border-radius: 15px;*/
        /*transform: scale(0,1);*/
        /*width:100%;*/
        /*transition: transform 0.3s;*/
        /*width: 100%;*/
        /*height: 64px;*/
        /*z-index: -1;*/
    }
}
@media (max-width: 767px){
    .arrow-right{
        display: none;
    }
    .process-item {
        /*width: 100%;*/
        /*height: auto;*/
        /*margin-bottom: 20px;*/
    }
    .arrow-down{
        display: block;
        margin-top: 10px;
        width: 90%;
    }
    .process-item-left{
        width: var(--item-size);
    }
    .process-title{
        /*order: -1;*/
        /*margin-bottom: 15px;*/
        font-size: 14px;
        line-height: 18px;
        padding: 10px 0;
    }
    .process-text{
        display: block;
        padding-top: 30px;
        padding-left: 30px;
        font-size: 16px;
        width: calc(100% - var(--item-size));
    }
    #process{
        padding: 36px 0 24px;
    }
    .process-description-left {
         width: 100%;
    }
    .process-description-right {
        width: 100%;
    }
    .process-descr-2 {
        margin: 0 0 16px 0;
        font-size: 16px;
        line-height: 21px;
    }
    .process-descr-1 {
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        color: #000000;
        letter-spacing: 0;
    }
    .sub-wrapper {
         padding: 0;
         border-bottom: 0;
    }
    .scheme-title {
        margin-top: 16px;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0;
        letter-spacing: -0.3px;
        line-height: 21px;
    }
    .process-item:before{
        /*height: 40px;*/
    }
    .process-scheme{
        position: relative;
        left: -80px;
        width: 1510px;
        max-width: 1510px;
        height: 42px;
        --item-size: 11.5%;
        /*transform: translate3d(-80px, 3px, 0px);*/
    }
    .process-item-clone{
        display: flex;
    }
}
@media (max-width: 539px){
    .process-scheme{
        left: -50px;
        /*transform: translate3d(-80px, 3px, 0px);*/
    }
}
@media (max-width: 424px){
    .process-scheme{
        left: -80px;
        /*transform: translate3d(-50px, 3px, 0px);*/
    }
}

/*process end*/

/*slider*/
#slider{
    /*margin-top: 68px;*/
    padding: 0 0 90px 0;
}
.slider-left{
    width: 48%;
    /*padding: 121px 60px;*/
}
.slider-right{
    width: 52%;
    padding-left: 40px;
}
#slider .glide__slide{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 42px;
    padding-bottom: 52px;
    /*padding-left: 80px;*/
    /*padding-right: 125px;*/
    /*border-radius: 12px;*/
    /*background-color: #bceeee;*/
}
.slide-number{
    position: absolute;
    bottom: -22px;
    font-family: 'Inter', sans-serif;
    font-size: 112px;
    color: rgba(243, 243, 243, 1);
    font-weight: 600;
    line-height: 134px;
}
.slide-text{
    /*max-width: 40%;*/
}
.slide-text-title{
    font-size: 36px;
    font-weight: 600;
    color: #22282B;
    line-height: 46px;
    padding-bottom: 16px;
}
.slide-text-text{
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    line-height: 25px;
    /*padding-bottom: 16px;*/
}
#slider .glide__bullets{
    /*margin-top: 42px;*/
    /*text-align: center;*/
}
#slider .glide__bullet{
    width: 165px;
    height: 1px;
    /*border-radius: 50%;*/
    padding: 0;
    border: 1px solid transparent;
    cursor: pointer;
    background-color: #E6E9EA;
    margin-right: -5px;
    transition: 1s ease;
}
#slider .glide__bullet:hover{
    background-color: #F26240;
    border: 1px solid #F26240;
    /*animation: 1s show ease;*/
}
#slider .glide__bullet--active{
    background-color: #F26240;
    border: 1px solid #F26240;
    animation: 1s show ease;
}
#slider .glide__bullet + .glide__bullet{
    /*margin-left: 18px;*/
}
.glide__arrows {
    position: absolute;
    bottom: -20px;
    right: 0;
}
.glide__arrow {
    width: 50px;
    height: 50px;
    color: #F26240;
    border: 1px solid #F26240;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 16px;
    font-size: 21px;
    font-weight: 700;
    transition: 1s ease;
}
.glide__arrow:hover, .glide__arrow:active, .glide__arrow:focus,
.glide__arrow:hover svg path, .glide__arrow:active svg path, .glide__arrow:focus svg path {
    color: #ffffff;
    background-color: #F26240;
    border: 1px solid #F26240;
    fill: #ffffff;
}
.process-img img,
.slide-img{
    /*width: 213px;*/
}
@media (max-width: 1199px) and (min-width: 992px){
    .slider-right {
        padding-left: 24px;
    }
    .slide-text-title {
        font-size: 32px;
        line-height: 36px;
        padding-bottom: 10px;
    }
    .slide-text-text {
        font-size: 16px;
        line-height: 22px;
    }
    #slider .glide__bullet {
        width: 130px;
    }
}
@media (max-width: 991px) and (min-width: 768px){
    .slider-right {
        padding-left: 24px;
    }
    .slide-text-title {
        font-size: 28px;
        line-height: 32px;
        padding-bottom: 10px;
    }
    .slide-text-text {
        font-size: 14px;
        line-height: 20px;
    }
    .slide-number {
        display: none;
    }
    #slider .glide__bullet {
        width: 86px;
    }
}
@media (max-width: 767px){
    #slider{
        padding: 0 0 60px 0;
    }
    .slider-left {
        width: 100%;
        /* padding: 121px 60px; */
    }
    .slider-right {
        width: 100%;
        padding: 24px 0 0;
    }
    #slider .glide__slide {
        padding: 24px 0;
    }
    .slide-text-title {
        font-size: 24px;
        line-height: 31px;
        padding-bottom: 16px;
    }
    .slide-number {
        display: none;
    }
    .slide-text-text {
        font-size: 14px;
        line-height: 20px;
    }
    #slider .glide__bullet {
        width: 30px;
    }
}

/*slider end*/

/*bottom-video*/
#bottom-video{
    padding: 90px 0;
}
.bottom-left{
    width: 48%;
    padding: 121px 60px;
}
.bottom-right{
    width: 52%;
    padding: 38px 0;
}
.bottom-video-descr{
    /*margin-bottom: 50px;*/
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
}
.bottom-video-title{
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
    color: #22282B;
    padding-bottom: 28px;
    letter-spacing: -1px;
}
.bottom-background{
    position: absolute;
    width: 74%;
    height: 100%;
    z-index: -1;
    background-color: rgba(20, 112, 239, 0.04);
    border-radius: 20px;
}

@media(max-width: 1199px) and (min-width: 992px){
    .bottom-left {
        width: 48%;
        padding: 36px 24px;
    }
}
@media(max-width: 991px) and (min-width: 768px){
    .bottom-left {
        width: 100%;
        padding: 36px 24px 28px;
    }
    .bottom-right {
        width: 100%;
        padding: 0;
        min-height: 330px;
    }
    .bottom-background {
        width: calc(100% + 50px);
        height: 64%;
        left: -25px;
    }

}
@media(max-width: 767px){
    #bottom-video{
        padding: 0 0 40px;
    }
    .bottom-left {
        width: 100%;
        padding: 36px 0 28px;
    }
    .bottom-right {
        width: 100%;
        padding: 0;
        min-height: 230px;
    }
    .bottom-video-title {
        font-size: 24px;
        font-weight: 600;
        line-height: 29px;
        padding-bottom: 16px;
    }
    .bottom-video-descr {
        font-size: 16px;
        font-weight: 400;
        line-height: 21px;
    }
    .bottom-background {
        width: calc(100% + 50px);
        height: 64%;
        left: -25px;
    }
}

/*bottom-video end*/

/*benefits*/
#benefits{
    padding: 90px 0;
    /*background-image: url('/../img/landing/bg-bottom.png');*/
    /*background-repeat: no-repeat;*/
    /*background-position: right bottom;*/
    /*background-size: 20%;*/
}
.benefits-descr{
    font-size: 21px;
    /*margin-top: 23px;*/
    /*margin-bottom: 40px;*/
    font-weight: 500;
    /*text-align: center;*/
    line-height: 27px;
    padding-bottom: 16px;
}
.benefits-descr span{
    font-weight: 700;
}
.benefits-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*align-items: center;*/
}
.benefits-item{
    /*display: flex;*/
    /*align-items: center;*/
    width: 22%;
    text-align: center;
    border: 2px solid rgba(20, 112, 239, 0.14);
    border-radius: 16px;
    padding: 12px 20px 35px;
}
.benefits-item span{
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    padding-top: 12px;
}
.benefits-item img{
    display: block;
    margin: 0 auto;
    padding-bottom: 10px;
}
.benefits-img{
    width: 50%;
}
.benefits-list{
    list-style: url('/../img/landing/list-marker.png');
    margin-left: 75px;
}
.list{
    display: flex;
    flex-direction: column;
}
.list-item{
    display: flex;
    align-items: center;
}
.list-item +.list-item{
    margin-top: 36px;
}
.list-item img{
    margin-right: 13px;
}
#blocks{
    display: none;
}

@media(max-width: 991px){
    #benefits{
        background-image: none;
    }
    .benefits-item {
        /* display: flex; */
        /* align-items: center; */
        width: 24%;
        /*text-align: center;*/
        /*border: 2px solid rgba(20, 112, 239, 0.14);*/
        /*border-radius: 16px;*/
        padding: 12px 10px 35px;
    }
    .benefits-item span {
        font-size: 15px;
        font-weight: 700;
        line-height: 22px;
        padding-top: 12px;
    }
}
@media(max-width: 767px){
    .benefits-row{
        flex-direction: column;
    }
    .benefits-row .list{
        order: 0;
    }
    .benefits-row .benefits-img{
        order: 1;
        margin-top: 30px
    }
    #benefits {
        padding-top: 75px;
    }
    .benefits-row{
        display: none;
    }
    #blocks{
        display: block;
        width: 110%;
    }
    .benefits-item {
        width: 100%;
        height: 100%;
        padding: 12px 20px 28px;
    }
    .benefits-item img {
        margin-bottom: -14px;
        padding: 0;
    }
    .benefits-item span {
        font-size: 16px;
        line-height: 22px;
    }
    #blocks .block-box {
        min-height: 100%;
        height: unset;
        padding-bottom: 30px;
    }

    #blocks .glide__bullet{
        width: 30px;
        height: 1px;
        /*border-radius: 50%;*/
        padding: 0;
        border: 1px solid transparent;
        cursor: pointer;
        background-color: #E6E9EA;
        margin-right: -5px;
        transition: 1s ease;
    }
    #blocks .glide__bullet:hover{
        background-color: #1470EF;
        border: 1px solid #1470EF;
        /*animation: 1s show ease;*/
    }
    #blocks .glide__bullet--active{
        background-color: #1470EF;
        border: 1px solid #1470EF;
        animation: 1s show ease;
    }
    #blocks .glide__arrow {
        width: 50px;
        height: 50px;
        color: #1470EF;
        border: 1px solid #1470EF;
        border-radius: 50%;
        cursor: pointer;
        margin-left: 16px;
        font-size: 21px;
        font-weight: 700;
        transition: 1s ease;
    }
    #blocks .glide__arrow:hover, #blocks .glide__arrow:active, #blocks .glide__arrow:focus,
    #blocks .glide__arrow:hover svg path, #blocks .glide__arrow:active svg path, #blocks .glide__arrow:focus svg path {
        color: #ffffff;
        background-color: #1470EF;
        border: 1px solid #1470EF;
        fill: #ffffff;
    }
    #blocks .glide__arrows {
        position: absolute;
        bottom: -20px;
        left: 50%;
    }

}
/*benefits end*/

/*have-questions*/
#have-questions{
    padding: 90px 0;
    /*padding-bottom: 45px;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: center;*/
    /*background-image: url('/../img/landing/have-questions-bg.webp');*/
    /*background-size: cover;*/
    /*background-position: center;*/
    /*color: #fff;*/
}
.questions-bg{
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 2px solid rgba(242, 98, 64, 0.14);
}
.questions-left{
    width: 50%;
    padding: 95px 44px;
}
.questions-right{
    width: 50%;
    padding: 57px 40px 57px 20px;
}
#have-questions h2.title-text {
    font-size: 40px;
    font-weight: 600;
    line-height: 65px;
    color: #22282B;
    padding-bottom: 24px;
    letter-spacing: -2px;
}
.have-questions-descr{
    font-size: 21px;
    font-weight: 500;
    line-height: 27px;
    color: #909DA2;
    padding-right: 10px;
    /*margin-top: 35px;*/
    /*max-width: 600px;*/
    /*text-align: center;*/
    /*margin-bottom: 37px;*/
}

.have-questions-form{
    /*max-width: 300px;*/
    /*margin-left: auto;*/
    /*margin-right: auto;*/
}
.have-questions-form input{
    width: 100%;
    margin-bottom: 20px;
    padding: 18px 25px;
    height: 58px;
    border-radius: 11px;
    /* font-style: italic; */
    font-size: 14px;
    border: 1px solid #E2E2E2;
    color: #A0A0A0;
}
.have-questions-form .input-text{
    /*margin-bottom: 15px;*/
    /*padding-left: 42px;*/
    /*height: 42px;*/
    /*background-color: #f2f2f2;*/
    /*border-radius: 5px;*/
    /*font-style : italic;*/
    /*font-size : 14px;*/
    /*color : #A0A0A0;*/
}
.have-questions-form .name-group,
.have-questions-form .phone-group{
    position: relative;
}
.have-questions-form .icon{
    width: 21px;
    position: absolute;
    top: 10px;
    left: 10px;
}
.have-questions-form .pswd-group .icon{
    top: 8px;
}
.have-questions-form .email-reg-group .icon{
    top: 14px;
}
.have-questions-form .phone-group .icon{
    top: 11px;
}
.have-questions-form .text{
    /*margin-top: 8px;*/
    /*margin-bottom: 20px;*/
    color: rgba(0, 0, 0, 0.5);
    font-size : 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    padding-bottom: 20px;
}
.have-questions-form .entry-button{
    height: 58px;
    background-color: #F26240;
    border-radius: 11px;
    cursor: pointer;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    text-align: center;
    color: #FFFFFF;
    padding: 18px;
}

@media(max-width: 1199px){
    .questions-left {
        /*width: 50%;*/
        padding: 46px 24px;
    }
}
@media(max-width: 991px){
    .questions-left {
        /*width: 50%;*/
        padding: 54px 24px;
    }
    #have-questions h2.title-text {
        font-size: 38px;
        /*font-weight: 700;*/
        line-height: 46px;
        /*padding-bottom: 16px;*/
        /*letter-spacing: -1px;*/
        /*margin: 0 20px;*/
        /*text-align: center;*/
    }
    .have-questions-descr {
        font-size: 20px;
        /*font-weight: 500;*/
        /*line-height: 21px;*/
        /*color: #000000;*/
        /*margin-bottom: 24px;*/
    }
}
@media(max-width: 767px){
    #have-questions {
        padding: 40px 0 0;
    }
    .questions-bg {
        padding: 41px 13px;
    }
    .questions-left, .questions-right {
        width: 100%;
        padding: 0;
    }
    #have-questions h2.title-text {
        font-size: 24px;
        font-weight: 700;
        line-height: 29px;
        padding-bottom: 16px;
        letter-spacing: -1px;
        margin: 0 20px;
        text-align: center;
    }
    .have-questions-descr {
        font-size: 16px;
        font-weight: 500;
        line-height: 21px;
        color: #000000;
        margin-bottom: 24px;
    }
    .have-questions-form .text {
        font-size: 12px;
        line-height: 17px;
    }
}

/*have-questions end*/

/*footer*/
footer{
    padding: 90px 0;
    /*padding-bottom: 55px;*/
    /*background-color: #2D2D2D;*/
    /*color: #fff;*/
}
.footer-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-nav{
    /*display: flex;*/
    font-size: 19px;
    position: relative;
}
.footer-nav-col{
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: flex-start;*/
    position: absolute;
    bottom: 128px;
}
.footer-nav-left{
    left: 0;
    text-align: left;
}
.footer-nav-right{
    right: 0;
    text-align: right;
}
.footer-nav-col + .footer-nav-col{
    margin-left: 35px;
}
.footer-nav a{
    margin-bottom: 5px;
    border-bottom: 2px solid transparent;
    display: block;
    position: relative;
}
.footer-nav a:before{
    position:absolute;
    bottom: -10px;
    left: 0;
    content: " ";
    border-bottom: 2px solid #F26240;
    transform: scale(0,1);
    width:100%;
    transition: transform 0.3s;
}
.footer-nav a:hover:before{
    transform: scale(1,1);
}
.footer-top, .footer-bottom{
    text-align: center;
}
.footer-logo{
    /*margin-left: 14%;*/
    /*height: 76px;*/
    margin-bottom: 31px;
}
.footer-social{
    /*margin-left: 6%;*/
}
.footer-social-title{
    font-size: 18px;
    color: #FB9E07;
    margin-bottom: 12px;
}
.footer-social-links{
    display: flex;
    justify-content: center;
}
.footer-social-links a + a{
    margin-left: 25px;
}
.footer-social-links a:hover{
    opacity: .7;
}
.footer-social-links img{
    height: 62px;
}
.footer-contacts{
    margin: 31px 0 31px;
    text-align: center;
}
.footer-contacts-text{
    /*padding-top: 17px;*/
}
.footer-contacts-item{
    /*display: flex;*/
    font-size: 40px;
    align-items: center;
    /*height: 1.5em;*/
    line-height: 48px;
    font-weight: 600;
    padding-bottom: 16px;
}
.footer-contacts-item-mail{
    padding-top: 15px;
}
.footer-mail{
    font-size: 21px;
    align-items: center;
    line-height: 27px;
    font-weight: 500;
    /*padding-bottom: 16px;*/
}
.footer-contacts-item-icon{
    width: 19px;
}
/*.footer-contacts-item-icon img{
    max-height: 19px;
    max-width: 14px;
}*/
.footer-contacts-item a, .footer-contacts-item-mail a{
    border-bottom: 2px solid transparent;
    position: relative;
}
.footer-contacts-item a:before, .footer-contacts-item-mail a:before{
     position:absolute;
     bottom: -10px;
     left: 0;
     content: " ";
     border-bottom: 2px solid #F26240;
     transform: scale(0,1);
     width:100%;
     transition: transform 0.3s;
 }
.footer-contacts-item a:hover:before, .footer-contacts-item-mail a:hover:before{
    /*border-bottom: 2px solid #F26240;*/
    transform: scale(1,1);
}
.footer-contacts-block{
    position: relative;
}
.footer-address{
    right: 0;
}
.copyright{
    text-align: center;
    color: #909DA2;
    /*margin-top: 43px;*/
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    bottom: 20px;
}
@media(max-width: 1199px){
    .footer-row{
        flex-wrap:wrap;
    }
    .footer-row > *{
        width: 50%;
        margin-left: 0
    }
    .footer-row > *:nth-child(n+3){
        margin-top: 30px;
    }
}
@media(max-width: 991px) and (min-width: 767px){
    .footer-address {
        /*right: 0;*/
        width: 190px;
        text-align: end;
        top: -45px;
    }
}
@media(max-width: 767px){
    footer {
        padding: 40px 0;
    }
    .footer-contacts {
        margin: 16px 0 0;
    }
    .footer-contacts-item {
        font-size: 24px;
        line-height: 29px;
        padding-bottom: 16px;
    }
    .footer-contacts-item-mail {
        padding-top: 0;
    }
    .footer-nav {
        display: flex;
        margin: 40px 0;
    }
    .footer-nav-col {
        position: unset;
        width: 45%;
    }
    .footer-address {
        padding: 40px 0 4px;
        width: 100%;
    }
    .copyright {
        text-align: left;
        position: unset;
        line-height: 22px;
    }

    .footer-row{
        flex-direction: column;
    }
    .footer-row > *{
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-row > *:nth-child(n+2){
        margin-top: 30px;
    }
    .footer-social-links{
        justify-content: center;
    }
}
/*footer end*/

.ellipse1 {
    position: absolute;
    width: 906px;
    height: 831px;
    background: radial-gradient(rgba(255, 202, 99, 0.5), rgba(251, 251, 251, 0.5) 60%);
    z-index: -1;
    top: 29px;
    left: -601px;
}
.ellipse2 {
    position: absolute;
    width: 1133px;
    height: 1050px;
    background: radial-gradient(rgba(255, 202, 99, 0.16), rgba(251, 251, 251, 0.16) 60%);
    z-index: -1;
    top: -293px;
    left: 59%;
}
.ellipse3 {
    position: absolute;
    width: 1176px;
    height: 1100px;
    background: radial-gradient(rgba(166, 225, 255, 0.4), rgba(251, 251, 251, 0.4) 60%);
    z-index: -1;
    top: -460px;
    left: -796px;
}
.ellipse4 {
    position: absolute;
    width: 1133px;
    height: 1050px;
    background: radial-gradient(rgba(255, 202, 99, 0.16), rgba(251, 251, 251, 0.16) 75%);
    z-index: -1;
}

@media(max-width: 575px) {
    .ellipse1 {
        position: absolute;
        width: 658px;
        height: 603px;
        background: radial-gradient(rgba(255, 202, 99, 0.5), rgba(251, 251, 251, 0.5) 60%);
        z-index: -1;
        top: 29px;
        left: -408px;
    }
    .ellipse5 {
        position: absolute;
        width: 658px;
        height: 603px;
        background: radial-gradient(rgba(255, 202, 99, 0.5), rgba(251, 251, 251, 0.5) 60%);
        z-index: -1;
        top: 102px;
        left: 56px;
    }
    .ellipse2 {
        position: absolute;
        width: 1133px;
        height: 1050px;
        background: radial-gradient(rgba(255, 202, 99, 0.16), rgba(251, 251, 251, 0.16) 60%);
        z-index: -1;
        top: -293px;
        left: 59%;
    }
    .ellipse3 {
        position: absolute;
        width: 817px;
        height: 764px;
        background: radial-gradient(rgba(166, 225, 255, 0.4), rgba(251, 251, 251, 0.4) 60%);
        z-index: -1;
        top: -112px;
        left: -526px;
    }
    .ellipse4 {
        position: absolute;
        width: 1133px;
        height: 1050px;
        background: radial-gradient(rgba(255, 202, 99, 0.16), rgba(251, 251, 251, 0.16) 75%);
        z-index: -1;
        left: calc(50% - 566px);
        top: 355px;
    }
}

/*-------------- Popup-post ---------------*/
#popup-post {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,.8);
}
#popup-post .container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 100%;
    width: 100%;
}
.post-window{
    padding: 20px 50px;
    background: #ffffff;
    border-radius: 5px;
    color: #5d5d5d;
    font-size: 20px;
    text-align: center;
}
.post-window .first{
    padding-bottom: 15px;
    font-size: 25px;
}
.post-window .second{
    padding-bottom: 10px;
}

@media(max-width: 440px){
    .post-window {
        padding: 20px 25px;
    }
}
@keyframes show {
    from { opacity: 0; }
    to { opacity: 1; }
}