@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    /* --secondary-color-dark: #1b1b1b; */

    --secondary-color-dark: #282828;
    /* --secondary-color: #444444; */
    --secondary-color: #dfdfdf;
    --title-font: 'Noto Sans Thai', 'sans-serif';
    /* --bs-navbar-toggler-icon-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e); */
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}

.navbar {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

html, body {
    min-height: 100dvh;
    /* background: #fff; */
    /* background: #fcfcfc; */

    background-color: #fff;
    color: #282828;
}

a {
    color: var(--secondary-color);
}

.navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg);
}

.btnMainCondo {
    /* background-color: #f79421; */
    /* background: linear-gradient(145deg, #3b82f6, #2563eb); */
    background: linear-gradient(145deg, var(--secondary-color), #2b5371);
    border: none;
    border-radius: 0;
    padding-left: 18px;
    padding-right: 18px;
    display: flex;
    gap: 8px;
    padding-top: 8px;
    justify-content: center;
    /* &:hover, :focus, :focus-visible, :active, :focus-visible, :focus-within {
        background-color: #cb7410;
    } */
}

.navbar {
    padding: 20px 0px;
    backdrop-filter: blur(4px);
    /* background-color: #ffffff; */
    /* background-color: #2e2e2e; */
    /* background-color: var(--secondary-color-dark);; */
    background-color: #fff;
    /* font-size: 14px; */
    border: none;
    box-shadow: none !important;
}




/* Preloader */

.handle-preloader {
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -ms-flexbox;
    height: 100%;
    justify-content: center;
    -webkit-justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
    /* background: var(--secondary-color-dark); */
    background: #fff;
    /* background-color: #fff; */
}

.preloader-close {
    position: fixed;
    z-index: 99999999;
    font-size: 20px;
    background: #fff;
    color: var(--theme-color);
    /* background: #fff; */
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    right: 30px;
    top: 30px;
    font-weight: 400;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    height: 60px;
    margin: 0 auto 45px auto;
    width: 60px;
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    top: 0;
    position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-family: var(--font-main-set);
    font-weight: 700;
    letter-spacing: 15px;
    display: inline-block;
    position: relative;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
    /* -webkit-text-stroke-color: #61616157; */

}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.3s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 0.5s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 0.7s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
    animation-delay: 0.8s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before {
    animation-delay: 0.9s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(11):before {
    animation-delay: 1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(12):before {
    animation-delay: 1.1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(13):before {
    animation-delay: 1.2s;
}

.handle-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    color: #ffffff;
    color: var(--secondary-color);
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid var(--secondary-color);
    ;
    border-top-color: rgba(255, 255, 255, 0.3);
}

/* AnimaciÃ³n del preloader */
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 30px;
        letter-spacing: 5px;
    }
}

.owl-theme .owl-nav.disabled+.owl-dots {
    /* margin-top: -27px !important; */
}

button.btn {
    border-radius: 0px;
}

.btn-outline-dark {
    --bs-btn-color: var(--secondary-color);
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 33, 37, 41;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--secondary-color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--secondary-color);
    --bs-gradient: none;
}

.navbar-collapse {}

/* @media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {}
}

@media screen and (max-width: 991px) {
    .navbar-expand-lg .navbar-collapse {
             position: absolute;
        top: 91px;
        background-color: #fff;
        width: calc(80dvw);
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        height: calc(100dvh - 91px - 0px);
        left: 0;
    }
} */

/* .row{
    margin-right: unset;
    margin-left: unset;
} */