@charset "utf-8";
/* CSS Document */

/* ------------------------------------------------------------------- 
 * ## main navigation 
 * ------------------------------------------------------------------- */
.header-nav {
	width: 440px;
	height: 100%;
	background: #ffffff;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	visibility: hidden;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 4.6rem 2rem 3.6rem 2.6rem;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999999999;
}
.header-nav:after {
	content: "";
	width: 80%;
	float: right;
	background: url(../images/logo-casual-day-plain-symbol.svg) no-repeat center / 100%;
	margin: 0 0 0;
	padding: 0 0 89.9%;
	opacity: 0.1;
	position: absolute;
	bottom: 5%;
	right: 5%;
	z-index: -9;
}
.header-nav p {
	float: none;
    font-size: 16px;
    font-weight: 400;
    color: #727272;
    letter-spacing: normal;
    line-height: 1.75;
    margin: 0 0 16px;
}
.header-nav p a {
    color: #727272;
}
.header-nav p span {
	display: block;
}
.header-nav h2 {
	font-size: 30px;
    font-weight: 400;
	color: #727272;
    letter-spacing: normal;
    line-height: 1.33;
    margin: 0 0 0;
	font-family: "Playfair Display", serif;
}
.header-nav h2 a {
	color: #727272;
}
.header-nav h2 span {
	display: block;
}
.header-nav h3 {
	font-size: 16px;
    font-weight: 500;
	color: #94bbbf;
    letter-spacing: 0.8px;
    line-height: 1.75;
    margin: 0 0 0;
}
.header-nav h3 a {
	color: #94bbbf;
}
.header-nav h3 span {
	display: block;
}
.header-nav a:hover, .header-nav a:focus, .header-nav a:active {
	color: white;
}
.header-nav__content {
	position: relative;
	left: 50px;
	opacity: 0;
	visibility: hidden;
}
.header-nav__list li {
	line-height: 3.3rem;
}
.header-nav__list li li {
	line-height: 3rem;
	margin-bottom: 12px;
}
/* .header-nav__list a::before {
	content: counter(ctr, decimal-leading-zero) ".";
	counter-increment: ctr;
	font-size: 11px;
	color: #94bbbf;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	position: absolute;
	left: 3px;
	top: 0;
}
.header-nav__list a:hover::before {
	color: #727272;
} */
.header-nav__logo {
	width: 88%;
	float: left;
	margin: 0 0 0;
}
.header-nav__logo img {
	width: 100%;
	display: block;
}
.header-nav__social {
	width: 100%;
	float: left;
	margin: 0 0 0;
	    padding: 0 0 28px;
}
.header-nav__social li {
	width: 42px;
	float: left;
	margin: 0 10px 0 0;
}
.header-nav__social li:last-child {
	margin: 0;
}
.header-nav__close {
	height: 30px;
	width: 30px;
	display: block;
	background: #94bbbf;
	border-radius: 50%;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	transition: all 0.25s ease-out 0s;
	position: absolute;
	top: 24px;
	right: 30px;
	z-index: 800;
}
.header-nav__close:hover {
	background: #727272;
}
.header-nav__close span::before, .header-nav__close span::after {
	content: "";
	display: block;
	height: 2px;
	width: 12px;
	background-color: #ffffff;
	transition: all 0.25s ease-out 0s;
	position: absolute;
	top: 50%;
	left: 9px;
	margin-top: -1px;
}
.header-nav__close:hover span::before, .header-nav__close:hover span::after{
	background: #ffffff;
}
.header-nav__close span::before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.header-nav__close span::after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* menu is open
 * ----------------------------------------------- */
.menu-is-open .header-nav {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	-webkit-overflow-scrolling: touch;
}
.menu-is-open .header-nav .header-nav__content {
	opacity: 1;
	visibility: visible;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	left: 0;
}
/* ------------------------------------------------------------------- 
 * ## mobile menu toggle 
 * ------------------------------------------------------------------- */
.header-menu-toggle {
	width: 70px;
	float: left;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	margin: 0 0 0;
	position: fixed;
	top: 32px;
	left: 22px;
	z-index: 99999999;
}
.header-menu-toggle::after {
	content: "Menu";
	float: right;
	font-size: 14px;
	font-weight: 600;
	color: #94bbbf;
	letter-spacing: normal;
	line-height: 2;
	transform: translateY(-50%);
	margin: 0 0 0;
	position: absolute;
	top: 50%;
	right: 0;
}
.header-menu-toggle.opaque {
	top: 33px;
}
.header-menu-toggle.opaque::before {
	display: none;
}
.header-menu-icon {
	width: 10px;
	height: 3px;
	float: left;
	background: #94bbbf;
	border-radius: 10px;
	margin: 8px 0 8px;
	position: relative;
}
.header-menu-icon::before, .header-menu-icon::after {
	content: "";
	width: 16px;
	height: 3px;
	background: #94bbbf;
	border-radius: 10px;
	margin: 0 0 0;
	position: absolute;
	left: 0;
}
.header-menu-icon::before {
	top: -8px;
}
.header-menu-icon::after {
	bottom: -8px;
}


.fixed  .header-col2 .header-row2 li:first-child {
    display: none !important;
}
.fixed .header-col1 {
    padding-left: 0;
}


.fixed .header-row2 {
    margin: 0 0 0 0;
}

.fixed  .header-col2 .header-row2 {
    margin: 0 30px 0 0;
}

.fixed .header-btn1 {
    margin: 0 18px 0 0;
}

.menuzord-menu ul.dropdown li a {
    padding: 8px 14px 8px 14px !important;
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.header-menu-toggle {
	width: 60px;
	margin: 0 0 0;
	position: fixed;
	top: 16px;
	left: 5%;
}
.header-menu-toggle::after {
	font-size: 13px;
}
.header-menu-toggle.opaque {
	top: 16px;	
}
.header-nav {
	width: 320px;
	text-align: center;
	padding: 6.6rem 1.4rem 3.6rem;
}
.header-nav p {
	font-size: 13px;
}
.header-nav h2 {
	font-size: 24px;
}
.header-nav h3 {
	font-size: 27px;
}
.header-nav__social li {
	width: 39px;
	float: none;
	display: inline-block;
	margin: 0 3px 0;
}
.header-nav__list li {
	line-height: 3rem;
}
.header-nav__list li li {
	line-height: 2.4rem;
}
.header-nav__list a::before {
	vertical-align: middle;
	margin: 0 10px 0 0;
	position: relative;
	top: inherit;
	left: inherit;
}
.header-nav__social {text-align: left;}
.header-nav__list li {text-align: left;}
.header-nav h2 { text-align: left; }
.header-nav h3 {text-align: left;}

.header-menu-toggle {background: #94bbbf;padding: 15px 20px;width: 106px;border-radius: 100px;}
.header-menu-icon {background: #fff;}
.header-menu-icon::before, .header-menu-icon::after {background: #fff;}
.header-menu-toggle::after { color: #ffff;margin: 0px 20px 0 0;}

.fixed .header-btn1 {
    margin: 0  0 0;
}

}

@media screen and (min-width:481px) and (max-width:600px) {
.header-menu-toggle {
	width: 60px;
	margin: 0 0 0;
	position: fixed;
	top: 16px;
	left: 5%;
}
.header-menu-toggle::after {
	font-size: 13px;
}
.header-menu-toggle.opaque {
	top: 16px;	
}
.header-nav {
	width: 400px;
	text-align: center;
	padding: 6.6rem 2rem 3.6rem;
}
.header-nav p {
	font-size: 13px;
}
.header-nav h2 {
	font-size: 24px;
}
.header-nav h3 {
	font-size: 30px;
}
.header-nav__social li {
	width: 39px;
	float: none;
	display: inline-block;
	margin: 0 3px 0;
}
.header-nav__list li {
	line-height: 3rem;
}
.header-nav__list li li {
	line-height: 2.4rem;
}
.header-nav__list a::before {
	vertical-align: middle;
	margin: 0 10px 0 0;
	position: relative;
	top: inherit;
	left: inherit;
}

.header-nav__social {text-align: left;}
.header-nav__list li {text-align: left;}
.header-nav h2 { text-align: left; }
.header-nav h3 {text-align: left;}
.header-menu-toggle {background: #94bbbf;padding: 15px 20px;width: 106px;border-radius: 100px;}
.header-menu-icon {background: #fff;}
.header-menu-icon::before, .header-menu-icon::after {background: #fff;}
.header-menu-toggle::after { color: #ffff;margin: 0px 20px 0 0;}
.fixed .header-btn1 {
    margin: 0  0 0;
}


}

@media screen and (min-width:601px) and (max-width:767px) {
.header-menu-toggle {
	width: 60px;
	margin: 0 0 0;
	position: fixed;
	top: 16px;
	left: 5%;
}
.header-menu-toggle::after {
	font-size: 13px;
}
.header-menu-toggle.opaque {
	top: 16px;	
}
.header-nav {
	width: 400px;
	text-align: center;
	padding: 6.6rem 2rem 3.6rem;
}
.header-nav p {
	font-size: 13px;
}
.header-nav h2 {
	font-size: 24px;
}
.header-nav h3 {
	font-size: 30px;
}
.header-nav__social li {
	width: 39px;
	float: none;
	display: inline-block;
	margin: 0 3px 0;
}
.header-nav__list li {
	line-height: 3rem;
}
.header-nav__list li li {
	line-height: 2.4rem;
}
.header-nav__list a::before {
	vertical-align: middle;
	margin: 0 10px 0 0;
	position: relative;
	top: inherit;
	left: inherit;
}

.header-nav__social {text-align: left;}
.header-nav__list li {text-align: left;}
.header-nav h2 { text-align: left; }
.header-nav h3 {text-align: left;}

.header-menu-toggle {background: #94bbbf;padding: 15px 20px;width: 106px;border-radius: 100px;}
.header-menu-icon {background: #fff;}
.header-menu-icon::before, .header-menu-icon::after {background: #fff;}
.header-menu-toggle::after { color: #ffff;margin: 0px 20px 0 0;}


.fixed .header-btn1 {
    margin: 0  0 0;
}


}

@media screen and (min-width:768px) and (max-width:900px) {
.header-menu-toggle {
	width: 100px;
	top: 27px;
	left: 3%;
	padding-bottom: 36px;
}
.header-menu-toggle.opaque {
	top: 64px;
}
.header-menu-toggle::after {
        font-size: 12px;
        display: block;
        right: inherit;
        bottom: -35px;
top:inherit;
        left: 22px;
    }
.header-nav__list li {
	line-height: 3rem;
}
.header-nav__list li li {
	line-height: 3rem;
}
.header-nav__social li {
	width: 41px;
	margin: 0 6px 0 0;
}
.header-nav {
	width: 400px;
	padding: 3.6rem 2rem 3.6rem;
}
.header-nav p {
	font-size: 14px;
}
.header-nav h2 {
	font-size: 24px;
}
.header-nav h3 {
	font-size: 14px;
}
.customize-support .header-menu-toggle::after {
    top: 29px;
}
.fixed .header-col1 {
    padding-left: 92px;
}

.fixed .menuzord-menu > li a {
        padding: 16px 4px 16px 6px;
        font-size: 11.5px;
}
.fixed .menuzord-menu > li:nth-last-child(2) a {
    padding: 16px 4px 16px 4px;
}

.fixed .header-col2 .header-row2 {
    margin: 0 6px 0 0;
}

.fixed .header-btn1 {
    margin: 0 4px 0 0;
}

.header-wrapp .header-col2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    float: none;
}

.header-wrapp .header-col2 {
    width: fit-content;
    display: inline-block;
}

.fixed .sticky-logo {
    position: relative;
    top: 0;
}

.fixed .header-btn1 {
    font-size: 9px;
    letter-spacing: 0.85px;
}

.header-wrapp .fixed .header-btn2 {
    font-size: 9px;
    letter-spacing: 0.85px;
}

.fixed .header-row2 li, .fixed .header-row2 li a {
    font-size: 11.5px;
}

.float-panel  .header-col2 {
    display: flex;
    justify-content: center;
    float: none;
    width: 100%;
}
    .fixed .header-col2 {
        display: inline-block;
        width: auto;
        float: right;
    }
.header-menu-toggle.opaque {
    top: 14px;
}

 .header-menu-toggle::after {

        top: 29px;
}

    
}

@media screen and (min-width:901px) and (max-width:1024px) {
.header-menu-toggle {
	width: 16px;
	top: 19px;
	left: 3%;
	padding-bottom: 40px;
}
.header-menu-toggle.opaque {
	top: 20px;
}
.header-menu-toggle::after {
	font-size: 14px;
		display: block;
			  right: 0;
        left: -12px;
	bottom: 4px;
    top: inherit;
}
.header-nav__list li {
	line-height: 3.1rem;
}
.header-nav__list li li {
	line-height: 3.4rem;
}
.header-nav__social li {
	width: 43px;
	margin: 0 7px 0 0;
}
.header-nav {
	width: 400px;
	padding: 3.6rem 2.50rem 3.6rem;
}
.header-nav p {
	font-size: 15px;
}
.header-nav h2 {
	font-size: 27px;
}
.header-nav h3 {
	font-size: 15px;
}

.header-menu-toggle {
	width: 70px;
	padding-bottom: 9px;
}
.header-menu-toggle::after {
        display: block;
        bottom: 36px;
		font-size: 13px;
}

.fixed .header-col1 {
    padding-left:10px;
}

.fixed .menuzord-menu > li a {
        padding: 16px 4px 16px 6px;
}

.fixed .menuzord-menu > li:nth-last-child(2) a {
    padding: 16px 4px 16px 4px;
}
.customize-support .header-menu-toggle::after {
    top: 21px;
}
.fixed .header-col1 {
    padding-left: 62px;
}

.fixed .menuzord-menu > li a {
        padding: 16px 4px 16px 11px;
 }
 
.fixed .menuzord-menu > li:nth-last-child(2) a {
    padding: 16px 4px 16px 4px;
}

.fixed .header-col2 .header-row2 {
    margin: 0 8px 0 0;
}

.fixed .header-btn1 {
    margin: 0 4px 0 0;
}

}

@media screen and (min-width:1025px) and (max-width:1240px) {
.header-menu-toggle {
	width: 70px;
	left: 3%;
	padding-bottom: 40px;
}
.header-menu-toggle {
	width: 70px;
	padding-bottom: 40px;
}
    .header-menu-toggle::after {
        display: block;
        bottom: -38px;
		font-size: 13px;
 }

.fixed .header-col1 {
    padding-left: 92px;
}

.fixed .menuzord-menu > li a {
        padding: 16px 4px 16px 11px;
 }
 
.fixed .menuzord-menu > li:nth-last-child(2) a {
    padding: 16px 4px 16px 4px;
}

.fixed .header-col2 .header-row2 {
    margin: 0 14px 0 0;
}

.fixed .header-btn1 {
    margin: 0 4px 0 0;
}



}

@media screen and (min-width:1241px) and (max-width:1340px) {
.header-menu-toggle {
	width: 16px;
	left: 3%;
	padding-bottom: 40px;
}
.header-menu-toggle {
	width: 70px;
	padding-bottom: 40px;
}
    .header-menu-toggle::after {
        display: block;
        bottom: -38px;
    }

	.header-wrapp .menuzord {
    padding-left: 60px;
}
.header-wrapp  .menuzord {
    padding-left: 60px;
}

.fixed  .menuzord {
    padding-left: 50px;
}

    .fixed .menuzord-menu > li a {
        padding: 16px 9px 16px 9px;
        font-size: 13px;
    }

	.fixed .header-row2 li, .header-row2 li a {
    font-size: 13px;
}


.scroll.float-panel .menuzord-menu > li a {
    padding: 16px 8px 16px 5px;
    font-size: 12px;
}
.header-row2 li, .header-row2 li a {
    font-size: 12px;}
}

@media screen and (min-width:1241px) and (max-width:1340px)

{

}

@media screen and (min-width:1341px) and (max-width:1440px) {
.header-menu-toggle {
	width: 70px;
	padding-bottom: 40px;
}
    .header-menu-toggle::after {
        display: block;
        bottom: -38px;
    }

	.header-wrapp .menuzord {
    padding-left: 60px;
}
.header-wrapp  .menuzord {
    padding-left: 60px;
}

.fixed  .menuzord {
    padding-left: 58px;
}

.fixed .menuzord-menu > li a {
    padding: 16px 11px 16px 12px;
}
.fixed .header-btn1 {
 padding: 17px 24px 17px 24px;
 font-size: 11px;
}
.fixed .header-btn2
{
	 padding: 17px 24px 17px 24px;
 font-size: 11px;
}
}