
.contact {
    position: relative;
    margin-top: 70px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    background: #034BB1;
    padding: 120px 24px 68px 24px;
}
.contact-icon {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #034BB1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 100%;
}
.contact-icon img {
    width: 50px;
}
.contact h3,
.contact .h3 {
    margin-bottom: 16px;
}

.contact-mail {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #FBCA3D;
    margin-top: 40px;
}
.contact-mail img {
    width: 18px;
    margin-right: 8px;
}
.contact-mail:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .contact {
        margin-top: 48px;
        padding: 68px 24px 32px 24px;
    }
    .contact-icon {
        width: 80px;
        height: 80px;
    }
    .contact-icon img {
        width: 32px;
    }
    .contact-mail {
        margin-top: 20px;
    }
}