:root {
    --blue-green: #031632;
    --white: #fff;
    --water-spout: #a4ffff;
}

body .dark {
    --blue-green: #031632;
    --white: #fff;
    --water-spout: #63a5f7 !important;
}

html {
    color: var(--white);
    font-family: "poppinsregular";
    font-size: 18px;
    line-height: 24px;
}


body { overflow: hidden; /* background: url("/images/bg-video.gif") top/100% no-repeat;*/ background-color: var(--blue-green); height: 100vh; }
.video-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; /* Make sure the video stays in the background */ overflow: hidden; }

    .video-background video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); z-index: -1; background-color: var(--blue-green); /* fallback color */ }
 
    body.dark {
       /* background: url("/images/bg-video-light.gif") top/100% no-repeat;*/
    }
.bg-main {
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    z-index: 2;
    transition: all 0.2s ease-in-out;
}

.welcome-page {
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

.bg-main.step-2 {
   /* background: url("/images/dubai2.png") bottom/100% 100% no-repeat;*/
}

.bg-main.step-3 {
   /* background: url("/images/dubai3.png") bottom/100% 100% no-repeat;*/
}

.bg-main.step-4 {
   /* background: url("/images/dubai4.png") bottom/100% 100% no-repeat;*/
}

.bg-main.step-5 {
    /*background: url("/images/dubai5.png") bottom/100% 100% no-repeat;*/
}

/*dark mode images*/
.dark .bg-main {
}

.dark .bg-main.step-2 {
    /*background: url("/images/dubai2-2.png") bottom/100% 100% no-repeat;*/
}

.dark .bg-main.step-3 {
    /*background: url("/images/dubai3-3.png") bottom/100% 100% no-repeat;*/
}

.dark .bg-main .step-4 {
    /*background: url("/images/dubai4-4.png") bottom/100% 100% no-repeat;*/
}

.dark .bg-main.step-5 {
    /*background: url("/images/dubai5-5.png") bottom/100% 100% no-repeat;*/
}

/*body.dark { filter: invert(100%) grayscale(100%); -o-filter: invert(100%) grayscale(100%); -ms-filter: invert(100%) grayscale(100%); -moz-filter: invert(100%) grayscale(100%); -khtml-filter: invert(100%) grayscale(100%); -webkit-filter: invert(100%) grayscale(100%); }*/

body p {
    font-family: "poppinsregular";
    font-size: 18px;
    line-height: 24px;
    color: var(--white);
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

::-ms-clear {
    display: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

input,
select,
input[type="search"] {
    -webkit-appearance: none;
    border-radius: 0;
    box-shadow: none;
    font-family: "poppinsregular";
}

input:focus {
    outline: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

img {
    max-width: 100%;
}

html body :is(h1, h2, h3, h4, h5, h6) {
    font-family: "poppinsregular", Helvetica, sans-serif;
}

a {
    color: var(--water-spout);
    display: inline-block;
    font-family: "poppinsregular", Helvetica, sans-serif;
    text-decoration: none;
}

a:hover {
    color: var(--blue-green);
}
.header-links { border-radius: 25px; font-size: 20px; padding: 10px 20px; color: #fff; background-color: rgba(3, 22, 50, 0.5); }
.dark .header-links { color: var(--blue-green); background: rgba(99, 165, 247, 0.5); }
 .header-links:hover { color: #fff;  }
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    z-index: 5;
}

.quick-links {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.quick-links button {
    border: 0;
    box-shadow: none;
    background-color: rgba(3, 22, 50, 0.95);
    color: var(--white);
    font-family: "poppinsregular", Helvetica, sans-serif;
    cursor: pointer;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.dark .quick-links button {
    background-color: #fff;
}

.quick-links button:hover {
    box-shadow: 0 0 20px var(--water-spout);
}

.quick-links .asseccibility-switch {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    padding: 8px;
}

.quick-links .lng-switch {
    border-radius: 25px;
    font-size: 20px;
    padding: 10px 20px;
}

#dark-toggle {
    position: relative;
    appearance: none;
    outline: none;
    width: 50px;
    height: 25px;
    border-radius: 20px;
    box-shadow: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border: 2px solid #fff;
}

#dark-toggle::before {
    content: "";
    position: absolute;
    top: -3.5px;
    left: -4.5px;
    border-radius: inherit;
    width: 27px;
    height: 27px;
    background: #fff url(/images/moon-icon.png);
    background-repeat: no-repeat;
    transition: inherit;
    background-position: center;
}

#dark-toggle:checked::before {
    left: calc(100% - 15px);
}

.main-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 5;
}

.main {
    display: flex;
    justify-content: center;
    height: 100%;
    padding-top: 103px;
    padding-bottom: 70px;
}

.main .container {
    background-color: transparent;
    max-width: 1070px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.page-heading { color: var(--water-spout); font-size: 32px; font-family: "poppinsbold", Helvetica, sans-serif; text-transform: uppercase; padding-bottom: 50px; text-align: center; display: flex; justify-content: center; align-items: baseline; column-gap: 20px; font-weight: 700;  }

.sub-heading {
    text-align: center;
    padding-bottom: 18px;
    font-family: "poppinsregular", Helvetica, sans-serif;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 19px;
    line-height: 22px;
}

label {
    margin-bottom: 5px;
    font-family: "poppinsregular", Helvetica, sans-serif;
    display: block;
    line-height: 20px;
}

.form-row {
    display: flex;
    column-gap: 30px;
}
/* justify-content: space-between;

.main-body {
    position: relative;
}

/*  .main-body:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(5 22 55 / 70%);
        z-index: 1;
    }
    .main-body.dark:after {
        background-color: rgb(40 229 235 / 70%);
    } */
.form-group {
    width: 50%;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 11px 15px;
    border-radius: 6px;
    background: rgba(3, 22, 50, 0.95);
    border: 1px solid var(--water-spout);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    color: var(--white);
    line-height: 18px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="text"]:active,
input[type="email"]:active,
input[type="tel"]:active {
    box-shadow: 0 0 20px var(--water-spout);
    border-color: var(--water-spout);
    outline: none;
}

.input-group {
    width: 100%;
    margin-bottom: 15px;
}

.custom-radio {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(3, 22, 50, 0.95);
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid var(--water-spout);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    color: var(--white);
    cursor: pointer;
    margin-right: 15px;
    min-width: 126px;
}

.custom-radio input[type="radio"] {
    display: none;
}

.custom-radio .radio-icon {
    margin-right: 10px;
}
/*.custom-radio.selected { border: 4px solid lawngreen;}*/
/*.custom-radio.selected { box-shadow: 0 0 20px var(--water-spout); }*/

.custom-radio.selected {
    /*   box-shadow: 0 0 20px var(--water-spout);
    border: 4px solid var(--water-spout);
    transform: scale(1.05);
    transition: all 0.3s ease; */
    color: var(--water-spout);
    border: 2px solid var(--water-spout);
    box-shadow: 0 0 20px var(--water-spout);
    /*        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 2px, var(--water-spout) 0px 0px 0px 2px;*/
}

.custom-radio:hover {
    /*        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 2px, var(--water-spout) 0px 0px 0px 2px;*/
    border: 2px solid var(--water-spout);
    box-shadow: 0 0 20px var(--water-spout);
}

.custom-select {
    display: flex;
    align-items: center;
    background: rgba(3, 22, 50, 0.95);
    border-radius: 6px;
    border: 1px solid var(--water-spout);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, border 0.3s ease;
    color: var(--white);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.custom-select select {
    background: transparent;
    border: none;
    font-size: 16px;
    width: 100px;
    padding: 15px 15px;
    width: 100%;
    color: var(--white);
    font-family: "poppinsregular", Helvetica, sans-serif;
}

.custom-select select option {
    font-family: "poppinsregular", Helvetica, sans-serif;
        background: rgba(3, 22, 50, 0.95);
    color: var(--white);
}
.dark .custom-select select option { color: var(--blue-green); background: rgba(99, 165, 247, 0.95); }

.custom-select .select-icon {
    font-size: 18px;
    padding-left: 10px;
    padding-right: 10px;
    border-right: 1px solid var(--water-spout);
}

.custom-select:focus-within {
    box-shadow: 0 0 20px var(--water-spout);
    outline: none;
}

.custom-select .input-icon {
    height: 30px;
}

.custom-date-picker {
    display: flex;
    align-items: center;
    background: rgba(3, 22, 50, 0.95);
    border-radius: 6px;
    border: 1px solid var(--water-spout);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    color: var(--white);
    width: 100%;
    margin-bottom: 20px;
}

.custom-date-picker input {
    background: transparent;
    border: none;
    padding: 15px 15px;
    font-size: 16px;
    width: 100%;
    color: var(--white);
    font-family: "poppinsregular", Helvetica, sans-serif;
    color-scheme: dark;
}

.custom-date-picker .depart-icon {
    font-size: 18px;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid var(--water-spout);
}

.custom-select:focus-within {
    box-shadow: 0 0 20px var(--water-spout);
    outline: none;
}

select:focus {
    outline: none;
}

.form-handler {
    display: flex;
    justify-content: center;
    column-gap: 15px;
/*    margin-top: 30px;*/
}

.button {
    background-color: var(--water-spout);
    padding: 8px 30px;
    border-radius: 8px;
    color: var(--blue-green);
    border: 0;
    font-size: 20px;
    line-height: 22px;
    font-family: "poppinsbold", Helvetica, sans-serif;
    cursor: pointer;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    font-weight: 700;
}

.button:hover {
    box-shadow: 0 0 30px var(--water-spout);
}

.button.back {
    background-color: var(--blue-green);
    color: var(--water-spout);
}

.chat-block {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(3, 22, 50, 0.95);
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 50%;
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.chat-block:hover {
    box-shadow: 0 0 20px var(--water-spout);
}

.chat-block img {
    width: 30px;
    height: 30px;
    display: inline-block;
}

.checkboxes-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-bottom: 10px;
}

.checkbox-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.hidden-checkbox {
    display: none;
}

.box {
    width: 130px;
    height: 110px;
    background-color: rgba(3, 22, 50, 0.95);
    border: 2px solid var(--water-spout);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.icon {
    font-size: 24px;
}

.text {
    margin-top: 10px;
    font-size: 14px;
}

.dark .text { color:var(--blue-green); }
.checkbox-container input:checked + .box {
    box-shadow: 0 0 40px var(--water-spout);
    border: 4px solid var(--water-spout);
}
.dark .clock-icon stroke { fill: transparent !important; stroke: var(--blue-green); }
.checkbox-container input:not(:checked) + .box:hover { box-shadow: 0 0 40px var(--water-spout); border: 4px solid var(--water-spout); }

.img-flag {
    width: 20px;
    height: auto;
    margin-right: 10px;
}

.validation-message {
    text-align: center; /* Center the text horizontally */
    margin-top: 10px; /* Add some space between the boxes and the validation message */
}

.text-danger {
    color: red;
    font-weight: bold;
    font-size: 0.8rem; /* Increase the font size */
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.7); /* Add a soft red glow around the text */
    animation: blink 1s ease-in-out infinite; /* Add blinking effect */
    transition: all 0.3s ease; /* Smooth transition for styling */
}

@keyframes blink {
    0%, 100% {
        opacity: 1; /* Fully visible */
    }

    50% {
        opacity: 0; /* Invisible at the middle of the animation */
    }
}

.academic-row {
/*    display: flex;
    column-gap: 20px;*/
}

.academic-list {
    width: 70%;
}
.academic-list ul{
    display: flex;
    width: 100%;
    column-gap: 16px;
}

        .academic-list {
    /* max-height: 460px; */
    overflow-x: auto;
    /* padding-right: 10px; */
    display: flex;
    width: 100%;
}

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background: rgba(6, 22, 48, 0.37); }

::-webkit-scrollbar-thumb { background: var(--water-spout); }



.academic-list ul li {
    list-style: none;
    background: rgba(3, 22, 50, 0.95);
    border-radius: 6px;
    border: 1px solid var(--water-spout);
    padding: 15px;
    color: var(--water-spout);
    margin-bottom: 10px;
    white-space: nowrap;
}


.academic-list ul li p {
    margin-top: 5px;
    color: var(--water-spout);
}

.academic-num {
    display: flex;
   justify-content: center;
}

.academic-num h2 {
    color: var(--water-spout);
    font-size: 32px;
    line-height: 50px;
    text-align: center;
}
    .academic-num h2 span {
        color: var(--white);
        font-size: 70px;
    }
.dark .academic-num h2 span {
    color: var(--blue-green);
}
    /*.academic-row {
    max-height: 460px;
    overflow-y: auto;
}

.academic-row::-webkit-scrollbar {
    width: 10px;
}

.academic-row::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.academic-row::-webkit-scrollbar-thumb {
    background: var(--blue-green);
}*/
    .dark .academic-num h2 {
        color: var(--blue-green);
    }

/*dark mode theme*/
.dark input[type="text"],
.dark input[type="email"],
.dark input[type="tel"],
.dark .custom-radio,
.dark .custom-radio,
.dark custom-select,
.dark custom-date-picker,
.dark .custom-select select,
.dark .custom-date-picker {
    background: #fff;
    color: #263f58 !important;
}

.dark .depart-icon {
    height: 57px;
    background: #63a5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.dark .box {
    background-color: #fff;
    color: #263f58;
}

.dark label,
.dark .copyright-text,
.dark div {
    color: #000911 !important;
}

.dark .custom-select .select-icon {
    height: 47px;
    background: #63a5f7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dark .custom-date-picker input {
    color: #263f58;
}

.dark .radio-icon {
    /*    filter: invert(100%) grayscale(100%);
    -o-filter: invert(100%) grayscale(100%);
    -ms-filter: invert(100%) grayscale(100%);
    -moz-filter: invert(100%) grayscale(100%);
    -khtml-filter: invert(100%) grayscale(100%);
    -webkit-filter: invert(100%) grayscale(100%);*/
}

.dark .page-heading {
    color: var(--blue-green);
}

.dark .blue.svgreplace path {
    fill: var(--blue-green);
}

.dark svg.svgreplace path {
    fill: #63a5f7;
}

.dark svg.svgreplace.water-sport path {
    fill: transparent;
    stroke: #63a5f7;
}

.dark .chat-block {
    background-color: var(--water-spout);
}

.dark .button {
    background-color: #63a5f7;
    color: #fff;
}

.dark .button.back {
    background-color: #fff;
    color: var(--blue-green);
}
/*New updated css*/
/* new css */
.globe-page {
    background: url(/Images/gl-n.png) no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
}

.dark .globe-page {
    background: url(/Images/globe-n-l.jpg) no-repeat;
    background-size: cover;
}

.fav-page {
    background: url(../img/fav-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.journey-links {
    display: flex;
    justify-content: end;
    padding: 0 20px 50px 20px;
    column-gap: 15px;
    align-items: center;
}

.blog-section {
    display: flex;
    width: 100%;
}

.blog-section .col {
    width: 50%;
}

.days-description-slider {
    padding: 20px;
}

.share-links { display: flex; column-gap: 20px; align-items: center; list-style: none; z-index:2000;}
    .share-links li { position: relative; list-style: none; }
.share-links-dd { position: absolute; top: 100%; inset-inline-end: 0px; padding-top: 10px; display: none; z-index: 999; }
    .share-links-dd ul { background: var(--blue-green); padding: 8px; border-radius: 10px; }
.share-links > li:hover .share-links-dd { display: block; }
.share-links-dd ul { display: flex; gap: 5px; border: 1px solid var(--water-spout); }
.share-links-dd img,
.share-links-dd svg, .share-links-dd a { width: 25px; height: 25px; background: var(--water-spout); border-radius: 12.5px; display: flex; justify-content: center; align-items: center }
    .share-links-dd svg path { fill: var(--water-spout); }
    .share-links-dd a i{
        font-size: 16.5px;
        color: var(--blue-green)
    }
.dark .share-links-dd a {  background: var(--blue-green); } .dark .share-links-dd a i { color: var(--water-spout) }
    .near-sports h2,
    .digital-trips h3 { margin-bottom: 20px; }

.near-sports-slider,
.digital-trips-slider {
    margin-bottom: 30px;
}

.near-sport-slide .slide-img {
    border-radius: 20px;
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.near-sport-slide {
    position: relative;
}

.near-sport-slide:hover { color:#fff; }

.near-sport-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 22, 50, 0.5);
    border-radius: 20px;
}

.sport-title {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 20px;
}

.dark .sport-title { 
    color:#fff !important; }

.slick-slide {
    margin: 0 5px;
}

.slick-list {
    margin: 0 -5px;
}

.slick-slide {
    width: calc(100% / 2.5);
}

.slide-fav {
    position: absolute;
    top: 20px;
    right: 20px;
}

.make-fav.fav,
.make-fav.fav path {
    fill: var(--water-spout);
}

.trips-days {
    position: absolute;
    bottom: 0px;
    left: 0;
    padding: 15px;
    z-index: 4;
}

.dark .trips-days { color:#fff !important; }

.trips-days .num {
    font-size: 60px;
    line-height: 48px;
    margin: 0;
}

.trips-days h2 {
    margin-bottom: 8px;
    font-size: 40px;
    line-height: 45px;
    font-weight: 400;
}

.trip-slide img {
    height: 250px;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.trip-slide {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.trip-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(3, 22, 50, 0.5); commented by gul*/
}

.slick-prev,
.slick-next {
    background-color: transparent;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
}

    .slick-prev svg,
    .slick-next svg {
        fill: #fff;
    }

.slick-prev {
    left: 0px;
    bottom: -90px;
    top: auto;
}

.slick-next {
    left: 60px;
    bottom: -90px;
    top: auto;
}
.near-sports-slider .slick-prev { right: 70px; top: -40px; bottom: auto; left: auto }

.near-sports-slider .slick-next { right: 15px; top: -40px; bottom: auto; left: auto }
    /* Optional hover effect */
    .slick-prev:hover,
    .slick-next:hover { background-color: rgba(3, 22, 50, 0.7); }

.days-description-slide h2 {
    margin-bottom: 20px;
}

.days-description-slide h3 {
    margin-bottom: 10px;
}

.days-description-slide ol {
    padding-left: 29px;
    padding-right: 7px;
}

.days-description-slide ul {
    padding-left: 15px;
}

.days-description-slide ul li {
    list-style: disc;
    margin-bottom: 5px;
}

.days-description-slide ol li {
    font-size: 24px;
    line-height: 28px;
}

.days-description-slide ol {
    max-height: 500px;
    overflow-y: auto;
}

.fav-activity-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

.fav-activity-page {
    height: 100%;
    padding-top: 103px;
    padding-bottom: 70px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.text-uppercase {
    text-transform: uppercase;
}

.activities-list li {
    display: flex;
    justify-content: space-between;
}

.activity-right-col {
    display: flex;
    column-gap: 30px;
    position: relative;
}

.activity-location {
    display: flex;
    column-gap: 10px;
    align-items: baseline;
}

.activity-desc {
    display: flex;
    column-gap: 20px;
}

.activity-icon {
    background-color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--water-spout);
}

.activities-list { height: 680px; overflow-y: auto; padding-right: 15px; z-index: 99; position: relative; }

.activities-list li:not(:last-child) {
    padding-bottom: 40px;
    position: relative;
}

.activities-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 46px;
    left: 17px;
    width: 2px;
    background: #fff;
    height: 34px;
}

.run-vector {
    position: absolute;
    bottom: 10%;
    left: 95px;
    z-index: 1;
    width: 32%;
    display: block;
}

.proceed-desc {
    margin-top: 20px;
    margin-bottom: 30px;
}

.proceed {
    max-width: 700px;
    padding-bottom: 70px;
  text-align:center;
}

.far {
    color: #fff;
}

.fas {
    color: var(--water-spout);
}

.heart {
    cursor: pointer;
    font-size: 26px;
}

.dark .heart { color:var(--blue-green) }

.intro-bg {
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    background: url("/Images/Index/background.png") bottom / 100% 100% no-repeat;
    z-index: 1;
    transition: all 0.2s;
}
.intro-bg-plain { height: 100%; width: 100%; position: absolute; inset: 0; background: url("/Images/Index/background-plain.png") bottom / 100% 100% no-repeat; z-index: 1; transition: all 0.2s; }

.proceed-back {
    width: 155px;
    text-align: center;
}

.container-fluid {
    padding: 20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.dark .intro-bg {
    background: url("/Images/Index/background-1.jpeg") bottom / 100% 100% no-repeat;
}
.dark .intro-bg-plain { background: url("/Images/Index/background-plain-1.png") bottom / 100% 100% no-repeat; }

.days-description-slide ol::-webkit-scrollbar {
    width: 10px;
}

.days-description-slide ol::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.days-description-slide ol::-webkit-scrollbar-thumb {
    background: var(--blue-green);
}

.suggestions-dropdown .suggestion-item {
    color: #fff;
}
.dark .suggestions-dropdown { background: rgb(99 165 247 / 0.95); }

.welcome-main { height: 100%; width: 100%; position: absolute; inset: 0; 
               /* background: url("/images/index/background.png") bottom/100% 100% no-repeat; */
                z-index: 2; transition: all 0.2s ease-in-out; }

.dark .welcome-main {
/*    background: url("/images/index/background-1.png") bottom/100% 100% no-repeat;*/
}

.dark .share-links-dd ul { background: rgb(99 165 247 / 0.95); }
.location-popup { position: fixed; bottom: 90px; z-index: 999999; background: rgba(3, 22, 50, 0.9); padding: 20px; border: 1px solid var(--water-spout); border-radius: 20px; display: flex; column-gap: 25px; max-width: 1000px; left: 50%; width: 100%; transform: translateX(-50%); }
.dark .location-popup, .dark .academic-list ul li, .dark .academic-list ul li a, .dark .academic-list ul li p {
    background: rgba(249, 251, 255, 0.9);
    color: var(--blue-green);
}
.location-popup div{
    width: 50%;
    position: relative;
}
    .location-popup li{
        list-style: none;
        margin-bottom: 20px;
    }
.close-popup {
    position: absolute !important;
    top: 0;
    right: 0;
    cursor: pointer;
    width: auto !important;
}
.popup-text, .popup-text a{
    color: var(--water-spout) !important;
}
.dark .popup-text, .dark .popup-text a {
    color: var(--blue-green) !important;
}

.calendar-icons{
        margin: 0px;
    position: absolute;
    top: 42px;
    right: 0px;
    border: 1px solid var(--water-spout);
    padding: 5px;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    background: rgba(3, 22, 50, 0.95);
}
.dark .calendar-icons { background: rgba(99, 165, 247, 0.95); }
.dark .calendar-icons i{
    color: var(--blue-green);
}
.dark input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
}