:root {
    --primary-color: #29489A;
    --gray-color: #0B1215; /* ex : 6D6D6D*/
    --white-color: white;
    --green-btn-color: #017864;
    --border-color: #EFEFEF;
    --border-mainbook-color: #D7D7D9;
    --text-gray-color: #0B1215; /* ex : 6D6D6D*/
    --danger-color: #e74c3c;
    --success-color: #2ecc71;
    --btn-red-color: #CD4616;
    --room-separator: #d5d5d5;

    --booking-form-dark: #4B5056;

    /* Booking main form */
    --radio-backg: #ADADAD;
    --star-color: #E49431;
    --orange-color: #ffba00;

    --background-gray: #F5F6FA;

    --footer-color: #2E3881;


    /* Box shadow */
    --box-shadow: 2px 1px 10px 0px rgb(0 0 0 / 10%);
}

/************************************************************************
        GLOBAL STYLES
************************************************************************/
.container {
    max-width: 140rem;
    margin: auto;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

h1 {
    font-weight: 600;
    font-size: 3rem;
    text-transform: uppercase;
}


h2, h3, h4, h5, h6 {
    font-weight: 600;
    color:var(--primary-color);
    text-transform: capitalize;
}

body {
    font-size: 1.6rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.fa-angle-down:before{
    color:var(--white-color);
}
.fa-angle-up:before{
    color:var(--white-color);
}
/* .active-link{
    border-bottom: solid .2rem var(--white-color);
} */

button {
    background:transparent;
    border:none;
    cursor:pointer;
    outline:none;
}

button:focus {
    outline:none;
    border:none;
    box-shadow:none;
}

select {
    border: 1px solid var(--border-color);
    outline:none;
    background: var(--white-color);
    padding:.5rem 1.5rem;
}

select:focus {
    outline:none;
}

option {
    box-shadow: none;
    border: none;
    -webkit-appearance: none;
  }
  
  option:hover {
    box-shadow: none;
    border: none;
    -webkit-appearance: none;
  }

.section-padding{
    padding: 4rem 6.5rem
}

/* Flex */
.d-flex {
    display:flex;
}

.align-items-center{
    align-items: center;
}

.justify-content-space-around {
    justify-content: space-around;
}

.justify-content-between {
    justify-content: space-between;
}

.position-relative{
    position: relative;
}

/* Colors */
.text-white {
    color:white;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mr-1 {
    margin-right: .5rem;
}
.mr-2 {
    margin-right: 1rem;
}
.mr-3 {
    margin-right: 1.5rem;
}


.ml-1 {
    margin-left: .5rem;
}
.ml-2 {
    margin-left: 1rem;
}
.ml-3 {
    margin-left: 1.5rem;
}

.mb-1 {
    margin-bottom: .5rem;
}
.mb-2 {
    margin-bottom: 1rem;
}
.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-1 {
    margin-top: .5rem;
}
.mt-2 {
    margin-top: 1rem;
}
.mt-3 {
    margin-top: 1.5rem;
}

.p-1 {
    padding:.5rem;
}
.p-2 {
    padding:1rem !important;
}
.p-1 {
    padding:1.5rem;
}
.font-weight-bold {
    font-weight: 600;
}

.community-nav-links{
    display: flex !important;
    justify-content: space-around !important;
    color: var(--text-gray-color);
}

.community-nav-links h4 {
    display:inline-block;
    width: fit-content;
    position: relative;
}
.community-nav-links h4:after {
    content: '';
    width: 0;
    height: .2rem;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 300ms ease-out;
    background: var(--primary-color);
}

.community-nav-links h4:hover:after {
    width: 100%;
}


.community-nav-links h4 a{
    color: var(--text-gray-color) !important;
    font-weight: 400 !important;
}

.community-nav-links > a{
    color: var(--text-gray-color) !important;
}

.background-overlay {
    display: none !important;
}

.booking-main_heading h1,
.booking-main_heading p,
.booking-main_heading a {
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.popup-box {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6655;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, .8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity:0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    transform:scale(0)
}

.popup-box .body-content {
    width: 100%;
    max-width: 100rem;
    background: white;
    padding: 3rem;
    overflow-y: auto;
}

#modal_google .body-content {
    max-width: 100%;
}

.popup-box-show {
    transform:scale(1);
    opacity:1;
    visibility: visible;
    
}


/* ---------------------------------- MODAL --------------------------------- */
.modal-w {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-w-main {
    background-color: #fefefe;
    margin: auto;
    top: 10%;
    padding: 2rem;
    border: 1px solid var(--gray-color);
    width: 70rem;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 13px;
    box-shadow: 2px 3px 5px rgb(0 0 0 / 25%);
}

.modal-w-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
  
.modal-w-close {
    color: var(--gray-lightest);
    align-self: flex-end !important;
    font-size: 28px;
    font-weight: bold;
}
  
.modal-w-close:hover,
.modal-w-close:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {

    /* MODAL */
    .modal-w-main {
        width: 90%;
    }
}    


.scroll-top {
    position: fixed;
    bottom: 5rem;
    left: 6.5rem;
    z-index: 555;
    text-align: center;
    vertical-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 1px solid var(--room-separator);
    background: var(--orange-color);
    cursor: pointer;
    padding:1rem;
    opacity: 0;
}
.scroll-top div {
    margin-left: 1rem;
    font-size: 1.4rem;
}


/* Custom checkbox, radio ... */
.checkbox-group {
    display: block;
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 2.5rem;
    cursor: pointer;
    font-size: 2.2rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-group.lg {
    transform: scale(1.2);
}

.checkbox-group.sm {
    transform: scale(0.8);
}

/* Hide the browser's default checkbox */
.checkbox-group input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 2.5rem;
    width: 2.5rem;
    background-color: var(--border-color);
    border: 1px solid var(--room-separator);
}

/* On mouse-over, add a grey background color */
.checkbox-group:hover input ~ .checkbox {
    background-color: var(--text-gray-color);
}

/* When the checkbox is checked, add a blue background */
.checkbox-group input:checked ~ .checkbox {
background-color: var(--primary-color);
}

/* Create the checkbox/indicator (hidden when not checked) */
.checkbox:after {
content: "";
position: absolute;
display: none;
}

/* Show the checkbox when checked */
.checkbox-group input:checked ~ .checkbox:after {
    display: block;
}

/* Style the checkbox/indicator */
.checkbox-group .checkbox:after {
    left: .8rem;
    top: .4rem;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.btn {
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    border: none;
    font-size: 1.6rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-danger {
    background: var(--danger-color);
    color: var(--white-color);
}


#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 66666;
}

/******************************************/


.header-icons {
    justify-content:end; 
}
.header-icons i {
    font-size: 2.5rem;
}

#header {
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6.5rem;
    background:white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1001;
}

#header picture, #header > div {
    flex-basis: 15%;
}

#header picture img {
    max-width: 20rem;
}

#header ul {
    list-style: none;
}



#header > ul > li > a {
    font-size: 2rem;
    text-transform: uppercase;
    display: inline-block;
    padding:2rem 1rem 1.5rem 1rem;
    border-bottom: 3px solid transparent;
}







@media (min-width: 992px){
    #header>ul>li:hover .nav-container {
        display:block;
    }
}




#header ul li .nav-container > div > div {
    flex-basis: 20%;
}

#header ul li .nav-container > div > div > ul li a,  .comunity-links {
    color: var(--text-gray-color);
    margin-bottom: .5rem;
    display:inline-block;
    position: relative;
}

@media (max-width: 767px) {
    /* Override the bullet point for mobile - use the styled version from above */
    #header ul li .nav-container > div > div > ul li a::before {
        content: '•';
        font-size: 1.8rem;
        line-height: 1;
        margin-right: 0;
        vertical-align: middle;
        position: absolute;
        left: 0;
        color: rgba(255, 255, 255, 0.6);
    }
    
    /* Smaller font sizes for mobile phones */
    #header > ul > li > div > a {
        font-size: 1.4rem;
        padding: 0.8rem 0;
        padding-left: 1.8rem;
        margin-left: 0.5rem;
    }
    
    .nav-container h4 a {
        font-size: 1.4rem;
    }
    
    .nav-container > div > div > ul li a {
        font-size: 1.1rem;
        padding-left: 1.1rem;
    }
    
    #header > ul > li > div {
        padding: 0.7rem 1.5rem;
    }
    
    .nav-container > div > div {
        padding: 0.3rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    .collapse-btn {
        font-size: 2rem !important;
    }
    
    .nav-container h4 button {
        font-size: 1.6rem !important;
    }
	body h1{
		font-size: 2.2rem !important;
	}
	body h2{
		font-size: 1.8rem !important;
	}
	body {
		font-size: 1.6rem !important;
	}
	body p{
		font-size: 1.4rem !important;
	}
	body .booking-main {
    	max-height: 22rem !important;
	}
	body .booking-main {
    	min-height: 22rem !important;
	}
	body .booking-main p{
    	text-align: center !important;
	}
	body .video-section{
		height: 25rem;
	}
	body .video-section i{
		margin-bottom: 0.5rem;
	}
	body .video-section p{
		padding: 1rem;
	}
	
}

#header ul li .nav-container > div > div > ul li a:after, .comunity-links:after {
    content: '';
    width: 0;
    height: .2rem;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 300ms ease-out;
    background: var(--primary-color);
}

#header ul li .nav-container > div > div > ul li:hover a:after,  .comunity-links:hover:after{
    width: 100%;
}

.active-1 {
    background:var(--primary-color);
    color:var(--white-color);
}

#header ul li .nav-container > div > div > ul li a.active-2:after{
    width: 100%;
}
#header > ul > li > a, #header > ul > li > div > a {
    display:block;
    font-size: 1.8rem;
    text-transform: uppercase;
}

#header > div {
    text-align: right;
}
#header > div button {
    font-size: 3rem;
    color:var(--primary-color);
    position: relative;
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu{
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 2rem;
    height: 3px;
    border-radius: 3px;
    background-color: var(--primary-color);
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: .5s;
    left:0;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: -0.2rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: block;
}

#check:checked ~ .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}


#check:checked ~ #header > ul {
    display:block;
}




.log-btn {
    position: relative;
}

.log-btn > div {
    position: absolute;
    font-size: 1.4rem;
    width: 20rem;
    right: 0;
    z-index: 10001;
    background: white;
    
    height: 0;
    overflow: hidden;
    transition: height .2s ease-in-out;
    text-align: left;
    border-radius: 0 0 1rem 1rem;
    box-shadow: var(--box-shadow);
}

.log-btn:hover > div {
    padding: 2rem 1.5rem;
    height: auto;
    border: 1px solid var(--border-color);
}

.log-btn > div header {
    color: black;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.log-btn > div > p {
    color: var(--text-gray-color);
    margin-bottom: 1.5rem;
}
.log-btn > div > div:nth-of-type(1) {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}
.log-btn > div > div:nth-of-type(1) a {
    display:block;
    margin-bottom: 1rem;
}

.log-btn > div > div:nth-of-type(2) a{
    flex-basis: 50%;
    text-align: center;
    color:var(--primary-color);
    padding:1rem 2rem;
    border-radius: .5rem;
}
.log-btn > div > div:nth-of-type(2) a:nth-of-type(1){
    background:var(--primary-color);
    color:var(--white-color);
}

#shop_cart {
    position: relative;
}

#shop_cart > div {
    position: absolute;
    right: 0;
    width: 30rem;
    z-index: 10001;
    background: white;
    border-radius:  0 0 1rem 1rem;
    box-shadow:var(--box-shadow);
    border:1px solid var(--border-color);
    padding:1rem;

    display:none;
}
#shop_cart.show > div {
    display:block;
}

#shop_cart > div header {
    color:var(--text-gray-color);
    padding: 1.5rem 0;
    align-items: center;
    font-size: 1.6rem;
    border-bottom: 1px solid var(--border-color);
}
#shop_cart > div header i {
    color:var(--text-gray-color);
    font-size:1.4rem;
}

#shop_cart > div .quick-links a {
    flex-grow: 1;
    padding:.5rem;
    background:var(--border-color);
    color:var(--text-gray-color);
}

#shop_cart > div .quick-links a{
    border-radius: .5rem ;
}

/* Breadcrumbs */

.breadcrumbs {
    font-weight: 400;
    color: var(--primary-color);
    list-style:none;
    display: flex;

}

.breadcrumbs ul {
    list-style-type: none;
    color:var(--primary-color);
}


.breadcrumbs li {
    font-size: 1.4rem;
    margin-right: .5rem;
    position: relative;
}

.breadcrumbs li:not(:first-of-type):before {
    content: '/';
    margin-right: .5rem;
}



/*
.breadcrumbs li:not(:last-of-type) {
    margin-right: 1rem;
    position: relative;
}
.breadcrumbs li:not(:first-of-type)  {
    margin: 0 .5rem;
    font-size: 1.4rem;
}
*/

/* Breadcrumbs END */

#modal_error .error-content {
    text-align: center;
}
#modal_error .error-content p {
    font-size: 1.8rem;
    color:red;
}
#modal_error .error-content button {
    padding: 1rem 2rem;
    border-radius: .5rem;
    background-color: var(--primary-color);
    color: var(--white-color)
}



@media (max-width: 991px) {

    #header {
        padding: 1rem 1.5rem;
        width: 100%;
    }
    .acc-container{
        padding: 1rem 1.5rem !important;
    }
    #header picture {
        flex-basis: 10rem;
    }
    #header > ul {
        position: fixed;
        right: 0;
        top: 6.6rem;
        width: 85%;
        height: calc(100% - 6.6rem);
        display: block;
        transform: translateX(100%);
        background:#2E3881;
        transition: transform 0.3s ease-in-out;
        z-index: 1500;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Custom scrollbar for mobile nav */
    #header > ul::-webkit-scrollbar {
        width: 6px;
    }
    
    #header > ul::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }
    
    #header > ul::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }
    
    #header > ul::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    #header > div {
        display:flex;
        justify-content: space-between;
    }

    #header ul li:not(:last-of-type) {
        margin-right: 0;
    }
    #header > ul > li > div {
        padding:0.4rem 2rem;
    }
    
    /* Parent menu items - main navigation */
    #header > ul > li > div > a {
        font-size: 1.6rem;
        font-weight: 600;
        color: var(--white-color);
        text-transform: uppercase;
        padding: 0.9rem 0;
        display: block;
        border-left: 3px solid transparent;
        padding-left: 2rem;
        margin-left: 0.5rem;
        transition: all 0.2s ease;
    }
    
    #header > ul > li > div > a:hover {
        border-left-color: var(--white-color);
        padding-left: 2.3rem;
    }
    
    /* Child menu items - category headers (h4) */
    .nav-container h4 {
        margin-bottom: 0.8rem;
        position: relative;
        padding-left: 1rem;
        border-left: 2px solid rgba(255, 255, 255, 0.3);
        margin-left: 0.5rem;
    }
    
    .nav-container h4 a {
        font-weight: 500;
        color: var(--white-color);
        font-size: 1.4rem;
        text-transform: capitalize;
    }
    
    /* Grandchild menu items - sub-menu links (ul li a) */
    .nav-container > div > div > ul {
        margin-left: 1.5rem;
        margin-top: 0.5rem;
        padding-left: 1rem;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-container > div > div > ul li {
        margin-bottom: 0.6rem;
        position: relative;
    }
    
    .nav-container > div > div > ul li a {
        font-size: 1.2rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.9);
        padding-left: 1.5rem;
        position: relative;
        display: inline-block;
        transition: all 0.2s ease;
    }
    
    .nav-container > div > div > ul li a::before {
        content: '•';
        position: absolute;
        left: 0;
        color: rgba(255, 255, 255, 0.6);
        font-size: 1rem;
        transition: all 0.2s ease;
    }
    
    .nav-container > div > div > ul li a:hover {
        color: var(--white-color);
        padding-left: 2rem;
    }
    
    .nav-container > div > div > ul li a:hover::before {
        color: var(--white-color);
        left: 0.3rem;
    }
    
    /* Smooth button icon transitions */
    .collapse-btn,
    .nav-container h4 button {
        transition: transform 0.3s ease, color 0.2s ease;
        outline: none;
        border: none;
    }
    
    .collapse-btn:focus,
    .nav-container h4 button:focus {
        outline: none;
        border: none;
        box-shadow: none;
    }
    
    .collapse-btn:active,
    .nav-container h4 button:active {
        transform: scale(0.95);
        outline: none;
        border: none;
    }
    
    /* Active state for parent menu items */
    #header > ul > li > div > a.active-link {
        border-left-color: var(--white-color);
        font-weight: 700;
        padding-left: 1.5rem;
    }

    .nav-container, 
    .nav-container ul{
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out, opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
    }

    .nav-container.active, 
    .nav-container ul.active{
        opacity: 1;
        visibility: visible;
        max-height: 2000px; /* Large enough to accommodate content */
        transition: all 0.3s ease-in-out, opacity 0.3s ease-in-out, max-height 0.4s ease-in-out;
    }
    #header ul li .nav-container > div > div{
        padding: .4rem 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    /* Visual separator between parent sections */
    #header ul li .nav-container > div > div:not(:last-child) {
        /* border-bottom: 1px solid white; */
        padding-bottom: 0.6rem;
    }

    /* Additional styling already added above in previous replacement */

    .img-advertising {
        display: none;
    }
    #header > ul {
        padding:  3rem 0;
    }
   
}

@media (min-width: 768px) {
    #mobile_ham_nav {
        display:none;
    }
}

@media (min-width: 992px) {

    #header > ul > li:hover > a {
        border-bottom-color: var(--primary-color);
    }
    #header > ul > li > div span {
        display:none;
    }
    #header ul li .nav-container {
        position: fixed;
        left: 0;
        top: 7rem;
        width: 100%;
        display: none;
        z-index: 555;
    }
    #header ul li .nav-container > div {
        max-width: 130rem;
        margin:auto;
        display: flex;
        justify-content: center;
        padding:2.5rem;
        background:var(--white-color);
        box-shadow: var(--box-shadow);
        border:1px solid var(--border-color);
    }
    #header > ul > li > a, #header > ul > li > div > a {
        padding: 2rem 0;
        text-transform: uppercase;
        margin: 0 4rem;
        
    }
    #header > ul > li > div > a {
        border-bottom: 3.5px solid transparent;
    }
    #header > ul > li:hover > div > a {
        border-bottom-color: var(--primary-color);
    }

    #header > ul > li > div button {
        display:none;
    }
    #header > ul {
        display:flex;
        align-items: center;
        
    }
    #header ul li .nav-container > div > div h4 {
        font-size: 1.8rem;
        margin-top: 2rem;
        font-weight: 500;
        margin-bottom: 1rem;
        color:var(--booking-form-dark)
    }
    #header ul li .nav-container > div > div:not(:last-of-type){
        margin-right: 2rem;
    }

    #header ul li .nav-container > div > div h4  a{
        display:inline-block;
        border-bottom: 1px solid var(--primary-color);
    }


    
}

.go-back-link {
    margin: 4rem 0;
}

.go-back-link button {
    font-size: 1.8rem;
}

.logged-in ul li {
    margin: 1rem 0;
    font-size: 1.4rem;
}
.logged-in h4 {
    padding-bottom: 1rem;
    font-size: 1.6rem;
}

.avatar-img {
    border-radius: 50%;
    object-fit: cover;
}

/* Styles for landscape mode */
@media only screen and (orientation: landscape) {
    .log-btn > div header {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    .log-btn > div > p {
      margin-bottom: 1rem;
    }
    .log-btn > div {
      font-size: 1.2rem;
    }
    .log-btn:hover > div {
      padding: 1rem 1.5rem;
    }
    }
    
@media screen and (max-width: 1199px) {
	    #header > ul {
			gap:30px;
			overflow: auto;	
    }
    #header > ul > li > a, #header > ul > li > div > a {
        color:var(--white-color);
        margin: 0 0rem;
    }
}

	@media screen and (max-width: 991px) {
	 #mobile_ham_nav {
        display: block;
    }
}
@media screen and (max-width: 370px) {
    #shop_cart > div {
        right: -20px;
        top: 50px;
    }
}

@media screen and (max-width: 768px){
    #header picture img {
        max-width: 14rem;
    }
    
    /* Additional responsive adjustments for very small screens */
    #header > ul {
        width: 80%;
    }
    
    #header > ul > li > div > a {
        font-size: 1.8rem;
        padding: 0.7rem 0;
        padding-left: 1.8rem;
        margin-left: 0.5rem;
        border-left:2px solid rgba(255, 255, 255, 0.3);
    }
    
    /* Active state for parent menu items in mobile view */
    #header > ul > li > div > a.active-link {
        border-left-color: var(--white-color);
        font-weight: 700;
    }
    
    .nav-container h4 a {
        font-size: 1.5rem;
    }
    
    .nav-container > div > div > ul li a {
        font-size: 1.3rem;
    }

    #header ul li .nav-container > div > div > ul li a,  .comunity-links {
        color: var(--white-color);
        margin-bottom: .5rem;
        margin-left: 1rem;
        display:inline-block;
        position: relative;
        font-size: 1.3rem;

    }

    #header ul li .nav-container > div > div > ul li a:after, .comunity-links:after {
        content: '';
        width: 0;
        height: .2rem;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: all 300ms ease-out;
        background: var(--white-color);
    }
}


.advertising-banner{
    width:250px;
    height: 140px;
    overflow: hidden;
    background-color: #ffffff;
}

/* Hide short text on larger screens */
.full-text {
    display: inline;
}
.short-text {
    display: none;
}
.closeDiv{
    border-radius: 2rem !important;
    font-size: 1.4rem !important;
}
/* On small screens, hide full and show short */
@media (max-width: 767px) {
    .breadcrumbs li{
        font-size: 1.2rem !important;
    }
    .full-text {
        display: none;
    }
    .short-text {
        display: inline;
    }
    .closeDiv{
    border-radius: 2rem !important;
    font-size: 1.2rem !important;
    }

    .community-nav-links{
        display: flex !important;
        flex-direction: column !important;
        color: var(--white-color);
        margin-left: 2rem !important;
    }


    .community-nav-links h4{
        margin-bottom: 2rem !important;
    }

    .community-nav-links h4 a{
        color: var(--white-color) !important;
        font-weight: 400 !important;
    }

    #header > ul > li:hover > div > a {
        border-bottom-color: var(--white-color);
    }
    #header > ul > li:hover > div > a {
        border-bottom-color: var(--white-color);
    }
    #header > ul > li:hover > a {
        border-bottom-color: var(--white-color);
    }

    .community-nav-links h4:after {
        content: '';
        width: 0;
        height: .2rem;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: all 300ms ease-out;
        background: var(--white-color);
    }
    
    .community-nav-links h4:hover:after {
        width: 100%;
    }

}

