.elementor-50739 .elementor-element.elementor-element-bea09b3{--display:flex;--margin-top:0px;--margin-bottom:40px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:20px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-d7356af *//* ==================================
   INTRO
================================== */

.bkl-hotel-intro{
    margin-bottom:35px;
}

.bkl-hotel-intro p{
    margin:0;
    color:#64748B;
    font-size:18px;
    line-height:2;
    text-align:justify;
}

/* ==================================
   SHOWCASE
================================== */

.bkl-hotel-showcase{
    display:grid;
    grid-template-columns:1.15fr 1fr;
    gap:28px;
    margin-bottom:40px;
}

/* ==================================
   HERO
================================== */

.bkl-hotel-hero{
    position:relative;
    overflow:hidden;
    border-radius:32px;
    min-height:720px;
    border:1px solid #E5E7EB;
    box-shadow:
        0 20px 60px rgba(15,23,42,.06);
}

.bkl-hotel-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.8s ease;
}

.bkl-hotel-hero:hover img{
    transform:scale(1.05);
}

.bkl-hotel-hero-overlay{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:40px;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.25),
        transparent
    );
}

.bkl-hotel-hero-overlay span{
    display:inline-flex;
    width:max-content;

    padding:8px 16px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:12px;
    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;
}

.bkl-hotel-hero-overlay h2{
    color:#fff;

    font-size:48px;
    font-weight:800;

    line-height:1.2;

    margin-bottom:16px;
}

.bkl-hotel-hero-overlay p{
    color:rgba(255,255,255,.92);

    line-height:1.9;

    max-width:600px;
}

/* ==================================
   HOTEL LIST
================================== */

.bkl-hotel-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.bkl-hotel-item{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:22px 24px;

    background:#fff;

    border:1px solid #E5E7EB;
    border-radius:24px;

    cursor:pointer;

    transition:.3s ease;

    box-shadow:
        0 8px 25px rgba(15,23,42,.03);
}

.bkl-hotel-item:hover{
    transform:translateY(-4px);

    border-color:#C8102E;

    box-shadow:
        0 20px 40px rgba(15,23,42,.08);
}

.bkl-hotel-item h4{
    margin:0 0 6px;

    color:#1E293B;

    font-size:18px;
    font-weight:700;
}

.bkl-hotel-item span{
    color:#64748B;
    font-size:13px;
}

.bkl-hotel-item i{
    color:#C8102E;
    font-size:18px;
}

/* ==================================
   CTA
================================== */

.bkl-hotel-cta{
    display:flex;
    align-items:center;
    gap:30px;

    padding:45px;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        #C8102E,
        #9E0D24
    );

    overflow:hidden;
}

.bkl-hotel-cta-icon{
    width:90px;
    height:90px;

    flex-shrink:0;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;
    align-items:center;
    justify-content:center;
}

.bkl-hotel-cta-icon i{
    color:#fff;
    font-size:36px;
}

.bkl-hotel-cta-content{
    flex:1;
}

.bkl-hotel-cta-content h3{
    color:#fff;

    font-size:34px;
    font-weight:800;

    margin-bottom:12px;
}

.bkl-hotel-cta-content p{
    color:rgba(255,255,255,.92);

    line-height:1.9;

    margin-bottom:22px;
}

.bkl-hotel-cta-content a{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 24px;

    background:#fff;
    color:#C8102E;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s ease;
}

.bkl-hotel-cta-content a:hover{
    transform:translateY(-3px);
}

/* ==================================
   MODAL
================================== */

.bkl-modal{
    position:fixed;
    inset:0;

    display:none;

    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,.75);

    z-index:999999;

    padding:20px;
}

.bkl-modal-content{
    width:100%;
    max-width:800px;

    background:#fff;

    border-radius:32px;

    overflow:hidden;

    position:relative;

    animation:bklModal .25s ease;
}

@keyframes bklModal{

    from{
        transform:translateY(20px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}

.bkl-modal-content img{
    width:100%;
    height:380px;

    object-fit:cover;
    display:block;
}

.bkl-modal-body{
    padding:32px;
}

.bkl-modal-body h2{
    color:#1E293B;

    font-size:32px;
    font-weight:800;

    margin-bottom:25px;
}

.bkl-modal-row{
    padding:18px 0;

    border-bottom:1px solid #E5E7EB;
}

.bkl-modal-row:last-child{
    border-bottom:none;
}

.bkl-modal-row strong{
    display:block;

    color:#1E293B;

    margin-bottom:8px;
}

.bkl-modal-row span{
    color:#64748B;
}

.bkl-modal-row a{
    color:#C8102E;

    text-decoration:none;

    word-break:break-word;
}

.bkl-modal-row a:hover{
    text-decoration:underline;
}

.bkl-close{
    position:absolute;

    top:18px;
    right:18px;

    width:44px;
    height:44px;

    border-radius:50%;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    box-shadow:
        0 10px 25px rgba(15,23,42,.15);
}

.bkl-close i{
    color:#1E293B;
    font-size:18px;
}

/* ==================================
   LARGE DESKTOP
================================== */

@media(min-width:1440px){

    .bkl-hotel-hero{
        min-height:800px;
    }

    .bkl-hotel-hero-overlay h2{
        font-size:56px;
    }

}

/* ==================================
   LAPTOP
================================== */

@media(max-width:1200px){

    .bkl-hotel-showcase{
        grid-template-columns:1fr;
    }

    .bkl-hotel-hero{
        min-height:600px;
    }

}

/* ==================================
   TABLET
================================== */

@media(max-width:1024px){

    .bkl-hotel-intro p{
        font-size:16px;
    }

    .bkl-hotel-hero{
        min-height:500px;
    }

    .bkl-hotel-hero-overlay{
        padding:30px;
    }

    .bkl-hotel-hero-overlay h2{
        font-size:38px;
    }

    .bkl-hotel-item{
        padding:18px 20px;
    }

    .bkl-hotel-cta{
        flex-direction:column;
        text-align:center;
    }

    .bkl-hotel-cta-content h3{
        font-size:28px;
    }

}

/* ==================================
   MOBILE
================================== */

@media(max-width:767px){

    .bkl-hotel-intro{
        margin-bottom:25px;
    }

    .bkl-hotel-intro p{
        font-size:14px;
        line-height:1.9;
        text-align:left;
    }

    .bkl-hotel-showcase{
        gap:20px;
    }

    .bkl-hotel-hero{
        min-height:320px;
        border-radius:24px;
    }

    .bkl-hotel-hero-overlay{
        padding:24px;
    }

    .bkl-hotel-hero-overlay h2{
        font-size:28px;
    }

    .bkl-hotel-hero-overlay p{
        font-size:14px;
        line-height:1.7;
    }

    .bkl-hotel-item{
        padding:16px 18px;
        border-radius:20px;
    }

    .bkl-hotel-item h4{
        font-size:15px;
    }

    .bkl-hotel-item span{
        font-size:12px;
    }

    .bkl-hotel-cta{
        padding:30px 24px;
        border-radius:24px;
    }

    .bkl-hotel-cta-icon{
        width:70px;
        height:70px;
    }

    .bkl-hotel-cta-icon i{
        font-size:28px;
    }

    .bkl-hotel-cta-content h3{
        font-size:24px;
    }

    .bkl-hotel-cta-content p{
        font-size:14px;
    }

    .bkl-modal-content{
        border-radius:24px;
    }

    .bkl-modal-content img{
        height:220px;
    }

    .bkl-modal-body{
        padding:20px;
    }

    .bkl-modal-body h2{
        font-size:24px;
    }

}/* End custom CSS */