@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --color-black: hsl(0, 0%, 26%);
    --color-white: hsl(0, 0%, 100%);
    --color-gray: hsl(210, 14%, 75%);
    --color-pink: hsl(205, 100%, 38%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-extra: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
*,
*::before,
*::after {    
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html {
    font-size: 100%;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    scroll-behavior: smooth;
	font-family: 'Josefin Sans', sans-serif;
}

a,
button {
    font-family: inherit;
    line-height: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
}
img,
video {
    
}
@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
@keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
.container{
    width: 99%;
	max-width: 1400px;
	margin: auto;
}
.brand {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: inherit;
    color: var(--color-pink);
    text-transform: uppercase;
}
#header {  
  position: fixed;
  top: 0;
  padding: 0px;  
  box-sizing:border-box;
  width: 100%;
  display: block;
  transition: 0.3s ease;
  z-index: 9999;
}
.header {
    
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding:0;
    margin: 0 auto;
    z-index: 999;
    
}
.header .menuwrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex:0  0 70%;
	
}
.header-item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
	justify-content: center;
}
.header-item-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.header-item-right .menu-icon {
    font-size: 1.35rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
    margin-left: 1rem;
    color: var(--color-black);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header .menu > ul > li {
    display: inline-block;
    line-height: 3.125rem;
    margin-left: 1.5rem;
}
.header .menu > ul > li > a {
    position: relative;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.25;	
    border: none;
    outline: none;
    color: #636363;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
.header .menu > ul > li .menu-subs {
    position: absolute;
    width: 100%;
    height: auto;
    margin-top: 1.75rem;
    padding: 1rem 2rem;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    border-radius: 0.25rem;
    border-top: 3px solid var(--color-pink);
    background: var(--color-white);
    -webkit-box-shadow: var(--shadow-medium);
    box-shadow: var(--shadow-medium);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.header .menu > ul > li .menu-subs > ul > li {
    line-height: 1;
}
.header .menu > ul > li .menu-subs > ul > li > a {
    display: inline-block;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.25;
    padding: 0.05rem 0;
    border: none;
    outline: none;
    color: var(--color-black);
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header .menu > ul > li .menu-column-1 {
    min-width: 16rem;
    max-width: 20rem;
}
.header .menu > ul > li .menu-subs.menu-mega {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
    display: block;
    line-height: 1;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
    display: inline-block;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.25;
    padding: 0.7rem;
    outline: none;
    color: #636363;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}


.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a i.ion {
    position: absolute;
        font-size: 1.25rem;       
        left: 14rem;
        width: 3.125rem;
        height: 0.7rem;
        text-align: center;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
		border: 0;
}


.header .menu > ul > li .menu-subs.menu-column-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 68rem;
    width: 100%;
    padding: 0;
	color: var(--color-gray);
	background: #ffffff;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    padding: 0 1rem;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
    padding:  0;
    color: var(--color-pink);
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
    text-align: center;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .list-item img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 0.75rem;
    -o-object-fit: cover;
    object-fit: cover;
}
.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li:hover>a,
.header .menu > ul > li .menu-subs > ul > li:hover >a {
    color: var(--color-white) !important;
	
}
.header .menu > ul > li  .menu-subs.menu-mega > .list-item > ul > li:hover,
.header .menu > ul > li .menu-subs > ul > li:hover {
    color:#FFFFFF !important;
	background-color: #871e2a;
}
.header-item-right a:hover,
.header .menu > ul > li:hover  {
    color: var(--color-white);
	background-color: #871e2a;
}
.header-item-right a:hover,
.header .menu > ul > li:hover >a {
    color: var(--color-white);
	
}
.header .menu-mobile-header,
.header .menu-mobile-toggle {
    display: none;
}
.lefticon{left: 10px; position: absolute; top: 10px;}
@media screen and (min-width: 5001px) {
    .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
    }
}
@media screen and (max-width: 5000px) {
    .header-item-center {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    
    .menuwrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .header .menu-mobile-toggle {
        position: absolute;
        display: block;
        cursor: pointer;
        width: 2.5rem;
        height: 2rem;
        border: none;
		border-radius: 3px;
        outline: none;
        margin-left:20px;		
        background: #fff;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
		top:20px;
    }
    .header .menu-mobile-toggle span {
        display: block;
        position: absolute;
        width: 80%;
        height: 2px;		
        left: 10%;
		margin-top: 18%;
        border: none;
        outline: none;
        opacity: 1;
        border-radius: 0.25rem;
        background: var(--color-black);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }
    .header .menu-mobile-toggle span:nth-child(1) {
        top: 0;
    }
    .header .menu-mobile-toggle span:nth-child(2),
    .header .menu-mobile-toggle span:nth-child(3) {
        top: 0.5rem;
    }
    .header .menu-mobile-toggle span:nth-child(4) {
        top: 1rem;
    }
    .header-item-right {
        -webkit-box-align: left;
        -ms-flex-align: left;
        align-items: left;
    }
    .header .menu {
        position: fixed;
        top: 0;
        left: -12px;
        min-width: 17rem;
        height: 100%;
        z-index: 1099;
		padding-left: 12px;
        overflow: hidden;
        background: var(--color-white);
        -webkit-transform: translate(-100%);
        transform: translate(-100%);
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
		box-shadow: 10px 0 10px -2px #999;
		
    }
    .header .menu.active {
        -webkit-transform: translate(0%);
        transform: translate(0%);
    }
    .header .menu > ul > li {
        display: block;
        line-height: 1;
        margin: 0;
		 border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .header .menu > ul > li > a {
        display: inline-block;
        /*line-height: 1.125rem;*/
        height: 2.5rem;
        padding:0.8rem 1rem ;
       
    }
    .header .menu > ul > li > a i.ion {
        position: absolute;
        font-size: 1.25rem;
       /* line-height: 3.125rem;
        top: 0;*/
        left: 13.5rem;
        width: 3.125rem;
       /* height: 3.125rem;*/
        text-align: center;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
		border: 0;
    }
	
	
    .header .menu .menu-mobile-header {
        position: relative;
        position: sticky;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        top: 0;
        height: 3.125rem;
        z-index: 501;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
 color: var(--color-black);
    background-color: #FFFFFF;
    }
    .header .menu .menu-mobile-header .menu-mobile-arrow {
        display: none;
        font-size: 1.25rem;
        line-height: 3.125rem;
        width: 3.125rem;
        height: 3.125rem;
        cursor: pointer;
        text-align: center;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        color: var(--color-black);
    }
    .header .menu .menu-mobile-header.active .menu-mobile-arrow {
        display: block;
    }
    .header .menu .menu-mobile-header .menu-mobile-title {
        font-family: inherit;
        font-size: 1rem;
        font-weight: 500;
        line-height: inherit;
        color: var(--color-black);
        text-transform: uppercase;
    }
    .header .menu .menu-mobile-header .menu-mobile-close {
        font-size: 2.25rem;
        line-height: 3.125rem;
        cursor: pointer;
        width: 3.125rem;
        height: 3.125rem;
        text-align: center;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        color: var(--color-black);
    }
    .header .menu .menu-section {
		padding:0;
        margin: 0;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;		
        background-color: #FFFFFF;
		
    }
	 .header .menu .menu-section .menuscrollbar1::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
	background-color: #F5F5F5;
	border-radius: 10px;
}

 .header .menu .menu-section .menuscrollbar1::-webkit-scrollbar
{
	width: 8px;
	background-color: #F5F5F5;
}

 .header .menu .menu-section .menuscrollbar1::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: #FFF;
	background-image: -webkit-gradient(linear,
									   40% 0%,
									   75% 84%,
									   from(#2a9161),
									   to(#1b9059),
									   color-stop(.6,#61c496))
}
    .header .menu > ul > li .menu-subs {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .header .menu > ul > li .menu-subs.menu-mega {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0rem;
        padding-top: 3.3rem;
		padding-left: 12px;
        opacity: 1;
        overflow-y: hidden;
		overflow-x: hidden;
        visibility: visible;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none;
    }
	.scrollbar{overflow-y: auto !important;}
	
    .header .menu > ul > li .menu-subs.active {
        display: block;
    }
    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0rem;
    }
    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img {
        margin-top: 0;
    }
    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
        margin-bottom: 1rem;
    }
    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center:last-child .title {
        margin-bottom: 1rem;
    }
    .header .menu > ul > li .menu-subs > ul > li > a {
        display: block;
    }
    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
        margin-bottom: 0.5rem;
		padding: 0;
    }
    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
        display:inline-block;		
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        opacity: 0;
        visibility: hidden;
	/*	 backdrop-filter: blur(2px);
        background: rgba(255, 255, 255, 0.7);*/
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
@media screen and (max-width: 1449px) {
.container{
    width: 99%;
	max-width: 1370px;
	margin: auto;
}
}
@media screen and (max-width: 1400px) {
.container{
    width: 94%;
	max-width: 1380px;
	margin: auto 0;
	float: right;
}
}

@media screen and (max-width: 1023px) {
	.header-item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex:0  0 80%;
	
}

}
@media screen and (max-width:767px) {
	.header-item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 98%;
    flex:0  0 98%;
	
}
.container{
    width: 90%;
	max-width: 1380px;
	margin: auto 0;
	float: right;
}
	.header .menu-mobile-toggle {       
        margin-left:10px;
       	top:15px;
    }
}

.menuscrollbar::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
	background-color: #F5F5F5;
	border-radius: 10px;
}

.menuscrollbar::-webkit-scrollbar
{
	width: 8px;
	background-color: #F5F5F5;
}

.menuscrollbar::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: #FFF;
	background-image: -webkit-gradient(linear,
									   40% 0%,
									   75% 84%,
									   from(#2a9161),
									   to(#1b9059),
									   color-stop(.6,#61c496))
}




