.contact-section {
    width: 100%;
    padding: 0px 0px 0px;
    box-sizing: border-box;
}

.contact-section .contact-section__content {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.contact-section .contact-section__left {
    width: calc(100% / 2 - 10px);
}

.contact-section .contact-section__image {
    width: 100%;
    max-width: 700px;
    height: auto;
}

.contact-section .contact-section__left img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-section .contact-section__right {
    width: calc(100% / 2 - 10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.contact-section .contact-section__title {
    font-weight: bold;
    color: #25346C;
    text-align: left;
    position: relative;
    box-sizing: border-box;
    padding-left: 15px;
    margin-bottom: 35px;
}

.contact-section .contact-section__info-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section .contact-section__info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
}

.contact-section .contact-section__info-item .contact-section__info-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
}

.contact-section .contact-section__info-item .contact-section__info-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-section .contact-section__info-item .contact-section__info-title {
    font-weight: bold;
    font-size: 24px;
    color: #000000;
    margin-bottom: 5px;
}

.contact-section .contact-section__info-item .contact-section__info-desc {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
}

.contact-section .contact-map {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 40px;
}

.contact-section .contact-map img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media screen and (max-width:760px) {
    .contact-section .contact-section__content {
        flex-direction: column;
        align-items: center;
    }

    .contact-section .contact-section__left,
    .contact-section .contact-section__right {
        width: 100%;
    }

    .contact-section .contact-section__title {
        padding-left: 25px;
        margin-bottom: 0px;
    }
}

@media screen and (min-width:760px) and (max-width:1020px) {
    .contact-section .contact-section__content {
        flex-direction: column;
        align-items: center;
    }

    .contact-section .contact-section__left,
    .contact-section .contact-section__right {
        width: 100%;
    }

    .contact-section .contact-section__title {
        padding-left: 25px;
        margin-bottom: 0px;
    }
}