.hotel-detail .destin-logo-sec-title {
    color: #222;
}

.hotel-detail .items.card {
    box-shadow: 0px 0px 10px 0px rgba(16.999999999999993, 114.00000000000001, 184, 0.27058823529411763) !important;
    border: 1px solid #1172B83D;
    height: 100%;
    transition: all .3s ease-out;
}

.hotel-detail .items.card .content-holder {
    color: #000;
}

.hotel-detail .items.card:hover {
    background: #1172B8;
}

.hotel-detail .items.card:hover .content-holder {
    color: #fff;
}

.hotel-detail .items .number-holder {
    height: 90px;
    width: 90px;
    background: #1172B87A;
    box-shadow: 0px 10px 50px 0px rgba(16.999999999999993, 114.00000000000001, 184, 0.47843137254901963);
    font-size: 44px;
    color: #fff;
    font-weight: bold;
}

.hotel-banner .bg-img {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hotel-banner .bg-img .content h1 {
    color: #fff;
    width: 40%;
    text-align: start;
    font-weight: bold;
    font-size: 44px;
}

.bottom-card {
    display: flex;
    height: 100%;
}

.bottom-card .items {
    background: linear-gradient(180deg, #005185 50%, #1172B8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
    transition: all 0.5s ease-out;
    cursor: pointer;
    min-height: 270px;
}

.bottom-card .items:hover {
    transform: translateY(-10px);
}

.bottom-card .items:hover .title {
    display: none;
}

.bottom-card .items:hover .content-holder {
    display: block;
    animation: slideTop .3s;
}

.bottom-card .items .title {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 0;
}

.bottom-card .items .content-holder {
    color: #fff;
    display: none;
    transition: all .5s ease-out;
}

@keyframes slideTop {
    from {
        transform: translateY(30px);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .bottom-card {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .bottom-card {
        flex-wrap: wrap;
    }
}

@media (min-width: 992px) {
    .bottom-card {
        flex-wrap: nowrap;
    }
}