/*---------------------------------------
COMMON STYLES             
-----------------------------------------*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    position: relative;
    overflow-x: hidden;
    font-size: 10px;
    margin: 0;
}
@media only screen and (max-width: 1728px) {
    html{
        font-size: 9px;
    }
}
@media only screen and (max-width: 1536px) {
    html{
        font-size: 8px;
    }
}
@media only screen and (max-width: 1344px) {
    html{
        font-size: 7px;
    }
}
@media only screen and (max-width: 1152px) {
    html{
        font-size: 6px;
    }
}
@media only screen and (max-width: 1050px) {
    html{
        font-size: 8px;
    }
}
@media only screen and (min-width: 2112px) {
    html{
        font-size: 11px;
    }
}
@media only screen and (min-width: 2304px) {
    html{
        font-size: 12px;
    }
}
@media only screen and (min-width: 2496px) {
    html{
        font-size: 13px;
    }
}
@media only screen and (min-width: 2688px) {
    html{
        font-size: 14px;
    }
}
@media only screen and (min-width: 2880px) {
    html{
        font-size: 15px;
    }
}
@media only screen and (min-width: 3072px) {
    html{
        font-size: 16px;
    }
}
@media only screen and (min-width: 3264px) {
    html{
        font-size: 17px;
    }
}
@media only screen and (min-width: 3456px) {
    html{
        font-size: 18px;
    }
}
@media only screen and (min-width: 3648px) {
    html{
        font-size: 19px;
    }
}
@media only screen and (min-width: 3840px) {
    html{
        font-size: 20px;
    }
}
body{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    line-height: 3rem;
    font-weight: 400;
    color: #525252;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

a {
    color: #c59d5f;
    transition: all .3s;
}
a, a:hover, a:focus{
    text-decoration: none;
    outline: none;
    transition: all .3s;
    color: #c59d5f;
}
.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.1rem 2.5rem;
	background-color: #0D4D47;
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	column-gap: .5rem;
}
.btn:hover {
	color: #fff;
	background-color:#000;
}
ul, ol, li{
    list-style: none;
    margin: 0;
    padding: 0;
}
img{
    max-width: 100%;
    height: auto;
}
h1, h2, h3, h4, h5, h6 {
    color: #0e0e0e;
    font-weight: 700;
}
h1 {
    font-size: 6rem;
    line-height: 7rem;
}
h2 {
    font-size: 3rem;
    line-height: 4.9rem;
}
h3 {
    font-size: 2rem;
    line-height: 4rem;
}
h4 {
    font-size: 2.5rem;
    line-height: 3.5rem;
}
h5 {
    font-size: 2rem;
    line-height: 3rem;
}
h6 {
    font-size: 1.5rem;
    line-height: 2.5rem;
}
.icon {
    display: flex;
}
.container {
    max-width: 117rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/*offcanvas menu*/
.offcanvas-menu {
    position: relative;
    width: 100%;
    overflow: hidden
}
.offcanvas-menu ul {
    margin: 0;
    padding: 0;
    list-style: none
}
.offcanvas-menu ul.menu {
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1)
}
.offcanvas-menu ul.menu.off-view {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}
.offcanvas-menu ul.menu.in-view {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}
.offcanvas-menu ul li {
    display: block;
}
.offcanvas-menu ul li.menu-item-has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.offcanvas-menu ul li.menu-item-has-children > a {
    width: calc(100% - 60px);
}
.offcanvas-menu ul li a {
    display: block;
    padding: 11px 20px;
    transition: color .3s;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    height: auto;
}
.offcanvas-menu ul li a:hover {
    color: #fff;
}
.offcanvas-menu ul li.back-btn>a {
    background-color: #313b47;
    color: #fff
}
.offcanvas-menu ul li.back-btn>a::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 8px;
    border-top: .32em solid transparent;
    border-right: .37em solid;
    border-bottom: .32em solid transparent;
    content: '';
    opacity: .75
}
.offcanvas-menu ul li.active>a {
    color: #00015E
}
.offcanvas-menu ul li.menu-item-has-children>span {
    display: block;
    position: relative;
    width: 100%
}
.offcanvas-menu ul li.menu-item-has-children>span>a {
    padding-right: 65px;  
}
.offcanvas-menu ul li.menu-item-has-children.active>span>a {
    color: #00015E
}
.offcanvas-menu ul li.menu-item-has-children .sub-menu-toggle {
	width: 60px;
	height: 47px;
	transition: background-color .3s;
	border-left: 1px solid rgba(255,255,255,0.12);
	border-bottom: 1px solid rgba(255,255,255,0.12);
	color: rgba(255,255,255,0.75);
	cursor: pointer;
	z-index: 1;
}
.offcanvas-menu ul li.menu-item-has-children .sub-menu-toggle::before {
    display: block;
    position: absolute;
    top: 50%;
    right: 25px;
    width: 0;
    height: 0;
    margin-top: -5px;
    border-top: .35em solid transparent;
    border-bottom: .35em solid transparent;
    border-left: .4em solid;
    content: ''
}
.offcanvas-menu ul li.menu-item-has-children .sub-menu-toggle:hover {
    background-color: rgba(255,255,255,0.1)
}
.offcanvas-menu ul li.menu-item-has-children>.sub-menu {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: auto;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.offcanvas-menu ul li.menu-item-has-children>.sub-menu.in-view {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}
.offcanvas-menu ul li.menu-item-has-children>.sub-menu.off-view {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}
@-webkit-keyframes submenu-show {
    from {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        opacity: 0
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}
@keyframes submenu-show {
    from {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        opacity: 0
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}
.offcanvas-wrapper {
    position: relative;
    min-height: 100vh;
    background-color: #fff;
    z-index: 10
}
.offcanvas-container {
    position: fixed;
    top: 0;
    left: -290px;
    width: 290px;
    height: 100%;
    background-color: #374250;
    box-shadow: inset -4px 0 17px 0 rgba(0,0,0,0.35);
    visibility: visible;
    z-index: 99999;
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.offcanvas-container.active {
    left: 0;
}


/* Header */
.header-area {
	padding: 2.2rem 0;
	position: relative;
	z-index: 9;
	background-color: #fff;
}
.header-area.sticky {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background-color: #fff;
	z-index: 9;
	border-bottom: .3rem solid #D4A200;
}
.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo {
	display: flex;
	width: 12.7rem;
}
.header_nav_area {
    display: flex;
    align-items: center;
}
.header-menu {
    margin-right: 2rem;
}
.header-btns {
	display: flex;
	align-items: center;
	column-gap: 2.3rem;
}
.header-search {
	position: relative;
	z-index: 1;
	display:none;
}
.header-search .icon {
	position: relative;
	z-index: 1;
}
.header-menu .menu {
	display: flex;
}
.header-menu .menu li a {
	font-size: 1.4rem;
	line-height: 2.8rem;
	font-weight: 500;
	color: #000;
	display: block;
	padding: 0 1.7rem;
	text-transform: uppercase;
}
.mobile-header-ham {
	display: none;
}
.sidebar-input-submit {
	opacity: 0;
	visibility: hidden;
	display: none;
}
.search-form {
	position: absolute;
	top: -1rem;
	right: -1.5rem;
	width: 20rem;
	height: 4.5rem;
	transition: all .6s;
	width: 0;
}
.search-form input {
	width: 100%;
	height: 100%;
	padding: .5rem .5rem .4rem 1.2rem;
	background-color: #f9f9f9;
	border: .3rem rgba(0, 0, 0, 0.1) solid;
	border-radius: 3.5rem;
	box-shadow: 0px .5rem 2rem rgba(0, 0, 0, 0.2);
	font-family: 'Raleway', sans-serif;
	opacity: 0;
	transition: all .6s;
}
.header-search:hover .search-form {
	width: 20rem;
}
.header-search:hover .search-form input {
	opacity: 1;
}
.search-field:focus {
	outline: none;
}
.header-cart {
	position: relative;
	display:none;
}
.header-cart > span {
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
	font-size: 1.2rem;
	line-height: normal;
	color: #fff;
	border-radius: 50%;
	position: absolute;
	top: -.8rem;
	right: -1rem;
}
.header-menu .menu-item-has-children {
	position: relative;
}
.header-menu > ul .menu-item-has-children > a::before {
	content: "";
	position: absolute;
	right: .5rem;
	top: calc(50% - .3rem);
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABXSURBVHgBtcwLCQAgDEXRF8EIi2Qjm2oUHaIg4m8bXnggDg7wMYI91x+el3kB+kIzasRLBrRjafwkJTpiNB+l6BGTok/YKyrCbqgK26EmbIWasRmNuGAFLj0sLA/lrpwAAAAASUVORK5CYII=);
	width: .9rem;
	height: .6rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.header-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -1.5rem;
	background-color: #fff;
	box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.075);
	width: 24rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	display: none;
	border-radius: .6rem;
}
.header-menu .menu-item-has-children:hover > .sub-menu {
	display: block;
}
.header-menu .sub-menu li a {
	padding: .5rem 2rem;
}
.header-menu .menu li a:hover {
	color: #c59d5f;
}
@media only screen and (max-width: 1050px) {
    .header-area {
        padding: 10px 0;
    }
    .mobile-header-ham {
        display: flex;
    }
    .btn.header-phn {
        display: none;
    }
    .header-menu {
        display: none;
    }
    .header-row {
        justify-content: inherit;
    }
    .header-logo {
        width: 100px;
        margin-right: auto;
    }
    .mobile-header-ham {
        display: flex;
        margin-left: 23px;
    }
}


/*footer*/
.footer-area {
	background-color: #254C46;
	color: #fff;
	font-family: 'Raleway', sans-serif;
	position: relative;
	overflow: hidden;
	margin-top:-10px;
}
.footer-upper {
	padding: 3.5rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.footer-upper .text {
	font-weight: 800;
	font-size: 2rem;
	line-height: 2.3rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}
.footer-upper a {
	max-width: 100%;
	width: 29.2rem;
	height: 6rem;
	color: #FFf;
	border: .1rem solid #FFFFFF;
	font-weight: 700;
	font-size: 1.7rem;
	line-height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-upper::after, .footer-middle::after {
	width: 9999px;
	height: .1rem;
	background-color: #d4a20066;
	position: absolute;
	left: -50%;
	bottom: 0;
	content: '';
}
.footer-middle {
	display: flex;
	align-items: flex-start;
	position: relative;
}
.fm-right {
	width: 36rem;
	border-left: .1rem solid #d4a20066;
}
.fm-left {
	width: calc(100% - 36rem);
	height: 100%;
	padding: 4.4rem 2rem 0 0;
	display: flex;
}
.fm-left-menu {
	width: 27.4rem;
}
.fm-left-content {
	width: calc(100% - 27.4rem);
	padding-right: 9rem;
}
.fm-left-content .image {
	display: block;
/* 	margin-bottom: 1.1rem; */
	width: 28.2rem;
	height: 8rem;
}
.fm-left-content .image img {
    width: 100%;
    height: 6rem;
    object-fit: cover;
    margin-left: -3.4rem;
}
.fm-left-content .text {
	font-size: 1.8rem;
	line-height: 3rem;
}
.f-ttl {
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 2.6rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FFFFFF;
	font-family: 'Raleway', sans-serif;
}
.fm-left-menu {
	width: 27.4rem;
/* 	padding-top: 3.3rem; */
}
.fm-left-menu ul {
	margin-top: 3.4rem;
}
.fm-left-menu ul li a {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 4.3rem;
	color: #FFFFFF;
}
.fmr-box {
	padding: 4.2rem 0 4.8rem 6.5rem;
	position: relative;
}
.fmr-box .f-ttl {
	margin-bottom: 2.4rem;
}
.fmr-box-single {
	display: flex;
	color: #fff;
}
.fmr-box-single .icon {
	width: 4rem;
	display: flex;
	align-items: flex-start;
	padding-top: .4rem;
}
.fmr-box-single span {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2.6rem;
	width: calc(100% - 4rem);
}
.fmr-box::after {
	content: '';
	width: 9999px;
	height: .1rem;
	background-color: #d4a20066;
	position: absolute;
	left: 0;
	bottom: 0;
}
.fmr-box-single.frm-phn {
	margin-bottom: .6rem;
}
.fmr-box-single.frm-mail {
	margin-bottom: 2.1rem;
}
.fmr-box-social {
	display: flex;
	flex-wrap: wrap;
	column-gap: 2.7rem;
}
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 2.8rem 0;
	gap: 1rem;
}
.fb-right {
	display: flex;
	align-items: center;
}
.fb-right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.fb-right a {
	color: #fff;
	font-size: 1.7rem;
	line-height: 1.5rem;
	font-weight: 500;
	border-right: .1rem solid #fff;
	margin-right: .7rem;
	padding-right: .7rem;
}
.fb-right li:last-child a {
	border: none;
	margin: 0;
	padding: 0;
}
.footer-map {
	width: 100%;
	height: 48.1rem;
	display: block;
}
.footer-map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.logo-bot2 {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 27rem;
	display:none;
}
.footer-upper a:hover, .fmr-box-single:hover, .fb-right a:hover, .fb-right a:hover, .footer-upper a:focus, .fmr-box-single:focus, .fb-right a:focus, .fb-right a:focus, .fb-left a, .fb-left a:hover, .fb-left a:focus {
	color: #fff;
}
.fb-left {
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.9rem;
}
.fb-right .menu {
	display: flex;
	align-items: center;
}

@media only screen and (max-width: 1050px) {
	.footer-upper {
		flex-wrap: wrap;
	}
	.footer-upper .text {
		width: 100%;
		margin-bottom: 16px;
		text-align: center;
	}
	.footer-upper a {
		margin: 0 auto;
	}
	.footer-middle {
		flex-wrap: wrap;
	}
	.footer-middle {
		flex-wrap: wrap;
	}
	.fm-left {
		width: 100%;
		padding: 28px 0;
		flex-wrap: wrap;
	}
	.fm-left-content {
		width: 100%;
		padding: 0;
		margin-bottom: 38px;
	}
	.fm-left-menu {
		width: 100%;
		padding: 0;
	}
	.fm-left-content .image {
		margin-bottom: 12px;
	}
	.fm-left-menu ul {
		margin-top: 12px;
	}
	.fm-left-menu ul li a {
		line-height: 33px;
	}
	.fm-right {
		width: 100%;
		border: none;
	}
	.fmr-box {
		padding: 0;
		margin-bottom: 29px;
	}
	.fmr-box::after {
		display: none;
	}
	.fmr-box .f-ttl {
		margin-bottom: 15px;
		margin-top: 16px;
	}
	.fb-left {
		width: 100%;
		margin-bottom: 4px;
		font-size: 14px;
		line-height: 22px;
	}
	.fb-right a {
		font-size: 11px;
	}
	.footer-map {
		height: 250px;
	}
}
@media only screen and (max-width: 1050px) {
	.logo-bot2 {
		display: none;
	}
}
/* Others */
.socal-style-sec .elementor-image-box-content {
	position: relative;
	top: -6.5rem;
}
.socal-text p:not(:last-child){
	margin-bottom: 1.5rem;
}
.single-nav-content a {
	font-size: 1.2rem;
	color: rgba(0, 0, 0, 0.6);
}

/* Blog */
.blog-banner-area {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index:2;
}
.blog-banner-area:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: -1;
    opacity: .7;
}
.blog-banner-row {
	height: 49rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.blog-banner-row h1 {
	font-family: "Raleway", Sans-serif;
	font-size: 3.2rem;
	line-height: normal;
	color: #D4A200;
	text-align: center;
	font-weight:500;
}
.blog-banner-row h1 span {
	font-family: 'Montserrat', sans-serif;
	display: block;
	font-weight: 400;
	color: #fff;
	font-size: 6.8rem;
}
.blog-archive-image {
	display: flex;
	margin-bottom: 2rem;
}
.blog-archive-area {
	padding-top: 6rem;
	padding-bottom: 10rem;
}
.blog-archive-single:not(:last-child) {
	margin-bottom: 6rem;
}
.blog-arch-meta {
	display: flex;
	align-items: center;
	font-size: 1.3rem;
	line-height: normal;
	color: #1e1e1e;
	column-gap: .4rem;
	/* margin-bottom: .6rem; */
}
.blog-archive-single-content {
	margin-top: .8rem;
}
.blog-archive-title {
	font-family: 'Raleway';
	font-size: 3rem;
	line-height: 3.5rem;
	color: #0e0e0e;
	margin-bottom: .2rem;
}
.blog-archive-bottom-meta {
	display: flex;
	align-items: center;
	column-gap: 1rem;
}
.blog-archive-single-text {
	font-size: 1.5rem;
	line-height: 2.4rem;
	color: #525252;
	margin-bottom: 2.3rem;
}
.blog-archive-single-more {
	padding: .8rem 2.7rem;
	background-color: #c59d5f;
	font-size: 1.4rem;
	line-height: normal;
	color: #fff;
}
.blog-archive-single-more:hover {
	background-color: #131313;
	color: #fff;
}
.blog-archive-top-meta {
	margin-bottom: .8rem;
}
.single-next-button {
	text-align: right;
}
.blog-single-tags {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1rem;
	row-gap: 1rem;
	margin-top: 3rem;
}
.blog-single-tags a {
	padding: .4rem 1rem;
	border: .1rem #16171e solid;
	font-size: 1.2rem;
	line-height: normal;
	color: #16171e;
	opacity: .6;
}
.blog-pagination {
	margin-top: 3rem;
}
.blog-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	column-gap: 1rem;
	row-gap: 1rem;
}
.blog-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.blog-pagination ul li .page-numbers {
	background-color: #000000;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	font-size: 1.4rem;
	color: #fff;
}
.blog-pagination ul li .page-numbers.current {
	background-color: #797474;
}
@media only screen and (max-width: 1050px) {
	.blog-banner-row {
		height: auto;
		padding: 83px 0;
	}
}
@media only screen and (max-width: 767px) {
	.blog-single-navigation-wrapper {
		flex-wrap: wrap;
	}
	.blog-single-navigation-wrapper > div {
		width: 100% !important;
		margin-bottom: 20px;
	}
	.single-next-button {
		justify-content: flex-end;
	}
}

/* product */
.netmow-product {
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.woocommerce-account .woocommerce {
	width: 117rem;
	margin: 0 auto;
	padding: 5rem 0;
}
.woocommerce-variation-description {
	font-size: 14px;
	line-height: 23px;
	color: #777;
}
.woocommerce-variation-description p:not(:last-child) {
	margin-bottom: 8px !important;
}
