header {
	position: relative;
	padding: 50px 0px 20px;
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	max-width: 100%;
    z-index: 4;
}
.sticky {
	width: 100%!important;
	animation: fadeInDown .25s;
	-webkit-animation: fadeInDown .25s;
	-o-animation: fadeInDown .25s;
	-ms-animation: fadeInDown .25s;
	z-index: 1001!important;
	padding: 20px 20px 0px!important;
	-moz-animation: fadeInDown .25s;
	-webkit-transition: .25s;
     -moz-transition: .25s;
     -ms-transition: .25s;
     -o-transition: .25s;
     transition: .25s
}
.sticky > .container {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	border-radius: 50px;
	padding: 10px 40px!important;
	animation: fadeInDown .25s;
	-webkit-animation: fadeInDown .25s;
	-o-animation: fadeInDown .25s;
	-ms-animation: fadeInDown .25s;
	-webkit-transition: .25s;
     -moz-transition: .25s;
     -ms-transition: .25s;
     -o-transition: .25s;
     transition: .25s
}
.site-header > div {
    max-width: 1500px;
}
.sticky > .container.white {
	background: #ffffff;
}
/* .site-header .img-fluid {
	width: 200px;
} */
.site-header-menu {
	display: inline-block;
}
.site-header-menu li {
	padding-left: 25px;
}
.site-header-menu a, .site-header-menu ul li span {
	color: var(--color-darkblue);
	font-size: 15px;
	font-weight: 400;
	position: relative;
}
.site-header-menu ul li span {
	cursor: default;
}
.site-header-menu ul li span strong {
	font-weight: bold;
}
.site-header-menu a:hover {
	color: #5A53A3;
}
.site-header-menu a:after {
    position: absolute;
    content: '';
    height: 2px;
    bottom: -5px;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 0;
	border-radius: 50px;
    background: var(--color-darkblue);
	-o-transition:.25s;
    -ms-transition:.25s;
    -moz-transition:.25s;
    -webkit-transition:.25s;
    transition:.25s;
}
.site-header-menu a:hover:after {
    width: 70%;
}
.site-header-menu a.active:after,
.site-header-menu ul li span.active:after{
    position: absolute;
    content: '';
    height: 2px;
    bottom: -5px;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 70%;
    background: var(--color-darkblue);
}

.site-header-menu .has-submenu:hover .submenu{
	display: flex;
}
.site-header-menu .has-submenu{
	position: relative;
}

.site-header-menu .has-submenu svg{
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
}
#site-header-menu>li {
    padding: 20px 0 20px 25px;
}
.site-header-menu .submenu a {
	position: relative;
	display: block;
	padding: 10px 20px;
	font-size: 12px;
	font-weight: 300;
	color: #1E1673;
}
.site-header-menu .submenu li:first-child a {
	padding-top: 20px;
}
.site-header-menu .submenu li:last-child a {
	padding-bottom: 20px;
}
.site-header-menu .submenu a strong {
	font-size: 15px;
	font-weight: bold;
}
.site-header-menu .submenu a:hover {
	background: #eaf2ff;
	border-radius: 0;
}
.site-header-menu .submenu li:first-child a,
.site-header-menu .submenu li:first-child a:hover {
	border-top-right-radius: 16px;
	border-top-left-radius: 16px;
}
.site-header-menu .submenu li:last-child a,
.site-header-menu .submenu li:last-child a:hover {
	border-bottom-right-radius: 16px;
	border-bottom-left-radius: 16px;
}

.site-header-menu .submenu a:hover:after{
	width: 0 !important;
}
.site-header-menu .submenu li{
	padding: 0;
	position: relative;
}
.site-header-menu .submenu li:not(:last-child):before {
    /* border-bottom: 1px solid #D8E2F3;
    padding-bottom: 10px;
    margin-bottom: 10px; */
	content : "";
	position: absolute;
	left    : 50%;
	transform: translateX(-50%);
	bottom  : 0;
	height  : 1px;
	width   : calc(100% - 40px);  /* or 100px */
	border-bottom: 1px solid #D8E2F3;
}
.site-header-menu .submenu strong{
	display: block;
}
.site-header-menu .submenu{
	top: 60px;
	transition: all ease 0.25s;
	width: 290px;
	list-style: none;
	position: absolute;
	display: none;
	flex-direction: column;
	align-items: flex-start;
	/* padding: 32px 24px; */
	background: #FFFFFF;
	box-shadow: 0px 0px 32px rgba(30, 22, 115, 0.08);
	border-radius: 16px;
}
/* .site-header.sticky .mobile-menu .burger { top: 11px!important; } */
.account-login a {
	padding: 6px 15px;
	min-width: 120px;
	border-radius: 50px;
	font-size: 15px;
}
.account-login a:first-child{
	background: #F8FAFF;
}
.account-login a:last-child {
	margin-left: 15px;
	animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
	0% {
		/* transform: scale(0.95); */
		box-shadow: 0 0 0 0 rgba(199, 80, 142, 0.7);
	}
	
	70% {
		/* transform: scale(1); */
		box-shadow: 0 0 0 10px rgba(199, 80, 142, 0);
	}
	
	100% {
		/* transform: scale(0.95); */
		box-shadow: 0 0 0 0 rgba(199, 80, 142, 0);
	}
}
.site-header.sticky .container .account-login a:first-child,
.site-header.sticky .account-login :not(#menu) a:first-child 
{
	background: transparent;
}
.site-header.sticky .container .account-login a:first-child:hover {
    background: var(--color-pink)!important;
	color: #fff;
}
.sh-st-float {
	padding: 1px 10px;
	font-size: 14px;
	min-width: auto;
	margin-right: 15px;
	-webkit-transition: .25s;
     -moz-transition: .25s;
     -ms-transition: .25s;
     -o-transition: .25s;
     transition: .25s
}
.mobile-menu { 
	display: inline-block;
}
.mobile-menu input {
	position: fixed;
	opacity: 0;
}

.mobile-menu label {
	/* position: absolute; */
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
	display: block;
}
.mobile-menu label::before {
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-menu label .burger {
	position: inherit;
	/* top: 3.2em;
	right: 1em; */
	z-index: 3;
	width: 2em;
	height: 2em;
	margin: 0;
	padding: 0;
	transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1);
	z-index: 99999;
	-webkit-transition: .25s;
     -moz-transition: .25s;
     -ms-transition: .25s;
     -o-transition: .25s;
     transition: .25s
}
.mobile-menu label .burger .extra-bar {
	display: none;
}
.mobile-menu label .burger.active .extra-bar {
	display: block;
	height: 40px;
	width: 40px;
	background: #8fd1ed;
	border-radius: 30px;
	position: relative;
	z-index: -1;
	top: -2px;
	right: 10px;
}
.mobile-menu label .burger::before, .mobile-menu label .burger .bar, label .burger::after {
	/* position: absolute; */
	left: 0;
	display: block;
	border-radius: 10px;
	width: 100%;
	height: 13%;
	background: var(--color-pink);
	content: '';
	transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
	height: 3px;
	width: 25px;
	margin-bottom: 5px;
}
label .burger::after {
	margin-bottom: 0px;
}
.mobile-menu label .burger.active::before, .mobile-menu label .burger.active .bar, label .burger.active::after {
	background: #fff;
}
.mobile-menu label .burger .bar {
	top: 37%;
}
/* .mobile-menu label .burger::before {
	top: 2px;
	transform-origin: top left;
} */
.mobile-menu label .burger.active::before {
	top: 9px;
}
/* .mobile-menu label .burger::after {
	top: 68%;
	transform-origin: bottom left;
} */
.mobile-menu label .burger.active::after {
	bottom: 3px;
}
.mobile-menu input:focus+label .burger, .mobile-menu label:hover .burger {
	opacity: .75;
}
.mobile-menu nav {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 9999;
	display: flex;
	flex-flow: column nowrap;
	/* justify-content: initial; */
	justify-content: space-between;
	align-items: center;
	transform: translate3d(0, 0, 0);
	/* material acceleration */
	transform: translateX(-100%);
	will-change: transform;
	transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
	padding: 20px;
	width: 100%;
}
.mobile-menu nav .nav-inner-top {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}
.mobile-menu nav::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100em;
	background: var(--color-darkblue);
	content: '';
	transform: skewX(0deg) translateX(-100%);
	transform-origin: bottom left;
	will-change: transform;
	transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-menu nav .account-login {
	margin-top: 30px;
}
.mobile-menu nav .account-login a {
	border: none;
	padding: 5px 20px;
	width: 250px;
	text-align: center;
}
/* .mobile-menu nav .account-login a:hover {
	background: #8fd1ed !important;
	color: #fff;
} */
.mobile-menu nav .account-login a:first-child,
.mobile-menu nav .account-login a:first-child:hover{
	color: var(--color-darkblue);
	background: #fff;
	margin-right: 15px;
}
.mobile-menu nav .account-login a:last-child,
.mobile-menu nav .account-login a:last-child:hover {
	color: #fff;
	background: var(--color-darkblue);
	border: 2px solid #fff;
}
.mobile-menu .headerLogo {
	margin-bottom: 40px;
	align-self: flex-start;
	width: 250px;
}
/* .mobile-menu .headerLogo img {
	height: 26.11px;
} */
.mobile-menu nav a {
	margin: .5em 0;
	/* padding: 0 0 0 35px; */
	font-size: 29px;
	color: white;
	text-decoration: none;
	font-weight: normal;
	transform: translateX(-100%);
	transition: color .15s, transform .25s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	font-family: 'Apfel Grotezk'!important;
}
.mobile-menu nav .account-login a {
	transform: translateX(-100%);
	transition: color .15s, transform .25s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.sf-social-mobile li a {
	text-align: center;
	margin: 0px;
	padding: 0px;
}
.sf-social-mobile li:last-child {
	margin-right: 0px;
}
.mobile-menu nav a:nth-child(1) {
	transition-delay: 0s, 100ms;
}
.mobile-menu nav a:nth-child(2) {
	transition-delay: 0s, 150ms;
}
.mobile-menu nav a:nth-child(3) {
	transition-delay: 0s, 200ms;
}
.mobile-menu nav a:nth-child(4) {
	transition-delay: 0s, 250ms;
}
.mobile-menu nav a:nth-child(5) {
	transition-delay: 0s, 300ms;
}
.mobile-menu nav a:nth-child(6) {
	transition-delay: 0s, 350ms;
}
.mobile-menu nav a:nth-child(7) {
	transition-delay: 0s, 400ms;
}
.mobile-menu nav a:hover, nav a:focus {
	color: var(--color-aqua);
}
.mobile-menu nav .account-login a:nth-child(1) {
	transition-delay: 0s, 100ms;
}
.mobile-menu nav .account-login a:nth-child(2) {
	transition-delay: 0s, 150ms;
}
.mobile-menu main {
	overflow: hidden;
}
.mobile-menu main .content {
	transform: translate3d(0, 0, 0);
	/* material acceleration */
	will-change: transform, filter;
	transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-menu .sub {
	font-size: 23px;
}
.mobile-menu .panel-group .panel {
	margin-bottom: 20px;
}

[id="navcheck"]:checked+label {
	position: absolute;
	right: 50px;
}
[id="navcheck"]:checked+label .burger::before, 
[id="navcheck"]:checked+label .burger .bar, 
[id="navcheck"]:checked+label .burger::after {
	position: absolute;
}
[id="navcheck"]:checked+label::before {
	opacity: 1;
	pointer-events: auto;
}
[id="navcheck"]:checked+label .burger::before, [id="navcheck"]:checked+label .burger::after {
	/*width: 141.42%;*/
	width: 110%;
	background: #fff;
}
[id="navcheck"]:checked+label .burger::before {
	transform: rotate(45deg) translateY(-50%);
}
[id="navcheck"]:checked+label .burger::after {
	transform: rotate(-45deg) translateY(50%);
	top: -2px;
}
[id="navcheck"]:checked+label .burger .bar {
	transform: scale(0.1);
}
[id="navcheck"]:checked~nav {
	transform: translateX(0);
}
[id="navcheck"]:checked~nav::before {
	transform: skewX(0deg) translateX(0);
}
[id="navcheck"]:checked~nav a {
	transform: translateX(0);
}
[id="navcheck"]:checked~main .content {
	transform: translateX(3em);
	transform-origin: left center;
	-webkit-filter: blur(2px);
	filter: blur(2px);
}
/* [id="navcheck"]:checked+label .burger, .site-header.sticky [id="navcheck"]:checked+label .burger {
	top: 30px!important;
} */

/* Iphone 5 or smaller Mobile menu */

@media (max-width: 1115px) and (min-width:  1055px) {
	#site-header-menu>li {
		padding: 20px 0 20px 15px;
	}
}

@media (max-width: 1057px) and (min-width:  992px) {
	#site-header-menu>li {
		padding: 20px 0 20px 5px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	.mobile-menu .headerLogo img {
		height: auto;
	}
}
@media (max-width: 320px) {
	.mobile-menu nav a {
		padding: 0;
	}
	.mobile-menu nav .account-login {
		padding-left: 0;
	}
}

.banner-coupon-wrap{
    margin-top: -50px;
    margin-bottom: 20px;
    width: 100%;
    background: #e98361;
    max-width: none!important;
	-webkit-transition: .25s;
	 -moz-transition: .25s;
	 -ms-transition: .25s;
	 -o-transition: .25s;
	 transition: .25s
}

.banner-coupon-wrap img{
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%!important;
    max-height: 100px;
}

.sticky .banner-coupon-wrap{
    margin-top: 0!important;
    margin-bottom: 20px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1500px!important;
    border-radius: 50px;
    overflow: hidden;
}

.sticky .banner-coupon-wrap img{
    margin-top: 0!important;
    max-height: 80px;
    width: auto;
}

.cs-menu-logos li {
	padding-right: 15px;
}
.cs-menu-logos li img {
	width: 150px;
}

@media(max-width:  768px) and (max-width: 991px){
	.banner-coupon-wrap{
	    margin-top: 0;
	}
}

@media(max-width:  767px){
	.sticky .banner-coupon-wrap img{
	    margin-top: 0!important;
	    
	    max-height: 80px;
	    width: auto;
	    
	    
	}
}

@media(max-width:  576px){
	.mobile-menu nav .account-login a {
		width: 100%;
	}
	.mobile-menu nav .account-login a:first-child {
		margin-right: 0px;
		margin-bottom: 0px;
	}
}