@-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 {
    max-width: 80rem;
    width: 100%;
    height: auto;
    padding: 0 2rem;
    margin: 0 auto;
}
@media only screen and (max-width: 992px) {
    .container {
        padding: 0 1rem;
        margin: 0 auto;
    }
}
.brand {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: inherit;
    color: #e91e63;
    border: none;
    outline: none;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
}
.brand img {
    width: 100%;
    max-width: 199px;
    max-height: 47px;
}
.header {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    /*min-height: 66px;*/
    /*padding: 1rem 0;*/
    padding: 0;
    margin: 0 auto;
    z-index: 999;
    border: none;
    outline: none;
    background: #fff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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 17%;
    flex: 0 0 17%;
}
.header-item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66%;
    /*flex: 0 0 66%;*/
}
.header-item-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17%;
    flex: 0 0 17%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -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;
    border: none;
    outline: none;
    color: #121212;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header .menu > ul > li {
    display: inline-block;
    /*line-height: 3.125rem;*/
    line-height: 4.125rem;
    /*margin-left: 1.5rem;*/
    padding-left: 0;
}
.header .menu > ul > li > a {
    position: relative;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    border: none;
    outline: none;
    text-decoration: none;
    color: #040404;
    /*padding: 0.5rem 1rem;*/
    padding: 0 1rem 0.5rem;
    /*text-transform: capitalize;*/
    text-rendering: optimizeLegibility;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.header .menu > ul > li .menu-subs {
    position: absolute;
    width: 100%;
    height: auto;
    margin-top: 1.75rem;
    margin-left: -50px;
    padding: 1rem 2rem;
    border: none;
    outline: none;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    /*border-radius: 0.25rem;
    border-top: 3px solid #e91e63;*/
    border-top: 3px solid transparent;
    background: #fff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /*-webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;*/
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.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: 1rem;
    font-weight: 500;
    line-height: 1.25;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    color: #121212;
    /*text-transform: capitalize;*/
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header .menu > ul > li .menu-column-1 {
    /*min-width: 16rem;*/
    /*max-width: 20rem;*/
    width: 10rem;
    border-radius: 24px;
}
.header .menu > ul > li .menu-subs.menu-mega {
    left: 66%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-tranform: translateX(-50%);
    transform: translateX(-50%);
}
/* start New Styles */
.header .menu > ul > li > a:has(.material-icons) > .material-icons,
.header .menu > ul > li > a > .material-icons,
.header .menu > ul > .menu-item-has-children > a > .material-icons {
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    -moz-transform: translateY(6px);
    transform: translateY(6px);
}
/* end New Styles */
.menu-subs.menu-mega > .list-item > ul,
.menu-subs > ul {
    padding-left: 0;
}
.menu-subs > ul {
    list-style-type: none;
}
.menu-subs > ul li a {
    text-decoration: none;
}
.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
    display: block;
    line-height: 1;
}
.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.25;
    padding: 0.5rem 0;
    border: none;
    text-decoration: none;
    outline: none;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.header .menu > ul > li .menu-subs.menu-column-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*max-width: 68rem;*/
    max-width: 61.25rem;
    width: 100%;
    padding: 1.25rem 1rem;
}
.header .menu > ul > li .menu-subs.menu-column-2 > .list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding: 0 1rem;
}
.header .menu > ul > li .menu-subs.menu-column-2 > .list-item .title {
    /*font-size: 0.875rem!important;*/
    font-size: 1.125rem!important;
    font-weight: 500;
    line-height: 1.5;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    color: #e91e63;
    text-transform: capitalize;
    margin-bottom: 0!important;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header .menu .menu-section .title a {
    color: inherit;
    text-decoration: none;
}
.header .menu > ul > li .menu-subs.menu-column-2 > .list-item.text-center .title {
    text-align: center;
}
.header .menu > ul > li .menu-subs.menu-column-2 > .list-item img.responsive {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-top: 0.75rem;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
}
.header .menu .menu-section {
    padding-left: 0!important;
}
.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
.header .menu > ul > li .menu-subs > ul > li > a:hover {
    /*color: #e91e63;*/
    color: #040404;
}
.header-item-right a:hover,
.header .menu > ul > li:hover > a {
    /*color: #e91e63;*/
    color: #0b3b5e;
}
@media only screen and (min-width: 993px) {
    .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
        /*margin-top: 0.8rem;*/
        /*margin-top: 1.5rem;*/
        margin-top: 1rem;
        /*margin-left: -3.0625rem;*/
        /*margin-left: -50rem;*/
        opacity: 1;
        visibility: visible;
    }
    .header-item-right {
        display: none;
    }
    .header .menu > ul > li:hover > a {
        border-bottom: 2px solid #FF3A30;
    }
    .header .menu > ul > li > a.active {
        border-bottom: 2px solid #FF3A30;
    }
    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li:first-child > a {
        padding-top: 0;
    }
    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
        padding-left: 0!important;
    }
    .header .menu > ul > li .menu-subs.menu-column-2 > .list-item:first-child {
        border-right: 1px solid #cecece;
    }
    .header .menu > ul > li .menu-subs.menu-column-2 > .list-item:nth-child(2) {
        padding-left: 20px;
    }
    .header .menu .menu-section .title a:hover {
        text-decoration: underline;
    }
    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
        transition: padding 0.2s ease-in-out;
    }
    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover {
        /*font-weight: 500;*/
        padding-left: 7px;
    }
    .header .menu > ul > li .menu-column-1:before {
        content: '';
        position: absolute;
        top: -19px;
        left: 44%;
        display: block;
        border-bottom: 16px solid #fff;
        border-right: 13px solid transparent;
        border-left: 13px solid transparent;
    }
}
.menu-mobile-header,
.menu-mobile-trigger {
    display: none;
}
@media only screen and (max-width: 1247px) {
    .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;
    }
    .header-item-left,
    .header-item-right {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    /*.wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }*/
    .wrapper .header-item-left {
        order: 2;
        /*padding-left: 20%;*/
        padding-left: 10%;
    }
    .header .menu-mobile-trigger {
        position: relative;
        display: block;
        cursor: pointer;
        width: 1.75rem;
        height: 1rem;
        border: none;
        outline: none;
        /*margin-left: 1.25rem;*/
        margin-left: 0;
        background: 0 0;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
    }
    .header .menu-mobile-trigger span {
        display: block;
        position: absolute;
        width: 34px;
        height: 3px;
        left: 0;
        border: none;
        outline: none;
        opacity: 1;
        border-radius: 0.25rem;
        /*background: #073e5e;*/
        background: #fff;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }
    .header .menu-mobile-trigger span:nth-child(1) {
        top: 0;
    }
    .header .menu-mobile-trigger span:nth-child(2),
    .header .menu-mobile-trigger span:nth-child(3) {
        top: 0.5rem;
    }
    .header .menu-mobile-trigger span:nth-child(4) {
        top: 1rem;
        width: 24px;
    }
    .header-item-right {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 20rem;
        height: 100%;
        z-index: 1099;
        overflow: hidden;
        background: #fafafa;
        -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
        transform: translate(-100%);
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }
    .header .menu.active {
        -webkit-transform: translate(0%);
        -ms-transform: translate(0%);
        transform: translate(0%);
    }
    .header .menu > ul > li {
        display: block;
        line-height: 1;
        margin: 0;
    }
    .header .menu > ul > li > a {
        display: block;
        line-height: 3.125rem;
        height: 3.125rem;
        padding: 0 3.125rem 0 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .header .menu > ul > li > a i.ion {
        position: absolute;
        font-size: 1.25rem;
        line-height: 3.125rem;
        top: 0;
        right: 0;
        width: 3.125rem;
        height: 3.125rem;
        text-align: center;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .header .menu .menu-mobile-header {
        position: relative;
        position: -webkit-sticky;
        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);
        background: #fafafa;
    }
    .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;
        /*border-right: 1px solid rgba(0, 0, 0, 0.1);*/
        border: 1px solid transparent;
        color: #121212;
        text-align: center;
    }
    .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: #121212;
        text-transform: capitalize;
        text-rendering: optimizeLegibility;
    }
    .header .menu .menu-mobile-header .menu-mobile-close {
        font-size: 2.25rem;
        line-height: 3.125rem;
        cursor: pointer;
        width: 3.125rem;
        height: 3.125rem;
        /*border-left: 1px solid rgba(0, 0, 0, 0.1);*/
        border: 1px solid transparent;
        color: #121212;
        text-align: center;
    }
    .header .menu .menu-section {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .header .menu .menu-section ul li.active a {
        font-weight: bold;
    }
    .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: 1rem;*/
        padding-top: 4rem;
        /*padding: 1rem 1.375rem;*/
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        -ms-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: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .header .menu > ul > li .menu-subs.active {
        display: block;
    }
    .header .menu > ul > li .menu-subs.menu-column-1 > ul {
        list-style-type: none;
        padding-left: 0;
    }
    .header .menu > ul > li .menu-subs.menu-column-2 > .list-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0;
    }
    .header .menu > ul > li .menu-subs.menu-column-2 > .list-item img.responsive {
        margin-top: 0;
    }
    .header .menu > ul > li .menu-subs.menu-column-2 > .list-item.text-center .title {
        margin-bottom: 1.25rem;
    }
    .header .menu > ul > li .menu-subs.menu-column-2 > .list-item.text-center:last-child .title {
        margin-bottom: 0;
    }
    .header .menu > ul > li .menu-subs > ul > li > a {
        display: block;
    }
    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
        /*margin-bottom: 1rem;*/
        margin-bottom: 0;
    }
    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
        display: block;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.55);
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .menu-subs .list-item:not(:last-child),
    .menu-subs .list-item .title {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1)!important;
    }
    .menu-subs .list-item .title:not(:first-child) {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    .menu-subs .list-item .title {
         margin-bottom: 0!important;
    }
    .menu-subs .list-item .title a {
         text-decoration: none;
    }
    .menu-subs .list-item ul:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .menu-subs .list-item ul {
        padding: 8px 0;
    }
    .brand  {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}
@media (min-width: 993px) {
    .header .wrapper {
        justify-content: space-between;
    }
    .header .menu .menu-section {
        padding-left: 0!important;
        /*margin-bottom: 0;*/
        margin: 0;
    }
    .header-item-center {
        /*padding-right: 50px;*/
        padding-right: 0;
    }
}
.main {
    display: block;
    width: 100%;
    min-height: 100vh;
    background-image: url(https://source.unsplash.com/pkhBlvTLyog/1920x1280);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}
.nav-container {
    padding: 0 0.75rem;
}
@media (max-width: 1247px) {
    .header-item-left ul {
        position: absolute;
        /*right: 53px;*/
        right: 18px;
        list-style-type: none;
        padding: 0;
        margin: 0;
    }
    .header-item-left ul li a {
        color: #ff3b30;
        text-decoration: none;
        font-size: 0.8125rem;
    }
    .nav-container:before {
        content: '';
        width: 58px;
        height: 100%;
        background-color: #ff3b30;
        display: block;
        top: 0;
        left: 0;
        position: absolute;
        border-radius: 0 0 12px 0;
    }
}
@media (min-width: 1248px) {
    .nav-container {
        padding: 0.5rem 0.75rem;
        margin-right: auto;
        margin-left: auto;
    }
    .header-item-left ul {
        display: none;
    }
    .menu-section li:last-child button {
        transform: translateY(-2px);
    }
}