/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/
/*------------------------------------------------
CSS STRUCTURE:
1. VARIABLES
2. GENERAL TYPOGRAPHY
font-family: 'Playfair Display', serif;
font-family: 'Roboto', sans-serif;
--------------------------------------------------------------*/
body {
    --heading-font: 'Playfair Display', serif;
    --heading-font-weight: 400;
    --heading-color: var(--bs-dark);
    --heading-line-height: 1.24;
    --swiper-theme-color: var(--bs-primary);
    --custom-easing: cubic-bezier(.17, .67, .83, .67);
    --background-color: #F3EBEB;
    --secondary-font: 'Licorice', cursive;
    /* bootstrap */
    --bs-body-font-family: "DM Sans", sans-serif;
    --bs-body-font-size: 1.25rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.7;
    --bs-body-color: #555555;
    --bs-body-color-rgb: 85, 85, 85;
    --bs-primary: #759589;
    --bs-primary-dark: #4a5c55;
    --bs-secondary: #EBF4F1;
    --bs-black: #111;
    --bs-light: #F1F1F0;
    --bs-dark: #304248;
    --bs-gray: #9aa1a7;
    --bs-gray-dark: #51565b;
    --bs-primary-rgb: 117, 149, 137;
    --bs-primary-dark-rgb: 74, 92, 85;
    --bs-secondary-rgb: 235, 244, 241;
    --bs-black-rgb: 17, 17, 17;
    --bs-light-rgb: 241, 241, 240;
    --bs-dark-rgb: 48, 66, 72;
    --bs-link-color: var(--bs-dark);
    --bs-link-color-rgb: 17, 17, 17;
    --bs-link-decoration: underline;
    --bs-link-hover-color: var(--bs-primary);
    --bs-link-hover-color-rgb: 17, 17, 17;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--heading-font);
    font-weight: var(--heading-font-weight);
    color: var(--heading-color);
    line-height: var(--heading-line-height);
    text-transform: capitalize;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-out;
    color: inherit;
}

.secondary-heading {
    color: var(--bs-primary);
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
}

.secondary-font {
    font-family: var(--secondary-font);
    font-size: 8rem;
}

.padding-large {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.padding-small {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.padding-medium {
    padding-top: 9rem;
    padding-bottom: 9rem;
}

.padding-medium-2 {
    padding-top: 14rem;
}

.padding-inside {
    padding-top: 10rem;
    padding-bottom: 5rem;
}

@media only screen and (max-width: 768px) {
    .secondary-font {
        font-size: 5rem;
    }

    .padding-large {
        padding-top: 18rem;
    }

    .padding-medium {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

    .padding-medium-2 {
        padding-top: 12rem;
    }
}

/* Dropdown */
.dropdown-menu {
    --bs-dropdown-border-radius: 0;
    --bs-dropdown-border-width: 0;
}

.dropdown-item {
    --bs-dropdown-item-padding-y: 0.25rem;
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-link-color: var(--bs-black);
    --bs-dropdown-item-border-radius: 0;
}

.dropdown-item.active,
.dropdown-item:active {
    --bs-dropdown-link-active-color: var(--bs-light);
    --bs-dropdown-link-active-bg: var(--bs-black);
}

/* list group */
.list-group-item {
    --bs-list-group-item-padding-x: 0;
    --bs-list-group-border-width: 0;
}

/* btn */
.btn {
    --bs-btn-border-radius: 0;
}

.btn-primary {
    border-radius: 0.625rem;
    text-transform: uppercase;
    transition: 0.3s ease-in;
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-primary-dark);
    --bs-btn-hover-border-color: var(--bs-primary-dark);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-secondary);
    --bs-btn-active-border-color: var(--bs-secondary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ddd;
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary {
    border-radius: 0.625rem;
    text-transform: uppercase;
    transition: 0.3s ease-in;
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--bs-primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-primary);
    --bs-gradient: none;
}

/* breadcrumb */
.breadcrumb {
    --bs-breadcrumb-item-padding-x: 1em;
}

/* text white */
.text-white {
    --heading-color: var(--bs-light);
    --bs-breadcrumb-item-active-color: var(--bs-light);
    --bs-breadcrumb-divider-color: var(--bs-light);
    --bs-link-color-rgb: var(--bs-light-rgb);
    --bs-link-hover-color-rgb: var(--bs-light-rgb);
}

.text-white .nav-link {
    --bs-nav-link-color: var(--bs-light);
    --bs-nav-link-hover-color: var(--bs-light);
    --bs-nav-link-active-color: var(--bs-light);
    --bs-navbar-active-color: var(--bs-light);
}

/* accordion */
.accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 0.1rem;
    --bs-accordion-btn-color: var(--bs-dark);
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-btn-focus-border-color: var(--bs-dark);
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-body-padding-y: 0.1rem;
    --bs-accordion-active-color: transparent;
    --bs-accordion-active-bg: transparent;
}

/* form control */
.form-control:focus {
    border-color: #ccc;
    box-shadow: 0 0 0 0.25rem rgba(200, 200, 200, .25);
}

/* dark theme */
[data-bs-theme=dark] {
    color-scheme: dark;
    --heading-color: #fff;
    --bs-link-color: #CCCCCC;
    --bs-link-hover-color: var(--bs-primary);
    --bs-link-color-rgb: 204, 204, 204;
    --bs-link-hover-color-rgb: 131, 169, 172;
    --bs-body-color: #d1d1d1;
    --bs-body-bg: #111;
    --bs-body-bg-rgb: 17, 17, 41;
}

[data-bs-theme=dark] .dropdown-item {
    --bs-dropdown-link-color: var(--bs-light);
    --bs-dropdown-link-hover-color: var(--bs-white);
}

[data-bs-theme=dark] .bg-white,
[data-bs-theme=dark] .bg-light {
    --bs-bg-opacity: 0.1;
}

.pagination {
    --bs-pagination-active-bg: var(--bs-primary);
    --bs-pagination-active-border-color: var(--bs-primary);
}

/** Search Popup
--------------------------------------------------------------*/
.search-popup {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.search-popup.is-visible {
    opacity: 1;
    visibility: visible;
    cursor: -webkit-image-set(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23FFF' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 1x, url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 2x), pointer;
    cursor: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E"), pointer;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

.search-popup-container {
    background-color: transparent;
    position: relative;
    top: 50%;
    margin: 0 auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    text-align: center;
    box-shadow: none;
    cursor: default;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.is-visible .search-popup-container {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.search-popup-form {
    position: relative;
    margin: 0 0 3em 0;
}

.search-popup-form .form-control {
    padding: 0 0 .375em 0;
    font-size: 2em;
}

.search-popup-form #search-popup-submit {
    display: none;
}

.search-popup .search-popup-close {
    display: block;
    position: absolute;
    top: 2em;
    right: 2em;
    margin: -0.5em;
    padding: 0.5em;
    line-height: 0;
}

.search-popup .search-popup-close:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.search-popup .search-popup-close i {
    display: block;
    position: relative;
    width: 1em;
    height: 1em;
    fill: rgba(0, 0, 0, 0.5);
}

.search-popup .search-popup-close:hover i {
    fill: rgba(0, 0, 0, 1);
}

.search-popup .cat-list-title {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 0.6em;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.search-popup .cat-list {
    margin: 0;
    list-style-type: none;
}

.search-popup .cat-list-item {
    display: inline-block;
    margin-bottom: 0;
    letter-spacing: 0.015em;
    font-size: 2em;
}

.search-popup .cat-list-item a {
    position: relative;
}

.search-popup .cat-list-item a::after {
    background: none repeat scroll 0 0 #fff;
    content: "";
    height: 1px;
    border-bottom: 1px solid #759589;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.search-popup .cat-list-item a:hover::after {
    height: 1px;
    opacity: 1;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}

.search-popup .cat-list-item::after {
    content: "/";
    padding: 0 5px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.5);
    vertical-align: text-top;
}

.search-popup .cat-list-item:last-child::after {
    display: none;
}

@media only screen and (max-width: 991.98px) {

    .search-popup .cat-list-item,
    .search-popup-form .form-control {
        font-size: 1.425em;
    }
}

@media only screen and (max-width: 767px) {
    .search-popup .search-popup-close {
        top: 1em;
        right: 1em;
    }
}

@media only screen and (max-width: 575px) {

    .search-popup .cat-list-item,
    .search-popup-form .form-control {
        font-size: 1.125em;
    }

    .search-popup .search-popup-close {
        top: 1em;
        right: 1em;
    }
}

.search-popup input[type="search"] {
    font-size: 24px;
    height: 60px;
    padding: 26px;
}

.search-popup .search-form button {
    top: 12px;
    right: 15px;
}

.search-popup .search-form button svg {
    height: 28px;
    width: 28px;
}

.underline-hover {
    position: relative;
    text-decoration: none;
    padding-bottom: 4px;
    color: #212529;
    /* Bootstrap's dark color */
    transition: color 0.3s ease;
}

/* Persistent light underline */
.underline-hover::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: rgba(33, 37, 41, 0.2);
    /* Light version of dark color */
    visibility: visible;
}

/* Animated underline */
.underline-hover::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.underline-hover:hover::after {
    width: 100%;
}

.underline-hover:hover {
    color: #000;
    /* Slightly darker on hover */
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    transition: width 0.1s ease;
}

/* Fullscreen Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.overlay-left,
.overlay-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: white;
    transition: transform 1s ease-in-out;
}

.overlay-left {
    left: 0;
    transform-origin: left center;
}

.overlay-right {
    right: 0;
    transform-origin: right center;
}

/* Loading Content */
.loading-content {
    text-align: center;
    z-index: 1001;
    color: #333;
}

.loading-text {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #ff0000;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Page Content (hidden during loading) */
.page-content {
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Animation Classes */
.split-open .overlay-left {
    transform: translateX(-100%) scaleX(0);
}

.split-open .overlay-right {
    transform: translateX(100%) scaleX(0);
}

.content-visible {
    opacity: 1 !important;
}

/* Preloader */
.preloader-wrapper {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    background: #fff;
}

.preloader-wrapper .preloader {
    margin: 20% auto 0;
    transform: translateZ(0);
}

.preloader:before,
.preloader:after {
    content: '';
    position: absolute;
    top: 0;
}

.preloader:before,
.preloader:after,
.preloader {
    border-radius: 50%;
    width: 2em;
    height: 2em;
    animation: animation 1.2s infinite ease-in-out;
}

.preloader {
    animation-delay: -0.16s;
}

.preloader:before {
    left: -3.5em;
    animation-delay: -0.32s;
}

.preloader:after {
    left: 3.5em;
}

@keyframes animation {

    0%,
    80%,
    100% {
        box-shadow: 0 2em 0 -1em var(--accent-color);
    }

    40% {
        box-shadow: 0 2em 0 0 var(--accent-color);
    }
}

/* ------ clock ------*/
#countdown-clock {
    font-size: 3rem;
    color: var(--bs-light);
    display: flex;
    justify-content: center;
}

#countdown-clock>.time {
    border-radius: 10px;
    padding: 20px;
    margin-right: 10px;
}

#countdown-clock .time>span {
    font-weight: 400;
}

#countdown-clock .time small {
    font-size: 1.1875rem;
    text-transform: uppercase;
    display: block;
}

@media screen and (max-width:465px) {
    #countdown-clock {
        font-size: 2rem;
    }

    #countdown-clock>.time {
        padding: 10px;
        margin-right: 2px;
    }

    #countdown-clock .time small {
        font-size: 0.8rem;
    }
}

/*--------------------------------------------------------------
Course-Details page style start
--------------------------------------------------------------*/
.nav-tabs .nav-item {
    transition: all 0.1s ease-in;
    border-radius: 0px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--bs-primary);
    background-color: transparent;
    border-color: transparent;
    border-bottom: 4px solid var(--bs-primary);
    transition: all 0.1s ease-in;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    color: var(--bs-primary);
    isolation: isolate;
    border-color: transparent;
    border-bottom: 4px solid var(--bs-primary);
    transition: all 0.1s ease-in;
}

.table {
    --bs-table-bg: var(--bs-secondary);
    border-color: var(--bs-gray);
}

/*---- video section style start ----*/
/* color box style */
div#cboxOverlay {
    opacity: 0.8 !important;
}

.video .video-player {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

iconify-icon.video-icon {
    font-size: 35px;
    color: var(--bs-light);
    border-radius: 6.25rem;
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.4s ease-in-out;
}

iconify-icon.video-icon:hover {
    font-size: 45px;
}

/* banner section */
.intro-box {
    position: relative;
    margin-top: -115px;
    z-index: 9;
}

.quote-box {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 9;
}

.highlights-box {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 9;
}

@media only screen and (max-width: 991.98px) {
    .intro-box {
        position: relative;
        margin-top: 0;
    }

    .quote-box {
        position: relative;
        bottom: 0;
        background-color: #304248;
    }

    .highlights-box {
        position: relative;
        bottom: 0;
        background-color: #304248;
    }
}

.navbar {
    border-bottom: 1px solid rgb(117 149 137 / 80%);
}

.nav-item .nav-link {
    text-align: center;
}

.dropdown-item {
    color: rgba(85, 85, 85);
}

.dropdown-item:active {
    background-color: #ebf4f1;
    color: rgba(85, 85, 85);
}

.cfeatures h2 {
    display: inline;
    background: #759589;
    -webkit-box-shadow: 10px 0 0 #759589, 0 0 0 #759589;
    box-shadow: 10px 0 0 #759589, 0 0 0 #759589
}

.cfeatures:hover h2,
.cfeatures:focus h2 {
    display: inline;
    background: #4a5c55;
    -webkit-box-shadow: 10px 0 0 #4a5c55, 0 0 0 #4a5c55;
    box-shadow: 10px 0 0 #4a5c55, 0 0 0 #4a5c55
}

.cfeatures span {
    -webkit-box-shadow: 10px 0 0 #000, 0 0 0 #000;
    box-shadow: 10px 0 0 #000, 0 0 0 #000
}

.cfeatures-property h2 {
    display: inline;
    background: #759589;
    -webkit-box-shadow: 10px 0 0 #759589, 0 0 0 #759589;
    box-shadow: 10px 0 0 #759589, 0 0 0 #759589
}

.cfeatures-property span {
    display: inline;
    background: #000;
    -webkit-box-shadow: 10px 0 0 #000, 0 0 0 #000;
    box-shadow: 10px 0 0 #000, 0 0 0 #000
}

.cfeatures {
    background-size: cover;
    background-position: center center;
    background-repeat: none;
    height: 380px;
    position: relative;
    display: block;
    overflow: hidden
}

.cfeatures .image {
    background-size: cover;
    background-position: center center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    height: 380px;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.cfeatures.no-height {
    height: auto
}

.cfeatures.no-height .image {
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.cfeatures .cfeatures-content {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.cfeatures h2 {
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #fff;
    font-size: 35px;
    margin-bottom: 0
}

.cfeatures span {
    background: #000;
    display: block;
    color: #fff;
    padding-left: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase
}

.cfeatures:hover .cfeatures-content {
    -webkit-transform: translateY(-80%);
    -ms-transform: translateY(-80%);
    transform: translateY(-80%)
}

.cfeatures:hover .image {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.cfeatures-property {
    background-size: cover;
    background-position: center center;
    background-repeat: none;
    height: 250px;
    position: relative;
    display: block;
    overflow: hidden
}

.cfeatures-property .image1 {
    background-size: cover;
    background-position: center center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    height: 250px;
    -webkit-transform: scale(1.095);
    -ms-transform: scale(1.095);
    transform: scale(1.095)
}

.cfeatures-property .cfeatures-content1 {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    position: absolute;
    top: 40%;
    left: 0;
    padding-right: 15px
}

.cfeatures-property h2 {
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #fff;
    font-size: 21px;
    margin-bottom: 0;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone
}

.cfeatures-property span {
    background: #000;
    display: block;
    color: #fff;
    padding-left: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase
}

/* Gallery */
.gallery-area {
    position: relative;
    z-index: 1
}

.gallery-area .single-gallery-area {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .gallery-area .single-gallery-area {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%
    }
}

@media only screen and (max-width:767.98px) {
    .gallery-area .single-gallery-area {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%
    }
}

@media only screen and (min-width:576px) and (max-width:767.98px) {
    .gallery-area .single-gallery-area {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%
    }
}

.gallery-area .single-gallery-area a {
    display: block;
    overflow: hidden;
    cursor: url(../images/zoom.png), auto
}

.gallery-area .single-gallery-area a img {
    -webkit-transition-duration: .8s;
    transition-duration: .8s
}

.gallery-area .single-gallery-area:hover a img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-filter: blur(5px);
    filter: blur(5px)
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
    color: #fff;
    right: 0;
    text-align: center;
    padding-right: 0;
    top: 0;
    width: 36px !important;
    height: 36px;
    background-color: #759589;
    line-height: 36px
}

.mfp-image-holder .mfp-close{
  padding: 3px !important;
  text-align: center !important;
  right: 0 !important;
}

.mfp-bottom-bar {
    margin-top: 0;
    top: auto;
    bottom: 55px;
    left: 0;
    width: 100%;
    cursor: auto;
    background-color: transparent;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center
}

.mfp-bottom-bar .mfp-title {
    line-height: normal;
    color: #fff;
    background-color: #759589;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700
}

.mfp-bottom-bar .mfp-counter {
    color: #fff;
    position: relative;
    line-height: normal;
    background-color: #759589;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700
}

.where-tabs-content .nav-link{
  font-size: 1em;
  padding: 3px 15px;
  border-radius: 0;
  border: 2px solid #759589 !important;
  margin: 0 2px;
}
.where-tabs-content .nav-link.active{
  color: #fff;
  background-color: #759589;
}

      .wrap-image {
  float: right;         
  margin: 0 0 30px 30px; 
  max-width: 50%;      
}

.single-property .container--property-images img{
    border-radius: 10px;
    }
    .single-property .section--header .fa-star {
    color: #fcbf02;
    }
    .single-property .title-rating {
    display: flex;
    align-items: center;
    gap: 10px; /* Adjust spacing between title and stars */
    }
    .single-property .title-rating h1 {
    margin: 0;
    }
    .single-property .section--content .panel {
    border-bottom: 1px solid #cbd4d5;
    margin-bottom: 26px;
    padding: 0 0 26px;
    }
    .single-property .section--content aside{
    margin-bottom: 26px;
    position: sticky;
    top: 106px;
    }
    .single-property aside {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 4px 4px 30px rgba(0, 0, 0, .11);
    }
    .single-property aside header {
    background-color: rgba(0, 32, 84, 0.7);
    border-radius: 10px 10px 0 0;
    color: #fff;
    padding: 16.25px 26px;
    }
    .single-property aside header .heading {
    color: #fff;
    }
    .single-property .btn-outline-primary{
    font-size: 18px;
    color: rgba(0, 32, 84, 1);
    border-color: rgba(0, 32, 84, 0.7) !important;
    }
    .single-property aside .aside--main .btn-primary{
    font-size: 18px;
    background-color: rgba(0, 32, 84, 0.7) !important;
    border-color: rgba(0, 32, 84, 0.7) !important;
    }
    .single-property aside .aside--main .btn-primary:focus,
    .single-property aside .aside--main .btn-primary:hover{
    background-color: #0064bc !important;
    border-color: #0064bc !important;
    }
    .single-property .map--holder{
    border-radius: 10px;
    }
    .single-property .mapid{
    border: 1px solid #dee2e6;
    }
    .section--header .fa-star{
    color: #fcbf02;
    }
    .single-property .after--heading{
    font-size: 16px;
    display: flex;
    align-items: center;
    }
    .single-property .after--heading .s--small{
    font-size: 3px;
    margin: 0 6px;
    }
    .single-property .after--heading a{
    color: rgba(102, 102, 102, 0.9);
    text-decoration: underline;
    }
    .single-property .after--heading .fa-map-marker-alt{
    color: #FF0000;
    }
    .single-property .after--heading a:focus,
    .single-property .after--heading a:hover{
    color: rgba(102, 102, 102, 1);
    text-decoration: none;
    }

    .single-property .swiper-slide img{
        max-width: 100%;
        height: auto;
    }

/* Gallery */
@media only screen and (min-width:1670px) {
    .navbar-brand img {
        max-width: 360px;
        height: auto;
        object-fit: contain;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .service-container .card .card-body {
        position: relative;
        min-height: 385px;
    }

    .service-container .card .card-body a.btn {
        position: absolute;
        bottom: 0;
    }
}

@media only screen and (max-width: 991.98px) {
    .course-content {
        flex-direction: column-reverse;
    }
}

@media only screen and (min-width:1200px) {

    .hamburger,
    .kebab-toggler,
    .navbar .submenu-button,
    .social-menu {
        display: none;
    }

    .for-mobile{
        display: none !important;
    }

    .single-property .two-col {
      column-count: 2;
      column-gap: 2rem; 
      padding-left: 0; 
    }

}

@media (min-width: 1441px) and (max-width:1669.98px) {
    .navbar-brand img {
        max-width: 280px;
        height: auto;
        object-fit: contain;
    }

    .nav-item .nav-link {
        font-size: 16px;
    }

    .nav-item .dropdown-item {
        font-size: 14px;
    }
}

@media (min-width: 1200px) and (max-width:1440.98px) {
    .navbar-brand img {
        max-width: 240px;
        height: auto;
        object-fit: contain;
    }

    .nav-item .nav-link {
        font-size: 14px;
    }

    .nav-item .dropdown-item {
        font-size: 13px;
    }
}

@media only screen and (max-width:1199.98px) {
    .nav-container {
        max-width: 100%;
    }

    .sticky-top {
        top: 0 !important;
    }

    .navbar {
        min-height: 100px;
        background-color: #304248 !important;
    }

    .navbar .navbar-brand {
        position: relative;
        height: 100%;
        margin-top: 27px !important;
    }

    .navbar .navbar-brand img {
        position: absolute;
        transform: translateY(-50%);
        top: -50%;
        max-width: 260px;
        height: auto;
        object-fit: contain;
    }

    .hamburger {
        padding: 10px 15px;
        display: inline-block;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: .15s;
        transition-timing-function: linear;
        font: inherit;
        color: inherit;
        text-transform: none;
        background-color: transparent;
        border: 0;
        margin: 0;
        overflow: visible;
        position: absolute;
        top: 48%;
        right: 30px;
        z-index: 999;
        transform: translateY(-50%);
        margin-top: 5px;
    }

    .hamburger-box {
        width: 32px;
        height: 21px;
        display: inline-block;
        position: relative;
    }

    .hamburger-inner {
        display: block;
        top: 50%;
        margin-top: -1.5px;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 32px;
        height: 3px;
        background-color: #fff;
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: .15s;
        transition-timing-function: ease;
    }

    .hamburger-inner::before,
    .hamburger-inner::after {
        content: "";
        display: block;
    }

    .hamburger-inner::before {
        top: -9px;
    }

    .hamburger-inner::after {
        bottom: -9px;
    }

    .hamburger--collapse .hamburger-inner {
        top: auto;
        bottom: 0;
        transition-duration: .13s;
        transition-delay: .13s;
        transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .hamburger--collapse .hamburger-inner::after {
        top: -18px;
        transition: top .2s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity .1s linear;
    }

    .hamburger--collapse .hamburger-inner::before {
        transition: top .12s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform .13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .hamburger--collapse.is-active .hamburger-inner {
        transform: translate3d(0, -9px, 0) rotate(-45deg);
        transition-delay: .22s;
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .hamburger--collapse.is-active .hamburger-inner::after {
        top: 0;
        opacity: 0;
        transition: top .2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity .1s .22s linear;
    }

    .hamburger--collapse.is-active .hamburger-inner::before {
        top: 0;
        transform: rotate(-90deg);
        transition: top .1s .16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform .13s .25s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .slide-out-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 20px;
        padding-right: 0 !important;
        background-color: #304248;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        border: 0;
        transform: translateY(100%) perspective(1px);
        transition: height .8s ease-in-out;
        overflow-y: scroll;
        border: 0;
        border-radius: 0;
        text-align: center;
    }

    .slide-out-nav.nav-open {
        height: calc(100% - 100px);
        opacity: 1;
        transform: translateY(0) perspective(1px);
        visibility: visible;
        opacity: 1;
        padding-top: 30px !important;
        display: block !important;
    }

    .slide-out-nav .navbar-nav {
        width: 100%;
        padding-top: 30px;
    }

    .slide-out-nav .navbar-nav li {
        display: block;
        text-align: center;
        margin: 0;
    }

    .navbar-nav .nav-link {
        color: #fff;
    }

    .navbar-nav .nav-item .nav-link:before {
        position: relative;
        height: 1px;
        background-color: #fff;
        width: 50%;
    }

    .navbar-nav .nav-link:first-child i {
        color: #759589;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link:active {
        color: #fff;
    }

    .slide-out-nav.fadeInDown {
        -webkit-animation-name: unset;
        animation-name: unset;
    }

    .navbar-nav .dropdown-menu {
        position: relative !important;
        display: block;
        text-align: center;
        background-color: #759589;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .navbar-nav .dropdown-menu li a,
    .navbar-nav .dropdown-menu li a:hover,
    .navbar-nav .dropdown-menu li a:focus,
    .navbar-nav .dropdown-menu li a:active {
        color: #fff;
        text-transform: capitalize;
    }

    .social-menu-wrap {
        margin-bottom: 60px;
        background-color: transparent;
        box-shadow: unset;
    }

    .social-menu {
        color: #ffffff;
        background: transparent;
        display: none;
        text-align: center;
        z-index: 9;
        padding-top: 10px;
    }

    .social-menu.menu-on {
        display: block;
        position: fixed;
        width: 100%;
        left: 0;
        top: 105px;
    }

    .social-menu li {
        position: relative;
        padding: 10px 40px;
    }

    .social-menu .contact-info {
        margin-bottom: 0;
    }

    .social-menu .contact-info strong {
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
    }

    .social-menu .contact-info span {
        color: #759589;
        text-transform: lowercase;
    }

    .social-menu .icon {
        color: #759589;
    }

    .socmedia {
        margin-top: 15px;
        background-color: transparent;
    }

    .socmedia .social-info {
        padding: 8px 15px;
    }

    .socmedia .social-info a {
        color: #ffffff;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        line-height: 14px;
        text-align: center;
        display: inline-block;
        background-color: #759589;
    }

    .socmedia .social-info a i {
        position: relative;
        top: 3px;
        left: -1px;
    }

    .banner-section {
        padding-top: 100px !important;
    }

    .wrap-image {
      float: none;         
      margin: auto; 
      max-width: 100%;      
    }

    .navbar .submenu-button {
        color: #fff;
        display: inline-block;
        width: auto;
        height: 50px;
        line-height: 50px;
        text-align: center;
        z-index: 10000;
        position: absolute;
        top: 2px;
        right: 15px;
        background-color: var(--bs-nav-link-color);
        padding: 2px 12px;
    }

    .navbar .dropdown-toggle::after{
        display: none;
    }

    #filming .highlights-box{
        position: relative;
    }

    .for-desktop{
        display: none !important;
    }

    .single-property .title-rating{
        display: block;
    }

}

@media (max-width: 768.98px) {

    .carousel-control-next,
    .carousel-control-prev {
        visibility: hidden;
        opacity: 0;
    }

    .banner-section {
        padding-top: 80px !important;
    }

    .banner-inside {
        padding-top: 80px !important;
    }
}

@media (max-width: 767.89px) {
    .navbar {
        min-height: 80px;
    }

    .slide-out-nav.nav-open {
        height: calc(100% - 80px);
    }

    .banner-section {}

    footer img {
        max-width: 80%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 380px) {
    .navbar .navbar-brand img {
        max-width: 210px;
    }
}

@media (max-width: 360px) {
    .navbar .navbar-brand img {
        max-width: 185px;
    }
}

/*MAP*/
#mapid {
    width: 100%;
    height: 600px;
    position: relative;
    z-index: 1;
    outline: none;
}

#mapid .leaflet-popup-content {
    width: 220px;
    text-align: center;
}

#mapid .leaflet-popup-content .map-property-heading {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--bs-dark);
    line-height: 1.24;
    margin-bottom: 6px;
}

img.map-property {
    max-width: 100%;
    object-fit: contain;
    height: auto;
    margin-bottom: 12px;
}

@media (max-width: 767.98px) {
    #mapid {
        height: 520px;
    }
}

@media (max-width: 575px) {
    #mapid {
        height: 420px;
    }
}

@media (max-width: 480px) {
    #mapid {
        height: 380px;
    }
}

@media (max-width: 414.98px) {
    #mapid {
        height: 370px;
    }
}

@media (max-width: 380px) {
    #mapid {
        height: 360px;
    }
}