﻿@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --st-theme-color: #CB465C;
    --st-theme-color-dark: #801C2D;
    --st-theme-bg: #FEFEFE;
    --st-theme-fg: #333333;
    --st-theme-footer: #F9F9F9;
    --st-theme-border: #E9E9E9;
    --st-theme-border-dark: #ACACAC;
    --st-dark: #000000;
    --st-light: #FFFFFF;
    --st-theme-danger: #FF1744;
    --st-theme-primary: #D6D6D6;
    --st-theme-secondary: #869791;
    --st-theme-shadow: rgba(0, 0, 0, 0.15);
    --st-theme-font: 'Montserrat', sans-serif;
    --st-theme-form-font: 'Inter', sans-serif;
    --st-theme-heading-font: 'Dosis', sans-serif;
}

body {
    background: var(--st-theme-bg);
    color: var(--st-theme-fg);
    font-family: var(--st-theme-font);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

a, a:focus {
    color: var(--st-theme-color);
}

    a:hover, a:active {
        color: var(--st-theme-color-dark);
    }

    a, a:hover, a:active, a:focus,
    button, button:hover, button:active, button:focus,
    .btn, .btn:hover, .btn:active, .btn:focus {
        text-decoration: none !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        outline: none !important;
    }

ol li {
    list-style-type: decimal-leading-zero;
    margin-bottom: 10px;
    padding-left: 10px;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background: var(--st-theme-border);
    border-radius: 3rem;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--st-theme-border-dark);
    }

.text-danger {
    color: var(--st-theme-danger) !important;
}

.fa-facebook {
    color: #1877F2;
}

.fa-instagram:before {
    background: -webkit-linear-gradient(#405DE6, #5B51D8, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FCAF45, #FFDC80);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fa-x-twitter {
    color: #000000;
}

.fa-youtube {
    color: #FF0000;
}

.fa-whatsapp {
    color: #25D366;
}

.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: normal;
}

header.headerbar {
    background: var(--st-light);
    border-bottom: 1px solid var(--st-theme-border) !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

    header.headerbar .weather,
    header.headerbar .digi-clock {
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

        header.headerbar .weather span {
            font-size: 1.5rem;
        }

    header.headerbar .btn-book {
        display: block;
        background: var(--st-theme-color-dark);
        border: none;
        border-radius: 2rem;
        color: var(--st-light);
        font-size: 14px;
        font-weight: 500;
        padding: 10px 20px;
        text-transform: uppercase;
    }

nav.navbar {
    background: var(--st-light);
    box-shadow: 0 3px 5px 0 var(--st-theme-shadow);
    -webkit-box-shadow: 0 3px 5px 0 var(--st-theme-shadow);
    -moz-box-shadow: 0 3px 5px 0 var(--st-theme-shadow);
}

    nav.navbar .btn-mobile {
        display: block;
        background: var(--st-theme-color-dark);
        border: none;
        border-radius: 2rem;
        color: var(--st-light);
        font-size: 11px;
        font-weight: 700;
        padding: 10px 15px;
        text-transform: uppercase;
    }

.navbar-toggler {
    background: none;
    border: none;
}

.offcanvas.offcanvas-start {
    width: 300px !important;
}

.offcanvas .offcanvas-body .smo {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 0 25px 20px;
    padding: 0;
}

.smo ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .smo ul li {
        display: inline-block;
        margin: 0;
        padding: 0;
    }

        .smo ul li:not(:last-child) {
            margin-right: 0.75rem;
        }

.nav-item {
    margin: 0 5px;
}

.nav-link {
    position: relative;
    font-weight: 550;
    text-transform: uppercase;
}

    .nav-link:hover {
        color: var(--st-theme-color);
    }

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--st-theme-color);
    font-weight: 550;
}

.navbar-nav .nav-link.special {
    color: var(--st-theme-color);
    font-weight: 650;
}

    .navbar-nav .nav-link.special:hover {
        color: var(--st-theme-color-dark);
    }

@media (min-width: 992px) {
    .navbar-nav .nav-link:not(.special):not(.active):hover:before, .navbar-nav .nav-link:not(.special):not(.show):hover:before {
        content: "";
        height: 2px;
        background-color: var(--st-theme-color);
        position: absolute;
        top: 0;
        animation: linemation 0.2s forwards;
    }

    .navbar-nav .nav-link:not(.special):not(.active):hover:after, .navbar-nav .nav-link:not(.special):not(.show):hover:after {
        content: "";
        height: 2px;
        background-color: var(--st-theme-color);
        position: absolute;
        bottom: 0;
        animation: linemation 0.2s forwards;
    }

    .navbar-nav .nav-link.active:before, .navbar-nav .nav-link.show:before {
        content: "";
        height: 2px;
        background-color: var(--st-theme-color);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .navbar-nav .nav-link.active:after, .navbar-nav .nav-link.show:after {
        content: "";
        height: 2px;
        background-color: var(--st-theme-color);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
}

.wrapper {
    padding: 0;
    margin: 0;
}

    .wrapper section {
        padding: 70px 0;
    }

        .wrapper section .section-title,
        .wrapper section .section-subtitle {
            font-family: var(--st-theme-heading-font);
            font-size: 27px;
            font-weight: 600;
            text-align: center;
            text-transform: uppercase;
            margin-bottom: 35px;
        }

        .wrapper section .section-subtitle {
                margin-top: 25px;
        }

            .wrapper section .section-title:after,
            .wrapper section .section-subtitle:after {
                content: "";
                display: block;
                width: 75px;
                height: 3px;
                margin: 12px auto 0;
                background-color: var(--st-theme-color);
                border-radius: 2px;
            }

            .wrapper section .section-subtitle:after {
                width: 40px;
            }

            .wrapper section .section-title span {
                color: var(--st-theme-color);
            }

            .wrapper section .section-subtitle span {
                font-family: var(--st-theme-font);
                font-size: 15px;
                font-weight: 700;
            }

        .wrapper section .content {
            margin: 0 auto;
        }

            .wrapper section .content ul.icons {
                justify-content: center;
                margin: 0;
                padding: 0;
            }

            .wrapper section .content ul.icons li {
                width: calc(16% - 0px);
                padding: 15px 0;
                font-size: 15px;
                font-weight: 500;
                display: list-item;
                text-align: center;
                list-style-type: none;
            }

            .wrapper section .content .card-title {
                font-size: 20px;
                font-weight: 600;
            }

            .wrapper section .content .card-text {
                font-size: 13px;
                margin: 15px 0 25px;
                height: 82px;
                width: 100%;
                overflow: hidden;
                display: -webkit-box;
                text-overflow: ellipsis;
                white-space: normal;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 4;
            }

.card {
    margin: 0 0.75em;
    box-shadow: 0 0 5px 0 var(--st-theme-shadow);
    -webkit-box-shadow: 0 0 5px 0 var(--st-theme-shadow);
    -moz-box-shadow: 0 0 5px 0 var(--st-theme-shadow);
}

.blog-card {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

    .blog-card .blog-wrapper {
        position: relative;
        width: 80%;
        min-height: 400px;
        margin-left: auto;
        background: var(--st-light);
        border-radius: 25px;
        box-shadow: 0 0 15px 0 var(--st-theme-shadow);
        -webkit-box-shadow: 0 0 15px 0 var(--st-theme-shadow);
        -moz-box-shadow: 0 0 15px 0 var(--st-theme-shadow);
    }

        .blog-card .blog-wrapper .blog-content {
            font-weight: 550;
            padding: 60px 60px 60px 310px;
            text-align: center;
        }

    .blog-card .blog-img {
        position: absolute;
        left: 0;
        right: unset;
        top: 50%;
        width: 450px;
        height: 350px;
        transform: translateY(-50%);
        background: var(--st-theme-footer);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0px 52px 19px -29px var(--st-theme-shadow);
        -webkit-box-shadow: 0px 52px 19px -29px var(--st-theme-shadow);
        -moz-box-shadow: 0px 52px 19px -29px var(--st-theme-shadow);
    }

    .blog-card iframe.blog-img {
        height: 85%;
    }

    .blog-card .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-card.right .blog-wrapper {
        margin: 0;
    }

        .blog-card.right .blog-wrapper .blog-content {
            padding: 60px 310px 60px 60px;
        }

    .blog-card.right .blog-img {
        left: unset;
        right: 0;
    }

@media (max-width: 992px) {
    .blog-card .blog-wrapper {
        width: 100%;
        margin: 190px auto 0;
    }

        .blog-card .blog-wrapper .blog-content {
            padding: 240px 40px 40px 40px;
        }

    .blog-card .blog-img {
        left: 50%;
        top: 0;
        bottom: unset;
        width: 90%;
        height: 350px !important;
        transform: translate(-50%, -180px);
    }

    .blog-card.right .blog-wrapper {
        margin: 0 auto 190px;
    }

        .blog-card.right .blog-wrapper .blog-content {
            padding: 40px 40px 220px 40px;
        }

    .blog-card.right .blog-img {
        left: 50%;
        top: unset;
        bottom: 0 !important;
        transform: translate(-50%, 180px);
    }
}

.details-pane {
    font-size: 14px;
    font-weight: 500;
}

    .details-pane .footer-hd {
        color: var(--st-theme-color);
        font-size: 15px;
    }

        .details-pane .footer-hd:after {
            background: var(--st-theme-color);
        }

.rating {
    text-align: left;
    float: none;
    direction: rtl;
    margin-left: 0;
    margin-top: 15px;
    margin-bottom: 25px;
}

    .rating .fa-solid {
        color: #3BA90C;
    }

    .rating .fa-light {
        color: var(--st-theme-border-dark);
    }

.btn-special {
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    margin-right: 10px;
    background: var(--st-light);
    border: 1px solid var(--st-theme-border-dark);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--st-dark);
    cursor: pointer;
    transition: all 0.4s ease;
}

    .btn-special.inverse {
        background: var(--st-dark) !important;
        border: 1px solid var(--st-dark) !important;
        color: var(--st-light) !important;
    }

    .btn-special.large {
        padding: 15px 25px !important;
        font-size: 14px !important;
    }

    .btn-special:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 7px 3px var(--st-theme-shadow) !important;
        -webkit-box-shadow: 0 0 7px 3px var(--st-theme-shadow) !important;
        -moz-box-shadow: 0 0 7px 3px var(--st-theme-shadow) !important;
        text-decoration: none;
        color: inherit;
    }

    .btn-special:active,
    .btn-special:focus {
        color: inherit;
    }

.parallax {
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .parallax.strap-01 {
        background-image: url('../media/images/parallax_01.jpg');
    }

    .parallax.strap-02 {
        background-image: url('../media/images/parallax_02.jpg');
    }

    .parallax.strap-03 {
        background-image: url('../media/images/parallax_03.jpg');
    }

    .parallax.strap-04 {
        background-image: url('../media/images/parallax_04.jpg');
    }

    .parallax.strap-05 {
        background-image: url('../media/images/parallax_05.jpg');
    }

    .parallax.strap-06 {
        background-image: url('../media/images/parallax_06.jpg');
    }

.btn-bar {
    width: 100%;
    display: none;
    box-shadow: 0 -1px 4px 0 var(--st-theme-shadow);
    -webkit-box-shadow: 0 -1px 4px 0 var(--st-theme-shadow);
    -moz-box-shadow: 0 -1px 4px 0 var(--st-theme-shadow);
}

    .btn-bar .btn {
        border: none;
        border-radius: 0 !important;
        font-size: 13px;
        padding-top: 15px;
        padding-bottom: 15px;
        text-transform: uppercase;
    }

        .btn-bar .btn:first-child {
            background: #4E565C;
        }

        .btn-bar .btn:last-child {
            background: #6C757D;
        }

@media (max-width: 768px) {
    .btn-bar {
        display: flex;
    }
}

.form-floating .form-control,
.form-floating label {
    font-family: var(--st-theme-form-font);
    font-weight: 500;
}

    .form-floating .form-control:focus {
        outline: none;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
    }

    .form-floating .form-control:not(.is-invalid):focus {
        border-color: var(--st-theme-secondary);
    }

.form-floating textarea.form-control {
    resize: none;
    min-height: 120px;
}

.form-control.is-invalid {
    border-color: var(--st-theme-danger) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23FF1744'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23FF1744' stroke='none'/%3e%3c/svg%3e");
}

.form-floating.is-invalid label.invalid {
    display: inline-block;
}

.form-floating.is-invalid label.label {
    display: none;
}

.form-floating:not(.is-invalid) label.invalid {
    display: none;
}

.form-floating:not(.is-invalid) label.label {
    display: inline-block;
}

.loader,
[data-loader="off"] .loader {
    margin: 7px 15px;
    width: 40px;
    aspect-ratio: 4;
    background: radial-gradient(circle closest-side,#fff 90%,#0000) 0/calc(100%/3) 100% space;
    clip-path: inset(0 100% 0 0);
    animation: loading 1s steps(4) infinite;
    display: none;
}

.loader,
[data-loader="off"] span {
    display: block;
}

[data-loader="on"] .loader {
    display: block;
}

[data-loader="on"] span {
    display: none;
}

.grid-wrapper > a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: inline-block;
}

.grid-wrapper > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.grid-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

    .grid-wrapper .wide {
        grid-column: span 2;
    }

    .grid-wrapper .tall {
        grid-row: span 2;
    }

    .grid-wrapper .big {
        grid-column: span 2;
        grid-row: span 2;
    }

.carousel-multi .carousel-inner {
    padding: 1em;
}

.carousel-multi .carousel-control-prev, .carousel-multi .carousel-control-next {
    width: 6vh;
    height: 6vh;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-product .carousel-inner {
    border-radius: 10px;
}

.carousel-product .carousel-control-prev, .carousel-product .carousel-control-next {
    top: 40%;
    transform: translateY(-50%);
}

.carousel-product .carousel-indicators {
    position: relative;
    margin-bottom: 0;
    bottom: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

    .carousel-product .carousel-indicators [data-bs-target] {
        width: 20%;
        height: auto;
        padding: 0;
        overflow: hidden;
        text-indent: 0;
    }

        .carousel-product .carousel-indicators [data-bs-target]:first-child {
            margin-left: 0;
        }

        .carousel-product .carousel-indicators [data-bs-target]:last-child {
            margin-right: 0;
        }

        .carousel-product .carousel-indicators [data-bs-target] img {
            max-width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 5px;
        }

.carousel-caption {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    max-width: 768px !important;
    margin: 0 auto 50px !important;
    color: var(--st-theme-fg) !important;
}

    .carousel-caption .title {
        font-size: 18px;
        font-weight: 600;
        padding: 0;
        margin: 0;
        margin-bottom: 25px;
    }

    .carousel-caption .body {
        font-size: 14px;
        font-weight: 500;
        padding: 0;
        margin: 0;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .carousel-caption .rating {
        text-align: center;
        float: none;
        direction: rtl;
        margin-left: 0;
        margin-top: 25px;
        margin-bottom: 25px;
    }

        .carousel-caption .rating .fa-solid {
            color: #3BA90C;
        }

        .carousel-caption .rating .fa-light {
            color: var(--st-theme-border-dark);
        }

.carousel-indicators.circular button {
    height: 12px !important;
    width: 12px !important;
    border-radius: 12px !important;
    background: var(--st-theme-primary) !important;
    box-sizing: unset !important;
    flex: none !important;
    border: none !important;
}

    .carousel-indicators.circular button.active {
        background: var(--st-theme-secondary) !important;
    }

@media (min-width: 768px) and (max-width: 992px) {
    .carousel-multi .carousel-inner {
        display: flex;
    }

    .carousel-multi .carousel-item {
        margin-right: 0;
        flex: 0 0 50%;
        display: block;
    }
}

@media (min-width: 993px) {
    .carousel-multi .carousel-inner {
        display: flex;
    }

    .carousel-multi .carousel-item {
        margin-right: 0;
        flex: 0 0 33.33%;
        display: block;
    }
}

@media (max-width: 576px) {
    .wrapper section .content ul.icons li {
        width: calc(50% - 0px);
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .wrapper section .content ul.icons li {
        width: calc(33.33% - 0px);
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .wrapper section .content ul.icons li {
        width: calc(25% - 0px);
    }
}

footer {
    background: var(--st-theme-footer);
    border-top: 1px solid var(--st-theme-border);
    font-size: 12px;
    padding: 0;
}

    footer section {
        padding: 25px 0;
    }

        footer section:not(:last-child) {
            border-bottom: 1px solid var(--st-theme-border);
            padding: 50px 0;
        }

        footer section.section-location,
        footer section.section-links,
        footer section.section-copy {
            font-weight: 600;
            line-height: 2;
        }

            footer section.section-location address,
            footer section.section-links address {
                margin-bottom: 0;
            }

            footer section.section-location fieldset,
            footer section.section-links fieldset {
                width: 250px;
            }

            footer section.section-location a,
            footer section.section-links a {
                color: var(--st-theme-fg);
            }

            footer section.section-location ul,
            footer section.section-links ul,
            footer section.section-location ul li,
            footer section.section-links ul li {
                margin: 0;
                padding: 0;
                list-style: none;
            }

        footer section .smo {
            margin-top: 3rem;
            align-items: center;
            align-content: center;
            justify-content: flex-start;
        }

            footer section .smo ul {
                margin-left: 1.5rem;
            }

                footer section .smo ul li:not(:last-child) {
                    margin-right: 1rem;
                }

        footer section.section-copy {
            text-align: center;
        }

.footer-hd {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 35px;
}

    .footer-hd:after {
        content: "";
        display: block;
        width: 50px;
        height: 3px;
        margin-top: 7px;
        background-color: var(--st-theme-fg);
    }

@media (max-width: 767px) {
    footer section.section-location address,
    footer section.section-links address {
        margin-bottom: 2.5rem;
        text-align: center;
        width: 100%;
    }

    footer section.section-location fieldset,
    footer section.section-links fieldset {
        margin-bottom: 2.5rem;
    }

    footer address .footer-hd:after {
        margin: 7px auto 0;
    }

    footer section .smo {
        margin-top: 0.5rem;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

        footer section .smo ul {
            margin-left: 0;
        }

        footer section .smo h5 {
            display: none;
        }
}

@keyframes linemation {
    0% {
        right: 50%;
        left: 50%;
    }

    10% {
        right: 45%;
        left: 45%;
    }

    20% {
        right: 40%;
        left: 40%;
    }

    30% {
        right: 35%;
        left: 35%;
    }

    40% {
        right: 30%;
        left: 30%;
    }

    50% {
        right: 25%;
        left: 25%;
    }

    60% {
        right: 20%;
        left: 20%;
    }

    70% {
        right: 15%;
        left: 15%;
    }

    80% {
        right: 10%;
        left: 10%;
    }

    90% {
        right: 5%;
        left: 5%;
    }

    100% {
        right: 0;
        left: 0;
    }
}

@keyframes l1 {
    to {
        clip-path: inset(0 -34% 0 0);
    }
}
