/** Shopify CDN: Minification failed

Line 559:1 Expected "}" to go with "{"

**/
button svg {
    height: 1em;
}

.icon {
    line-height: 0;
    margin-right: 10px;
}

.icon svg,
.icon img {
    height: 1.88em;

}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999999;
}

.header .sticky_wrap {
    padding: 15px 0;
    background-color: var(--bgP);
    position: relative;
}
.header .sticky_wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 31%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
}
.header .sticky_wrap.active {
    margin-top: 0;
    background-color: #222c39;
/*     padding: 15px 0; */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .4) ;
}

.header .sticky_wrap.active::before {
    background: rgba(0, 0, 0, 0.2);
}

.header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
}

.header .header_content .nav_item,
.header .header_content .nav_item ul {
    display: flex;
    align-items: center;
}

.header .header_content .nav_item .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header .header_content .nav_item .menu .btn-primary {
    height: auto !important;
    padding: 8.5px 33px;
    margin-left: clamp(10px, calc(100 * (35vw/1920)), 35px);
}

.header .header_content .nav_item.brand {
    width: 30%;
    max-width: 274px;
    color: #fff;
    transition: .3s;
}

/* .header .header_content .nav_item.brand:hover {
    color: var(--cP);
} */

.header .header_content .nav_item.brand svg {
    width: 100%;
}

.header .nav_item ul li {
    margin-right: clamp(10px, calc(100 * (20vw/1920)), 20px);
}

.header .nav_item ul li a {
    color: #fff;
    padding: 5px 30px;
    border-radius: 5px;
    white-space: nowrap;
    border: 2px solid transparent;
    transition: .3s;
}

.header .nav_item ul li a:hover,
.header .nav_item ul li a.active {
    background-color: rgba(255, 255, 255, .14);
    border: 2px solid rgba(255, 255, 255, .7);
}


/* .header .sticky_wrap.active .nav_item ul li a {
    color: var(--cBlack);
}

.header .sticky_wrap.active a[class*="primary"]:hover,
button[class*="primary"]:hover {
    background: var(--cBlack);
    color: var(--cWhite);
}

.header .sticky_wrap.active .header_content .nav_item.brand {
    color: var(--cBlack);
}

.header .sticky_wrap.active .header_content .nav_item.brand:hover {
    color: var(--cP);
}


.header .sticky_wrap.active .nav_item ul li a:hover,
.header .sticky_wrap.active .nav_item ul li a.active {
    background-color: rgba(34, 44, 57, .8);
    border: 2px solid rgba(34, 44, 57, 1);
    color: #fff;
} */



#ham{
	content: '';
	position: absolute;
	width: 20px;
	height: 1px;
	background-color: white;
	transform: translateY(3px);
	transition: .3s;
	
	
}
#ham.active{
transform: translateX(-20px);
  background: transparent;
  box-shadow: none;
	transition: .5s;
}

#toggle{
	
	height: 60px;
	background-color: transparent;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999!important;
	
	
}
#toggle::before{

	content: '';
	position: absolute;
	width: 20px;
	height: 1px;
	background-color: white;
	transform: translateY(-3px);
	transition: 0.8s;
	z-index: 9999;
}
#toggle::after{
	
	content: '';
	position: absolute;
	width: 20px;
	height: 1px;
	background-color: white;
	transform: translateY(9px);
	transition: 0.8s;
	 z-index: 9999;
	
}
#toggle.active::before{
	transform: translateY(0px)rotate(45deg);
}
#toggle.active::after{
	transform: translate(0px)rotate(-45deg);
}





.mobile_menu {
    padding: 0 clamp(60px, calc(100 * (60vw/1920)), 60px);

}

.mobile_menu .menu_wrap {
    z-index: 999;
    max-width: 650px;
    margin: auto;
    padding: clamp(40px, calc(100 * (60vh/937)), 60px) 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

.mobile_menu .menu_wrap nav {
    height: 100%;
    overflow-y: auto;
    margin-top: 40px;
}

.mobile_menu .menu_wrap nav::-webkit-scrollbar {
    width: 8px;
}

.mobile_menu .menu_wrap nav::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background: var(--cGn);
    outline: 5px solid transparent;
}

.mobile_menu .menu_wrap .heading_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  z-index: -1;
}

.mobile_menu .menu_wrap .heading_bar button {
    padding: 0;
    background-color: transparent;
    font-size: 35px;
    transition: .3s;
}

.mobile_menu .menu_wrap .heading_bar button:hover {
    color: var(--cP);
}

.mobile_menu .menu_wrap .heading_bar h2 {
    font-size: 45px;
    margin-bottom: 0;
    color: #fff;
    transition: .3s;
}

.mobile_menu .menu_wrap .heading_bar:hover h2 {
    color: var(--cP);
}

.mobile_menu .menu_wrap .heading_bar h2 svg{
    width: 80%;
}

.mobile_menu .menu_wrap nav ul li a {
    font-size: 30px;
    font-weight: 700;
    display: inline-block;
    padding: 14px 0;
    position: relative;
}

.mobile_menu .menu_wrap nav ul li {
    margin-bottom: clamp(0px, calc(100 * (30vh/937)), 30px);
}

.mobile_menu .menu_wrap nav ul li a span {
    text-transform: lowercase;
}

.mobile_menu .menu_wrap nav ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 6px;
    left: 0;
    bottom: 0;
    background-color: #fff;
    border-radius: 10px;
    transition: .3s;
}

.mobile_menu .menu_wrap nav ul li:hover a::before,
.mobile_menu .menu_wrap nav ul li a.active::before {
    width: 100%;
}

@media(max-width:1600px) {
  .header .nav_item ul li a {
    padding: 5px 20px;
	}
}

@media(max-width:1399.98px) {
    a {
        font-size: 14px;
    }

    .header .nav_item ul li a {
        padding: 6px 20px;
    }

    .header .header_content .nav_item .menu .btn-primary {
        padding: 7px 20px;
        margin-left: 10px;
    }
}

@media(max-width:1199.98px) {
    .header .header_content .nav_item.left {
        width: 60px;
    }

    .header .header_content .nav_item.brand {
        width: 30%;
        max-width: 200px;
    }

    .header .header_content .nav_item.right {
        width: calc(100% - 100px - 200px);
    }

    .header .nav_item ul li a {
        padding: 4px 15px;
    }

    .header .header_content .nav_item .menu .btn-primary {
        padding: 7px 15px;
    }

}

@media(max-width:991.98px) {
/*     [data-style*="left-to-right"] {
        left: -60%;
        width: 60%;
    } */
    .header .header_content .nav_item ul {
        display: none;
    }
    .hambarger{
        display: block;
    }
    .header .sticky_wrap::before {
        width: 50%;
    }
  
        .header .deactive .sticky_wrap::before{
        	display:none
        }
}

@media(max-width:767.98px) {

    .wrapper-lg {
        max-width: 100%;
        padding: 0 35px;
    }

    .header .header_content .nav_item:not(.brand) {
        width: auto;
    }

    .header .header_content .nav_item.brand {
        width: 55%;
        max-width: 263px;
    }

    .header .sticky_wrap {
        margin-top: 0;
    }

    .header .header_content button.hambarger {
    
        font-size: 18px;
    }
  
  .header .sticky_wrap::before{
  	display:none;
  }
}

@media(max-width:575.98px) {
/*     [data-style*="left-to-right"] {
        left: -80%;
        width: 80%;
    } */

    .mobile_menu .menu_wrap .heading_bar h2 {
        font-size: 40px;
    }

    .mobile_menu .menu_wrap .heading_bar button {
        font-size: 32px;
    }

    .mobile_menu .menu_wrap nav ul li a {
        font-size: 28px;
    }

    .mobile_menu {
        padding: 0 30px;
    }
    .header .header_content .nav_item .menu .btn-primary span{
        display: none;
    }
    .header .header_content .nav_item .menu .btn-primary .icon {
        margin-right: 0px;
    }
    .hambarger {
        margin-left: 25px;
    }
}

/* Modified */

.mobile_menu .menu_wrap .heading_bar {
    justify-content: flex-end;
}

.mobile_menu .menu_wrap .heading_bar button{
    color:#D8DEE6;
    font-size: calc((60px / 3360) * 1920);
}

.mobile_menu .menu_wrap {
    padding: clamp(30px, calc(100 * (37vh/1020)), 37px) 0;
}
.mobile_menu {
    padding: 0 clamp(30px, calc(100 * (45vw/768)), 45px)
}
.mobile_menu .menu_wrap nav ul li a::before{
    height: 4px;
}

.mobile_menu .menu_wrap nav ul li a:hover,
.mobile_menu .menu_wrap nav ul li a.active{
    color: #fff;
}
.mobile_menu .menu_wrap nav ul li a{
    font-size: calc((60px / 3360) * 1920);
    font-weight: 600;
    padding: 5px 0;
}
.mobile_menu .menu_wrap nav ul li{
    text-align: right;
    margin-bottom: clamp(5px, calc(100 * (20vh/937)), 20px)
}
.mobile_menu .menu_wrap nav {
    text-align: right;
}
.mobile_menu .menu_wrap nav .link_to{
    margin-top: clamp(40px, calc(100 * (60vh/1020)), 60px);
}
.mobile_menu .menu_wrap nav .social_links {
    justify-content: flex-end;
    margin-top: 25px;
}
.mobile_menu .menu_wrap nav .social_links a{
    margin: 0;
    margin-left: 10px;
    height: clamp(40px, calc(100 * (45vw/768)), 45px);
    width: clamp(40px, calc(100 * (45vw/768)), 45px);
}

@media (max-width:575.98px){
/*     [data-style*="right-to-left"] {
        right: -55%;
        width:55%;
    } */
    
    .mobile_menu .menu_wrap nav ul li a {
        font-size: 30px;
    }
}
@media (max-width:500.98px){
/*     [data-style*="right-to-left"] {
        right: -265px;
        width:265px;
    } */
}

.mmpicker{
	margin-left:25px;
  	display:none;
  	justify-content:center;
}
.mmpicker #hamburger_pick {
    width: 40px;
    display: inline-block;
    position: relative;
} 
  
.mmpicker #hamburger_pick span {
    display: block;
    background-color: #fff;
    width: 100%;
    height: 2px;
    margin: 7px 0;
    transform-origin: 4px 0;
    transition: transform .5s cubic-bezier(.77,.2,.05,1),background .5s cubic-bezier(.77,.2,.05,1),opacity .55s ease;
}
 .mmpicker #hamburger_pick span:first-child {
    transform-origin: 0 0;
}
 .mmpicker #hamburger_pick span:last-child {
    transform-origin: 0 100%;
}
.mmpicker #hamburger_pick.active span {
    transform: rotate(45deg) translate(1px,-8px);
}
.mmpicker #hamburger_pick.active span:nth-child(2) {
    transform: rotate(0) scale(.2,.2);
    opacity: 0;
}
.mmpicker #hamburger_pick.active span:nth-child(3) {
    transform: rotate(-45deg) translate(1px,8px);
}

@media(max-width:991.98px) {

  .mmpicker{
  	display:flex;
}
  
  .mobile_menu .menu_wrap nav ul{
  	display: flex;
    flex-direction: column;
    align-items:center;
    margin-top:30px;
  }
  .mobile_menu .menu_wrap nav{
  	text-align:center;
  }
  .mobile_menu .menu_wrap nav .social_links {
    justify-content: center;
}
  .mobile_menu .menu_wrap nav ul li a::before {
    left: 50%;
    transform:translateX(-50%);
}