@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --color-black: hsl(0, 0%, 10%);
    --color-white: hsl(0, 0%, 100%);
    --color-darken: hsl(0, 0%, 20%);
    --color-pink-100: hsl(336, 95%, 94%);
    --color-pink-200: hsl(338, 91%, 87%);
    --color-pink-300: hsl(339, 90%, 81%);
    --color-pink-400: hsl(339, 88%, 74%);
    --color-pink-500: hsl(339, 82%, 67%);
    --color-pink-600: hsl(339, 76%, 59%);
    --color-pink-700: hsl(339, 67%, 52%);
    --color-pink-800: hsl(339, 68%, 45%);
    --color-pink-900: hsl(339, 69%, 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)
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    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
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    color: var(--color-black);
    background: var(--color-white)
}

a,
button {
    font-family: 'Montserrat', sans-serif;
    ;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges
}

@-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: 75rem;
    height: auto;
    margin: 0 auto;
    padding: 0 1.25rem
}

.brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -1px;
    color: #ffffff;
}

.brand:hover {
    color: #ffffff;
    text-decoration: none;
}

.menubox1 {
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    z-index: 100;
    background: #fff;
}

.menubox1 .wrapper {
    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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center
}

.menubox1-item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 22%;
    flex: 0 0 22%
}

.menubox1-item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.menubox1-item-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0%;
    flex: 0 0 0%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.free-consultany-btn {
    background: #ff9900;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    ;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    padding: 11px 14px;
    width: 138px;
    margin: 0 6px;
}

.free-consultany-btn:hover {
    background: #f97e00;
    color: #fff !important;
    text-decoration: none;
}

.free-consultany-btn1 {
    background: #27bccb;
}

.free-consultany-btn1:hover {
    background: #13a2af;
    text-decoration: none;
}

.free-consultany-btn1 i {
    margin: 0 0 0 9px;
    color: #ffffff;
}

ul.menu-section {
    padding: 0px;
    margin: 8px 0;
}

.menubox1-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: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}
.inner-nav {
    position: relative;
}
.inner-nav .menu>ul>li>a {
    color: #fff!important;
    font-weight: 400 !important;
}

.inner-nav .menu>ul>li>a:hover {
    color: rgb(6, 197, 70)!important;
}

.inner-nav .menu>ul>li {
    margin-left: 0 !important;
    padding: 0 19px;
}
.menubox1 .menu>ul>li {
    display: inline-block;
    padding: 7px 10px;
}
.menubox1 .menu>ul>li>a {
    position: relative;
    outline: none;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #1E1E1E;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    padding: 13px 0;
    display: flex;
    align-items: center;
}
.menubox1 .menu>ul>li>a:hover {
    color:red
}
.menubox1 .menu>ul>li>a img {
    margin: 0 8px 0 0;
    width: 18px;
}

.menubox1 .menu>ul>li .menu-subs {
    position: absolute;
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 0px;
    margin-top: 1.75rem;
    z-index: 109;
    opacity: 0;
    visibility: hidden;
    border-radius: .25rem;
    /* border-top: 3px solid #4e56b5; */
    background: #fe504f;
    -webkit-box-shadow: var(--shadow-medium);
    box-shadow: var(--shadow-medium);
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}
.menubox1 .menu>ul>li .menu-subs>ul>li {
    line-height: 36px;
    border-bottom: 1px solid rgb(223 64 63);
}

.nav-icon-bx {
    background: #e1e0e0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menubox1 .menu>ul>li .menu-subs>ul>li:last-child {
    border-bottom: none
}

.menubox1 .menu>ul>li .menu-subs>ul>li>a {
    display: inline-block;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 10px 12px 10px 12px;
    border: none;
    outline: none;
    color: #fff;
    transition: all 0.5s;
    display: flex;
    text-decoration: none;
}

.menubox1 .menu>ul>li .menu-subs>ul>li>a:hover {
    background-color: #c73538;
    color: #fff;
}

.menubox1 .menu>ul>li .menu-subs>ul>li>a span {
    display: block;
    font-size: 12px;
    line-height: 11px;
    color: #000;
}

.menubox1 .menu>ul>li .menu-column-1 {
    min-width: 12rem;
    max-width: 16rem;
}

.menubox1 .menu>ul>li .menu-subs.menu-mega {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.menubox1 .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li {
    display: flex;
    line-height: 1;
    align-items: flex-start;
    border-bottom: 1px solid rgb(183 182 182 / 10%);
    padding: 10px 0;
}

.menubox1 .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li:last-child {
    border-bottom: none;
}

.menubox1 .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    ;
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    padding: 0px 0 8px 16px;
    border: none;
    outline: none;
    color: #534d4d;
    text-transform: capitalize;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}

.menubox1 .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a span {
    display: block;
    font-size: 12px;
    line-height: 11px;
    color: #000;
}

.menubox1 .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: 1.25rem 1rem
}

.menubox1 .menu>ul>li .menu-subs.menu-column-4>.list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 32%;
    padding: 0 1rem
}

.menubox1 .menu>ul>li .menu-subs.menu-column-4>.list-item .title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    padding: .75rem 0;
    color: #4e56b5;
    text-transform: uppercase;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.menubox1 .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
    text-align: center
}

.menubox1 .menu>ul>li .menu-subs.menu-column-4>.list-item img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: .75rem;
    -o-object-fit: cover;
    object-fit: cover
}

.menubox1 .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a:hover {
    color: #4e56b5;
    text-decoration: none;
}

.menubox1-item-right a:hover,
.menubox1 .menu>ul>li:hover>a {
    color: #fe504f;
    text-decoration: none;
}

.menubox1 .menu-mobile-header,
.menubox1 .menu-mobile-toggle {
    display: none
}

.sticky {
    position: fixed !important;
    top: 0;
    width: 100%!important;
    background: #fff;
    z-index: 99;
    margin: auto;
    box-shadow: 4px 2px 6px -2px #00000038;
    right: 0;
    border-bottom: 1px solid #dfdede!important;
    animation: slide-down 1s;
}

.sticky .brand {
    color: #27bccb;
}

.sticky.menubox1 .menu>ul>li>a {
    color: #5a5a5a
}

@keyframes slide-down {
    0% {
        opacity: 1;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (min-width: 993px) {
    .menubox1 .menu>ul>li.menu-item-has-children:hover .menu-subs {
        margin-top: 6px;
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width: 992px) {
    .menubox1 .menu>ul>li>a {
        color: #efefef;
        font-size: 14px;
    }
    header.menubox1.navigation {
        background: white;
        box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 35%);
    }
    .navigation .brand {
        color: #27bccb
    }
    /* .free-consultany-btn,
    ul.parent-arrow {
        display: none;
    } */
    .menubox1-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
    }
    .menubox1-item-left,
    .menubox1-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;
        margin: 0 auto;
        padding: .5rem 0
    }
    .menubox1 .menu-mobile-toggle {
        position: absolute;
        display: block;
        cursor: pointer;
        width: 1.75rem;
        height: 1rem;
        border: none;
        outline: none;
        margin-left: 1.25rem;
        margin-top: -0.25rem;
        background: none;
        -webkit-transform: rotate( 0deg);
        transform: rotate( 0deg);
        -webkit-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        right: 20px;
        top: 30px;
    }
    .menubox1 .menu-mobile-toggle span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        left: -2px;
        border: none;
        outline: none;
        opacity: 1;
        border-radius: .25rem;
        background: var(--color-black);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        transition: .25s ease-in-out
    }
    .menubox1 .menu-mobile-toggle span:nth-child(1) {
        top: 0
    }
    .menubox1 .menu-mobile-toggle span:nth-child(2),
    .menubox1 .menu-mobile-toggle span:nth-child(3) {
        top: .5rem
    }
    .menubox1 .menu-mobile-toggle span:nth-child(4) {
        top: 1rem
    }
    .menubox1-item-right {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .menubox1 .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 75%;
        height: 100%;
        z-index: 111;
        overflow: hidden;
        background: #275a95;
        -webkit-transform: translate(-100%);
        transform: translate(-100%);
        -webkit-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out
    }
    .menubox1 .menu.active {
        -webkit-transform: translate(0%);
        transform: translate(0%)
    }
    .menubox1 .menu>ul>li {
        display: block;
        line-height: 1;
        margin: 0;
        padding: 0 0 0 0;
    }
    
    .menubox1 .menu>ul>li {
        margin-left: 0!important;
    }
    ul.menu-section {
        padding: 0px;
        margin: 00;
    }
    .inner-nav .menu>ul>li {
        padding: 0px;
    }
    .menubox1 .menu>ul>li>a {
        display: flex;
        line-height: 3.125rem;
        height: 3.125rem;
        padding:0 0.125rem 0 1rem;
        border-bottom: 1px solid rgb(68 122 173) !important;
        color: #fff !important;
    }
    .menubox1 .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);
        transform: rotate(-90deg)
    }
    .menubox1 .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: 110;
        border-bottom: 1px solid rgb(68 122 173) !important;
        color: #fff !important;
    }
    .menubox1 .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-bottom: 1px solid rgb(68 122 173) !important;
        color: #fff
    }
    .menubox1 .menu .menu-mobile-header.active .menu-mobile-arrow {
        display: block
    }
    .menubox1 .menu .menu-mobile-header .menu-mobile-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        font-weight: 500;
        line-height: inherit;
        color: #fff;
        text-transform: capitalize
    }
    .menubox1 .menu .menu-mobile-header .menu-mobile-close {
        font-size: 0;
        line-height: 0;
        cursor: pointer;
        width: 36px;
        height: 48px;
        text-align: center;
        border-left: 1px solid rgb(2 33 62);
        fill: #fff;
        margin: 0 1px 0 0;
        position: relative;
        padding: 4px;
    }
    .menubox1 .menu .menu-section {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden
    }
    .menubox1 .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;
    }
    .menubox1 .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%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none;
        background: #003766;
    }
    .menubox1 .menu>ul>li .menu-subs.menu-column-4>.list-item .title {
        color: #fff;
    }
    .menubox1 .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a,
    .menubox1 .menu>ul>li .menu-subs>ul>li>a {
        font-size: 13px;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
    }
    .menubox1 .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a span,
    .menubox1 .menu>ul>li .menu-subs>ul>li>a span {
        font-size: 13px;
        line-height: 11px;
        color: #c5c5c5;
        font-family: 'Montserrat', sans-serif;
        ;
    }
    .menubox1 .menu>ul>li .menu-subs.active {
        display: block
    }
    .menubox1 .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
    }
    .menubox1 .menu>ul>li .menu-subs.menu-column-4>.list-item img {
        margin-top: 0
    }
    .menubox1 .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
        margin-bottom: 1.25rem
    }
    .menubox1 .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center:last-child .title {
        margin-bottom: 0rem
    }
    .menubox1 .menu>ul>li .menu-subs>ul>li>a {
        display: block
    }
    .menubox1 .menu>ul>li .menu-subs.menu-mega>.list-item>ul {
        margin-bottom: 1rem
    }
    .menubox1 .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: 100;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, .65);
        -webkit-transition: all .45s ease-in-out;
        transition: all .45s ease-in-out
    }
    .overlay.active {
        opacity: 1;
        visibility: visible
    }
}

@media (max-width: 767px) {
    header.menubox1.navigation {
        background: white;
        box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 35%);
    }
    .navigation .brand {
        color: #27bccb;
        width: 82%;
    }
    .logo {
        margin: 0;
        text-align: left;
        width: 78%;
    }
    .menubox1 .menu>ul>li .menu-subs {
        background-image: none;
        background: #001325;
        border: 1px solid transparent
    }
    .menubox1 .menu>ul>li .menu-subs>ul>li {
        border-bottom: 1px solid rgb(2 33 62);
    }
    .list-item ul {
        padding: 0 0 0 0px;
    }
    .menubox1 {
        position: fixed;
    }
    .menu>ul>li:hover>a::before {
        display: none;
    }
