#banner {
    background-size: cover;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    padding: 25px;
}

.form_reservation {
    background-color: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 3px 3px 5px #666;
    opacity: 0.9;
}

.custom-link {
    background-color: white;
    opacity: 0.8;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    border-radius: 3px;
    margin-bottom: 35px;
    box-shadow: 2px 2px 3px #888;
    transition: 0.5s;
    text-decoration: none !important;
}

#store_map iframe {
    width: 100%;
    height: 500px;
}

#store_map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.custom-link .custom-text {
    font-weight: bold;
    color: #414042;
    font-size: 18px;
}

.custom-link:hover {
    opacity: 1;
}

.custom-link:hover .custom-text {
    color: var(--bs-info);
}

.custom-link:hover .custom-icon {
    fill: var(--bs-info);
}

.section-title {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    position: relative;
}

.section-title::after {
    content: '';
    border-bottom: 2.5px groove #414042;
    width: 50px;
    display: block;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg-gradient-primary-to-secondary .section-title::after {
    border-bottom: 2.5px groove white;
}

.section-contain {
    padding: 35px 15px 50px 15px;
}

#section-facility img {
    max-width: 50%;
    display: block;
    margin: 0px auto;
    margin-top: 25px;
}

.list_pool_group {
    max-height: 430px;
    overflow-y: auto;
    padding: 0px 15px;
}

.homebase {
    background-color: #f1f1f1;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 15px;
    position: relative;
}

.hombase_city {
    color: var(--color-light-gray);
    font-weight: bold;
    text-shadow: 0.1px 0.1px #aaa;
    text-align: right;
}

.homebase>div {
    line-height: 25px;
    max-width: 280px;
    display: inline-flex;
}

.homebase-address div {
    width: 250px;
}

.homebase-title {
    font-size: 14px;
    font-weight: bold;
    border-bottom: 2px solid #414042;
    padding-bottom: 5px;
    margin-bottom: 10px;
    width: 100%;
}

.homebase svg {
    transform: scale(0.7);
}

.homebase .see_map {
    position: absolute;
    right: 25px;
    top: calc(50% - 12.5px);
    cursor: pointer;
}

.homebase .see_map svg {
    transform: scale(1.4);
}

.homebase svg path {
    fill: var(--bg-color);
}

@media screen and (max-width: 911px) {
    .custom-link {
        margin-bottom: 20px;
    }
}