#hotels {
    background-color: black;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;

    .container, 
    .container-sm {
       padding: 0 24px !important; 
    }
    .subtitle {
        max-width: 840px;
        margin: auto;
    }
    .page-header {
        @media (max-width: 990px) {
			padding: 175px 0 35px;
		}
    }
    .h-desktop {
        display: flex;

        @media (max-width: 990px) {
            display: none;
        }
    }
    .h-mobile {
        display: none;

        @media (max-width: 990px) {
            display: flex;
        }
    }
    .main-info {
        color: var(--main-color);
        background-color: var(--white-color);
        border-radius: 40px;
        margin-bottom: 60px;

        @media (max-width: 990px) {
			border-radius: 20px;
		}
        .col-lg-7 {
            border-radius: 40px;
            overflow: hidden;

            @media (max-width: 990px) {
                border-radius: 20px;
            }
            &:after {
                content: "";
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background: linear-gradient(135deg, var(--main-color), transparent);
            }
        }
        .col-lg-5 {
            padding: 64px 48px;
            overflow: hidden;

            @media (max-width: 990px) {
                padding: 24px;
            }
            h3 {
                font-weight: 700;
                font-size: 24px;
            }
            .above-title {
                font-weight: 400;
                font-size: 12px;
                letter-spacing: -1%;
                text-transform: uppercase;
            }
            .d-flex {
                gap: 8px;
                flex-wrap: wrap;
            }
        }
        .hotel-speakers {
            width: 250px;
            height: auto;

            div {
                display: flex;
                align-items: center;
                align-content: center;
                margin-bottom: 8px;

                img {
                    width: 16px;
                    height: auto;
                    margin-right: 4px;
                }
            }
        }
        .hotel-badge {
            position: absolute;
            width: 138px;
            height: auto;
            top: -30px;
            right: -30px;
            z-index: 999;

            @media (max-width: 990px) {
                width: 80px;
                top: 24px;
                right: 0;
            }
        }
        .hotel-tag {
            background-color: #F3F3FF;
            padding: 2px 10px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            align-content: center;

            img {
                width: 17px;
                height: 17px;
                margin-right: 10px;
            }
        }
    }
    h4 {
        font-family: Zuume;
        font-weight: 700;
        font-size: 55px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 40px;

        @media (max-width: 990px) {
            font-size: 45px;
            line-height: 100%;
            margin-bottom: 20px;
        }
    }
    .hotel-image {
        background-size: cover;
        height: 100%;
        width: 100%;

        @media (max-width: 990px) {
			height: 360px !important;
		}
    }
    .price {
        justify-content: space-between;
        align-items: center;
        align-content: center;
        gap: 10px;
        border-top: 2px solid #C2C3C9;
        padding-top: 12px;
        margin-top: 24px;

        @media (max-width: 990px) {
			flex-direction: column;

            .d-flex {
                justify-content: space-between;
                width: 100%;
                align-items: center;
                align-content: center;
            }
		}
        a {
            color: var(--main-color) !important;
            background: linear-gradient(95.8deg, #D3FF00 31.59%, #AAFF00 99.9%) !important;
            overflow: hidden;
            border: 1px solid var(--secondary-color);
            padding: 24px 40px !important;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 16px;
            line-height: 140%;
            letter-spacing: 4%;
            width: 100%;
            text-align: center;
        }
        .starts {
            max-width: 60px;
            line-height: 100%;

            @media (max-width: 990px) {
                max-width: none;
                font-size: 12px;
                line-height: 150%;
                letter-spacing: 0%;
            }
        }
        .value {
            @media (max-width: 990px) {
                display: flex;
                align-items: center;
                align-content: center;
            }

            div {
                font-weight: 700;
                font-size: 30px;
                line-height: 120%;
                text-align: center;
                border-bottom: 3px dotted #C2C3C9;
                margin-bottom: 4px;
                padding-bottom: 4px;

                @media (max-width: 990px) {
                    border-bottom: 0;
                    margin-bottom: 0;
                    padding-bottom: 0;
                }
            }
            span {
                font-weight: 700;
                font-size: 12px;
                line-height: 140%;
                letter-spacing: 0%;
                text-align: center;
                text-transform: uppercase;
                display: block;
                width: 100%;

                @media (max-width: 990px) {
                    background-color: #F3F3FF;
                    border-radius: 12px;
                    font-size: 11px;
                    line-height: 120%;
                    padding: 6px;
                    max-width: 40px;
                    box-sizing: border-box;
                }
            }
        }
    }
    .arrive-depart {
        background: 
            linear-gradient(0deg, rgba(24, 11, 76, 0) 41.99%, #180B4C 95.52%),
            linear-gradient(214.01deg, #8711C1 5.19%, #2472FC 98.7%),
            linear-gradient(270deg, #8711C1 0%, #2472FC 100%),
            linear-gradient(3.6deg, rgba(24, 11, 76, 0) -42.28%, #180B4C 71.13%);
        border: 1px solid #8711C1;
        border-radius: 20px;
        padding: 48px;
        position: relative;

        @media (max-width: 990px) {
            padding: 48px 24px;
        }
        .col-md-6 {
            @media (max-width: 990px) {
                padding-left: 60px;
            }
        }
        .above-date {
            font-size: 16px;
            letter-spacing: 4%;
            text-transform: uppercase;
        }
        .ps-md-5 {
            @media (max-width: 990px) {
                margin-top: 24px;
            }
        }
        .date {
            font-size: 30px;
            line-height: 120%;
            margin: 16px 0;

            @media (max-width: 990px) {
                font-size: 20px;
                margin: 0 0 8px;
            }
        }
        .more-info {
            font-size: 16px;

            @media (max-width: 990px) {
                line-height: 120%;
            }
        }
        img {
            width: 64px;
            height: auto;
            position: absolute;
            top: 48px;
            left: 0;
            right: 0;
            margin: auto;

            @media (max-width: 990px) {
                left: 24px;
                right: inherit;
            }
        }
        .divider {
            width: 2px;
            padding: 0;
            height: calc(100% - 148px);
            background: linear-gradient(90deg, rgba(135, 17, 193, 0.2) -23.79%, #2472FC 83.84%);
            position: absolute;
            top: 100px;
            left: 0;
            right: 0;
            margin: auto;

            @media (max-width: 990px) {
                left: 52px;
                right: inherit;
            }
        }
    }
    .hotel-description {
        position: absolute;
        top: 64px;
        left: 48px;
        color: var(--white-color);
        z-index: 999;
        width: 100%;
        max-width: 380px;
        font-size: 16px;

        @media (max-width: 990px) {
			top: 24px;
            left: 24px;
            font-weight: 500;
            font-size: 16px;
            line-height: 140%;
            letter-spacing: 0%;
            max-width: 260px;
		}
        h2 {
            font-family: Zuume;
            font-weight: 400;
            font-size: 50px;
            line-height: 100%;
            letter-spacing: 0%;
            text-transform: uppercase;

            @media (max-width: 990px) {
                font-size: 30px;
                line-height: 120%;
            }
        }
    }
    .slick-list,
    .slick-track,
    .slick-slider {
        height: 100%;
    }
    .slick-slide {
        height: 100%;
        width: auto;
        object-fit: cover;
        overflow: hidden;
    }
    .slick-dots {
        bottom: 48px;
        left: 48px;
        margin: 0;
        text-align: left;
        display: flex;
        align-content: center;
        align-items: center;
        z-index: 1;

        @media (max-width: 990px) {
            bottom: 24px;
            left: 24px;
        }
        li {
            width: 12px;
            height: 12px;
            border-radius: 100%;
            opacity: 0.7;

            &.slick-active {
                width: 16px;
                height: 16px;
                opacity: 1;
            }
        }
    }
}