:root {
    --font-figtree: "Figtree", sans-serif !important;
    --text-capitalize: capitalize;
    --border-r-20: 20px;
    --width-full: 100%;
    --p-relative: relative;
    --p-absolute: absolute;
    --c-black: #000;
    --c-0: 0;
    --b-after: linear-gradient(0deg, rgba(6, 18, 56, 0.40) 0%, rgba(6, 18, 56, 0.40) 100%);
    --h-500: 500px;
    --z-99: 8;
    --t-white: #fff;
}

body {
    font-family: var(--font-figtree);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background: #faf9f6;
}

/* Header */
.uk-logo img {
    width: 138px;
}

.uk-navbar-nav>li>a {
    text-transform: var(--text-capitalize);
    color: var(--c-black);
    font-size: 16px;
}

/* Banner */

.banner {
    width: var(--width-full);
    position: var(--p-relative);
    height: var(--h-500)
}

.uk-height-500 {
    height: var(--h-500)
}

.uk-z-index {
    z-index: var(--z-99)
}

.banner:after {
    content: '';
    position: var(--p-absolute);
    top: var(--c-0);
    bottom: var(--c-0);
    left: var(--c-0);
    right: var(--c-0);
    border-radius: var(--border-r-20);
    background: var(--b-after);

}

.banner video {
    border-radius: var(--border-r-20);
    width: var(--width-full);
}

.text-white, .text-white h1 {
    color: var(--t-white);
}

.text-white h1 {
    margin-bottom: var(--c-0);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    /* 120% */
}

.banner-summary {
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.play-icon {
    margin: auto;
    margin-top: 40px;

    text-align: center;
}

.uk-card-main {
    border-radius: 20px;
    position: relative;
    padding-top: 20px;
    box-shadow: 0px 14px 17px 0px #0000001c
}

.uk-card-main:after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, #061238 0%, rgba(6, 18, 56, 0.50) 41.35%, rgba(6, 18, 56, 0.00) 54.33%);
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border-radius: 20px;
}

.card-title {
    color: var(--white-ffffff-100, #FFF);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 125% */
}

.card-total {
    border-radius: 60px;
    border: 1px solid var(--white-ffffff-50, rgba(255, 255, 255, 0.50));
    background: var(--white-ffffff-10, rgba(255, 255, 255, 0.10));
    backdrop-filter: blur(4px);
    width: fit-content;
    margin: auto;
    margin-top: 18px;
    color: var(--white-ffffff-100, #FFF);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    padding: 5px 15px;
}

.uk-section-title {
    color: var(--black-000000100, #000);
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    /* 120% */
}

.uk-section-sums {
    color: var(--black-000000100, #000);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
}

.uk-card-large {
    height: 350px;
}

.uk-drop-grid .uk-card-large {
    height: 250px !important;
}

.desktop-show {
    display: block;
}

.card-button {
    border-radius: 10px;
    border: 1px solid var(--white-ffffff-50, rgba(255, 255, 255, 0.50));
    background: var(--black-00000050, rgba(0, 0, 0, 0.50));
    backdrop-filter: blur(13px);
    margin-bottom: 20px;
    width: calc(100% - 40px);
    color: var(--white-ffffff-100, #FFF);
    font-size: 16px;
    font-style: normal;
    line-height: 26px;
    text-align: center;
    padding: 8px;
    z-index: 999;
}

.uk-background {
    position: relative;
}

.uk-background:after {
    content: '';
    position: absolute;
    background-image: url(../img/section-bg.png);
    top: 100px;
    left: 0;
    right: 0;
    bottom: 230px;
    opacity: 0.7;
    z-index: -1;
    background-size: cover;
}

.review-header, .review {
    border-radius: 20px;
    border: 1px solid var(--black-0000006, rgba(0, 0, 0, 0.06));
    background: var(--black-0000006, rgba(0, 0, 0, 0.06));
    padding: 15px;
}

.review {
    padding: 15px;
    height:100%;
}

.review-button {
    border-radius: 10px;
    background: #4285F4;
    color: white;
    width: fit-content;
    padding: 5px 20px;
    text-transform: capitalize;

}

.uk-section-sums.small {
    font-size: 16px;
}

.call {
    border-radius: 10px;
    background: #18803C;
    color: white;
    display: flex;
    padding: 3px 30px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.f-call {
    border-radius: 10px;
    background: #18803C;
    color: white;
    padding: 10px 12px;
    width: 90%;
}

.f-whatsapp {
    width: 90%;
    border-radius: 10px;
    background: #25d366;
    color: white;
    padding: 10px 12px;
}
 

.form-wrapper {
    border-radius: 20px;
    background: var(--white-ffffff-100, #FFF);

    /* shadow/xl */
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.10), 0px 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: flex;
    padding: 10px 16px;
    align-items: center;
    gap: 16px;
    margin-top: -45px;
    z-index: 99;
    position: relative;
}

.form-banner .uk-select {

    border-radius: 10px;
    border: 1px solid var(--black-00000010, rgba(0, 0, 0, 0.10));
    background: var(--black-0000006, rgba(0, 0, 0, 0.06));
}

.banner-form-submit {
    display: flex;
    padding: 8px 0px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #1B8040;
    color: white;
    width: 100%;
    text-transform: capitalize;
}

.form-wrapper .uk-select {
    height: 60px !important;
}

.inner-title {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 125% */
}

.inner-sums {
    color: var(--black-000000100, #000);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
}

.bread {
    color: var(--black-00000050, rgba(0, 0, 0, 0.50));
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.bread span a {
    font-weight: 500;
    color: black;
}

.yacht-list {
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0px 14px 17px 0px #0000001c;
    margin-bottom: 20px !important;

}

.list-inner {
    padding: 15px;
}

.list-name {
    color: var(--black-000000100, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    /* 125% */
}

.list-sums {
    color: var(--black-000000100, #000);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.list-param {
    color: var(--black-000000100, #000);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}

.list-param span {
    color: var(--black-00000050, rgba(0, 0, 0, 0.50));
}

.uk-view {
    display: flex;
    height: 46px;
    padding: 0px 14px 0px 14px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid var(--black-00000010, rgba(0, 0, 0, 0.10));
    background: var(--black-0000006, rgba(0, 0, 0, 0.06));
    backdrop-filter: blur(5px);
    color: var(--black-000000100, #000);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
}

.uk-slideshow:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(181deg, rgba(0, 0, 0, 0.00) 62.48%, #000 100%) #d3d3d32e 50%
}

.uk-hidden {
    display: none;
}


a.visible-last .small-img {
    position: relative;
}


a.visible-last .small-img:after {
    content: 'See More';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    background: #0000007a;
    color: white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.price-wrapper {
    position: absolute;
    z-index: 2;
    bottom: -3px;
    padding: 15px;
    width: calc(100% - 30px);
}

.price {
    color: white;
    color: var(--white-ffffff-100, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 125% */
}

.price span {
    color: var(--white-ffffff-80, rgba(255, 255, 255, 0.80));
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.min {
    color: var(--white-ffffff-100, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    /* 150% */
    text-align: right
}

.main-img {
    border-radius: 20px;
    overflow: hidden
}

.main-img:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(181deg, rgba(0, 0, 0, 0.00) 62.48%, #000 100%) #d3d3d32e 50%
}

.small-img {
    border-radius: 20px;
    margin-bottom: 15px !important;
}

.small-img img {
    border-radius: 20px;
}

a:hover {
    text-decoration: none;
}

.spec {
    color: var(--black-000000100, #000);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 125% */
}

.specs {
    padding: 10px 0px;
    border-bottom: solid 1px rgba(0, 0, 0, 0.10);
}

.spec-wrapper {
    border-radius: 20px;
    border: 1px solid var(--black-0000006, rgba(0, 0, 0, 0.06));
    background: var(--black-0000006, rgba(0, 0, 0, 0.06));
    padding: 15px;
}

.spec-de {
    color: black;
}

.spec-de span {
    color: var(--black-00000050, rgba(0, 0, 0, 0.50));
    font-size: 14px;
}

.additi {
    border-radius: 10px;
    background: var(--white-ffffff-100, #FFF);

    /* shadow/sm */
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);

    color: var(--black-000000100, #000);
    font-size: 16px;
    font-style: normal;
    padding: 10px;
    margin-bottom: 10px;
}

.whatsapp {
    border-radius: 10px;
    background: var(--Whatsapp, #1CC25A);
    text-align: center;
    padding: 10px;
}

.whatsapp img {
    width: 20px;
}

.whatsapp-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.whatsapp-fab img {
    width: 26px;
    height: 26px;
    display: block;
}

.whatsapp-fab:hover {
    background: #1fb85a;
}

.mail {
    border-radius: 10px;
    border: 2px solid var(--black-0000006, rgba(0, 0, 0, 0.06));
    background: var(--black-00000010, rgba(0, 0, 0, 0.10));
    backdrop-filter: blur(5px);
    padding: 8px;
    text-align: center;
}

.mail img {
    width: 20px;
}

.phones {
    border-radius: 10px;
    background: var(--Website-Colors-Primary-Color-1, #061238);
    backdrop-filter: blur(5px);
    padding: 10px;
    text-align: center;
}

.phones img {
    width: 20px;
}

.book-now {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-radius: 10px;
    background: var(--Website-Colors-Primary-Color-1, #061238);
    color: white;
    width: 100%;
    text-transform: capitalize;
}

.book-form .uk-input {
    border-radius: 10px;
    border: 1px solid var(--Line-Color-Dashboard-Line, #E0DFDF);
    background: var(--white-ffffff-100, #FFF);

    /* shadow/sm */
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.uk-accordion-title {
    border-radius: 10px;
    border: 1px solid var(--black-0000006, rgba(0, 0, 0, 0.06));
    background: var(--black-0000006, rgba(0, 0, 0, 0.06));
    padding: 15px;
    color: var(--black-000000100, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
}

.uk-accordion-content div {
    border-radius: 10px;
    background: var(--Website-Colors-Primary-Color-1, #061238);
    padding: 15px;
    color: white;
}

.blog-img {
    border-radius: 20px;
    position: relative;
}

.blog-img .uk-padding-small {
    position: relative;
    z-index: 8;
}

.blog-img:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgb(36 66 159 / 46%) 0%, rgb(44 67 132 / 0%) 100%), #d3d3d300 50% / cover no-repeat;
    z-index: 2;
    opacity: .5;
}

.uk-white {
    color: white;
}

.bmb {
    margin-bottom: 15px;
}

.grid-blogs {
    border-radius: 20px;
    border: 1px solid var(--black-10, rgba(0, 0, 0, 0.10));
    background: var(--white-100, #FFF);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding: 15px;
}

.grid-blogs img {
    border-radius: 20px;
}

.g-blog-title {
    color: var(--black-100, #000);
    font-family: "Figtree", sans-serif !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.uk-navbar-container .uk-drop.uk-open {
    border-radius: 30px;
    border: 1px solid var(--white-ffffff-50, rgba(255, 255, 255, 0.50));
    background: var(--white-ffffff-50, rgba(255, 255, 255, 0.50));
    backdrop-filter: blur(4px);
}

.mobile-show {
    display: none;
}

.contact-button {
    border-radius: 10px;
    background: var(--black-00000010, rgba(0, 0, 0, 0.10));
    padding: 5px;
    width: fit-content;
}

.contact-sums {
    color: var(--black-000000100, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
    opacity: 0.5
}

.footer-logo img {
    width: 250px;
}

.footer-link a {
    color: black;
}

.hr {
    width: 100%;
    height: 1px;
    background: #E0DFDF;
}

.gallery {
    position: relative;

}

.home-gallery-section {
    background: linear-gradient(180deg, rgba(6, 18, 56, 0.04) 0%, rgba(6, 18, 56, 0) 100%);
}

.home-gallery-grid {
    margin-top: 22px;
}

.home-gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    height: clamp(180px, 22vw, 240px);
    box-shadow: 0 12px 30px rgba(5, 16, 46, 0.08);
    background: #0f1d47;
}

.home-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-gallery-card:hover img {
    transform: scale(1.06);
}

.home-gallery-video-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    color: #fff;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.24), transparent 45%),
        linear-gradient(145deg, #12295f 0%, #051238 100%);
}

.home-gallery-video-preview span:last-child {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.home-gallery-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-gallery-more {
    color: #061238;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-gallery-modal-dialog {
    width: min(1100px, 94vw);
    border-radius: 20px;
    padding: 24px;
    max-height: 94vh;
    max-height: 94dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home-gallery-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.home-gallery-modal-head h3 {
    font-size: 24px;
}

.home-gallery-modal-head span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
}

.home-gallery-slides {
    position: relative;
    z-index: 1;
    border-radius: 14px;
    overflow: hidden;
    background: #040916;
}

#home-gallery-slideshow .uk-position-relative {
    height: calc(100vh - 260px);
    height: calc(100dvh - 260px);
    min-height: 320px;
}

#home-gallery-slideshow .uk-position-relative .uk-slideshow-items {
    height: 100%;
    min-height: 0;
}

.home-gallery-slides li {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #040916;
}

#home-gallery-slideshow .uk-slideshow-items > li > .home-gallery-slide-image,
#home-gallery-slideshow .uk-slideshow-items > li > .home-gallery-slide-video {
    position: static !important;
    display: block;
    margin: 0 auto;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
    object-fit: contain !important;
    background: #040916;
}

.home-gallery-nav {
    position: absolute;
    z-index: 30 !important;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 999px;
    backdrop-filter: blur(2px);
}

.home-gallery-nav:hover {
    background: rgba(0, 0, 0, 0.65);
}

.home-gallery-modal .uk-dotnav > * > * {
    width: 9px;
    height: 9px;
}


.uk-background-muted {
    border-radius: 10px;
    border: 1px solid var(--black-00000010, rgba(0, 0, 0, 0.10));
    background: var(--black-0000006, rgba(0, 0, 0, 0.06));
}

.package-selector {
    position: relative;
}

.package-button {
    background-color: #eaf6ea;
    border: 2px solid #2b7a2e;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid var(--black-00000010, rgba(0, 0, 0, 0.10));
    background: var(--black-0000006, rgba(0, 0, 0, 0.06));
}

.package-button span {
    display: flex;
    align-items: center;
    gap: 8px;

    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.flatpickr-calendar {
    position: static !important;
    visibility: visible;
    opacity: 1;
    display: block;
}

/* Stil ayarları */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #2b7a2e !important;
    color: white;
    border-radius: 10px;
}

.flatpickr-day.inRange {
    background: #eaf6ea !important;
    color: #2b7a2e;
}

.flatpickr-day.today {
    border: 1px solid #2b7a2e;
}
#calendarInput {
      display: none;
    }

    .time-pickers {
      display: flex;
      gap: 10px;
      margin-top: 15px;
      justify-content: center;
    }

    .time-pickers input {
      padding: 8px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 8px;
      width: 90px;
      text-align: center;
    }
.when-selector {
    position: relative;
}

.when-button {
    background-color: #eaf6ea;
    border: 2px solid #2b7a2e;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

    border-radius: 10px;
    border: 1px solid var(--black-00000010, rgba(0, 0, 0, 0.10));
    background: var(--black-0000006, rgba(0, 0, 0, 0.06));
}

.when-button span {
    display: flex;
    align-items: center;
    gap: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;

}

.calendar-dropdown {
    position: absolute;
    top: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 100;
    padding: 20px;
}

.calendar-dropdown.show {
    display: flex;
}


.guest-selector {
    position: relative;
}

.guest-button {
    background-color: #eaf6ea;
    border: 2px solid #2b7a2e;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid var(--black-00000010, rgba(0, 0, 0, 0.10));
    background: var(--black-0000006, rgba(0, 0, 0, 0.06));
}

.dropdown {
    position: absolute;
    top: 60px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 100;
}

.dropdown.show {
    display: flex;
}

.dropdown .option {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.dropdown .option:hover {
    background-color: #f0f0f0;
}

.dropdown .option.selected {
    background-color: #eaf6ea;
    border-left: 4px solid #2b7a2e;
}

.dropdown .option input {
    accent-color: green;
    cursor: pointer;
}



.confirm-button {
    background-color: #2b7a2e;
    color: white;
    padding: 12px;
    margin: 10px;
    border-radius: 14px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
}

.confirm-button:hover {
    background-color: #256c29;
}


  .whatsapp-button { 
    background-color: #25d366; 
    display: none;
  }



  .mobile-sticky {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    padding: 14px 8px;
    z-index: 999;
    display: none;
    width: 100%;
    height: 60px;
  }

  @media (max-width: 768px) {
    .whatsapp-button, .mobile-sticky  {
      display: block;
    }
  }

  .whatsapp-button svg {
    display: block;
  }
  


  .skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e2e2e2 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-img {
    height: 240px;
    width: 100%;
}

.skeleton-text {
    height: 16px;
    margin: 8px 0;
    width: 80%;
}


#real-content {
	transition: opacity 0.3s ease;
}
.thank-you-block 
{
    border-radius: 20px;
border: 1px solid var(--black-00000010, rgba(0, 0, 0, 0.10));
background: var(--white-ffffff-100, #FFF);
}

@media (max-width:699px) {


    .mobile-sticky .call, .whatsapp-button
    {
        padding:10px 15px;
    }
    .footer-link div {
        width: 100%;
        text-align: center;
    }



    .text-white h1 {
        text-align: center;
        font-size: 36px;
        line-height: 36px;
    }

    .mobile-top {
        margin-top: 10px;
    }

    .mobile-m-top {
        margin-top: 200px;
    }

    .uk-grid-small a div, .fleet a div, .review {
        margin-bottom: 20px !important;
    }

    .review-m {
        display: none;
    }

    .book-form .uk-input, .main-img {
        margin-bottom: 15px !important;
    }

    .m-top {
        margin-top: 10px;
    }

    .call {
        padding: 10px 30px;
    }

    .desktop-show {
        display: none;
    }

    .mobile-show {
        display: block;
    }

    .js-accordion.uk-open a#uk-nav-11-title-0 {
        border-radius: 10px 10px 0px 0px;
        background: var(--Website-Colors-Primary-Color-1, #061238);
        color: white;
        padding: 10px;
    }

    #uk-nav-11-content-0 .uk-card-large, #uk-nav-11-content-0 .uk-card-main {
        border-radius: 0;
        border: solid 1px white;
    }

    #uk-nav-11-content-0 .uk-card-main:after, #uk-nav-11-content-0 .uk-card-main {
        border-radius: 0;
    }


    a.visible-last .small-img:after {
        width: 100%;
    }

    .form-inputs>div
    {
        margin-bottom:15px;
    }

    .home-gallery-modal-dialog {
        padding: 16px;
        max-height: 96vh;
        max-height: 96dvh;
    }

    #home-gallery-slideshow .uk-position-relative {
        height: calc(100vh - 220px);
        height: calc(100dvh - 220px);
        min-height: 260px;
    }

    #home-gallery-slideshow .uk-slideshow-items > li > .home-gallery-slide-image,
    #home-gallery-slideshow .uk-slideshow-items > li > .home-gallery-slide-video {
        max-height: 100% !important;
    }
}
