body{
    padding: 0;
    margin: 0 auto;
    width: 100%;
    font-family: "Open Sans", sans-serif;
    background-color: #eee;
}
header{
    box-shadow: -1px 0px 5px 0px #008422;    
    z-index: 5;
    padding: 0 10px;
    position: fixed;
    top: 0;    
    width: calc(100% - 20px);
    background: #eeeeee;
}
header > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cont{
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
}
.logo_text{
    font-weight: 600;
    font-size: 2em;
}
.cabinet_link{
    text-decoration: none;
    color: #00350b;
}
.no_user_screen{
    width: 100%;
    height: 85vh;
    margin-top:15vh;
}
.no_user_screen:first-child{
    background-size: 40vw;
    background-repeat: no-repeat;
    background-position: right;    
    background-image: url(/assets/img/logo_var_1.png);
}
.first_screen_block{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
}
.first_screen_block  h1{
    font-size: 3em;
    width: 40%;
    font-weight: 700;
}
#fancy_auth_block{
    width: 600px;
    max-width: 100%;
    border-radius: 5px;
}
#fancy_auth_block input[type="text"]{
    outline: none;
    border: 1px solid #00350b;
    padding: 0 1em;
}
#fancy_auth_block input{
    height: 40px;
    border-radius: 5px;
}
#fancy_auth_block input[type="submit"]{
    cursor: pointer;
    background-color: #00350b;
    border-radius: 5px;
    color: #fff;
    border: 0;
    margin-top: 1em;
    text-transform: uppercase;
}
#fancy_auth_block input[type="submit"]:hover{
    opacity: 0.7;
}
#fancy_auth_block a{
    color: #00350b;
}
#fancy_auth_block h2{
    text-align: center;
}
#fancy_auth_block [data-fancybox-close]{
    top: 1em;
    color: #000;
    right: 1em;
}

.no_user_screen .right{
    width:30%;
    min-width:320px;
}
.no_user_screen .left{
    flex-grow: 1;
}
.auth:not(.second_step) .step, .register:not(.second_step) .step{
    display: none;
}
.user_dashboard{
    min-height: 100vh;
    background: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.user_dashboard h1{
    margin: 0;
}
.buy_more{
    display: flex;
    gap:1em;
    margin-bottom:2em;
    align-items: center;
    padding:30px 0;
}
.buy_more a{
    height: 300px;
    display: block;
    border:1px solid;
    display: flex;
    align-items: center;
    justify-content: center;    
    padding: 1em;
    color: #00350b;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}
.buy_more a:hover{
    font-size: 1.1em;
    height: 350px;
}
.register_wrapp{
    display: none;
}
.logout{
    color: #00350b;
}
.register_wrapp form, .auth_wrapp form{
    display: flex;
    flex-direction: column;
    gap:0.5em;
}
.links{
    margin-top:1em;
    text-align: center;
}
.screen h2{
    font-size: 40px;
    text-align: center;
}
.second_screen_block .tab{
    display: none;
    justify-content: center;
    gap: 1em;
}
.second_screen_block .tab.active{
    display: flex;
}
.second_screen_block .tab img{
    max-height: 50vh;
    max-width: 50vw;
}
.second_screen_block .tab p{
    text-align: center;
    font-weight: 600;
    font-size: 1.5em;
}
.second_screen_block .after .picture{
    background-image: url(/assets/img/bg_png_3.jpg);
    background-size: cover;
}
.second_screen_block .tabs{
    display: flex;
    justify-content: center;
    gap: 1em;
}
.second_screen_block .tab_name{
    text-decoration: none;    
    color: #000;
    padding: 1em;
    border: 1px solid;
    border-radius: 5px;
}
.second_screen_block .tab_name.active, .second_screen_block .tab_name:hover{
    color:#008422;
    background-color: #fff;
    font-weight: 600;
}
.advantages{
    display: flex;
    font-size: 17px;
    line-height: 1.5em;
    gap: 1em;
    justify-content: center;
}
.advantages .advantage{
    padding: 1em;
    box-shadow: 0px 1px 5px 0px #008422;
    max-width: 320px;
    font-style: italic;
    font-weight: 500;
    display: flex;
    align-items: center;
    text-align: center;    
    flex-direction: column;
    gap: 1em;
}
.auto_height{
    height:auto;
}
.integration{
    display: flex;
    align-items: center;
    gap: 80px;
}
.integration img{
    width: 200px;
}
.integration p{
    font-size: 20px;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 600;
}
.info_text p{
    font-size:24px;
    font-weight: 600;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.5em;
    margin-bottom: 0.5em;
}
.info_text ul{
    font-size: 20px;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 2em;
}
.info_text ul li{
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
}
.info_text ul li span{
    font-style: italic;
    font-weight: 600;
    margin-bottom: 1em;
}
.no_user_screen:last-child{
    padding-bottom: 100px;
}

@media(max-width:1024px){
    .no_user_screen:first-child{
        background-image: none;
    }
    .first_screen_block h1{
        width: 100%;
    }
}

@media(max-width:767px){
    .first_screen_block h1{
        font-size: 40px;
    }
    .screen h2{
        font-size: 26px;
    }
    .advantages{
        flex-direction: column;
    }
    .advantages .advantage{
        max-width: 100%;
        margin: 0 10px;
    }
    .info_text p{
        text-align: center;
    }
    .second_screen_block .tab img{
        max-width: 45vw;
    }
    .no_user_screen{
        height: auto;
    }
    .buy_more{
        flex-wrap: wrap;
        justify-content: center;
    }
    .buy_more a{
        width: 150px;
        height: 200px;
        text-align: center;
    }
    .buy_more a:hover{
        height: 200px;
    }
    .user_dashboard{
        padding-bottom: 20px;
    }
}

@media(max-width:492px){
    .first_screen_block h1{
        font-size: 32px;
    }

    .integration{
        gap: 2em;
        margin: 0 10px;
    }
    .integration img{
        width: 100px;
    }
    .integration p{
        font-size: 16px;
    }
    .info_text p{
        font-size: 17px;
    }
    .info_text ul{
        font-size: 15px;
    }
}