.section-map .s-title {
    color: #494949;
    padding-bottom: 1rem;
    margin-bottom: clamp(20px, 3vw, 40px);
    position: relative;
    font-family: var(--main);
    font-size: clamp(16px, 2vw, 24px);
    width: max-content;
}
.section-map .s-title:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #C2C2C2;
    position: absolute;
    bottom: 0;
}
.section-map .informations {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 2vw, 32px);
}
.section-map .informations li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(14px, 2vw, 20px);
    color: #868686;
}
.section-map .informations li span {
    color: black;
}
.section-map .informations li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    font-size: 20px;
}
.section-map iframe {
    border-radius: 8px;
    box-shadow: 0px 0px 3px #CBCBCB;
    width: 100%;
}
@media only screen and (max-width: 768px) {
    .section-map .informations {
        margin-bottom: 1.5rem;
    }
}