.mb-5 {
    margin-bottom: 5% !important;
}

.pb-5 {
    padding-bottom: 5% !important;
}

.services {
    background-color: #dbdbdb;
    padding-bottom: 40px;
}

.service-div {
    background-color: #fff;
    text-align: center;
    padding: 15px;
    height: 100%;
}

.service-div i {
    font-size: 30px;
}

.service-div h4 {
    font-size: 1.6rem;
    color: #999999;
    text-transform: uppercase;
    margin-top: 20px;
}

.image-container {
    position: relative;
    width: 100%;
}

.menu-image {
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.menu-image:hover {
    transform: scale(1.2);
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity: 1;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    border-radius: 15px;
}

.overlay span {
    position: relative;
    top: 45%;
    font-size: 30px;
    display: grid;
}

.overlay span a {
    font-size: 22px;
    color: #fff;
    margin-top: 20px;
}

.image-container:hover .overlay {
    opacity: 1;
}

.overlay h5 {
    position: relative;
    top: 45%;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
}

.dine-img {
    float: right;
}

.dine-section {
    display: flex;
    align-items: center;
}


/*---------------Spa Page------------------*/

.spa-banner {
    background-image: url(../images/new-images/spa-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.spa-banner h1 {
    max-width: 550px;
    margin: auto;
    font-size: 28px;
    line-height: 35px;
}

.spa-banner p {
    max-width: 550px;
    margin: auto;
    margin-top: 20px;
    font-size: 15px;
}

.img-fluid {
    max-width: 100% !important;
    height: auto !important;
}

.align-items-center {
    align-items: center;
}

.h-100 {
    height: 100% !important;
}

.gym h1 {
    max-width: 600px;
    margin: auto;
    font-size: 28px;
    line-height: 35px;
}

.fitness-section h1 {
    max-width: 540px;
    margin: 0 auto !important;
}

.fitness-section h2 {
    max-width: 565px;
    margin: 0 auto !important;
    margin-top: 20px !important;
}

.arrow-icon {
    width: 20px;
    transform: translate(-50%, 0%) rotate(0deg);
    animation: move_to_right 2s ease-in-out infinite;
}

.mt-14 {
    margin-top: 14px;
}

@keyframes move_to_right {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(10px, 0) rotate(0deg);
        opacity: 0;
    }
}