@font-face {
    font-family: 'Gilroy-Light';
    src: url('/bitrix/fonts/Gilroy-Light.otf')
}
 @font-face {
    font-family: 'Gilroy-ExtraBold';
    src: url('/bitrix/fonts/Gilroy-ExtraBold.otf')
}
body{
    margin: 0;
    box-sizing: border-box;
    background-color: #0047BA;
    font-family: Gilroy-Light;
    color: #fff;
}
a{
color:#fff;
text-decoration: none;
}
.container{
    margin: 0 auto;
    width: 90%;
    margin-top: 5%;
}
.top_elements{
    display: flex;
    box-sizing: border-box;
}
.top_elements img{
    width: 132px;
    height: 120px;
}
.top_elements ul{
    margin: 0 30px;
    padding: 0;
    list-style-type: none;
    color: #fff;
    font-size: 20px;
    text-transform:uppercase;
    font-weight: 700;
}
.top_elements ul li{
    margin-bottom: 5px;
}
.middle-elements{       
    height: 40vh;
    display: flex;
    align-items: center;
}
.middle-container {
    display: flex;
    justify-content: center; 
    align-items: center;    
    align-content: space-between;
    margin: 0 auto;
    width: 90%;
    padding: 15px;
}
.bloder_text{
    font-family: Gilroy-ExtraBold;
}
.middle-container  a{
    background-color: #fff;
    color:#0047BA;
    text-decoration: none;
    border-radius: 14px;
    font-size: 34px;
    padding: 10px 50px;
    display: flex;
    align-items: center;
    text-align: center;
    font-weight: bold;
    height: 80px;
transition: all .4s ease;
-webkit-transition: all .4s ease;
}
.middle-container  a:hover{
-webkit-box-shadow: 4px -1px 84px -15px #ffffff;
-moz-box-shadow: 4px -1px 84px -15px #ffffff;
box-shadow: 4px -1px 84px -15px #ffffff;
}
.bottom-elements{
    font-size: 20px;
}
@media (max-width: 768px) {
    .middle-container {
        flex-direction: column;
    }
    .middle-container a {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
        font-size: 28px;
        height: auto;
        padding: 15px 20px;
    }
    .middle-container a:hover{
-webkit-box-shadow: 4px -1px 84px 29px #ffffff;
-moz-box-shadow: 4px -1px 84px 29px #ffffff;
box-shadow: 4px -1px 84px 29px #ffffff;
}
    .bottom-elements {
                font-size: 30px; /* Было 40px (2x), теперь 30px (1.5x) */
                line-height: 1.4;
       }
            .bottom-elements p {
                margin: 12px 0;
        }
    .top_elements {
        flex-direction: column;
        align-items: center;
    }
    .top_elements ul {
        margin: 20px 0;
        text-align: center;
        font-size: 24px;
    }
}