.new-header {
    padding: 27px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
}

.new-header-blur {
    position: fixed;
    z-index: 1;
    top: 100px;
    left: 0;
    background: rgba(194, 194, 194, 0.30);
    backdrop-filter: blur(2px);
    width: 100vw;
    height: 100vh;
}

.new-header-blur {
   display: none;
}

.new-header-blur.active {
    display: block;
}

.new-header .typ-main-container {

    @media (max-width: 1050px) {
        padding: 0 15px;
        margin: 0;
    }

}

.new-header.red {
    background: #E5214C;

    @media (max-width: 990px) {
        background: #FFFFFF;
    }

}

.new-header.grey {
    background: #212121;

    @media (max-width: 990px) {
        background: #FFFFFF;
    }
}

.new-header .mobile {
    display: none;

    @media (max-width: 990px) {
        display: block;
    }

}

.new-header .mobile .wsmobileheader {
    background: #FFFFFF;
}

.new-header .wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;

    @media (max-width: 990px) {
        display: none;
    }

}

.new-header .wrapper .menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.new-header .wrapper .menu .select {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #FFF;
    font-family: "Axiforma", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    border-radius: 5px;
    transition: all .2s;

    @media (max-width: 1150px) {
        font-size: 14px;
        padding: 16px 10px;
    }

}

.new-header .wrapper .menu .select .arrow-icon {
    transform: rotate(0);
    transition: all .2s;
}

.new-header .wrapper .menu .select .sub-menu {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background: transparent;
    display: none;
    padding-top: 50px;
    cursor: default;
}

.new-header .wrapper .menu .select .sub-menu .box {
    padding: 40px 24px;
    border-radius: 20px;
    background: #FFF;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    cursor: default;

    max-height: 560px;
    overflow-y: auto;
}

.new-header .wrapper .menu .select .sub-menu .box .item {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: all .2s;
}

.new-header .wrapper .menu .select .sub-menu .box .item:hover {
    background: #F9F9F9;
}

.new-header .wrapper .menu .select .sub-menu .box .item img {
    flex-shrink: 0;
    padding: 8px;
    border-radius: 10px;
    background: #FFE1E0;
}

.new-header .wrapper .menu .select .sub-menu .box .item h3 {
    margin-bottom: 4px;
    color: #0F0F0F;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

.new-header .wrapper .menu .select .sub-menu .box .item p {
    margin: 0;
    color: #334155;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.new-header .wrapper .menu .select:hover .arrow-icon {
    transform: rotate(180deg);
}

.new-header .wrapper .menu .select:hover {
    background: #FA2E5B;
}

.new-header .wrapper .menu .select:hover .sub-menu {
    display: block;
}

.new-header .wrapper .menu .main-link {
    padding: 16px 12px;
    color: #FFF;
    font-family: "Axiforma", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    border-radius: 5px;
    transition: all .2s;

    @media (max-width: 1150px) {
        font-size: 14px;
        padding: 16px 10px;
    }

}

.new-header .wrapper .menu .main-link:hover {
    background: #FA2E5B;
}

.new-header .request-demo {
    text-align: center;
    font-family: "Axiforma", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    padding: 15px 40px;
    border-radius: 5px;
    color: #E2345A;
    background: #FFFFFF;
}

.new-header .request-demo-mobile {
    color: #FFFFFF !important;
    background: #E2345A !important;
    text-align: center !important;
    font-family: "Axiforma", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 100% !important;
    padding: 15px 40px !important;
    border-radius: 5px !important;
    margin-top: 14px !important;
    margin-inline: 14px !important;
}
