.wrap-contact {
    margin-top: 124px;
}

.head-content {
    margin-bottom: 40px;
    float: unset;
}

.title_head,
.label_head,
.text-center {
    float: unset;
}

.contact-address {
    display: flex;
    gap: 24px;
    width: 100%;
    align-items: flex-start;
	background: #fff;

    .adress-info {
        background: #fff;
        border-radius: 8px;
        padding: 24px;
        font-size: 18px;

        h3 {
            font-size: 24px;
        }
    }

    .list-address {
        list-style: none;
        padding-left: 0;

        li {
            margin-bottom: 8px;
        }
    }


    .wrap-phone-mail {
        gap: 16px;
        justify-content: space-between;
        display: flex;

        .online-info {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 50%;

            .wrap-img-icon {
                padding: 14px;
                background: #F8F9FA;
                border-radius: 3px;

                img {
                    width: 44px;
                    object-fit: contain;
                }
            }

            .text-contact {

                strong {
                    font-size: 16px;
                    color: #199F5A;
                    font-weight: 500;
                }

                p {
                    font-size: 14px;
                    margin-bottom: 0;
                }
            }
        }
    }

    .wrap-map {
        position: relative;
        padding: 24px 10px;
        width: 330px;
        flex-shrink: 0;

        .main-map {
            width: 100%;
            border-radius: 16px;
        }

        .bg-map {
            position: absolute;
            left: 0;
            top: 0;
            z-index: -1;
            width: 232px;

            &.bg-bottom {
                left: unset;
                top: unset;
                bottom: 0;
                right: 0;
            }
        }
    }
}

.footer {
    margin-top: 0;
}


@media only screen and (max-width: 1000px) {
    .contact-address {
        flex-direction: column;

        .wrap-phone-mail {
            flex-direction: column;

            .online-info {
                width: 100%;
            }
        }

        .wrap-map {
            width: 100%;
        }
    }
}

@media only screen and (max-width: 500px) {
    .contact-address {
        .adress-info {
            padding: 16px;
            font-size: 16px;

            h3 {
                font-size: 20px;
            }
        }
    }
}