.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    transition: top .3s ease-in-out;
    transition: all .3s;
}

.nav {
    width: 100%;
    background-color: #ffffff00;
    padding: 25px 0px;
}

#header.header-scrolled {
    height: auto;
    padding: 0;
    /* background: #006aeb; */
    background: #fff;
    transition: top .3s ease-in-out;
    transition: all .3s;
    box-shadow: 0 0 15px #3838387a;
    /* padding: 15px 0px; */
}

.nav .container{
    position: relative;
}

.nav .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 0px!important;
    position: relative;
}


.nav .nav-header {
    /* flex: 0.95; */
    /*padding-left: 1rem;*/
}

.nav .nav-header>.nav-title {
    /* font-size: 22px; */
    color: #fff;
}

.nav .nav-title .logo{
    /*max-width: 100%;*/
    width: 195px;
    height: auto;
}

.nav .nav-list {
    display: flex;
    gap: 20px;
    margin: 0px;
    padding: 16px 24px;
    background: #F5F5F5;
    border-radius: 1000px;
    /* position: relative; */
}

.nav .nav-list > li a.sub::after {
    content: url('/images/menu-arrow-down.png');
    margin-left: 10px;
    margin-top: 5px;
}

.nav .nav-list>li {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.nav .nav-list>li a {
    /* font-family: 'DM Sans'; */
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #32313A;
    text-decoration: none;

    /* text-decoration: none;
    color: #000;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-transform: capitalize; */
    /* color: #FFFFFF; */
    position: relative;
    transition: 0.3s;
}

/* .nav .nav-list>li a::before{
    position: absolute;
    content: "";
    width: 38px;
    height: 4px;
    background: linear-gradient(137.18deg, #F96A22 15.48%, #FF9701 85.03%);
    border-radius: 100px;
    display: none;
    bottom: -5px;
    right: 0;
    left: 0;
    margin: 0px auto;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition:  opacity .3s ease-out;
} */

.nav .nav-list>li a:hover{
    color: #17a2b8;
}

.nav .nav-list>li a.sub{
    /* position: relative; */
}

.nav .nav-list .sub-list.items .sub-column{
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

.nav .nav-list .sub-list.items2 .sub-column{
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
}


.nav .nav-list>li a.sub + .sub-list{
    /* Mega Menu */

    background: #FFFFFF;
    border-radius: 20px;

    gap: 60px;
    padding: 24px;
    /* background: #1a237e; */
    display: none;
    position: absolute;
    top: 50px;
    list-style: none;
    width: 700px;
    max-width: 100%;
    position: absolute;
    left: 50%;
    margin-left: -350px;
    box-shadow: 0px 4px 20px 3px #80808021;
    z-index: 9999;
}

.nav .nav-list>li a.sub + .sub-list li{
    padding: 3px;
}

.nav .nav-list>li a.sub:hover + .sub-list{
    display: flex;
}

.nav .nav-list>li a.sub + .sub-list:hover{
    display: flex;
}

.nav .nav-list>li a:hover::before{
    display: table;
}

.nav .nav-list>li a.active{
    color: #006aeb;
}


.nav .nav-list>li a.active::before{
    display: table;
    transition: 0.3s;
}

.nav .nav-list .sub-heading{
     font-family: 'Neue Montreal'; 
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: #32313A;
    margin-top: 0px;
    margin-bottom: 12px;
}

.nav .nav-list .sub-column{
     font-family: 'DM Sans'; 
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    list-style: none;
    color: #0083FF;
    padding-left: 0px!important;
}

.nav .nav-list .sub-column li{

}

.nav #nav-check {
    display: none;
}

@media only screen and (max-width: 1624px) {
    .nav .nav-list {
        gap: 10px;
    }
}

@media only screen and (max-width: 1512px) {
    .nav .nav-list>li a {
        font-size: 13px;
    }
}

@media only screen and (max-width: 1372px){

    .nav {
        padding: 1rem;
    }

    .nav .nav-btn {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 0;
        padding-top: 0.2rem;
    }

    .nav .nav-btn label {
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 13px;
        margin-bottom: 0px;
        margin-top: 5px;
    }

    .nav .nav-btn>label>span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid #1b1b1b;
    }

    .nav .nav-list {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        background-color: #1a237e;
        height: 0;
        transition: all 0.3s ease-in;
        top: 0px;
        left: 0;
        overflow: auto;
        border-radius: 0px;
        padding: 0px;
    }

    .nav .nav-list>li a.sub:hover + .sub-list{
        /*margin-left: 10px;*/
        background: #000000;
        top: 55px;
        left: 0px;
        z-index: 999;
    }

    .nav .nav-list>li a.sub{
        /* position: relative; */
    }

    .nav .nav-list>li {
        width: 100%;
        margin-top: 0rem;
        display: block;
         position: relative; 
    }

    .nav .nav-list>li a{
        color: #fff;
    }

    .nav #nav-check:checked~.nav-list {
        height: 100vh;
        padding: 15px 15px;
        width: 80%;
    }

    /* .nav .nav-list>li a.sub + .sub-list{
        padding: 10px;
        background: none;
        display: block;
        position: relative;
        top: 55px;
        list-style: none;
        /* margin-top: -40px;
    } */

    .nav .nav-list>li a.sub + .sub-list li {
        margin-bottom: 15px;
    }

    .footer .contact-info2 .content-card .content-img p{
        word-break: break-all;
    }

}

.menu-phone {
    /* background: linear-gradient(137.18deg, #F96A22 15.48%, #FF9701 85.03%); */
    /* background: #006aeb!important;
    border-radius: 14px;
    height: 60px;
    width: 206px;
    max-width: 100%;

    padding: 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 62px;
    text-align: center;
    text-transform: capitalize;
    color: #fff !important;
    display: inline-block;
    vertical-align: middle; */
    position: relative;
    text-decoration: none!important;
    width: 210px;
    /* border: 1px solid #006aeb; */
align-items: center;
padding: 16px 24px;
background: #FFFFFF;
border: 1px solid #6439FF;
border-radius: 1000px;
display: inline-block;


/* font-family: 'DM Sans'; */
font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 28px;

color: #6439FF;

}

.menu-phone img{
    margin-right: 5px;
}

/* .menu-link.phone-btn {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 18px 25px;
    background: #ee761c;
    border-radius: 8px;
}
.menu-link.phone-btn.inside {
    display: none;
}
.menu-link.phone-btn img {
    vertical-align: middle;
} */

@media only screen and (max-width: 1372px) {
    .menu-phone {
        display: none;
    }

}

@media only screen and (max-width: 992px) {

    .nav .nav-list>li a.sub:hover + .sub-list{
        display: block;
    }
    
    .nav .nav-list>li a.sub:focus + .sub-list{
        display: block;
    }

    .nav .nav-list>li a.sub + .sub-list:hover{
        display: block;
    }

    .nav .nav-list .sub-list.items .sub-column{
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }

    .nav .nav-list .sub-list.items2 .sub-column{
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
    .nav .nav-list .sub-heading{
        color:#fff;
    }
    
    .nav .nav-list>li a.sub + .sub-list{
        background: #000!important;
        left: 0px;
    
    }
    
    .nav .nav-list .sub-list.active {
        margin-left: 0px !important;
        display: block !important;
        background: #000 !important;
        top: 55px !important;
        left: 0px !important;
        z-index: 99999 !important;
    }

}

