/* ====== MAP SECTION ====== */
.section7-map {
    max-width: 1456px;
    margin-inline: auto;
    display: flex;
    gap: 35px;
    margin-bottom: 47px;
}

/* ====== MAP ====== */
.section7-map .map {
    width: 100%;
    max-width: 1071px;
}

.section7-map .map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* ====== RIGHT SIDE CONTENT ====== */
.section7-map .right-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.section7-map .right-side .inner-div {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    background: #fafafa;
    border: 1px solid #acacac;
    border-radius: 10px;
}

.section7-map .right-side h4 {
    font-size: 16px;
    font-weight: 800;
    color: #1d2755;
    margin: 0;
}

.section7-map .right-side img {
    height: 20px;
}

/* ====== WRAPPERS ====== */
.section7-map .right-side .wrapper {
    display: flex;
    align-items: flex-start;
    max-width: 350px;
    gap: 18px;
    color: #2d2e2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section7-map .right-side .wrapper p {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.section7-map .right-side .wrapper p span {
    font-weight: 700;
    color: #2d2e2e;
}

.section7-map .right-side .wrapper a {
    color: #2d2e2e;
    text-decoration: none;
}

.section7-map .right-side .inner-div a.wrapper span {
    font-weight: 600;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #2474dc;
}

/* ====== ICON HOVER EFFECTS ====== */
.section7-map .right-side .wrapper:hover {
    text-decoration: underline;
}

.section7-map .right-side .wrapper:hover svg path {
    fill: #1c5bae;
}

/* ====== BUTTONS ====== */
.section7-map .button-secondary {
    max-width: 240px;
    max-height: 70px;
    width: 100%;
    height: 100%;
    border: 2px solid #2474dc;
    color: #2474dc;
    font-weight: 500;
    font-family: 'Futura-pt', sans-serif;
    font-size: 18px;
    text-align: center;
    display: inline-block;
    padding: 21px 0 23px;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.section7-map .button-secondary.mobile {
    display: none;
    padding-top: 16px;
    margin-top: 34px;
    margin-inline: auto;
    color: #2474dc;
}

/* ====== WHERE TO FIND US ====== */
.where-to-find-us.title-section {
    max-width: 1450px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 130px auto 46px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #2d2e2e;
}

/* ====== Title Wrapper ====== */
.where-to-find-us .title-wrap {
    margin: 0;
    padding-right: 20px;
    flex-shrink: 0;
    background: transparent;
    z-index: 1;
}

.where-to-find-us h2 {
    margin: 0;
    font-size: 44px;
    line-height: 66px;
    color: #1d2755;
    font-weight: 700;
}

@media (max-width: 800px) {
    .section7-map {
        flex-direction: column;
        margin-inline: 20px;
        gap: 0;
        border: 1px solid #acacac;
        border-radius: 10px;
        margin-bottom: 32px;
    }

    .section7-map .map {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .section7-map .right-side .inner-div {
        border: none;
        padding: 25px 20px 30px;
        gap: 20px;
    }

    .section7-map .right-side .inner-div .wrapper {
        padding-left: 28px;
        padding-bottom: 5px;
    }

    .section7-map .button-secondary.mobile {
        display: block;
        color: #2474dc;
        margin-top: 0;
        line-height: 60px;
        max-height: 60px;
        padding: 0;
    }
}