
section.banner {
    width: 100%;
    background: url(../../img/bg_contact.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: 180px;
    padding: 50px 0px;
}
section.banner .bg_blue {
    position: absolute;
    width: 100%;
    height: 180px;
    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: 40px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    line-height: 40px;
    float: left;
    text-transform: uppercase;
    margin-bottom: 10px;
}
section.banner .content .title-small {
    font-family: 'Montserrat-Italic', sans-serif;
    color: #FFD803;
    font-size: 25px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    line-height: 25px;
    float: left;
    text-transform: uppercase;
    margin-bottom: 10px;
}
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 .map {
    width: 50%;
    height: 300px;
}
section.blocks .row-blocks .map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
section.blocks .row-blocks .address {
    width: 50%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
section.blocks .row-blocks .address .item{
    font-size: 14px;
    width: 100%;
    float: left;
    margin-bottom: 20px;
    color: #022753;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 20px;
    margin-left: 20px;
}
section.blocks .row-blocks .address .item i{
    font-size: 16px;
    margin-right: 15px;
    color: #1456A5;
    margin-top: 3px;
}

section.contact-form {
    width: 100%;
    background: #fff;
    float: left;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: column;
}
section.contact-form .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;
    flex-direction: column;
}
section.contact-form .row-blocks .title {
    width: 100%;
    text-align: center;
    align-items: center;
    font-size: 20px;
    line-height: 20px;
    color: #1456A5;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
}
section.contact-form .row-blocks .form-contact-content {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
section.contact-form .row-blocks .form-contact-content .label {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}
section.contact-form .row-blocks .form-contact-content .label .red {
    color: red;
}
section.contact-form .row-blocks .form-contact-content .group_inb {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    float: left;
    background: #F2F4F7;
    padding: 10px;
    margin-bottom: 20px;
}
section.contact-form .row-blocks .form-contact-content .group_inb input {
    width: 50%;
    border: unset;
    background: unset;
    font-size: 14px;
    color: #B8C2CE;
    padding: 10px;
}
section.contact-form .row-blocks .form-contact-content .group_inb input:last-child {
    border-left: 1px solid #B8C2CE;
}
textarea:focus, input:focus, button:focus{
    outline: none;
}
section.contact-form .row-blocks .form-contact-content .full_inb {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    float: left;
    background: #F2F4F7;
    padding: 10px;
    margin-bottom: 20px;
}

section.contact-form .row-blocks .form-contact-content .full_inb input {
    width: 100%;
    border: unset;
    background: unset;
    font-size: 14px;
    color: #B8C2CE;
    padding: 10px;
}
section.contact-form .row-blocks .form-contact-content .full_inb textarea {
    width: 100%;
    border: unset;
    background: unset;
    font-size: 14px;
    color: #B8C2CE;
    padding: 10px;
}
section.contact-form .row-blocks .form-contact-content .full_btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    float: left;
}
section.contact-form .row-blocks .form-contact-content .full_btn button {
    width: 100%;
    border: unset;
    background: #1456A5;
    font-size: 14px;
    color: #fff;
    padding: 15px;
    font-weight: bold;
}
@media only screen and (max-width: 768px) {
    section.banner .content .title {
        font-size: 26px;
        line-height: 30px;
    }
    section.banner .content .title-small {
        font-size: 18px;
        line-height: 24px;
    }
    section.blocks .row-blocks {
        flex-direction: column;
        padding: 0px 15px;
    }
    section.blocks .row-blocks .map {
        width: 100%;
    }
    section.blocks .row-blocks .address {
        width: 100%;
        justify-content: flex-start;
        height: unset;
    }
    section.blocks .row-blocks .address .item {
        margin-left: 0px;
    }
    section.contact-form .row-blocks {
        padding: 0px 15px;
    }
    section.contact-form .row-blocks .form-contact-content {
        width: 100%;
    }
}