
section.banner {
    width: 100%;
    background: url(../../img/bg_services.png) no-repeat bottom center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 200px;
    padding: 50px 0px;
}
section.banner .bg_blue {
    position: absolute;
    width: 100%;
    height: 200px;
    z-index: 90;
    left: 0;
    top: 0;
    background-color: rgba(2, 39, 83, 0.6);
}
section.banner .content {
    max-width: var(--size-full-page);
    padding: var(--padding-full-page);
    width: 100%;
    float: left;
    z-index: 99;
}
section.banner .content .title {
    font-family: 'Montserrat-Italic', sans-serif;
    color: #FFD803;
    font-size: 30px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    line-height: 30px;
    float: left;
    text-transform: uppercase;
}
section.banner .content .btn_group {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    float: left;
    margin-top: 20px;
}

section.banner .content .btn_group .btn_item {
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    background-color: #FFD803;
    margin: 20px 0px 20px;
    border: 1px solid #FFD803;
}
section.banner .content .btn_group .btn_item img {
    width: 20px;
    object-fit: cover;
    object-position: center;
    margin: 10px;
}
section.banner .content .btn_group .btn_item span {
    color: #1456A5;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 16px;
    width: 260px;
    text-align: center;
    font-weight: bold;
}
section.banner .content .btn_group .btn_item.while {
    background-color: unset;
    border-color: #fff;
}
section.banner .content .btn_group .btn_item.while span {
    color: #fff;
}

section.blocks {
    width: 100%;
    background: #fff;
    float: left;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: column;
}
section.blocks .row-blocks {
    max-width: var(--size-full-page);
    padding: var(--padding-full-page);
    width: 100%;
    float: left;
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
section.blocks .row-blocks .block {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    background-color: #EAF1FA;
}
section.blocks .row-blocks .block > img {
    height: 40px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}
section.blocks .row-blocks .block .title {
    color: #1456A5;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
}
section.blocks .row-blocks .block .description {
    color: #1456A5;
    font-size: 14px;
    line-height: 18px;
}
@media only screen and (max-width: 768px) {
    section.banner {
        padding: 20px 15px;
    }
    section.banner .content .title {
        line-height: 20px;
        font-size: 16px;
    }
    section.banner .content .btn_group {
        flex-direction: column;
    }
    section.banner .content .btn_group .btn_item {
        margin: 10px 0px;
        width: 100%;
    }
    section.blocks .row-blocks {
        flex-direction: column;
        padding: 0px 15px;
    }
    section.blocks .row-blocks .block {
        width: 100%;
    }
}