#header {
    z-index: 12;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 1;
    position: relative;
    padding: 18px 0;
    border-radius: 20px;
}

.header-nav {
    background: var(--color3);
}
.header-mm {
    font-size: 35px;
    line-height: 1;
    color: var(--color1);
}
.header-top .button.light-button {
    background: #fff;
}
.header-end-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.header-top {
    background: #ECF0FB;
    padding: 14px 15px 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-bottom .button {
    min-width: unset;
}
.header-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    box-shadow: 0 8px 20px -13px #00000054;
}
.header-end {
    flex: 0 0 20%;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    display: flex;
}
.header-end .button {
    min-width: 80px;
}
.header-start {
     display: flex;
     align-items: center;
     gap: 6px;
 }

.header-logo a {
    max-width: 123px;
    display: flex;
}
.cta-button i {
    color: var(--color2);
}
.head-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--color2);
    border-radius: 10px;
    min-width: 153px;
    font-size: 16px;
    gap: 8px;
    height: 40px;
    font-family: var(--med_font);
    color: var(--color1);
    border: 1px solid var(--color2);
    transition: 0.4s ease;
}
.head-btn i {
    font-size: 18px;
}
.head-btn:hover {
    background: transparent;
    color: var(--color2);
}
.menu-wrap {
    display: none;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-menu li a {
    font-size: 16px;
    color: var(--color_text);
    transition: 0.4s ease;
    white-space: nowrap;
    padding: 19px 0;
    position: relative;
    display: inline-flex;
    line-height: 28px;
    font-family: var(--bold_font);
}

.header-menu ul.sub-menu li a {
    display: block;
    padding: 10px 0;
}
.header-menu ul.sub-menu li a::before {
    content: '';
    width: 26px;
    height: 26px;
    background: var(--color2);
    position: absolute;
    right: -24px;
    top: 12px;
    clip-path: ellipse(23% 40% at 100% 51%);
    opacity: 0;
    transition: 0.4s ease;
}
.header-menu ul.sub-menu li a:hover::before {
    opacity: 1;
}
.header-menu li a:hover {
    color: var(--color1);
}
.header-menu .sub-menu li a {
    color: var(--color_text);
}
.header-menu .sub-menu li a:hover {
    color: var(--color2);
}
.header-menu .sub-menu li:not(:last-child) {
    border-bottom: 1px solid #E2E2E2
}
.header-menu > .menu-item-has-children > a::after {
    content: "\e900";
    font-family: icomoon;
    margin-right: 5px;
    transition: 0.4s ease;
    font-size: 5px;
}


.header-menu ul.sub-menu {
    position: absolute;
    z-index: 2;
    background: #fff;
    min-width: 234px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    padding: 5px 24px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    border-radius: 15px;
    pointer-events: none;
    top: 92%;
}
.menu-item {
    position: relative;
}
.header-menu li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-menu .sub-menu li .sub-menu {
    right: 100%;
    top: 0
}

.header-menu .sub-menu > li.menu-item-has-children > a::after {
    content: "\e900";
    font-family: icomoon;
    transform: rotate(90deg);
-webkit-transformrotate(90 deg);
    font-size: 7px;
    position: absolute;
    left: 5px;
    top: 8px;
    transition: 0.4s ease
}

.socials {
    font-size: 23px;
    display: flex;
    gap: 16px;
}
.socials a i {
    transition: 0.5s ease;
}
.socials a:hover i {
    transform: rotateY(360deg);
}
.socials a {
    color: #15264F;
    display: flex;
    transition: 0.4s ease;
}
.socials a:hover {
    color: var(--color3);
}
.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    backdrop-filter: blur(100px);
    border-radius: 0 0 20px 20px;
    padding: 0 40px;
    z-index: 0;
    background: linear-gradient(180deg, rgba(187, 199, 228, 0.7) 0%, rgba(82, 101, 146, 0.7) 100%);
    transition: 0.4s ease;
}
.single-product .nav-menu {
    z-index: 0;
}
.nav-menu .header-menu {
    gap: 64px;
}
.nav-menu .header-menu li a {
    padding: 21px 0;
    display: flex;
    font-size: 16px;
    color: #fff;
    line-height: 24px;
}
.nav-menu .header-menu li a:hover {
    color: var(--color1);

}
/*********Mobile Menu***********/
#mask {
    position: fixed;
    z-index: 12;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

#menumobile {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 370px;
    max-width: 95%;
    z-index: 99991;
    border-radius: 24px 0 0 24px;
    padding: 32px;
    transition: all 0.5s;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .3) !important;
    overflow-y: auto;
    background-color: white;
}
#nomenumobile {
    cursor: pointer;
    transition: all 0.5s;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 3px;
    display: inline-flex;
    color: red;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}
.come-menumobile {
    right: 0 !important;
}

.title-mm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--bold_font);
    margin-bottom: 32px;
    font-size: 20px;
    line-height: 1;
}

.title-mm .icon-close {
    font-size: 17px;
    color: darkred;
}

.main-mm ul li {
    margin-bottom: 14px;
}
.main-mm ul li a {
    color: #111;
    background: #F5F5F5;
    border-radius: 12px;
    display: block;
    padding: 8px 16px;
    position: relative;
    width: 100%;
    transition: 0.4s ease;
}

.main-mm ul li a:hover {
    color: #fff;
    background: var(--color1);
}

.main-mm ul li a::after {
    content: "\e910";
    color: var(--color1);
    font-size: 25px;
    font-family: 'icomoon';
    position: absolute;
    left: 18px;
    border-radius: 3px;
    top: 11px;
    line-height: 1;
    transition: 0.4s ease;
}
.main-mm ul li a:hover::after {
    color: #fff;
}
.main-mm ul li > .sub-menu {
    position:unset;
    border-radius:0;
    padding:0 10px;
    opacity:1;
    visibility:visible;
    pointer-events:all;
    width:100%;
    border-top: 1px solid #b2dff4;
    display:none
}

.childer i {
    display: inline-block;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    font-size: 1rem;
}

.childer {
    position: absolute;
    left: -25%;
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.come-submenu {
    right: 0 !important;
}

.sub-closer {
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    /*background: var(--color2);*/
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-closer i {
    cursor: pointer;
    top: -1px;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    position: relative;
    left: -1px;
    font-size: 1rem;
}
.title-subcome {
    /*color: var(--color2);*/
    font-weight: normal;
    position: relative;
    top: 2px;
}

/** PZ *************/


.header-page {
    position: sticky !important;
    background-color: white !important;
    top: 0;
    z-index: 2;
    box-shadow: 0px -2px 15px -1px #e3ddddc4;
}


#breadcrumbs {
    background: url("../img/brd.svg") no-repeat;
    background-size: cover;
    height: 56px;
    margin: 0 0 20px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    font-size: 14px;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    color:  #fff;
    text-align: center;
}
#breadcrumbs .breadcrumb_last {
    color: #14EBA4;
    font-size: 16px;
    font-family: var(--bold_font);
    font-weight: bolder;
    display: inline-block;
}
#breadcrumbs a {
    color:  #fff;
}
#breadcrumbs a:hover {
    color: var(--color2) !important;
}
#breadcrumbs a::after {
    content: "\e912";
    font-family: 'icomoon';
    font-size: 8px;
    margin: 0 5px;
}
#breadcrumbs i {
    font-size: 11px;
    color: #8F8F8F;
    position: relative;
    margin: 0 16px;
    transition: 0.4s ease;
    display: inline-block;
    vertical-align: -1px;
}

@media screen and (min-width: 768px) {
    .nav-menu {
        display: block;
    }
    .header-row .cta-button {
        margin-left: auto;
    }
}
@media screen and (min-width: 992px) {

    #breadcrumbs {
        height: 74px;
        font-size: 17px;
        margin: 0 0 40px;
    }
    #breadcrumbs .breadcrumb_last {
        font-size: 20px;
    }
  #breadcrumbs a::after {
  
    font-size: 10px;
    margin: 0 10px;
}
    .menu-wrap {
        display: block;
    }
    .story-modal-wrap .title-mm {
        display: none;
    }
    .header-start {
        display: none;
    }
    .header-row {
        gap: 30px;
    }
    .header-row .header-logo {
        flex: 0 0 23.5%;
        border-left: 1px dashed var(--color2);
    }
    .header-end {
        flex: 0 0 15%;
    }
    .header-menu {
        gap: 20px;
    }
    .header-logo a {
        max-width: 189px;
    }
}
@media screen and (min-width: 1200px) {
    .header-row .header-logo {
        flex: 0 0 17.5%;
    }
    .header-end {
        flex: 0 0 20%;
    }
    .header-menu {
        gap: 45px;
    }
    .header-row {
        gap: 38px;
    }
}
