

/* Start:/local/templates/main_page/css/style.css?17378173505511*/
:root {
    --main: #312c67;
    --white: #FFF;
    --gray: #C7D0E5;
    --blue: #416EE0;
}
*{
    box-sizing: border-box;
}
body,html{
    padding: 0;
    margin: 0;
}
body{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: var(--main);
}
.container{
    max-width: 1600px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}
h1{
    font-weight: 800;
    font-size: 50px;
    line-height: 68px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
h2{
    font-weight: 900;
    font-size: 36px;
    line-height: 44px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.header{
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-block{
    display: flex;
    align-items: center;
}
.logo-img{
    border-right: 1px solid var(--main);
    padding-right: 25px;
    margin-right: 25px;
}
.logo-text{
    font-weight: 600;
}
.lk-icon{
    display: inline-block;
    margin-right: 5px;
    text-decoration: none;
}
.header-right{
    display: flex;
}
.header-info{
    margin-right: 50px;
    display: flex;
}
.header-contact{
    padding-right: 25px;
    margin-right: 25px;
    border-right: 1px solid var(--main);
}
.header-contact a{
    text-decoration: none;
    color: var(--main);
}
.header-contact a:hover, .header-contact a:active{
    text-decoration: underline;
}
.header-lk-block{
    display: flex;
    align-items: center;
}
.lk-enter{
    display: flex;
    align-items: center;
}
.lk-enter-text{
    line-height: 26px;
    display: inline-block;
    text-decoration: none;
    color: var(--main);
    margin-bottom: 4px;
}
.lk-icon:hover ~ .lk-enter-text,
.lk-enter-text:hover, .lk-enter-text:focus{
    text-decoration: underline;
}

.banner{
    background: url('/local/templates/main_page/img/bg-main-banner.jpg') no-repeat 50% 50%;
    background-size: cover;
    height: 596px;
}
.banner .container{
    height: 100%;
}
.banner-info{
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.banner-text{
    font-size: 30px;
    line-height: 41px;
    max-width: 700px;
}

.block{
    margin-bottom: 80px;
}
.info{
    display: flex;
    margin-bottom: 24px;
}
.info .icon{
    margin-right: 24px;
}

.boxes{
    display: flex;
}
.box{
    border: 1px solid var(--gray);
    border-radius: 10px;
    margin-right: 20px;
    padding: 30px;
    width: 25%;
    transition: 0.2s all;
    cursor: default;
}
.box:last-child{
    margin-right: 0;
}
.box-title{
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 14px;
}
.box:hover{
    color: var(--white);
    background: var(--blue);
    border: 1px solid var(--gray);
}

.advantages{
    list-style-image: url("/local/templates/main_page/img/check.svg");
    padding-left: 25px;
    margin-left: 0;
}
.advantages li:not(:last-child){
    margin-bottom: 27px;
}
.advantages li span {
    position: relative;
    left: 7px;
    bottom: 3px;
}

.footer-banner{
    font-weight: 800;
    font-size: 50px;
    line-height: 68px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue) url("/local/templates/main_page/img/bg-footer-banner.png") no-repeat 10% 50%;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}
.footer-subtext{
    max-width: 790px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
}
.footer-subtext__journal{
    margin-top: 40px;
}
.footer-subtext__journal a{
    color: var(--blue);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
}
.footer-subtext__journal a:hover, .footer-subtext__journal a:visited, .footer-subtext__journal a:focus{
    color: var(--blue);
    text-decoration: none;
}
.footer-subtext__journal a:hover, .footer-subtext__journal a:focus{
    border-bottom-color: var(--blue);
}

footer{
    height: 183px;
    display: flex;
    border-top: 1px solid var(--gray);
    justify-content: center;
}
.footer-logo-block{
    display: flex;
    align-items: center;
}
.footer-logo{
    padding-right: 25px;
    border-right: 1px solid var(--gray);
    margin-right: 25px;
}
.footer-logo-text{
    font-weight: 600;
}
.footer-certificates {
    margin: 40px 0 0;
    display: flex;
    justify-content: center;
}
.certificates-container {
    display: flex;
    gap: 30px;
}
.certificate{
    width: 200px;
}
.certificate img{
    width: 100%;
}
.footer-container{
    margin-bottom: 60px;
}
.about-us{
    display: flex;
    justify-content: space-between;
}
.presentation{
    width: 385px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
.presentation img{
    width: 385px;
    border-radius: 10px;
}
.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 248px;
    height: 54px;
    background: #416ee0;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.1s ease-in-out;
}
.btn:hover, .btn:focus, .btn:active{
    text-decoration: none;
    color: #ffffff;
    background: #153992;
}
.advantages{
    width: 66%;
}
/* End */


/* Start:/local/templates/main_page/css/media.css?17448318234185*/
/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    .boxes{
        flex-wrap: wrap;
    }
    .box{
        width: 48%;
        margin-bottom: 20px;
    }
    .box:nth-child(2){
        margin-right: 0;
    }
    .block.boxes-container{
        margin-bottom: 60px;
    }
    .footer-banner{
        font-size: 40px;
        line-height: 52px;
    }
    .banner{
        background-position-x: 0;
        height: 465px;
    }
    .about-us{
        gap: 30px;
    }
    .presentation{
        flex-shrink: 1;
    }
    .advantages{
        width: auto;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .logo-text{
        display: none;
    }
    .logo-img{
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }
    .header-info{
        margin-right: 25px;
    }
    h1{
        margin-top: 0;
    }
    .about-us{
        flex-direction: column;
    }
    .presentation{
        width: 100%;
    }
    .certificates-container{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
}

@media only screen and (max-width : 600px) {
    .header-right{
        flex-direction: column-reverse;
        align-items: end;
    }
    .header-info{
        margin-right: 0;
        margin-top: 5px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .header-info{
        flex-direction: column-reverse;
        margin-top: 0;
    }
    .header-contact{
        margin-right: 0;
        padding-right: 0;
        border-right: none;
        text-align: right;
    }
    .header-addr{
        text-align: right;
    }
    .header-right{
        flex-direction: column;
        font-size: 14px;
        line-height: 20px;
    }
    h1{
        font-size: 36px;
        line-height: 50px;
    }
    .banner-text {
        font-size: 24px;
        line-height: 32px;
    }
    .banner {
        height: 340px;
    }
    .block{
        margin-bottom: 60px;
    }
    .block.boxes-container{
        margin-bottom: 40px;
    }
    .box{
        width: 100%;
        margin-right: 0;
    }
    h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .footer-banner {
        font-size: 30px;
        line-height: 38px;
    }
    .advantages li:not(:last-child){
        margin-bottom: 20px;
    }
    .certificate{
        width: 150px;
    }
    .presentation img{
        width: 100%;
    }
}

@media only screen and (max-width : 400px) {
    .info{
        flex-direction: column;
        align-items: center;
    }
    .info .icon{
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    .advantages li:not(:last-child){
        margin-bottom: 15px;
    }
    .footer-logo-text{
        display: none;
    }
    .footer-logo{
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }
    footer{
        height: 125px;
    }
    h1 {
        font-size: 30px;
        line-height: 38px;
    }
    h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .banner-text {
        font-size: 18px;
        line-height: 26px;
    }
    .certificates-container{
        flex-direction: column;
    }
    .certificate{
        width: 100%;
        padding: 0 30px;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}
/* End */
/* /local/templates/main_page/css/style.css?17378173505511 */
/* /local/templates/main_page/css/media.css?17448318234185 */
