@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: "HELVETICA-BOLD";
    src: url('../fonts/HELVETICA-BOLD.woff') format('woff'),
    url('../fonts/HELVETICA-BOLD.woff2') format('woff2'),
    url('../fonts/HELVETICA-BOLD.svg#HELVETICA-BOLD') format('svg'),
    url('../fonts/HELVETICA-BOLD.eot'),
    url('../fonts/HELVETICA-BOLD.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HELVETICA-BOLD.ttf') format('truetype');
}

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}
:root {
    --size-sm: 720px;
    --size-md: 960px;
    --size-lg: 1080px;
    --size-xl: 1280px;
    --bs-domine: "Domine", serif;
    --bs-montserrat: "Montserrat", sans-serif;
    --text-color: #000;
    --golden-color: #a98e67;
    --paragraph-color: #444;
    --dark-grey: #141414;
    --soft-grey: #f5f5f5;
    --soft-white: #cdcdcd;
    --bs-fs48: 48px;
    --bs-fs40: 40px;
    --bs-fs35: 35px;
    --bs-fs30: 30px;
    --bs-fs24: 24px;
    --bs-fs22: 22px;
    --bs-fs21: 21px;
    --bs-fs20: 20px;
    --bs-fs19: 19px;
    --bs-fs18: 18px;
    --bs-fs16: 16px;
    --bs-fs14: 14px;
    --bs-fs13: 13px;
    --bs-fs12: 12px;
    --bs-lineheight: 1.15;
}
body{
    font-family: var(--bs-montserrat);
    font-weight: 400;
    color: var(--paragraph-color);
    font-size: var(--bs-fs16);
    line-height: 1.5;
}
h1, h2, h3 {
    /*font-family: var(--bs-domine);*/
    font-family: inherit;
    font-weight: 700;
    color: inherit;
}
h1 {
    font-size: var(--bs-fs48);
    line-height: 1.10;
    letter-spacing: 2px;
}
h2 {
    font-size: var(--bs-fs48);
    letter-spacing: 2px;
}
h3{
    font-size: var(--bs-fs24);
}
.fs_40 {
    font-size: var(--bs-fs40);
}
p{
    font-size: inherit;
    color: inherit;
}
a{
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
}
del {
    text-decoration: line-through;
}
ul.no_disc {
    list-style: none;
    padding-left: 0;
}
.py_3{
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.mt_3 {
    margin-top: 4rem;
}
.mb_3 {
    margin-bottom: 4rem;
}
.wi_full{
    width: 100%;
    display: inline-block;
}
.text-black {
    color: var(--text-color);
}
.text-golden {
	color: var(--golden-color);
}
.btn_block{
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}
.button {
    width: auto;
    display: inline-block !important;
    font-family: var(--bs-montserrat);
    font-weight: 500 !important;
    font-size: var(--bs-fs14) !important;
    color: inherit;
    border-radius: 0 !important;
    padding: 15px 35px;
    letter-spacing: 3px;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    box-shadow: none;
    border: inherit;
    background: transparent;
    text-decoration: none !important;
    outline: none !important;
}
.golden_btn, .border_btn:hover {
    color: #fff !important;
    background-color: var(--golden-color) !important;
}
.black_btn, .golden_btn:hover {
	color: #fff !important;
	background-color: var(--dark-grey) !important;
}
.border_btn {
    color: var(--golden-color) !important;
    background-color: #fff;
    border: 1px solid var(--golden-color) !important;
    min-width: 300px;
    font-weight: 600 !important;
}
form {
    .form-group {
        margin-bottom: 1.5rem;
        label {
            font-weight: 500;
            margin-bottom: 5px;
            font-size: var(--bs-fs16);
        }
    }
    .form-control {
        width: 100%;
        height: 50px;
        border-radius: 5px;
        outline: none !important;
        box-shadow: none !important;
        border: 1px solid #E4E4E4 !important;
        padding: 7px 15px;
        background: #fff;
        color: #000000;
        font-weight: 400;
        font-size: var(--bs-fs16);
    }
    textarea {
        height: auto !important;
    }
}
.sub__title {
    color: var(--bs-red);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.v-center {
    align-items: center;
}
.soft_grey_bg {
    background-color: var(--soft-grey);
}
.max-width-container {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
#header {
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    padding: 0.75rem 0;
    background: #fff;
    border-bottom: 2px solid var(--golden-color);
    &.sticky {
        box-shadow: 0 2px 10px #000;
    }
    .navbar-brand {
        height: 100%;
        display: inline-flex;
        align-items: center;
        img {
            width: 150px;
            filter: brightness(0) invert(0);
        }
    }
    li.menu_button {
        a {
            background: var(--golden-color);
            color: #000 !important;
            padding: 10px 20px;
        }
    }
    .item-left{
        flex:0 0 20%;
    }
    .item-center {
        flex:0 0 80%;
        padding: 0;
    }
    .item-right {
        flex:0 0 0%;
        display: none;
    }
    .menu > ul > li {
        display: inline-block;
        margin-left: 15px;
    }
    .menu > ul > li > a {
        font-weight: 500;
        position: relative;
        line-height: 50px;
        text-transform: uppercase;
        transition: color 0.3s ease;
        color: var(--paragraph-color);
        font-size: var(--bs-fs12);
        i {
            font-size: 80%;
            padding-left: 4px;
            /*position: relative;
            top: 2px;*/
        }
    }
    .menu > ul > li .sub-menu {
        position: absolute;
        z-index: 500;
        background-color: #f5f5f4;
        width: 100%;
        padding: 20px 30px 40px;
        transition: all 0.3s ease;
        margin-top: 25px;
        opacity:0;
        visibility: hidden;
        border-bottom: 3px solid var(--golden-color);
    }
    .menu > ul > li .sub-menu > ul > li {
        line-height: 1;
    }
    .menu > ul > li .sub-menu > ul > li > a {
        display: inline-block;
        padding: 10px 0;
        font-size: 15px;
        color: var(--paragraph-color);
        transition: color 0.3s ease;
        text-decoration: none;
        text-transform: capitalize;
    }
    .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
       line-height: 1;
       display: block; 
    }
    .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
        padding:10px 0;
        display: inline-block;
        font-size: 15px;
        color:var(--paragraph-color);
        transition: color 0.3s ease;
    }
    .menu > ul > li .sub-menu.mega-menu { 
        left: 50%;
        transform: translateX(-50%);    
    }
    .menu > ul > li .sub-menu .col_equal_3 {
        flex:0 0 75%;
        padding:0 15px;
    }
    .menu > ul > li .sub-menu .col_equal_1 {
        flex:0 0 25%;
        padding:0 15px;
    }
    .menu h4 {         
        color: var(--dark-grey);
        font-weight: 600;
        font-size: .9rem;
        margin: 1.5rem 0;
    }
    .col_link_list {
        a {
            display: block;
            padding: 10px 0;
            font-weight: 500;
            font-size: .9rem;
            border-bottom: 1px solid var(--paragraph-color);
            &:last-child {
                border-bottom: none;
            }
            &:hover {
                color: var(--golden-color);
                border-bottom-color: var(--golden-color);
            }
        }
    }
    .evnt_col_item, .ven_col_item {   
        img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
    }
    .evnt_col_item, .ven_col_item {
        a:hover {
            h4 {
                color: var(--golden-color);
            }
        }
    }
    .resurant_col_row a {
        width: 100%;
        height: 130px;
        display: inline-flex;
        border: 1px solid var(--dark-grey);
        padding: 1rem;
        align-items: center;
        justify-content: center;
        margin-bottom: 35px;
        &:hover {
            border-color: var(--golden-color);
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
    .latest_posts .lp_item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        &:not(:last-child) {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--dark-grey);
        }
        img {
            width: 28%;
            height: 170px;
            object-fit: cover;
        }
        .post_text {
            width: 70%;
        }
        h3 {
            font-size: var(--bs-fs22);
        }
        p {
            font-size: var(--bs-fs14);
        }
        .more_btn {
            background: var(--golden-color);
            color: #000;
            display: inline-block;
            padding: 10px 25px;
            text-transform: uppercase;
            font-size: var(--bs-fs14);
            font-weight: 500;
        }
    }
}

.page-content {
    padding-top: 80px;
}

section {
    .read_more {
        color: inherit;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        &:after {
        	content: '';
        	position: absolute;
        	left: 0;
        	bottom: -2px;
        	width: 0px;
        	height: 2px;
        	background: var(--golden-color);
        	transition: .4s all;
        }
        &:hover:after {
        	width: calc(100% - 31px);
        }
        svg {
            margin-left: 7px;
        }
    }
}

.main_banner {
    position: relative;
    .banner_content {
    	width: 100%;
        max-width: 800px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
    #bar {
        width: 0%;
        max-width: 100%;
        height: 7px;
        background: var(--golden-color);
    }
    #progressBar {
        width: 100%;
        background: #fff;
        position: absolute;
        bottom: -7px;
        left: 0;
    }
}

.inner_banner {
    padding: 10% 0;
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 30%;
    }
    .container-xxl {
        position: relative;
    }
    h1 {
    	letter-spacing: 4px;
        text-transform: uppercase;
    }
}

.venue_list {
    .col_item {
        margin-top: 1.5rem;
    }
    .item_inner {
        text-align: center;
        display: inline-block;
    }
    .item_text {
        padding: 1rem;
    }
    .item_img {
        width: 100%;
        height: 450px;
        margin-bottom: 10px;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .4s all;
        }
    }
    h3 {
        color: var(--golden-color);
        margin-bottom: 8px;
    }
}

.happen_list {
    .item_holder {
        transition: .4s all;
        position: relative;
        &:before {
        	content: '';
        	position: absolute;
        	left: 0;
        	top: 0;
        	width: 100%;
        	height: 100%;
        	background: #fff;
        	opacity: 0;
        }
        &:hover:before {
        	opacity: 30%;
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .col_1 {
        .item_holder {
            width: 100%;
            height: 100%;
        }
    }
    .col_2 {
        display: flex;
        flex-direction: column;
        gap: 40px;
        .item_holder {
            width: 100%;
            height: 50%;
        }
    }
    .item_overlay {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 1.5rem;
        text-align: center;
        h4 {
            color: var(--golden-color);
            font-weight: 600;
            font-size: .9rem;
        }
        h3 {
            font-size: var(--bs-fs21);
        }
        .read_more {
            color: var(--golden-color);
            font-weight: 500;
            font-size: .9rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            &:after {
            	content: '';
            	position: absolute;
            	left: 0;
            	bottom: 0;
            	width: 0px;
            	height: 2px;
            	background: var(--golden-color);
            	transition: .4s all;
            }
            &:hover:after {
            	width: calc(100% - 31px);
            }
            svg {
                margin-left: 7px;
            }
        }
    }
}

.event_wedding {
    .evnt_row {
        width: 100%;
        display: flex;
        flex-direction: row;
        .ev_col {
            flex: 1 1 0px;
            min-height: 60vh;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding-bottom: 3rem;
            overflow: hidden;
            &:after {
                content: "";
                background: #000;
                background: linear-gradient(0deg, #000, transparent);
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }
            &:hover {
                .full_img_bg {
                    transform: scale(1.10);
                }
            }
        }
        .ev_col_1 {
            padding-left: calc((100% - var(--content-width)) / 2);
        }
        .ev_col_2 {
            padding-right: calc((100% - var(--content-width)) / 2);
        }
        .ev_holder {
            position: relative;
            padding: 0 35px;
            z-index: 1;
            color: #fff;
        }
        .full_img_bg {
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            object-fit: cover;
            transition: .4s all;
        }
    }
    .read_more {
        color: #fff;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        &:after {
        	content: '';
        	position: absolute;
        	left: 0;
        	bottom: -2px;
        	width: 0px;
        	height: 2px;
        	background: var(--golden-color);
        	transition: .4s all;
        }
        &:hover:after {
        	width: calc(100% - 31px);
        }
        svg {
            margin-left: 7px;
        }
    }
}

.catering_bg_sec {
    padding: 10% 0;
    .contentBox {
        max-width: 450px;
        margin-right: 4rem;
        background-color: #fff;
        padding: 2rem 3rem;
        margin-left: auto;
        text-align: center;
    }
}

.gift_holder {
    background-color: var(--golden-color);
    outline: 3px solid #fff;
    outline-offset: -1rem;
    text-align: center;
    flex: 1 1 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    .card_img {
    	margin: 2rem 0;
    }
}

.gift_card_sec {
	.content_wrap {
		ul {
			padding-left: 20px;
		}
		li {
			margin: 5px 0;
		}
		strong {
			color: var(--golden-color);
		}
	}
}

.wedding_venue_item {
    color: #000;
    .venue_info {
        img {
            position: absolute;
            left: 0;
            top: 0;
        }
        .venue_item {
            position: relative;
            padding-left: 40px;
            margin-top: 2rem;
            strong {
                display: block;
                font-weight: 500;
            }
        }
        a {
            display: block;
            color: var(--golden-color);
        }
        p {
            margin-bottom: 0;
        }
    }
}

.event_plan_sec, .contact_info_sec, .venue_col {
    .contact_details {
        margin-top: 3rem;
        img {
            position: absolute;
            left: 0;
            top: 0;
        }
        p {
            position: relative;
            padding-left: 60px;
        }
        a {
            display: block;
            color: var(--golden-color);
        }
    }
}

.contact_info_sec, .venue_col {
    .contact_details {
        p, a {
            color: #000 !important;
        }
        p {
            padding-left: 45px;
        }
    }
}

.venue_col {
    .contact_details {
        margin-top: 1rem !important;
    }
}

.evntp_row {
    .col_inner {
        text-align: center;
        img {
            width: 80px;
        }
        p {
            margin: 1rem 0 0;
        }
        strong {
            color: var(--golden-color);
        }
    }
}

.evntp_sec {
    .evntp_items {
        h2 {
            margin-bottom: 2rem;
        }
    }
}

.private_carousel {
    .item {
        height: 350px;
        img {
            height: 100%;
            object-fit: cover;
        }
    }
    .owl-nav {
        margin: 1rem 0 2rem;
        button {
            width: 55px;
            height: 35px;
            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }
}

.catering_grid2_col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem auto 0;
}

.catering_grid3_col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem auto 0;
}

.catering_grid2_col, .catering_grid3_col {
    img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.stories_row {
    .col_inner {
        border: 1px solid transparent;
        display: inline-block;
        img {
            width: 100%;
            height: 260px;
            object-fit: cover;
        }
        .story_category {
            color: var(--golden-color);
            text-transform: uppercase;
            font-size: var(--bs-fs14);
            display: block;
            margin-bottom: 1rem;
        }
        h3 {
            font-weight: 400;
        }
        .text_pad {
            padding: 1.5rem;
        }
    }
    .col_inner:hover {
        border: 1px solid #e2e2e2;
    }
}

.stories_detail_sec {
    .post_hdr {
        color: #000;
        text-transform: uppercase;
        font-size: var(--bs-fs16);
        display: block;
        margin-bottom: 1rem;
        .story_category {
            color: var(--golden-color);
        }
    }
    .accordion {
        margin-top: 2rem;
        .card {
            border-top: 1px solid #ccc;
            border-bottom: 1px solid #ccc;
        }
        .card-header a {
            border-bottom: 0;
        }
    }
}

.venue_detail_sec {
    .venue_info {
        img {
            position: absolute;
            left: 0;
            top: 0;
        }
        .venue_item {
            position: relative;
            padding-left: 40px;
            margin-top: 1.5rem;
            strong {
                display: block;
                font-weight: 500;
            }
        }
        a {
            display: block;
            color: var(--golden-color);
        }
        p {
            margin-bottom: 0;
        }
    }
}

.rmenu_carousel {
    .item {
    	width: 100%;
        display: inline-block;
        text-align: center;
        img {
            height: 370px;
            object-fit: cover;
            margin-bottom: 1rem;
        }
        &:hover  {
            color: var(--golden-color);
        }
    }
    .owl-nav {        
        margin: 1rem 0 2rem;
        position: absolute;
        top: -70px;
        right: 0;
        button {
            width: 50px;
            height: 30px;
            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }
}

.about_cuisine_left, .about_cuisine_right {
    h2 {
        color: var(--golden-color) !important;
        font-size: var(--bs-fs35);
    }
    .contentBox {
        max-width: 500px;
        background-color: rgb(255 255 255 / 85%);
        padding: 2rem;
        text-align: center;
        backdrop-filter: blur(10px);
    }
}

.about_cuisine_left {
    padding: 10% 0;
    .contentBox {
        margin-left: 4rem;
        margin-right: auto;
    }
}

.about_cuisine_right {
    padding: 10% 0;
    .contentBox {
        margin-right: 4rem;
        margin-left: auto;
    }
}

.about_story {
	.soft_grey_bg {
		padding: 3rem;
	}
}

.about_contact_join {
	.about_join {
        background-color: var(--golden-color);
        outline: 3px solid #fff;
        outline-offset: -1rem;
        text-align: center;
        flex: 1 1 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 4rem;
        color: var(--paragraph-color);
        h2 {
        	font-size: var(--bs-fs40);
        	margin-bottom: 2rem;
        }
	}
    .contact_details {
        margin-top: 2rem;
        margin-bottom: 2rem;
        img {
            position: absolute;
            left: 0;
            top: 0;
        }
        p {
            position: relative;
            padding-left: 50px;
        }
        a {
            display: block;
            color: var(--golden-color);
        }
    }
    .form_col {
    	strong {
    		font-weight: 500;
    	}
    }
}

ul.catering_list.no_disc {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 1260px;
    justify-content: center;
    margin: 3rem auto;
    font-size: 14px;
    li {
	    border-bottom: none;
	    padding-block: 0;
	    font-weight: 700;
	    padding-right: 1rem;
	    line-height: 1.25;
	}
	li:not(:last-child) {
	    border-right: 1px solid var(--golden-color);
	}
}

.career_option_list {
    .item_inner {
        position: relative;
    }
    .overlay_text {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

.food_gallery {
    .owl-stage {
        display: flex;
    }
    .item, .item img {
        width: 100%;
        object-fit: cover;
        height: 350px;
    }
    .owl-nav {
        margin: 1rem 0 2rem;
        display: flex;
        justify-content: center;
        button {
            width: 55px;
            height: 35px;
            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }
}

.press_carousel {
	.item {
		.img_box {
			width: 100%;
			height: 420px;
			margin-bottom: 1rem;
			overflow: hidden;
			img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				transition: .3s all;
			}
		}
		h3 {
			font-weight: 500;
			font-size: var(--bs-fs22);
			text-overflow: ellipsis;
			display: -webkit-box;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;  
			overflow: hidden;
		}
		.read_more {
			color: var(--golden-color) !important;
		}
		&:hover {
			.img_box {
				img {
					transform: scale(1.10);
				}
			}
		}
	}
}

.fancybox-nav span {
    width: 40px !important;
    height: 40px !important;
}

/* ------------------- footer style -------------- */
footer {
    background: var(--dark-grey);
    font-size: var(--bs-fs14);
    color: var(--soft-white);
    a:hover {
        color: var(--bs-gold);
    }
    img.ftr_logo {
        width: 150px;
        margin-bottom: 10px;
    }
    ul {
        padding-left: 0;
    }
    ul li {
        list-style: none;
    }
    .ftr_block {
        padding-top: 3rem;
        ul + h3 {
            margin-top: 2rem;
        }
        ul li {
        	transition: .3s all;
        	&:hover {
        		padding-left: 5px;
        	}
        }
    }
    .ftr_menu li {
        margin-bottom: 2px;
        text-transform: capitalize;
    }
    .ftr_block h3 {
        margin-bottom: 10px;
        font-family: var(--bs-montserrat);
        font-size: var(--bs-fs16);
        color: inherit;
        font-weight: 600;
    }
    .copyright_footer {
        padding-top: 1rem;
        margin-top: 2rem;
        font-size: var(--bs-fs14);
    }
}

.thankyou_error {
    padding-top: 7rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    .sec__img {
        padding: 1rem;
        max-width: 400px;
        margin: 2rem auto;
    }
}

ul.nav.nav-tabs {
    border: 0;
    border-top: 2px solid #e2e2e2;
    border-bottom: 2px solid #e2e2e2;
    background: #fff;
    margin: 2rem 0 1.25rem;
    a.nav-link {
        border-radius: 0;
        border: 0 !important;
        padding: 20px;
        font-family: inherit;
        font-size: var(--bs-fs16);
        color: #000;
        text-align: center;
        min-width: 100px;
        font-weight: 500;
        text-transform: uppercase;
        &.active {
            background: var(--golden-color);
            color: #fff;
        }
    }
}

.accordion {
    .card {
        border-radius: 0;
        margin: .5rem 0;
        border: none;
        overflow: hidden;
    }
    .card .card-header {
        background: transparent;
        margin-bottom: 0;
        border: 0;
    }
    .card-header a {
        width: 100%;
        display: inline-block;
        padding: 10px 0;
        padding-right: 50px;
        border-radius: 0;
        position: relative;
        border-bottom: 1px solid #ccc;
        background: #fff;
        /*font-family: var(--bs-domine);*/
        font-family: var(--bs-montserrat);
        color: var(--dark-grey);
        font-size: var(--bs-fs19);
        font-weight: 600;
    }
    .card-header a:before {
        content: ' ';
        position: absolute;
        right: 0px;
        top: 12px;
        width: 25px;
        height: 25px;
        background-image: url(../images/accordion-up.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 23px;
    }
    .card-header a.collapsed:before {
        background-image: url(../images/accordion-down.svg);
    }
    .card-body {        
        padding: 10px 0 0;
        ul {
		    padding-left: 20px;
		}
        a {
            color: #d5342b;
        }
    }
}

.page-breadcrumb {
    width: 100%;
    display: inline-block;
    ul.breadcrumb {
        background: #fff;
        box-shadow: 0 2px 7px rgb(0 0 0 / 9%);
        width: max-content;
        max-width: 100%;
        padding: 8px 10px;
        border-radius: 70px;
        flex-wrap: nowrap;
    }
    ul.breadcrumb li {
        position: relative;
        text-transform: uppercase;
        a {
            color: var(--bs-red);
        }
    }
    ul.breadcrumb li+li {
        padding-left: 45px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: flex;
        align-items: center;
    }
    ul.breadcrumb li+li:before {
        content: '';
        width: 25px;
        height: 2px;
        line-height: 1;
        position: absolute;
        font-size: 30px;
        font-weight: 300;
        background: var(--bs-red);
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
    }
    ul.breadcrumb li:first-child a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}

.owl-carousel .owl-dots {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    button.owl-dot span {
        width: 30px;
        height: 5px;
        display: inline-block;
        border-radius: 50px;
        margin: 4px;
        background: var(--golden-color);
        opacity: 30%;
    }
    button.owl-dot.active span {
        opacity: 1;
        width: 50px;
    }
}


.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 100% !important;
}
.select2-container .select2-selection{
    font-size: var(--bs-fs16);
    font-weight: 400;
    text-align: left;
    background: #ffffff url(../images/select-arrow.svg) no-repeat right 15px center !important;
    background-size: 12px !important;
    padding: 13px 35px 13px 15px;
    width: 100%;
    height: 50px !important;
    color: #000;
    border: 1px solid #E4E4E4 !important;
    border-radius: 5px !important;
    outline: none;
    box-shadow: none;
}
.select2-container--default .select2-results__option{
    font-size: 14px;
    padding: 8px 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered{
    padding: 0 !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #faf9fb !important;
    border: 0 !important;
    border-radius: 4px !important;
    cursor: default !important;
    float: left !important;
    margin-right: 5px !important;
    margin-top: 0 !important;
    padding: 0 5px !important;
    color: #8F8F8F;
    height: 30px;
    line-height: 30px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice span{
    color: #8F8F8F !important;
    margin-right: 5px !important;
}
.select2-container .select2-search--inline .select2-search__field{
    margin-top: 0 !important;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #faf9fb !important;
    color: #000 !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #d5342b !important;
    color: #fff !important;
}
.select2-dropdown, .select2-container--default .select2-search--dropdown .select2-search__field{
    border: 1px solid #ececec !important;
}
.select2-dropdown{
    z-index: 99999 !important;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    padding: 0 !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000 !important;
    line-height: normal !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none !important;
}