



/* CustomFonts */



:root{
	--default-color: #4a3535;
    --accent-color:#ab955a;
    --accent-color2:#373b38;
    --accent-color3:#373b38;
    --accent-color4:#373b38;

    --family:"Manrope";
    --family2:"Manrope";

    --button-color1:#ab955a;
	--button-hover-color1:#ab955a;
    --button-color2:#373b38;
	--button-hover-color2:#373b38;
    --button-color3:#373b38;
	--button-hover-color3:#373b38;
    --button-color4:#373b38;
	--button-hover-color4:#373b38;
    --button-color5:#ffffff;
	--button-hover-color5:#ffffff; 

	--link-color:#373b38;
	--link-visited-color:#373b38;
	--link-hover-color:#373b38;
	--link-active-color:#373b38;

	--container-width: 100%;

	--h1-color: #272727;
	--h2-color: #272727;
	--h3-color: #272727;
	--h4-color: #272727;
	--h5-color: #272727;
	--h6-color: #272727;
}
 

@media (min-width:576px) {
	:root{
		--container-width: 576px;
	}
}
@media (min-width:768px) {
	:root{
		--container-width: 768px;
	}
}
@media (min-width:992px) {
	:root{
		--container-width: 992px;
	}
}
@media (min-width:1200px) {
	:root{
		--container-width: 1200px;
	}
}
@media (min-width:1600px) {
	:root{
		--container-width: 1400px;
	}
}
 

/* =========================================================
   BAC HEADER LOGO POSITIONING

   - Inside header remains visually standard
   - Main header gets the large non-sticky tongue
   - Sticky/floating header retains a standard contained logo
   - Logo column never participates in the flex layout
   - Navigation remains in the same horizontal position
========================================================= */

:root {
    --bac-header-color: #373b38;
}


/* =========================================================
   DESKTOP
========================================================= */

@media only screen and (min-width: 993px) {

    /* -----------------------------------------------------
       FIXED LOGO SLOT

       This value must remain the same in normal and sticky
       states. The menu always begins after this space.
    ----------------------------------------------------- */

    #headerrow-785902.bac-header-main,
    #headerrow-785902.bac-header-inside {
        --bac-logo-slot-width: 230px;
    }


    /* -----------------------------------------------------
       ALLOW MAIN TONGUE TO EXTEND OUTSIDE THE NAVBAR
    ----------------------------------------------------- */

    .header-wrap,
    #headerrow-785902.bac-header-main,
    #headerrow-785902.bac-header-main > .container,
    #headerrow-785902.bac-header-main .header-container-box,
    #headerrow-785902.bac-header-main .header-center {
        overflow: visible !important;
    }


    /* -----------------------------------------------------
       RESERVE THE SAME LOGO SPACE ON BOTH HEADERS

       Since the logo column becomes absolutely positioned,
       this padding reserves its permanent horizontal slot.
    ----------------------------------------------------- */

    #headerrow-785902.bac-header-main
    .header-center.header-container-box,

    #headerrow-785902.bac-header-inside
    .header-center.header-container-box {
        position: relative !important;

        padding-left: var(--bac-logo-slot-width) !important;

        box-sizing: border-box !important;
    }


    /* -----------------------------------------------------
       REMOVE LOGO COLUMN FROM FLEX LAYOUT

       The logo can now change width without resizing or
       repositioning the menu and contact columns.
    ----------------------------------------------------- */

    #headerrow-785902.bac-header-main #column-2251,
    #headerrow-785902.bac-header-inside #column-2251 {
        position: absolute !important;

        top: 0 !important;
        left: 0 !important;
        right: auto !important;

        z-index: 100 !important;

        flex: none !important;

        width: var(--bac-logo-slot-width) !important;
        min-width: var(--bac-logo-slot-width) !important;
        max-width: var(--bac-logo-slot-width) !important;

        margin: 0 !important;

        box-sizing: border-box !important;
    }


    /* -----------------------------------------------------
       SHARED LOGO INTERNAL ALIGNMENT

       This does not set the logo image size on the inside
       header. It only stabilizes the container.
    ----------------------------------------------------- */

    #headerrow-785902.bac-header-main
    #column-2251 .header-content-wrap,

    #headerrow-785902.bac-header-main
    #column-2251 .logo,

    #headerrow-785902.bac-header-main
    #column-2251 .logo > a,

    #headerrow-785902.bac-header-inside
    #column-2251 .header-content-wrap,

    #headerrow-785902.bac-header-inside
    #column-2251 .logo,

    #headerrow-785902.bac-header-inside
    #column-2251 .logo > a {
        width: 100% !important;
        height: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       BAC MAIN — NON-STICKY TONGUE
    ===================================================== */

    .header-wrap:not(.floating-active)
    #headerrow-785902.bac-header-main {
        --bac-main-tongue-width: 300px;
        --bac-main-tongue-height: 126px;
        --bac-main-logo-width: 258px;
    }


    /* -----------------------------------------------------
       MAIN TONGUE CONTAINER

       Right edge remains fixed at the end of the 230px slot.

       230px slot − 300px tongue = −70px

       Therefore, the extra 70px grows into the unused space
       on the left rather than into the navigation.
    ----------------------------------------------------- */

    .header-wrap:not(.floating-active)
    #headerrow-785902.bac-header-main
    #column-2251 {
        left: calc(
            var(--bac-logo-slot-width) -
            var(--bac-main-tongue-width)
        ) !important;

        width: var(--bac-main-tongue-width) !important;
        min-width: var(--bac-main-tongue-width) !important;
        max-width: var(--bac-main-tongue-width) !important;

        height: var(--bac-main-tongue-height) !important;
        min-height: var(--bac-main-tongue-height) !important;
        max-height: var(--bac-main-tongue-height) !important;

        padding: 10px 18px 14px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        background-color: var(--bac-header-color) !important;
        background-image: none !important;

        border: 0 !important;
        border-radius: 0 0 6px 6px !important;

        box-shadow:
            0 8px 22px rgba(0, 0, 0, 0.18) !important;

        overflow: hidden !important;

        /*
         * Only the logo tongue animates.
         * The menu layout remains completely stationary.
         */
        transition:
            left 240ms ease,
            width 240ms ease,
            min-width 240ms ease,
            max-width 240ms ease,
            height 240ms ease,
            min-height 240ms ease,
            max-height 240ms ease,
            padding 240ms ease !important;
    }


    /* -----------------------------------------------------
       MAIN TONGUE INTERNAL ALIGNMENT
    ----------------------------------------------------- */

    .header-wrap:not(.floating-active)
    #headerrow-785902.bac-header-main
    #column-2251 .header-content-wrap,

    .header-wrap:not(.floating-active)
    #headerrow-785902.bac-header-main
    #column-2251 .logo,

    .header-wrap:not(.floating-active)
    #headerrow-785902.bac-header-main
    #column-2251 .logo > a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        overflow: hidden !important;
        line-height: 0 !important;
    }


    /* -----------------------------------------------------
       MAIN NON-STICKY LARGE LOGO
    ----------------------------------------------------- */

    .header-wrap:not(.floating-active)
    #headerrow-785902.bac-header-main
    #logo179789 img.header-logo {
        display: block !important;

        width: var(--bac-main-logo-width) !important;
        height: auto !important;

        min-width: 0 !important;
        min-height: 0 !important;

        max-width: 100% !important;
        max-height: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: contain !important;
        object-position: center !important;
        vertical-align: middle !important;
    }

    .header-wrap:not(.floating-active)
    #headerrow-785902.bac-header-main
    #logo179789 img.floating-header-logo {
        display: none !important;
    }


    /* =====================================================
       BAC MAIN — FLOATING/STICKY

       Standard contained logo. No tongue.
       The fixed 230px slot is retained, so the menu cannot move.
    ===================================================== */

    .header-wrap.floating-active
    #headerrow-785902.bac-header-main
    #column-2251 {
        left: 0 !important;

        width: var(--bac-logo-slot-width) !important;
        min-width: var(--bac-logo-slot-width) !important;
        max-width: var(--bac-logo-slot-width) !important;

        height: 64px !important;
        min-height: 64px !important;
        max-height: 64px !important;

        padding: 0 12px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        background: transparent !important;

        border: 0 !important;
        border-radius: 0 !important;

        box-shadow: none !important;

        overflow: hidden !important;
    }

    .header-wrap.floating-active
    #headerrow-785902.bac-header-main
    #column-2251 .header-content-wrap,

    .header-wrap.floating-active
    #headerrow-785902.bac-header-main
    #column-2251 .logo,

    .header-wrap.floating-active
    #headerrow-785902.bac-header-main
    #column-2251 .logo > a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        overflow: hidden !important;
        line-height: 0 !important;
    }


    /* =====================================================
       BAC INSIDE — NORMAL AND FLOATING

       No tongue is created. The logo simply occupies the
       same permanent 230px slot at every header state.
    ===================================================== */

    #headerrow-785902.bac-header-inside
    #column-2251 {
        bottom: 0 !important;

        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        padding-left: 0 !important;
        padding-right: 12px !important;

        background: transparent !important;

        border: 0 !important;
        border-radius: 0 !important;

        box-shadow: none !important;

        overflow: hidden !important;
    }

    #headerrow-785902.bac-header-inside
    #column-2251 .header-content-wrap,

    #headerrow-785902.bac-header-inside
    #column-2251 .logo,

    #headerrow-785902.bac-header-inside
    #column-2251 .logo > a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        line-height: 0 !important;
    }
}


/* =========================================================
   SMALLER DESKTOP / TABLET LANDSCAPE
========================================================= */

@media only screen and (min-width: 993px) and (max-width: 1199px) {

    #headerrow-785902.bac-header-main,
    #headerrow-785902.bac-header-inside {
        /*
         * Again, this remains identical in normal and sticky
         * states, preventing menu movement.
         */
        --bac-logo-slot-width: 205px;
    }

    .header-wrap:not(.floating-active)
    #headerrow-785902.bac-header-main {
        --bac-main-tongue-width: 260px;
        --bac-main-tongue-height: 112px;
        --bac-main-logo-width: 220px;
    }

    .header-wrap:not(.floating-active)
    #headerrow-785902.bac-header-main
    #column-2251 {
        padding: 9px 15px 12px !important;
    }

    .header-wrap.floating-active
    #headerrow-785902.bac-header-main
    #column-2251 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}


	
:root{
	--headerHeight: calc( var(--header-top-height,0px) + var(--header-center-height,0px) + var(--header-bottom-height,0px) );
	--mobileHeaderHeight: calc( var(--header-mobile-top-height,0px) + var(--header-mobile-height,0px) + var(--header-mobile-bottom-height,0px) );
	--floatingHeaderHeight: calc( var(--floating-header-top-height,0px) + var(--floating-header-center-height,0px) + var(--floating-header-bottom-height,0px) );
}

.dng-main{
	 background-color:#FFFFFF;  	}
.container{
		padding-left:15px;
	padding-right:15px;
		width: var(--container-width);
	max-width: 100%;
}
.is-container{
	max-width:var(--container-width);
}
.container-fluid {
		padding-right:15px;
	padding-left:15px;
		margin-right: auto;
	margin-left: auto;
}   
#dnn_content{
	 padding-top:0px;		 padding-bottom:0px;	}		

@media (min-width:576px) {
	
		}
@media (min-width:768px) {
		}
@media (min-width:992px) {
		}
@media (min-width:1200px) {
		}


	.left-full-column > .full-column-inner{
		margin-inline-start:calc((var(--container-width) - 100vw)/2);
		width:calc(100% + (100vw - var(--container-width))/2);
	}
	.right-full-column > .full-column-inner{
		margin-inline-end:calc((var(--container-width) - 100vw)/2);
		width:calc(100% + (100vw - var(--container-width))/2);
	}
	.full-column > .full-column-inner{
		width:100vw;	
		margin-inline-start:calc((var(--container-width) - 100vw)/2 - 15px);
	}
	.layout-no-plr .full-column > .full-column-inner{
		margin-inline-start:calc((var(--container-width) - 100vw)/2);
	}

	



h1, h2, h3, h4, h5, h6{
	font-family:inherit;
}

h1{
	color:var(--h1-color);
	font-family:"Libre Caslon Display"; 	font-weight:500;
	font-size:2.25rem;
	line-height:1.2;
	letter-spacing:0;
}		
h2{
	color:var(--h2-color);
		font-family:"Libre Caslon Display"; 	font-weight:500;
	font-size:1.75rem;
	line-height:1.3;
	letter-spacing:0;
}		
h3{
	color:var(--h3-color);
		font-family:"Libre Caslon Display"; 	font-weight:500;
	font-size:1.75rem;
	line-height:1.3;
	letter-spacing:0;
}		
h4{
	color:var(--h4-color);
		font-family:"Libre Caslon Display"; 	font-weight:500;
	font-size:1.625rem;
	line-height:1.4;
	letter-spacing:0;
}		
h5{
	color:var(--h5-color);
		font-family:"Libre Caslon Display"; 	font-weight:500;
	font-size:1.375rem;
	line-height:1.4;
	letter-spacing:0;
}		
h6{
	color:var(--h6-color);
		font-family:"Libre Caslon Display"; 	font-weight:500;
	font-size:1.25rem;
	line-height:1.5;
	letter-spacing:0;
}	

#Body .is-inherit-root-text,
#Body .is-inherit-root-text p,
#Body .is-inherit-root-text li,
#Body .is-inherit-root-text div,
#Body .is-inherit-root-text span{
	color: var(--default-color);
}
#Body .is-inherit-root-text h1{
	color:var(--h1-color);
}
#Body .is-inherit-root-text h2{
	color:var(--h2-color);
}
#Body .is-inherit-root-text h3{
	color:var(--h3-color);
}
#Body .is-inherit-root-text h4{
	color:var(--h4-color);
}
#Body .is-inherit-root-text h5{
	color:var(--h5-color);
}
#Body .is-inherit-root-text h6{
	color:var(--h6-color);
}
#Body .is-inherit-root-text a, 
#Body .is-inherit-root-text a:link{
	color:var(--link-color);
}
#Body .is-inherit-root-text a:visited{
	color:var(--link-visited-color);
}
#Body .is-inherit-root-text a:hover{
	color:var(--link-hover-color);
}
#Body .is-inherit-root-text a:active{
	color:var(--link-active-color);
}

 
@media only screen and (min-width: 576px)  {
						}
@media only screen and (min-width: 768px) {	
						}
@media only screen and (min-width: 992px) {	
		h1{
		font-size:3rem;		line-height:1.2;	}
			h2{
		font-size:2.5rem;		line-height:1.4;	}		
			h3{
		font-size:2rem;			}		
				}
@media only screen and (min-width: 1200px) {	
						}

a, 
a:link{
	color: var(--link-color);
}
a:visited{
	color: var(--link-visited-color);
}
a:hover{
	color: var(--link-hover-color);
}
a:active{
	color: var(--link-active-color);
}


.btn-accent,
a.btn-accent{
	color:var(--accent-color);
	border-color:var(--accent-color);
	background-color:var(--accent-color);
}
[class*="am-btn-"].btn-accent:before{
	background-color:var(--accent-color);
}

div [class*="am-btn-"].hover-accent:hover{
	color:var(--accent-color);
	border-color:var(--accent-color);
	background-color:var(--accent-color);
}
div [class*="am-btn-"].hover-accent:hover:before{
	background-color:var(--accent-color); 
}



#Body .bg-accent{
	background-color:var(--accent-color);
}
#Body .color-accent{
	color:var(--accent-color);
} 
#Body .border-accent{
	border-color:var(--accent-color);
}
#Body .bg-accent-hover:hover{
	background-color:var(--accent-color);
}
#Body .color-accent-hover:hover{
	color:var(--accent-color);
} 
#Body .border-accent-hover:hover{
	border-color:var(--accent-color);
}

#Body .bg-accent2{
	background-color:var(--accent-color2);
}
#Body .color-accent2{
	color:var(--accent-color2);
} 
#Body .border-accent2{
	border-color:var(--accent-color2);
}

#Body .bg-accent3{
	background-color:var(--accent-color3);
}
#Body .color-accent3{
	color:var(--accent-color3);
} 
#Body .border-accent3{
	border-color:var(--accent-color3);
}
#Body .bg-accent4{
	background-color:var(--accent-color4);
}
#Body .color-accent4{
	color:var(--accent-color4);
} 
#Body .border-accent4{
	border-color:var(--accent-color4);
}

b,
strong{
	font-weight:600;
}
.bold,
.font-weight-bold,
.strong-before:before,
.strong-after:after,
.strong-before :before,
.strong-after :after{
	font-weight:600!important;
}



#Body, body, .Head, .SubTitle, .SubSubTitle, .Normal{
	font-family: var(--family);  
	font-size: 1rem; 
	line-height: 1.8;
	letter-spacing: 0;
	color: var(--default-color);
}
.default-size{font-size:1rem;}
.default-lineheight{line-height:1.8;}

@media (min-width:576px) {
		}
@media (min-width:768px) {
		}
@media (min-width:992px) {
		}
@media (min-width:1200px) {
		}



button, 
input, 
select, 
textarea,
.btn{
	font-family: var(--family);  
}

.default-color{
	color: var(--default-color)!important;
}
.default-bg-color{
	background-color: var(--default-color)!important;
}
.default-bg-color-hover:hover{
	background-color: var(--default-color)!important;
}
.default-border-color{
	border-color: var(--default-color)!important;
}
.accent-color{
	color: $var(--accent-color);
}
.default-family{
	font-family: var(--family)!important;
}
.family2{
	font-family: var(--family2)!important;
}

/*default color*/



/*page title*/
.page-title-bg{
			background-color:#f0f0f0; 
		}		
.page-title .title-area:after{
	border-color: #f3bebe; 
}



	

.page-title-bg.light-overlay::after{
	background-color: rgba(255, 255, 255, 0.10);
}
.page-title-bg.dark-overlay::after{
	background-color: rgba(0, 0, 0, 0.10);
}

.page-title-container{
	 height: 200px;
}
@media only screen and (max-width: 767px) {
	.page-title-container{
		height: auto;padding-top:35px;padding-bottom:35px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px){
	.page-title-container{
		height:120px;
		min-height:162px;
		padding-top: 45px;
		padding-bottom: 45px;
	}
}
 


 	.page-title .main-title span::before{
		background-image: linear-gradient(to right, #f3bebe , #fff1cd);
	}
 


/*breadcrumbs*/
.page-breadcrumbs{
	background-color:#ffffff;  
	}
.page-breadcrumbs > .container{
		padding-top:20px;
				padding-bottom:10px;
		}

.page-breadcrumbs .breadcrumbs a:hover{
		color:var(--accent-color)!important;
	}

.page-breadcrumbs .breadcrumbs{
    color: #666666;
    font-size: 14px;
}
.page-breadcrumbs .breadcrumbs-box > a,
.page-breadcrumbs .breadcrumbs-box > span > span > span{
    line-height:20px;
}
.page-breadcrumbs .breadcrumbs a,
.page-breadcrumbs .breadcrumbs a:link,
.page-breadcrumbs .breadcrumbs a:active,
.page-breadcrumbs .breadcrumbs a:visited{
    color: #666666;
    font-size: 14px;
}
.page-breadcrumbs .breadcrumbs a:hover{
			color:var(--accent-color)!important;
	}

.breadcrumbs_sytle2 .breadcrumbs-box,
.breadcrumbs_sytle3 .breadcrumbs-box > a:before, 
.breadcrumbs_sytle3 .breadcrumbs-box > span > span > span:before{
	background-color:#ededed;
}

/*sidebar dynamic*/

.sidebar_dynamic.sidebar_dynamic_sytle01{
	padding-right:40px;	}
.sidebar_dynamic.sidebar_dynamic_sytle01 > .sidebar_sticky{
	 	 }


.sidebar-main{
	display: flex;
}
.sidebar-main .sidebar-bar{
	width: 340px;
    flex: 0 0 340px;
}
.sidebar-main .sidebar-container{
	 flex-grow: 1;
	 width:  calc(100% - 340px);
}

.sidebar-main .sidebar_pos_right{
	order:2
}


@media only screen and (max-width: 767px) {
	.sidebar-main{
		flex-direction: column;
	}
	.sidebar-main .sidebar-bar{
		width:100%;
		flex: 0 0 100%;
	}	
	.sidebar-main .sidebar-container{
		width: 100%;
		flex: 0 0 100%;
	}

				.sidebar-main .sidebar-bar{
			order:1
		}	
		.sidebar-main .sidebar-container{
			order:0
		}
	}
 
@media only screen and (max-width: 991px) {
	.sidebar_dynamic.sidebar_dynamic_sytle01{
		padding-right:15px!important;
		padding-left:15px!important;
		margin-top: 30px;
	}
	.sidebar_dynamic.sidebar_dynamic_sytle01 > .sidebar_sticky{
		padding-top:0!important;
		padding-bottom:0!important;
	 }

}

.has-sidebar >.row{
	position: relative;
}




/*page */
.swiper-container .swiper-pagination-bullet-active{
	background: var(--accent-color);	
}
.swiper-container .swiper-button-next:hover, 
.swiper-container .swiper-button-prev:hover{
	color: var(--accent-color);	
}
 
.isotope-grid .isotope-group a:before {
    border-top-color:var(--accent-color2);
}

.isotope-grid .isotope-group a:after {
    border-top-color:var(--accent-color2);
}

.easy-carousel .pagination-bullet{
	color: var(--accent-color);	
}
 

/*backtop */

