.contact-info-section {
    padding-left: 70px;
    display: flex;
    gap: 90px;
}


.contact-form-map iframe {
    max-width: 100%;
}

.contact-info-section .contact-info-el {
    text-align: center;
    padding: 0px 20px 30px;
    width: 50%;
    height: 280px;
}

.contact-info-section .contact-info-el .title {
    font-size: 22px;
    line-height: 1.36;
    margin-bottom: 10px;
    display: block;
}

.contact-info-section .contact-info-el .text {
    display: inherit;
    word-wrap: break-word;
}

.contact-info-section .contact-info-el .icon {
    border-radius: 50%;
    display: inline-block;
    width: 150px;
    height: 150px;
    margin-bottom: 0px;
    position: relative;
    background-color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-info-section .contact-info-el .icon > span {
    display: inline-block;
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
}

.contact-info-section .contact-info-el .icon .icon-pin {   
    background: url(../../images/icons/contact-pin.png) no-repeat 50% 50%;
}

.contact-info-section .contact-info-el .icon .icon-clock {   
    background: url(../../images/icons/contact-phone.png) no-repeat 50% 50%;
}

.contact-info-section .contact-info-el .icon .icon-email {   
    background: url(../../images/icons/contact-email.png) no-repeat 50% 50%;
}


@media only screen and (max-width: 1199px) {
    .contact-info-section {
        padding-left: 0px;
        gap: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .contact-info-section {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 767px) {
    .contact-info-section .contact-info-el {
        width: 100%
    }
}