:root {
    --blue: #0C3C78; /* primary */
}

    .bigletterspace {
    letter-spacing: 3px;
    font-weight: bolder;
}
a {
    text-decoration:underline;
  }

a::hover {
    text-decoration: none;
}


.section-title {
    color:var(--blue) !important;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    display: flex;
    padding-left: 16px;
    margin: 30px 0;
    letter-spacing: normal;
}

.btn {
    display: inline-block;
    padding: 10px 22px !important;
    border-radius: 999px;
    background: var(--mid);
    color: black;
    text-decoration: none;
    font-weight: 700;
    background-color: #ffd700;
    box-shadow: var(--shadow);
    border: 0;
    font-size: 1rem;
    text-transform: capitalize;
}



.section-title-detail-alternative {
   color:var(--blue) !important;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    display: flex;
}

.section-title-detail {
   color:var(--blue) !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    position: relative;
    display: flex;
    padding-left: 16px;
    margin: 20px 5px 10px 5px;
    letter-spacing: normal;
    text-transform: uppercase;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    height: 20px;
    width: 4px;
    background-color: #000;
    border-radius: 2px;
}

.section-title-detail::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    height: 16px;
    width: 4px;
    background-color: #000;
    border-radius: 2px;
}

#menuBox {
    display: none; 
}

#desktop-menu {
    display: none;
}

body {
    margin: 0;
    padding: 0;
    background-image: url('/images/adare-2r.webp'); /* Ruta de la imagen */
    background-attachment: fixed; /* Activa el efecto parallax */
    background-size: cover; /* Asegura que la imagen cubra todo el fondo */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
}

    /* Agregar opacidad al fondo */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8); /* Color negro con opacidad del 50% */
        z-index: -1; /* Asegura que el fondo est� detr�s del contenido */
    }

@media (max-width: 768px) {
    #menuBox {
        display: block; 
    }

    #desktop-menu {
        display: none;
    }
}


@media (min-width: 769px) {
    #menuBox {
        display: none;
          font-family: "Gotham", sans-serif;
    }

    #desktop-menu {
        display: flex;
        justify-content: flex-end; 
        gap: 20px; 
    }

        #desktop-menu .links {
            list-style: none;
            display: flex;
            gap: 20px;
            margin: 0;
            padding: 0;
        }

            #desktop-menu .links li a {
                text-decoration: none;
                /* font-weight:500; */
                text-transform:none;
            }
}

.userna{
    /* border: solid 1px yellow; */
    /* padding: 0px 10px; */
    line-height: 38px;
    color: yellow;
    font-weight: 500;
    /* border-radius: 7px; */
    text-transform: none;
    margin: 7px 0;
}

.form-control:disabled, .form-control[readonly] {
    background-color: black;
    opacity: 1;
}


.form-control, .form-control:focus, .form-control[readonly] {
    background-color: transparent;
    opacity: 1;
    color: black;
}

.btn.btn-primary {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    line-height: 2;
    font-weight: normal;
    background-color: #ffd700;
}
.btn.btn-secondary {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
   
    line-height: 2;
    font-weight: normal;
    background-color: darkblue !important;
    color:white
}

label > span.text-danger {
    font-size: 16px;
    color: black !important;
    font-weight:bolder;
}

.text-danger {
    color: #darkred !important;
    font-size: 16px;
}


.site-header-wrapper {
    position: relative;
    width: 100%;
    height: 60px;
}

.site-header--phase1 {
    height: 60px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    z-index: 999999999999999;
}

.site-header__logo {
    position: absolute;
    top: 0px;
    left: clamp(0.8888888889rem, 0.0177777778rem + 3.7333333333vw, 4rem);
    z-index: 2;
}

    .site-header__logo img {
        min-width: 156px;
        width: 100%;
        height: auto;
        /* transform-origin: 50% 0; */
        will-change: transform;
        transition: transform 0.25s ease;
    }

@media all and (min-width: 641px) {
    .site-header.scrolling .site-header__logo img {
        /* transform: scale(0.8); */
    }
}

.site-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 var(--sectionPaddingX) 0 calc(clamp(0.8888888889rem, -1.04rem + 8.2666666667vw, 7.7777777778rem) + var(--sectionPaddingX) * 2);
    background: var(--headerTopBg);
    min-height: 60px;
}

    .site-header__top .language {
        margin-left: auto;
    }

@media (max-width: 768px) {
    .site-header__top {
        padding: 0px 14px 0px 69px;
    }
}

.burger-menu {
    flex-direction: column;
    cursor: pointer;
}

    .burger-menu .bar {
        border-radius: 38px;
        width: 30px;
        height: 3px;
        background-color: #ffd700;
        margin: 6px 0;
    }

@media screen and (min-width: 769px) {
    .burger-menu {
        display: none;
    }

    .mobile-vl {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .site-account {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .mobile-black {
        color: #250146 !important;
        font-weight: 600;
        margin-left: 4px !important;
    }

    .mobile-blue {
        color: #5434A0 !important;
        font-weight: 600;
        font-size: 19px !important;
    }

    .mobile-vl {
        width: 2px;
        height: 42px;
        background-color: #5534A0;
        margin: 19px 10px;
    }

    .burger-menu {
        margin-left: auto;
        justify-content: center;
        align-items: center;
    }

    .site-navigation-top-link {
        margin: 10px 0;
    }

    .site-navigation__sub-menu {
        display: none;
    }

    .site-navigation-top-link {
        margin: 10px 0;
    }
}

@media screen and (min-width: 669px) and (max-width: 768px) {
    .mobile-black {
        margin-left: 26px !important;
    }
}

.burger-menu {
    cursor: pointer;
}

.drawer-menu {
    position: fixed;
    top: 0;
    right: -352px;
    width: 352px;
    height: 100%;
    background-color: #F7F7F7;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    color: white;
    display: flex;
    flex-direction: column;
    background-color: #001436;
    border-left: 1px white solid
}

    .drawer-menu ul {
        list-style-type: none;
        padding: 0;
    }

    .drawer-menu li {
        padding: 2px 12px;
    }

        .drawer-menu li a {
            text-decoration: none;
            color: white;
            display: block;
            margin-left: 10px;
        }

    .drawer-menu .menu-option {
        padding: 10px;
        text-align: left;
        font-weight: 700;
        color: #white;
        margin-left: 10px;
        font-size: 20px;
        margin-bottom: -54px;
        margin-right: auto;
    }

    .drawer-menu .close-button {
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        align-self: flex-end;
        margin-left: 10px;
    }

    .drawer-menu .square-container {
        width: 38px;
        height: 38px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 0
    }

    .drawer-menu .x {
        font-size: 34px;
        color: #ffd700;
        margin-bottom: 5px
    }

.menu-separator {
    width: 87%;
    background-color: #240147;
    margin-right: 23px;
    height: 1px;
}

:root {
    --footerBg: linear-gradient(90deg, #200044 0%, #7F66FB 50%, #7F66FB 100%);
    --footerBgSize: inherit;
    --showFooterBgImage: block;
    --showFooterBgImageMobile: block;
    --showFooterBgImageHospitalityMobile: none;
    --footerHeadingColor: #9DE32E;
}

@media all and (max-width: 768px) {
    :root {
        --footerBg: linear-gradient(180deg, #200044 0%, #7F66FB 50%, #7F66FB 100%);
    }
}

.site-footer {
    position: relative;
    padding: 64px 0px 32px 0px;
    color: #FFF;
    background-color: #001436;
}

@media (max-width: 768px) {
    .site-footer {
        z-index: 2;
    }
}

.site-footer .language-selector__options {
    background-color: rgba(32, 0, 68, 0.75);
    width: 175%;
}

.site-footer__bg-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    max-width: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
    z-index: 0;
    display: var(--showFooterBgImage);
}

@media all and (max-width: 768px) {
    .site-footer__bg-image {
        display: none;
    }
}

.site-footer__bg-image--mobile {
    display: none;
    max-width: none;
    width: 100%;
    height: auto;
    max-height: 50%;
    -o-object-position: center top;
    object-position: center top;
    top: auto;
    bottom: 0;
    display: none;
}

@media all and (max-width: 768px) {
    .site-footer__bg-image--mobile {
        display: var(--showFooterBgImageMobile);
    }
}

@media all and (max-width: 768px) {
    .site-footer__bg-image--hospitality {
        display: var(--showFooterBgImageHospitalityMobile);
    }
}

.site-footer__grid {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    width: 100%;
    z-index: 1;
}

@media all and (min-width: 769px) {
    .site-footer__grid {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 60px;
    }
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
}

    .site-footer__column .footer-heading {
        color: #fff;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .site-footer__column .partner-logos {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 50px;
        max-width: 170px;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .site-footer__column .partner-logo {
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .site-footer__column .partner-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

.footer-link {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-transform: capitalize;
    margin-bottom: 12px;
}

    .footer-link a {
        text-decoration: none;
        font-weight: bold;
        color: inherit;
        font-size:15px;
    }

.site-footer__column .partners {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer__bottom-links {
    padding: 16px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #FFF;
    margin-top: 64px;
}

    .site-footer__bottom-links .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 70px;
    }

        .site-footer__bottom-links .footer-links .footer-link {
            margin-bottom: 0px;
            color: #fff;
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
        }

.site-footer__copyright {
    text-align: left;
    font-size: 14px;
    margin-top: 64px;
}

    .site-footer__copyright p {
        margin-bottom: 0px;
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
    }

@media all and (max-width: 768px) {
    .site-footer__column {
        text-align: center;
        align-items: center;
    }

        .site-footer__column:not(:first-child) {
            margin-top: 80px;
        }

        .site-footer__column:nth-child(2) {
            order: 3;
        }

        .site-footer__column:nth-child(3) .site-footer__match-logo {
            display: none;
        }
}

.site-footer__column h2, .site-footer__column .site-footer__links li {
    font-size: 20px;
    line-height: 30px;
}

.site-footer__column h2 {
    color: var(--footerHeadingColor);
    font-weight: 700;
    margin-bottom: 30px;
}

.site-footer__column .button {
    margin: clamp(3.3333333333rem, 2.4rem + 4vw, 6.6666666667rem) auto clamp(2rem, 1.6266666667rem + 1.6vw, 3.3333333333rem);
}

@media all and (max-width: 768px) {
    .site-footer__column .button {
        margin: clamp(6.1111111111rem, 4.4rem + 7.3333333333vw, 12.2222222222rem) auto;
    }
}

.site-footer__column p {
    margin: 0;
}

.site-footer__logo {
    display: block;
    max-width: 116px;
    margin: 0 auto;
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .site-footer__links > li {
        display: flex;
        align-items: center;
        padding-bottom: 16px;
        color: #FFF;
        font-weight: 500;
    }

@media all and (max-width: 768px) {
    .site-footer__links > li {
        justify-content: center;
        padding-bottom: 24px;
    }
}

.site-footer__links > li a {
    color: inherit;
    text-decoration-color: transparent;
}

    .site-footer__links > li a:hover {
        text-decoration-color: inherit;
        text-decoration: underline;
    }

.site-footer__match-logo {
    margin: auto 0 16px auto;
}

@media all and (min-width: 769px) {
    html[dir=rtl] .site-footer__match-logo {
        margin: auto auto 16px 0;
    }
}

@media all and (max-width: 768px) {
    .site-footer__match-logo {
        margin: 36px auto 0;
    }
}

.topseparator
{
    height:30px;
}

.section-link
{
    color:yellow;
    width:120px;
    text-decoration:none;
}

.bedroom-item {
    border: solid 1px darkblue !important;
    padding: 30px;
    border-radius: 20px !important;
    width: 98%;
}

.bathroom-item {
    border: solid 1px darkblue !important;
    padding: 30px;
    border-radius: 20px !important;
    width: 98%;
}