#sect-5 {
    width: 100%;
    display: grid;
    place-content: center;
    position: relative;
    overflow: hidden;
    gap: 50px;
    padding: 100px 0px;
}

#sect-5 .info {
    max-width: 70%;
    margin: auto;
    display: grid;
    gap: 20px;
}

#sect-5 .info h1 {
    font-size: 3em;
}

#sect-5 .info h3 {
    font-size: 2em;
}

#sect-5 .maps {
    min-width: 70%;
    max-width: 70%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

#sect-5 .maps .map {
    border-radius: 10px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

#sect-5 .maps .map .illustration {
    width: 100%;
}

#sect-5 .maps .map .illustration img {
    width: 100%;
}

#sect-5 .maps .map .map-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
}

#sect-5 .maps .map .map-info a {
    color: blue;
}

#sect-5 .note {
    width: 70%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

#sect-5 .note span {
    width: fit-content;	
    width: 50px;
    height: 50px;
    padding: 15px;
    border-radius: 8px;
    background-color: #ECECEC;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sect-5 .buttons {
    width: 70%;
    margin: auto;
}