



/* CustomFonts */


:root{
	--default-color: #696969;

    --accent-color:#93a496;
    --accent-color2:#de5f9f;
    --accent-color3:#f8f363;
	--accent-color4:#00bec5;
	--accent-color5:#fc7b35;

    --button-color1:#2c5cda;
	--button-hover-color1:#3468f0;
    --button-color2:#20a3fc;
	--button-hover-color2:#43b3ff;
    --button-color3:#00bec5;
	--button-hover-color3:#0cc7ce;
    --button-color4:#3cb33c;
	--button-hover-color4:#4dcc4d;
    --button-color5:#fc7b35;
	--button-hover-color5:#ff861b;
    --button-color6:#d53530;
	--button-hover-color6:#e0423d;
    --button-color7:#94a497;
	--button-hover-color7:#ff59ac;


    --family:"Lato";
    --family2:"Cinzel;

	--link-color:#93a496;
	--link-visited-color:#93a496;
	--link-hover-color:#93a496;
	--link-active-color:#93a496;

	--container-width: auto;

	--h1-color: #ffffff;
	--h2-color: #ffffff;
	--h3-color: #ffffff;
	--h4-color: #ffffff;
	--h5-color: #ffffff;
	--h6-color: #ffffff;

	--gradation-color1: #15c1e9;
	--gradation-color2: #689beb;
	--gradation-color3: #a37fec;
	--gradation-color4: #c96dde;
	--gradation-color5: #e25d95;
	--gradation-color6: #f35060;

	--linear-gradient-right: linear-gradient(to right, var(--gradation-color1), var(--gradation-color2), var(--gradation-color3), var(--gradation-color4), var(--gradation-color5), var(--gradation-color6));
	--linear-gradient-bottom: linear-gradient(to bottom, var(--gradation-color1), var(--gradation-color2), var(--gradation-color3), var(--gradation-color4), var(--gradation-color5), var(--gradation-color6));

}


@media (min-width:576px) {
	:root{
		--container-width: 540px;
	}
}
@media (min-width:768px) {
	:root{
		--container-width: 760px;
	}
}
@media (min-width:992px) {
	:root{
		--container-width: 960px;
	}
}
@media (min-width:1200px) {
	:root{
		--container-width: 1140px;
	}
}
@media (min-width:1600px) {
	:root{
		--container-width: 1200px;
	}
}


 
/*	:root {
		--cursor-style-none: none;
		--cursor-inner-color: #93a496;
		--cursor-inner-hover-color: #93a496;
		--cursor-outer-color: #93a496;
	}
*/
/*	html,
	body {
		cursor: var(--cursor-style-none,auto) !important;
	}*/

	.mouse-cursor {
		position: fixed;
		left: 0;
		top: 0;
		pointer-events: none;
		border-radius: 50%;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		/*             mix-blend-mode: exclusion;
	*/
	}

	.cursor-inner {
		margin-left: -3px;
		margin-top: -3px;
		width: 6px;
		height: 6px;
		z-index: 1000000001;
		background-color: var(--cursor-inner-color);
		transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
	}

	.cursor-inner.cursor-hover {
		margin-left: -40px;
		margin-top: -40px;
		width: 80px;
		height: 80px;
		background-color: var(--cursor-inner-hover-color);
		opacity: .3;
	}

	.cursor-outer {
		margin-left: -20px;
		margin-top: -20px;
		width: 40px;
		height: 40px;
		border: 1px solid var(--cursor-outer-color);
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		z-index: 1000000000;
		opacity: .5;
		transition: all .3s ease-out, top .15s ease-out, left .15s ease-out;
	}

	.cursor-outer.cursor-hover {
		opacity: 0;
	}

	@media (max-width:991px) {
		.mouse-cursor {
			display: none !important;
		}
		:root {
			--cursor-style-none: auto;
		}
	}

	a>img {
		cursor: var(--cursor-style-none,inherit);
	}
	.cursor-outer.cursor-drag:after,
	.cursor-outer.cursor-drag::before {
		content: "";
		position: absolute;
		width: 8px;
		height: 8px;
		border-bottom: 1px solid var(--cursor-outer-color);
		top: calc(50% - 4px);
		opacity: 0;
		transition: opacity ease-in 300ms;
	}
	
	.cursor-outer.cursor-drag:after {
		border-right: 1px solid var(--cursor-outer-color);
		left: calc(100% + 10px);
		transform: rotate(-45deg);
	}
	
	.cursor-outer.cursor-drag::before {
		border-left: 1px solid var(--cursor-outer-color);
		right: calc(100% + 10px);
		transform: rotate(45deg);
	}
	
	
	.cursor-outer.cursor-drag span::before {
		content: "DRAG";
		position: absolute;
		top: 50%;
		left: 50%;
		line-height: 1;
		width: 50px;
		text-align: center;
		font-size: 14px;
		font-weight: bold;
		margin: -8px 0 0 -25px;
		color: var(--cursor-outer-color);
		opacity: 0;
		transition: opacity ease-in 300ms;
	}
	
	.cursor-outer.cursor-drag {
		width: 76px;
		height: 76px;
		margin-left: -38px;
		margin-top: -38px;
	}
	
	.cursor-outer.cursor-drag::after,
	.cursor-outer.cursor-drag::before,
	.cursor-outer.cursor-drag span::before {
		opacity: 1;
	}
	
	.cursor-inner.cursor-drag {
		opacity: 0;
	}
	
	.cursor-outer.cursor-imglink {
		width: 76px;
		height: 76px;
		margin-left: -38px;
		margin-top: -38px;
		transition: all .3s ease-out, top 0s ease-out, left 0s ease-out;
	}
	
	.cursor-outer.cursor-imglink:after {
		content: "";
		position: absolute;
		left: calc(50% - 14px);
		right: 0;
		height: 0;
		width: 32px;
		border-bottom: 2px solid var(--cursor-outer-color);
		top: calc(50% - 1px);
		transform: rotate(-45deg);
	}
	
	.cursor-outer.cursor-imglink::before {
		content: "";
		position: absolute;
		width: 18px;
		height: 18px;
		border-right: 2px solid var(--cursor-outer-color);
		border-top: 2px solid var(--cursor-outer-color);
		left: calc(50% - 3px);
		top: calc(50% - 13px);
	}
	
	.cursor-inner.cursor-imglink {
		opacity: 0;
	}
	
	
	.mouse-cursor.cursor-hide,
	.mouse-inner.cursor-hide {
		display: none !important;
	}
	
	.mouse-cursor.cursor-hide::after,
	.mouse-cursor.cursor-hide::before {
		content: none !important;
	}


 





	


.dng-main{
	 background-color:#161616;  	}
.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) {

		.container{
		padding-left:100px;
		padding-right:100px;
	}
	.container-fluid {
		padding-right:100px;
		padding-left:100px;
	}
		}
@media (min-width:1200px) {

		}


	.dng-left-full .dng-column:first-of-type > .dng-column-inner,
	.left-full-column > .full-column-inner{
		margin-left:calc((var(--container-width) - 100vw)/2);
		width:calc(100% + (100vw - var(--container-width))/2);
	}
	.dng-right-full .dng-column:last-of-type > .dng-column-inner,
	.right-full-column > .full-column-inner{
		margin-right:calc((var(--container-width) - 100vw)/2);
		width:calc(100% + (100vw - var(--container-width))/2);
	}
	.full-column > .full-column-inner{
		width:100vw;	
		margin-left:calc((var(--container-width) - 100vw)/2 - 15px);
	}
	.layout-no-plr .full-column > .full-column-inner{
		margin-left:calc((var(--container-width) - 100vw)/2);
	}

		@media (max-width:575px) {
		.dng-left-full .dng-column:first-of-type > .dng-column-inner,
		.left-full-column > .full-column-inner{
			margin-left:-15px;
			width:calc(100% + 15px);
		}
		.dng-right-full .dng-column:last-of-type > .dng-column-inner,
		.right-full-column > .full-column-inner{
			margin-right:-15px;
			width:calc(100% + 15px);
		}
		.full-column > .full-column-inner{
			width:calc(100% + 30px);
			margin-left:-15px;
		}
	}
	




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

/*h1{
	color:var(--h1-color);
		font-family:"Fjalla One"; 	font-weight:600;
	font-size:36px;
	line-height:1.2;
	letter-spacing:0;
}		
h2{
	color:var(--h2-color);
		font-family:"Fjalla One"; 	font-weight:600;
	font-size:28px;
	line-height:1.3;
	letter-spacing:0;
}		
h3{
	color:var(--h3-color);
		font-family:"Fjalla One"; 	font-weight:600;
	font-size:28px;
	line-height:1.3;
	letter-spacing:0;
}		
h4{
	color:var(--h4-color);
		font-family:"Fjalla One"; 	font-weight:600;
	font-size:24px;
	line-height:1.4;
	letter-spacing:0;
}		
h5{
	color:var(--h5-color);
		font-family:"Fjalla One"; 	font-weight:600;
	font-size:20px;
	line-height:1.4;
	letter-spacing:0;
}		
h6{
	color:var(--h6-color);
		font-family:"Fjalla One"; 	font-weight:600;
	font-size:18px;
	line-height:1.5;
	letter-spacing:0;
}	*/

h4 {
	color: #4a4f54;
	Font-Family: "Cinzel", serif;
	font-weight: 600;
	font-variant: small-caps;
	font-size: 26px;
	line-height: 30px;
}

#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:48px;		line-height:1.2;	}
			h2{
		font-size:32px;		line-height:1.4;	}		
					}
@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:#93a496;
	border-color:#93a496;
	background-color:#93a496;
}
[class*="am-btn-"].btn-accent:before{
	background-color:#93a496;
}

div [class*="am-btn-"].hover-accent:hover{
	color:#93a496;
	border-color:#93a496;
	background-color:#93a496;
}
div [class*="am-btn-"].hover-accent:hover:before{
	background-color:#93a496; 
}

#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);
}
#Body .bg-accent5{
	background-color:var(--accent-color5);
}
#Body .color-accent5{
	color:var(--accent-color5);
} 
#Body .border-accent5{
	border-color:var(--accent-color5);
}



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, html, body, .Head, .SubTitle, .SubSubTitle, .Normal{
	font-family: var(--family);  
	font-size: 16px; 
	line-height: 1.8;
	letter-spacing: 0;
	color: var(--default-color);
}
.default-size{font-size:16px;}
.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:#4c4dc3; 
		}		
.page-title .title-area:after{
	border-color: #94a497; 
}


	

.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: 320px;
}
@media only screen and (max-width: 767px) {
	.page-title-container{
		height: auto;padding-top:67px;padding-bottom:67px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px){
	.page-title-container{
		height:192px;
		min-height:162px;
		padding-top: 45px;
		padding-bottom: 45px;
	}
}

/*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:70px;	}
.sidebar_dynamic.sidebar_dynamic_sytle01 > .sidebar_sticky{
	 	 }


@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;
}

.sidebar_dynamic{
	min-height: 1px;
}

.sidebar-menu ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-menu .gomenu  > ul > li > a{
	padding: 18px 25px;
	display: block;
	position: relative;
	border-left: 5px solid transparent;
	transition: all ease 300ms;
	margin-bottom: -1px;
}

.sidebar-menu .gomenu  > ul > li > a, 
.sidebar-menu .gomenu  > ul > li > a:link, 
.sidebar-menu .gomenu  > ul > li > a:active, 
.sidebar-menu .gomenu  > ul > li > a:visited{
	color:#424242;		font-weight:inherit;	font-size:18px;	line-height:1.4;}
.sidebar-menu .gomenu > ul > li:hover > a,
.sidebar-menu .gomenu > ul > li.current > a{
	color: #ffffff;
	text-decoration: none;
	border-left-color:rgba(0,0,0,.2);
}
.sidebar-menu .gomenu  > ul > li{
	border-bottom: 1px dashed #ebebeb;
	position: relative;
}

.sidebar-menu .gomenu  > ul > li > a::before{
	content: "";
	position: absolute;
	left: -5px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 5px;
	height: 19px;
	transition: all ease 300ms;
}
.sidebar-menu .gomenu > ul > li:nth-child(5n-4):hover > a,
.sidebar-menu .gomenu > ul > li:nth-child(5n-4).current > a,
.sidebar-menu .gomenu > ul > li:nth-child(5n-4) a::before{
	background-color:#94a497;  
}
.sidebar-menu .gomenu > ul > li:nth-child(5n-3):hover > a,
.sidebar-menu .gomenu > ul > li:nth-child(5n-3).current > a,
.sidebar-menu .gomenu > ul > li:nth-child(5n-3) > a::before{
	background-color:#2c5cda;
}
.sidebar-menu .gomenu > ul > li:nth-child(5n-2):hover > a,
.sidebar-menu .gomenu > ul > li:nth-child(5n-2).current > a,
.sidebar-menu .gomenu > ul > li:nth-child(5n-2) > a::before{
	background-color:#fc7b35;
}
.sidebar-menu .gomenu > ul > li:nth-child(5n-1):hover > a,
.sidebar-menu .gomenu > ul > li:nth-child(5n-1).current > a,
.sidebar-menu .gomenu > ul > li:nth-child(5n-1) > a::before{
	background-color:#00bec5;
}
.sidebar-menu .gomenu > ul > li:nth-child(5n):hover > a,
.sidebar-menu .gomenu > ul > li:nth-child(5n).current > a,
.sidebar-menu .gomenu > ul > li:nth-child(5n) > a::before{
	background-color:#d53530;
}
.sidebar-menu .gomenu > ul > li:hover > a::before,
.sidebar-menu .gomenu > ul > li.current  > a::before{
	height: 100%;
	opacity: 0;
}

.sidebar-menu .gomenu > ul > li > ul{
	padding: 15px 0;
}
.sidebar-menu .gomenu ul ul li{
	padding: 4px 0px 4px 45px;
}
.sidebar-menu .gomenu ul ul ul li:last-child{
	padding-bottom: 0;
}
.sidebar-menu .gomenu ul ul ul li{
	padding-left: 25px;
}
.sidebar-menu .gomenu ul ul ul{
	padding: 10px 0;
}

.sidebar-menu .gomenu > ul > li > ul{
	display: none;
}
.sidebar-menu .gomenu > ul > li.current > ul{
	display: block;
}

.sidebar-menu .gomenu ul ul a, 
.sidebar-menu .gomenu ul ul a:link, 
.sidebar-menu .gomenu ul ul a:active, 
.sidebar-menu .gomenu ul ul a:visited{
	color:#666666;		font-weight:inherit;	font-size:16px;	}

.sidebar-menu .gomenu > ul > li:nth-child(5n-4) ul a:hover{
	color:#94a497;  
}
.sidebar-menu .gomenu > ul > li:nth-child(5n-3) ul a:hover{
	color:#2c5cda;
}
.sidebar-menu .gomenu > ul > li:nth-child(5n-2) ul a:hover{
	color:#fc7b35;
}
.sidebar-menu .gomenu > ul > li:nth-child(5n-1) ul a:hover{
	color:#00bec5;
}
.sidebar-menu .gomenu > ul > li:nth-child(5n) ul a:hover{
	color:#d53530;
}  

.sidebar-menu .gomenu ul li.subcurrent a{
	color: var(--accent-color);
	font-weight:600;
}





/**/
.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);
}


/**/
.fixed-widget-list li.backtop {
	background-color: var(--accent-color);
}

body .homepage10-header-btn,
body .homepage10-header-btn:link,
body .homepage10-header-btn:active,
body .homepage10-header-btn:visited,
body .homepage10-header-btn[type="button"],
body .homepage10-header-btn[type="submit"] {
	background-color: var(--button-color1);
}

body .homepage10-header-btn:hover {
	background-color: var(--button-hover-color);
}

.homepage10-header-btn.box-shadow2::after {
	box-shadow: -4px 3px 16px var(--accent-color);
}

.homepage10-header-btn.box-shadow2.bg-accent2::after {
	box-shadow: -4px 3px 16px var(--accent-color2);
}

.homepage10-header-btn.box-shadow2.bg-accent3::after {
	box-shadow: -4px 3px 16px var(--accent-color3);
}

.homepage10-header-btn.box-shadow2.bg-accent4::after {
	box-shadow: -4px 3px 16px var(--accent-color4);
}





.col{flex-basis: 0;flex-grow: 1;max-width: 100%;}
#Body .mt-60{margin-top:60px;}
#Body .mb-60{margin-bottom:60px;}
#Body .mb-30{margin-bottom:30px;}
#Body .mb-15{margin-bottom:15px;}
#Body .mb-0{margin-bottom:0px;}
#Body .pt-5{padding-top:5px;}
#Body .mb-20{margin-bottom:20px;}
#Body .pb-10{padding-bottom:10px;}
#Body .mr-10{margin-right:10px;}
.size-18 {font-size:1.125rem!important;}
.size-100 {font-size:2.25rem!important;}
.size-22 {font-size:1.375rem!important;}
.justify-content-between{ justify-content:space-between!important;}
.align-items-center{ align-items: center!important;}
#Body .text-right{ text-align: right;}
#Body .text-left{ text-align: left;}
#Body .text-center{ text-align: center;}
.height-160 {height:40px;}
.height-20 {height:20px;}
.height-40 {height:40px;}
.height-80 {height:40px;}
.overflow-hidden {overflow: hidden !important}
.clearfix::after {display: block;clear: both;content: ""}
@media(min-width:576px) {
.col-sm-12{flex: 0 0 100%;max-width: 100%;}
.col-sm-3{flex: 0 0 25%;max-width: 25%;}
.col-sm-9{flex: 0 0 75%;max-width: 75%;}
.col-sm-4{flex: 0 0 33.333333333333336%;max-width: 33.333333333333336%;}
.col-sm-8{flex: 0 0 66.66666666666667%;max-width: 66.66666666666667%;}
.col-sm-5{flex: 0 0 41.66666666666667%;max-width: 41.66666666666667%;}
.col-sm-7{flex: 0 0 58.333333333333336%;max-width: 58.333333333333336%;}
.col-sm-6{flex: 0 0 50%;max-width: 50%;}
.col-sm-2{flex: 0 0 16.666666666666668%;max-width: 16.666666666666668%;}
#Body .mt-sm-40{margin-top:40px;}
#Body .mb-sm-40{margin-bottom:40px;}
}
@media(min-width:768px) {
.col-md-12{flex: 0 0 100%;max-width: 100%;}
.col-md-auto{flex: 0 0 auto;width: auto;max-width: 100%;}
.col-md{flex-basis: 0;flex-grow: 1;max-width: 100%;}
.col-md-5{flex: 0 0 41.66666666666667%;max-width: 41.66666666666667%;}
.col-md-7{flex: 0 0 58.333333333333336%;max-width: 58.333333333333336%;}
.col-md-6{flex: 0 0 50%;max-width: 50%;}
#Body .mb-md-50{margin-bottom:50px;}
.size-100 {font-size:3rem!important;}
.height-160 {height:160px;}
.height-40 {height:40px;}
.height-80 {height:80px;}
}
@media(min-width:992px) {
.col-lg-6{flex: 0 0 50%;max-width: 50%;}
.col-lg-3{flex: 0 0 25%;max-width: 25%;}
#Body .mt-lg-0{margin-top:0px;}
#Body .mb-lg-0{margin-bottom:0px;}
#Body .pr-lg-80{padding-right:80px;}
#Body .ml-lg-80{margin-left:80px;}
#Body .mr-lg-80{margin-right:80px;}
}
@media(min-width:1200px) {
.col-xl-6{flex: 0 0 50%;max-width: 50%;}
.size-100 {font-size:6.25rem!important;}
.size-22 {font-size:1.375rem!important;}
.d-xl-none{display: none !important;}
}

            .Architecture01-banner.is-section .is-section {
                height: calc(100vh - 100px);
                overflow: hidden;
            }

            .Architecture01-banner.is-section .left-box {
                background-image: linear-gradient(to top, var(--gradation-color1), var(--gradation-color2), var(--gradation-color4), var(--gradation-color5));
                display: flex;
                align-items: center;
                justify-content: start;
                font-size: 100px;
                margin-right: 70px;
                text-indent: -20px;
                padding-right: 60px;
                font-weight: bold;
                width: 172px;
                font-family: var(--family2);
            }

            .Architecture01-banner .banner-title {
                font-size: 90px;
                margin: 0 0 32px;
            }

            .Architecture01-banner.is-section.section-slider .swiper-button-next, .Architecture01-banner.is-section.section-slider .swiper-button-prev {
                width: 84px;
                height: 87px;
                left: 0;
                right: auto;
                bottom: 0;
                top: auto;
                background-color: #222222;
            }

            .Architecture01-banner.is-section.section-slider .swiper-button-next {
                bottom: 87px;
            }

            .Architecture01-banner.is-section.section-slider .swiper-button-next:hover, .Architecture01-banner.is-section.section-slider .swiper-button-prev:hover {
                background-color: #161616;
            }

            .Architecture01-banner.is-section.section-slider .swiper-button-next span, .Architecture01-banner.is-section.section-slider .swiper-button-prev span {
                width: 10px;
                height: 10px;
                margin: -5px 0 0 0px;
            }

            .Architecture01-banner.is-section.section-slider .swiper-button-next::after, .Architecture01-banner.is-section.section-slider .swiper-button-prev::before {
                content: "";
                width: 20px;
                border-bottom: 2px solid currentColor;
                position: absolute;
                top: 50%;
                left: 50%;
                margin-left: -10px;
                margin-top: -1px;
            }

            .Architecture01-banner.is-section.section-slider .swiper-button-prev span {
                margin: -5px 0 0 -10px;
            }

            @media only screen and (max-width: 767px) {
                .Architecture01-banner.is-section .left-box {
                    font-size: 50px;
                    width: 100px;
                    margin-bottom: 20px;
                    margin-left: 15px;
                    text-indent: 0;
                }

                .Architecture01-banner .banner-title {
                    font-size: 72px;
                }

                .Architecture01-banner.is-section.section-slider .swiper-button-next {
                    bottom: 0;
                    left: 87px;
                }
            }

            body .button-14, input.button-14 {
            		cursor: pointer;
                background-color: transparent;
                color: #93a496;
                font-size: 18px;
                min-width: 160px;
                border-radius: 0;
                border: 2px solid #93a496;
                height: 56px;
                display: inline-flex;
                font-weight: 400;
                align-items: center;
                justify-content: center;
                padding-bottom: 0;
                font-family: 'Cinzel', serif;
                font-variant: small-caps;
                letter-spacing: 0px;
                font-weight: 600;
            }

            body .button-14, body .button-14:link, body .button-14:visited, body .button-14:active, input.button-14 {
                color: #93a496;
                transition: all 300ms cubic-bezier(0.420, 0.000, 1.000, 1.000);
            }

            body .button-14:hover, input.button-14:hover {
                text-decoration: none !important;
            }

            .Architecture01-infobox {
                display: flex;
                align-items: center;
                justify-content: center;
                max-width: 390px;
                padding: 50px;
                position: relative;
                z-index: 2;
                margin: 0 0 30px;
            }

            .Architecture01-infobox .number {
                font-size: 130px;
                color: #93a496;
                text-align: right;
                flex: 0 0 50%;
                font-family: var(--family2);
            }

            .Architecture01-infobox .info {
                font-size: 20px;
                padding-left: 20px;
                font-family: var(--family2);
                margin-bottom: 10px;
            }

            .is-light-text .Architecture01-infobox .info {
                color: #dadada;
            }

            .Architecture01-infobox::after {
                content: "";
                z-index: -1;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image: linear-gradient(to top, var(--gradation-color1), var(--gradation-color2), var(--gradation-color4), var(--gradation-color5));
                clip-path: polygon(30% 100%, 30% calc(100% - 17px), 17px calc(100% - 17px), 17px 17px, 30% 17px, 30% 0, 70% 0, 70% 17px, calc(100% - 17px) 17px, calc(100% - 17px) calc(100% - 17px), 70% calc(100% - 17px), 70% 100%, 100% 100%, 100% 0, 0 0, 0 100%);
            }

            .Architecture01-list {
                margin: 0 0 30px;
                padding: 0;
                list-style: none;
            }

            .Architecture01-list li {
                position: relative;
                padding: 0 0 10px 35px;
            }

            .is-light-text .Architecture01-list li {
                color: #bbbbbb;
            }

            .Architecture01-list li::before {
                content: "";
                border-bottom: 1px solid #93a496;
                width: 21px;
                position: absolute;
                left: 0;
                top: 14px;
            }

            .Architecture01-logolist img {
                opacity: .5 !important;
                transition: opacity 300ms ease-in;
                margin: 15px 0;
            }

            .Architecture01-logolist img:hover {
                opacity: 1 !important;
            }

            .architecture01-carousel.carousel-swiper {
                margin: 0px;
                width: auto;
            }

            .architecture01-carousel .swiper-wrapper-overflow {
                padding: 0;
            }

            .architecture01-carousel>.swiper-pagination-bullets .swiper-pagination-bullet {
                margin: 0 10px;
            }

            .architecture01-carousel .swiper-pagination-bullet {
                width: 10px;
                height: 10px;
                /*box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);*/
                opacity: 1;
                outline: none;
            }

            .is-light-text .architecture01-carousel .swiper-pagination-bullet {
                background-color: #ffffff;
            }

            .architecture01-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active {
                width: 36px;
                box-shadow: none;
                background: #93a496;
            }

            .architecture01-carousel .swiper-imgbox {
                position: relative;
                width: 100%;
            }

            .architecture01-carousel .swiper-imgbox .content {
                position: absolute;
                top: 0;
                left: 0;
                padding: 50px 40px;
                display: flex;
                flex-direction: column;
                height: 100%;
                width: 100%;
                text-align: left;
                transition: background-color 300ms ease-in;
            }

            .architecture01-carousel .swiper-imgbox .content > * {
                opacity: 0;
                transition: opacity 300ms ease-in;
            }

            .architecture01-carousel .swiper-imgbox:hover .content > * {
                opacity: 1;
            }

            .architecture01-carousel .swiper-imgbox:hover .content {
                background-color: rgba(0, 0, 0, .4);
            }

            .architecture01-carousel .swiper-imgbox .content .title {
                margin: 0 0 auto;
                color: #fff;
                font-size: 26px;
                font-weight: 400;
                font-family: var(--family2);
                opacity: 1;
            }

            .architecture01-carousel .swiper-imgbox .pic {
                overflow: hidden;
            }

            .architecture01-carousel .swiper-imgbox .pic img {
                width: 100%;
                transition: transform 300ms ease-in;
            }

            .architecture01-carousel .swiper-imgbox:hover .pic img {
                transform: scale(1.05);
            }

            .architecture01-carousel .swiper-imgbox .content {
                color: #ffffff;
            }

            .architecture01-carousel .swiper-imgbox .content p:last-child {
                margin-bottom: 0;
            }

            .architecture01-carousel .swiper-imgbox .link {
                color: #ffffff;
                text-transform: uppercase;
            }

            .architecture01-carousel .swiper-imgbox .link .sico {
                margin-left: 10px;
                vertical-align: middle;
                margin-bottom: 3px;
            }

            .architecture01-carousel .swiper-imgbox .link:hover {
                color: #15c1e9;
            }

            .builder-editor-mode .architecture01-carousel .swiper-imgbox .content {
                pointer-events: none;
            }

            .builder-editor-mode .architecture01-carousel .swiper-imgbox .content * {
                pointer-events: all;
            }

            @media only screen and (max-width: 991px) {
                .architecture01-carousel .swiper-imgbox .content {
                    padding: 15px;
                }
            }

            .Architecture01-text-circle {
                color: #FFF;
                fill: currentColor;
                text-transform: uppercase;
                font-size: 38px;
                width: 200px;
                position: absolute;
                top: -16px;
                left: 20px;
                opacity: .4;
                transform: rotate(90deg);
            }

            .Architecture01-title {
                position: relative;
                z-index: 2;
                padding: 15px 35px;
                display: inline-block;
                text-transform: uppercase;
                font-weight: 400;
                margin-bottom: 40px;
                font-size: 32px;
                min-width: 276px;
                text-align: center;
            }

            .Architecture01-title::after {
                content: "";
                z-index: -1;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image: linear-gradient(to top, var(--gradation-color1), var(--gradation-color2), var(--gradation-color4), var(--gradation-color5));
                clip-path: polygon(27px 100%, 27px calc(100% - 3px), 3px calc(100% - 3px), 3px 3px, 27px 3px, 27px 0, calc(100% - 27px) 0, calc(100% - 27px) 3px, calc(100% - 3px) 3px, calc(100% - 3px) calc(100% - 3px), calc(100% - 27px) calc(100% - 3px), calc(100% - 27px) 100%, 100% 100%, 100% 0, 0 0, 0 100%);
            }

            .Architecture01-iconbox {
                color: #696969;
                background-color: #1f1f1f;
                padding: 30px 40px;
                height: calc(100% - 30px);
                margin-bottom: 30px;
                border-radius: 4px;
            }

            .Architecture01-iconbox .box-top {
                display: flex;
                align-items: center;
                margin-bottom: 25px;
            }

            .Architecture01-iconbox .icon {
                flex: 0 0 60px;
                margin-right: 20px;
            }

            .Architecture01-iconbox .title {
                margin: 0;
                color: #fff;
                font-size: 22px;
                font-weight: 400;
                padding-top: 5px;
            }

            .Architecture01-iconbox p:last-child {
                margin-bottom: 0;
            }

            .architecture01-video .title {
                color: #fff;
                font-size: 32px;
                background-color: #161616;
                padding: 40px 30px 30px;
                position: absolute;
                bottom: 0;
                left: 0;
                margin: 0;
                max-width: 520px;
                font-family: var(--family);
                font-weight: 700;
            }

            .architecture01-video .gradation-color {
                text-decoration: underline;
                background-image: var(--linear-gradient-right);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                display: inline-block;
                position: relative;
            }

            .architecture01-video .gradation-color::before {
                content: "";
                position: absolute;
                top: 100%;
                width: 100%;
                left: 0;
                height: 1px;
                background-image: var(--linear-gradient-right);
            }

            .architecture01-video .play-button {
                width: 114px;
                height: 114px;
                line-height: 114px;
                background-color: #93a496;
                margin: -77px 0 0 -77px;
            }

            .architecture01-video .play-button .icon {
                border-width: 14px;
                transform: scale(1.25, 1);
            }

            .architecture01-video .pic img {
                width: 100%;
            }

            @media only screen and (max-width: 1199px) {
                .architecture01-video .title {
                    font-size: 24px;
                    padding: 15px;
                    max-width: 100%;
                    position: relative;
                }

                .architecture01-video .play-button {
                    width: 77px;
                    height: 77px;
                    line-height: 77px;
                    margin: -77px 0 0 -34px;
                }
            }

            .play-button {
                display: inline-block;
                width: 75px;
                height: 75px;
                line-height: 75px;
                border-radius: 50%;
                text-align: center;
                position: relative;
                cursor: pointer;
                -webkit-transform: scale(0.9);
                transform: scale(0.9);
                transition: all 400ms ease-in-out!important;
                transition-delay: 200ms;
                position: absolute;
                top: 50%;
                left: 50%;
                margin: -38px 0 0 -38px;
            }

            .play-button:hover {
                -webkit-transform: scale(1.001);
                transform: scale(1.001);
                transition-delay: 0ms;
            }

            .play-button .icon {
                border: 8px solid transparent;
                border-left-color: #ffffff;
                border-right: none;
                display: inline-block;
                width: 0;
                height: 0;
                margin-right: -2px;
                vertical-align: middle;
                backface-visibility: hidden;
            }

            @-webkit-keyframes playrotate {
                0% {
                    -webkit-transform: rotate(0);
                }

                100% {
                    -webkit-transform: rotate(360deg);
                }
            }

            @keyframes playrotate {
                0% {
                    transform: rotate(0);
                }

                100% {
                    transform: rotate(360deg);
                }
            }

            @-webkit-keyframes playrotate2 {
                0% {
                    -webkit-transform: rotate(0);
                }

                100% {
                    -webkit-transform: rotate(-360deg);
                }
            }

            @keyframes playrotate2 {
                0% {
                    transform: rotate(0);
                }

                100% {
                    transform: rotate(-360deg);
                }
            }

            .play-button::after {
                content: "";
                position: absolute;
                top: -20px;
                left: -20px;
                right: -20px;
                bottom: -20px;
                border: 2px solid rgba(255, 255, 255, 0.4);
                border-radius: 50%;
                border-left-color: transparent;
                -webkit-animation: playrotate 1.2s linear infinite;
                animation: playrotate 1.2s linear infinite;
            }

            .play-button::before {
                content: "";
                position: absolute;
                top: -36px;
                left: -36px;
                right: -36px;
                bottom: -36px;
                border: 1px solid rgba(255, 255, 255, 0.3);
                border-radius: 50%;
                border-bottom-color: transparent;
                -webkit-animation: playrotate2 1.2s linear infinite;
                animation: playrotate2 1.2s linear infinite;
            }

            .play-button::after, .play-button::before {
                opacity: 0;
                transition: opacity 400ms ease-in-out;
            }

            .play-button:hover::after, .play-button:hover::before , .pic:hover > .play-button::after, .pic:hover > .play-button::before, a:hover > .play-button::after, a:hover > .play-button::before {
                opacity: 1;
                transition-delay: 200ms;
            }

            .Architecture01-infobox02 {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 65px 55px;
                position: relative;
                z-index: 2;
                font-size: 36px;
                font-family: var(--family2);
                line-height: 1.4;
                font-weight: 600;
                max-width: 400px;
            }

            .is-light-text .Architecture01-infobox02, .is-light-text .Architecture01-infobox02 p {
                color: #dadada;
            }

            .Architecture01-infobox02::after {
                content: "";
                z-index: -1;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image: linear-gradient(to top, var(--gradation-color1), var(--gradation-color2), var(--gradation-color4), var(--gradation-color5));
                clip-path: polygon(30% 100%, 30% calc(100% - 17px), 17px calc(100% - 17px), 17px 17px, 30% 17px, 30% 0, 70% 0, 70% 17px, calc(100% - 17px) 17px, calc(100% - 17px) calc(100% - 17px), 70% calc(100% - 17px), 70% 100%, 100% 100%, 100% 0, 0 0, 0 100%);
            }

            .Architecture01-infobox02 .gradation-color {
                text-decoration: underline;
                background-image: var(--linear-gradient-right);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .Architecture01-infobox02 p:last-child {
                margin-bottom: 0;
            }

            .hotspot01 {
                position: relative;
                display: inline-block;
            }

            .hotspot01 .hotspot-item {
                position: absolute;
            }

            .hotspot01 .hotspot-content {
                position: absolute;
                bottom: 45px;
                left: -166px;
                display: none;
                z-index: 100;
            }

            .hotspot01 .hotspot-content .hotspot-info {
                background-color: #000;
                color: #FFF;
                border-radius: 3px;
                width: 332px;
                text-align: left;
                padding: 25px;
                box-shadow: 3px 4px 10px rgba(0,0,0,.15);
                display: -ms-flexbox;
                display: flex;
                max-width: calc(100vw - 20px);
            }

            .hotspot01 .hotspot-item.active .hotspot-content {
                display: block;
            }

            .hotspot01 .hotspot-content::after {
                content: '';
                position: absolute;
                top: 100%;
                left: calc(50% + 10px);
                border-top: 9px solid #000;
                border-left: 6px solid #000;
                border-right: 6px solid transparent;
                border-bottom: 9px solid transparent;
            }

            .hotspot01 .dir-bottom .hotspot-content {
                bottom: auto;
                top: 45px;
            }

            .hotspot01 .dir-bottom .hotspot-content::after {
                top: auto;
                bottom: 100%;
                -webkit-transform: scale(1,-1);
                transform: scale(1,-1);
            }

            .hotspot01 .hotspot-content .title {
                color: #fff;
                margin: 0 0 8px;
            }

            .hotspot01 .hotspot-content .description {
                color: #fff;
            }

            .hotspot01 .hotspot-content .icon {
                width: 64px;
                height: 64px;
                border-radius: 50%;
                flex: 0 0 auto;
                margin-top: 5px;
            }

            .hotspot01 .hotspot-content .icon + .cont {
                padding-left: 20px;
            }

            .hotspot01 .h-dot {
                cursor: pointer;
            }

            .hotspot01 .h-dot .sico {
                color: #FFF;
                font-size: 20px;
            }

            .hotspot01 .svg-text {
                position: absolute;
                bottom: 0;
                left: -16%;
                opacity: .2;
                font-family: var(--family2);
                pointer-events: none;
            }

            .hotspot .hotspot-content .hotspot-close {
                color: #fff;
                position: absolute;
                right: 5px;
                top: 5px;
                font-weight: 100;
                font-size: 19px;
                cursor: pointer;
                line-height: 1;
                top: 3px;
                right: 6px;
            }

            .hotspot .hotspot-content .hotspot-close::after {
                content: "?";
                font-family: Arial, Helvetica, sans-serif;
                font-size: 16px;
            }

            .hotspot .hotspot-content .hotspot-close:hover {
                color: #fff;
            }

            @media only screen and (min-width: 992px) {
                .hotspot01 .dir-right .hotspot-content {
                    left: 45px;
                    top: -40px;
                    bottom: auto;
                }

                .hotspot01 .dir-right .hotspot-content::after {
                    top: 37px;
                    right: 100%;
                    left: auto;
                    -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
                }

                .hotspot01 .dir-left .hotspot-content {
                    left: auto;
                    right: 45px;
                    top: -40px;
                    bottom: auto;
                }

                .hotspot01 .dir-left .hotspot-content::after {
                    top: 26px;
                    left: 100%;
                    -webkit-transform: rotate(-90deg);
                    transform: rotate(-90deg);
                }
            }

            .swiper-architecture01-testimonials blockquote {
                border: none;
                padding: 0;
                line-height: inherit;
            }

            .swiper-architecture01-testimonials .description {
                text-align: left;
                position: relative;
                color: #696969;
                font-size: 20px;
                font-style: italic;
                margin-bottom: 50px;
            }

            .swiper-architecture01-testimonials .description p {
                line-height: inherit;
            }

            .swiper-architecture01-testimonials .inofobox {
                display: flex;
                align-items: center;
                font-style: normal;
                text-align: left;
            }

            .swiper-architecture01-testimonials .inofobox .pic {
                margin-right: 31px;
                position: relative;
                border: 2px solid transparent;
                border-radius: 50%;
                padding: 3px;
                background-clip: padding-box, border-box;
                background-origin: padding-box, border-box;
                background-image: linear-gradient(to right, #1f1f1f, #1f1f1f), linear-gradient(90deg, var(--gradation-color6), var(--gradation-color1));
                overflow: hidden;
            }

            .swiper-architecture01-testimonials .inofobox img {
                width: 108px;
                height: 108px;
                border-radius: 50%;
            }

            .swiper-architecture01-testimonials .inofobox .name {
                font-size: 24px;
                color: #ffffff;
                font-weight: 400;
                margin: 8px 0 0;
            }

            .swiper-architecture01-testimonials .info {
                font-size: 18px;
                color: #bbbbbb;
                text-align: left;
            }

            .swiper-architecture01-testimonials .job {
                margin-bottom: 0;
                font-size: 18px;
            }

            .swiper-architecture01-testimonials .name {
                font-size: 24px;
            }

            .swiper-architecture01-testimonials .testimonials-rating svg {
                height: 1em;
            }

            .work-process01 .process-item {
                display: flex;
                align-items: center;
            }

            .work-process01 .process-header {
                width: 185px;
                flex: 0 0 185px;
                margin-right: 60px;
                text-align: center;
                position: relative;
                z-index: 2;
            }

            .work-process01 .process-header::before {
                content: "";
                position: absolute;
                top: -8px;
                left: 0px;
                right: 0px;
                bottom: -8px;
                background-image: var(--linear-gradient-right);
                z-index: -1;
                opacity: 0;
                transition: opacity 200ms ease-in;
            }

            .work-process01 .process-header .step-title {
                color: #93a496;
                font-size: 20px;
                font-weight: 600;
                transition: color 200ms ease-in;
            }

            .work-process01 .process-header .sub-title {
                color: #999999;
                font-family: var(--family2);
                transition: color 200ms ease-in;
            }

            .work-process01 .process-title {
                font-size: 28px;
                color: #ffffff;
                width: 400px;
                flex: 0 0 400px;
                font-family: var(--family2);
                margin-right: 60px;
                position: relative;
                display: flex;
            }

            .work-process01 .process-description {
                font-size: 18px;
                word-break: break-all;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
                overflow: hidden;
            }

            .work-process01 .process-description p {
                margin-bottom: 0;
            }

            .work-process01 .process-item {
                margin-bottom: 30px;
            }

            .work-process01 .hover-img {
                position: absolute;
                opacity: 0;
                left: calc(100% + 15px);
                top: 0;
                z-index: 100;
                transition: all 200ms ease-in;
                width: 100%;
            }

            .work-process01 .process-title span {
                display: inline-block;
                position: relative;
            }

            @media only screen and (min-width: 992px) {
                .work-process01 .process-item:hover .process-header::before {
                    opacity: 1;
                }

                .work-process01 .process-item:hover .step-title {
                    color: #000;
                }

                .work-process01 .process-item:hover .sub-title {
                    color: #FFF;
                }

                .work-process01 .process-title:hover {
                    color: #93a496;
                }

                .work-process01 .process-title:hover .hover-img {
                    opacity: 1;
                }
            }

            @media only screen and (max-width: 991px) {
                .work-process01 .process-item {
                    display: block;
                    text-align: center;
                    justify-content: center;
                }

                .work-process01 .process-item > div {
                    text-align: center;
                    width: 100%;
                    justify-content: center;
                    margin: 0;
                }

                .work-process01 .hover-img {
                    opacity: 1;
                    position: static;
                    margin: 15px auto;
                }
            }

            .Architecture01-title01 {
                color: #93a496;
                font-size: 28px;
                display: flex;
                align-items: center;
                margin: 0 0 70px;
                font-weight: 500;
            }

            .Architecture01-title01::after, .Architecture01-title01::before {
                content: "";
                border-bottom: 1px solid rgba(255, 255, 255, .1);
                flex: 1;
            }

            .Architecture01-title01::before {
                margin-right: 30px;
            }

            .Architecture01-title01::after {
                margin-left: 30px;
            }

            .Architecture01-blog {
                margin-bottom: 40px;
            }

            .Architecture01-blog .pic {
                position: relative;
                margin-bottom: 30px;
            }

            .Architecture01-blog .category {
                position: absolute;
                top: 27px;
                left: 32px;
                display: flex;
                gap: 10px;
            }

            .Architecture01-blog .category span {
                font-size: 15px;
                color: #ffffff;
                background-color: rgba(0, 0, 0, .4);
                display: inline-block;
                padding: 4px 15px;
                border-radius: 5px;
            }

            .Architecture01-blog .date {
                font-size: 18px;
                color: #696969;
            }

            .Architecture01-blog .title {
                font-size: 22px;
                font-weight: 400;
            }

            .Architecture01-blog .title a {
                color: currentColor;
            }

            .Architecture01-blog .title a:hover {
                color: #93a496;
                text-decoration: none;
            }

            .architecture01-footer-bottom a, .architecture01-footer-bottom a:link {
                color: currentColor;
            }

            .architecture01-footer-bottom a:hover {
                color: #93a496;
            }

            .architecture01-footer {
                border-bottom: 1px solid rgba(255, 255, 255, .1);
            }

.dng-main{
	 background:#fff;  	}



/*** CHANGES BY KWB ***/
.Normal, .DnnModule-XModPro, FOOTER { Font-Family:"Montserrat", sans-serif; color:#4a4f54; }

#dnn_ContentPane:not(.DNNEmptyPane), #dnn_FullScreenPaneC:not(.DNNEmptyPane) { padding: 60px 0;}

.ContentPaneContainer {background-image: url('/portals/RainforestEstates/images/aboutbg.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center center;}
.DnnModule-7800 { padding: 40px 0 0 0;}

.Home07-heading01 { color: #4a4f54; Font-Family:"Cinzel", serif; font-weight: 600; font-variant: small-caps; font-size: 32px; line-height: 36px;}
.Home07-Container01 .dnntitle { text-align: center!important; color: #4a4f54; /*text-transform: uppercase;*/}
.Home07-Container01 .dnntitle span span { color: #93a496; Font-Family:"Cinzel", serif; font-weight: 600; font-variant: small-caps;}
.Home07-Container01 .dnntitle h1, .Home07-Container01 .dnntitle h2 { color: #4a4f54; Font-Family:"Cinzel", serif; font-weight: 600; font-variant: small-caps; font-size: 28px; line-height: 32px; }
.Home07-heading01:after { border-bottom: 1px solid #4a4f54!important; margin: 10px auto 22px!important;}

.Home07-heading02 {color: #4a4f54; Font-Family:"Cinzel", serif; font-weight: 600; font-variant: small-caps; font-size: 28px; line-height: 32px;}
.Home07-Container02 .dnntitle { text-align: center!important; color: #4a4f54; /*text-transform: uppercase;*/}
.Home07-Container02 .dnntitle span span { color: #93a496; Font-Family:"Cinzel", serif; font-weight: 600; font-variant: small-caps;}
.Home07-Container02 .dnntitle h1, .Home07-Container02 .dnntitle h2 { color: #4a4f54; Font-Family:"Cinzel", serif; font-weight: 600; font-variant: small-caps;}
.Home07-heading02:after { border-bottom: 1px solid #4a4f54!important; margin: 10px auto 22px!important;}

.DnnModule-7802 .Home07-heading01 { color: #fff;}
.DnnModule-7802 .Home07-heading01:after { border-bottom: 1px solid #93a496!important}

img { max-width: 100%; }

#twopanes { background-color: #4a4f55; color: #fff; padding-top: 60px; padding-bottom: 30px;}
#twopanes .Normal { color: #fff;}

/*#dnn_RowFourGrid6Pane1 { min-height: 400px; width: 100%; background-image: url('/portals/RainforestEstates/images/location.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center right;}*/
.DnnModule-7807 .Home07-Container01 .dnntitle span span, .DnnModule-7808 .Home07-Container01 .dnntitle span span, .DnnModule-7809 .Home07-Container01 .dnntitle span span, .DnnModule-7810 .Home07-Container01 .dnntitle span span { color: #fff;}
.DnnModule-7807 .Home07-heading01:after, .DnnModule-7808 .Home07-heading01:after, .DnnModule-7809 .Home07-heading01:after, .DnnModule-7810 .Home07-heading01:after { border-bottom: 1px solid #fff!important}
.DnnModule-7807, .DnnModule-7808, .DnnModule-7809, .DnnModule-7810 { text-align: left; float: left; width: 47.9999%; padding: 20px; margin-bottom: 4%; background-image: url('/portals/RainforestEstates/images/boxbg.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center center; }
.DnnModule-7807 p, .DnnModule-7808 p, .DnnModule-7809 p, .DnnModule-7810 p { font-size: 18px; font-style: italic;}
.DnnModule-7807, .DnnModule-7809 { margin-right: 2%;}
.DnnModule-7808, .DnnModule-7810 { margin-left: 2%;}
.DnnModule-7809, .DnnModule-7810 { margin-bottom: 0;}
#dnn_RowFourGrid6Pane2 .Home07-Container01 .dnntitle { text-align: left!important;}
#dnn_RowFourGrid6Pane2 .Home07-heading01:after {
    margin: 10px 0 22px !important;
}
.search-popup-box, ul.fixed-widget-list { display: none!important;}
.popupmenu4-wrap .menu-icon { color: #fff;}
.header-wrap .logo img { max-height: 210%!important; transform: translate(-50%, 0%); position: absolute; top: 0;}
.floating-active #headerrow-883869 { background-color: #4a4f55!important;}

FOOTER { background-color: #3a3a3c; color: #fff; padding: 40px 0;}
footer img#footerlogo {
    width: 268px;
}
footer a:link, footer a:active, footer a:visited, footer a:hover {
    font-family: "Cinzel", serif;
    font-weight: 600;
}
footer a:link, footer a:active, footer a:visited, footer a:hover, .footer-info-box {
    color: #fff;
    text-align: center;
}
#poweredby {
    position: absolute;
    right: 0;
    bottom: 0;
}
#poweredby img {
    width: 200px;
}
#fmb {
    position: absolute;
    left: 0;
    bottom: 0;
}
#fmb img {
    width: auto;
    max-height: 61px;
    padding: 5px 0;
}
img#eho {
    height: 16px;
    width: auto;
}
span#dnn_dnnCOPYRIGHT628747_lblCopyright { font-style: italic; font-size: 14px;}

.DnnModule-7807 .Home07-heading01, .DnnModule-7808 .Home07-heading01, .DnnModule-7809 .Home07-heading01, .DnnModule-7810 .Home07-heading01 { font-size: 28px!important;}

FOOTER .Normal { color: #fff;	}
span#dnn_dnnCOPYRIGHT628747_lblCopyright { color: #999;}
.DnnModule-7806 { oadding-top: 20px;}

.popupmenu4-wrap .design-menu { background-image: url('/portals/RainforestEstates/images/menubg.jpg'); background-position: center center; background-size: cover; background-repeat: no-repeat; background-color: transparent!important;}
#popup-menu4252561 { background-color: rgba(74,79,85,0);}
#popup-menu4252561 .popup-menu-content .gomenu  {max-width: 300px; padding-top: 18px; background-color: rgba(74, 79, 85, 0.5);}
#popup-menu4252561 .popup-last-content {background-color: rgba(74, 79, 85, 0.5); padding-bottom: 14px;}
span#dnn_ctr7815_dnnTITLE7_titleLabel, span#dnn_ctr7815_dnnTITLE7_titleLabel:after, span#dnn_ctr7926_dnnTITLE7_titleLabel, span#dnn_ctr7926_dnnTITLE7_titleLabel:after { color: #fff;}
span#dnn_ctr7815_dnnTITLE7_titleLabel:after { border-bottom: 1px solid #fff!important; }
#dnn_ctr7900_HtmlModule_lblContent { margin-top: 30px;}
#column-388596 { width: 52px;	}
.mobile-header .header-area { display: block!important;}
.mobile-menu-icon { margin-top: 14px;}
img.teamlogo { float: right; margin-left: 20px; max-width: 300px;}

@media only screen and (max-width: 468px) {
	.DnnModule-7807, .DnnModule-7808, .DnnModule-7809, .DnnModule-7810 { text-align: left; float: none; width: 100%; padding: 20px; margin-bottom: 4%; background-image: url('/portals/RainforestEstates/images/boxbg.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center center; }
	.DnnModule-7807, .DnnModule-7808, .DnnModule-7809, .DnnModule-7810 { margin-left: 0; margin-right: 0;}
	#buildersection .col-md-6 .bgpic { }
	#fmb, #poweredby { position: relative; top: 0; left: 0; right: 0; bottom: 0;text-align: center;}
	#buildersection .col-md-6 .bgpic {max-height: 250px;min-height: 250px !important; height: 250px;}
	img.teamlogo { float: none; margin-left: 0px; width: 100%; max-width: 100%;}
}

.DnnModule-7807 a.button-14, .DnnModule-7808 a.button-14, .DnnModule-7809 a.button-14, .DnnModule-7810 a.button-14 { border-color: #fff; color: #fff;}

#dnn_RowFourGrid6Pane1 { background-size:cover; background-position: center center; background-repeat: no-repeat;}
.DnnModule-7807, .DnnModule-7808, .DnnModule-7809, .DnnModule-7810 { cursor: pointer;}
.DnnModule-7807 a, .DnnModule-7808 a, .DnnModule-7809 a, .DnnModule-7810 a { font-style: normal; /*text-decoration: underline;*/ font-weight: 500; color: #fff;}
/*** ACCORDION ON LOCATION PAGE ***/


.accordion {
  overflow: hidden;
  max-width: 100%;
}

.accseparator { margin-bottom: 10px;}
.acc-h {
  border: 1px solid #ddd;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  position: relative;
  Font-Family: "Cinzel", serif;
  font-weight: 600;
  font-variant: small-caps;
}

.acc-h::after {
  content: ">";
  position: absolute;
  right: 16px;
  transition: transform 0.25s ease;
}

.acc-h.is-open::after {
  transform: rotate(90deg);
}

.acc-b {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px 0 32px;
  border: 1px solid #ddd;
  border-top: none;
}

.acc-b ul {
  margin: 12px 0 16px;
}

#dnn_FullScreenPaneC { margin-bottom: 0!important;}