*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
    margin: 0;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}
.maintenance{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 12px;
    padding-left: 12px;
}
.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 12px;
    padding-left: 12px;
}
.row {
    display: flex;
    flex-wrap: wrap;

    margin-right: -12px;
    margin-left: -12px;
}

.row > * {
    width: 100%;
}
.col {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}
.block-white{
    display: flex;
    flex: 0 1 100%;
    justify-content: center;
    align-items: center;
    padding: 25px 0 25px 0;
    background: #F2FDFF;
    border: 3px solid #FFFFFF;
    box-shadow: 0px 36px 36px rgba(78, 54, 103, 0.25), 0px 9px 20px rgba(78, 54, 103, 0.25);
    border-radius: 36px;
}
.block-white img{
    width: 100%;
    max-width: 800px;

}
.text_block{
    display: flex;
    flex-direction: 0 1 100%;
    justify-content: center;
    align-items: center;
    margin: 30px 0 30px 0;
}
.text_block p {

    font-family: 'Libre Franklin', sans-serif;
    font-size: 45px;
    text-align: center;
    color: #0A30A5;
    font-weight: 400;
    text-transform: uppercase;
}
.text_block p span{
    font-weight: 700;
}


.link_block{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.link_block__left{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex: 0 0 50%;
    align-items: center;
    justify-content: space-evenly;
}
.link_block_left__icon{
    max-width: 143px;
    width: 100%;
}
.link_block_left__text{
    flex: 0 0 60%;
    border-top: 1px solid #0A30A5;
    padding: 10px 0 10px 0;
    border-bottom: 1px solid #0A30A5;
}
.link_block_left__text a{
    display: block;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 28px;
    text-align: center;
    color: #0A30A5;
    font-weight: 400;
}


.link_block__right{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex: 0 0 40%;
    align-items: center;
    justify-content: space-evenly;
}
.link_block_right__icon{
    max-width: 143px;
    width: 100%;
}
.link_block_right__text{
    flex: 0 0 50%;
    border-top: 1px solid #0A30A5;
    padding: 10px 0 10px 0;
    border-bottom: 1px solid #0A30A5;
}
.link_block_right__text a{
    font-family: 'Libre Franklin', sans-serif;
    font-size: 28px;
    display: block;
    text-align: center;
    color: #0A30A5;
    font-weight: 400;
}


@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
@media (max-width: 768px){
    .text_block p{
        font-size: 40px;
    }
    .link_block{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .link_block__left,
    .link_block__right{
        flex: 0 0 48%;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        gap: 15px;
    }

    .link_block_left__icon,
    .link_block_right__icon{
        max-width: 80px;
        flex: 0 0 80px;
    }

    .link_block_left__text,
    .link_block_right__text{
        flex: 1 1 auto;

        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 60px;

        padding: 8px 0;
    }

    .link_block_left__text a,
    .link_block_right__text a{
        font-size: 19px;
        line-height: 1.2;
        text-align: left;
    }
}
@media (max-width: 576px){
    .text_block p{
        font-size: 30px;
    }
    .link_block{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .link_block__left,
    .link_block__right{
        /*width: 100%;*/
        flex: 0 0 48%;

        justify-content: flex-start;
        align-items: center;

        gap: 8px;
    }

    .link_block_left__icon,
    .link_block_right__icon{
        max-width: 40px;
        flex: 0 0 40px;
    }

    .link_block_left__text,
    .link_block_right__text{
        flex: 1 1 auto;

        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;

        padding: 6px 0;
    }

    .link_block_left__text a,
    .link_block_right__text a{
        font-size: 12px;
        line-height: 1.2;
        text-align: center;
    }
}