/* <!-- google font family --> */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Palanquin:wght@100;200;300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root{

    --primary-color:#f68812 !important;
    --second-primary:#193988;
    --headingFont:"Roboto", sans-serif !important;
    --paraFont:"Roboto", sans-serif;
    --hoverColor:#ffd263;
}


body{
    font-family: var(--headingFont) !important;
    font-weight: 400 !important;
    font-size: 14px !important;
}
html{
    scroll-behavior: smooth;
}

header{
    position: sticky;
    top: 0px;
    z-index: 88;
    /* background: linear-gradient( to right, #193a89, #088fc0); */
    background-image: linear-gradient(to right,  #193988 60%, #088fc0 );
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.main-nav{
    padding: 6px 0px;
}
.logo-img{width: 50%;}

.main-nav ul li{
 padding: 5px 7px;
    position: relative;
    /* border: 1px solid ; */
}
.main-nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 12px !important;
   transition: all .3s linear;
}
/* hover color change */

/* .main-nav ul li:hover a{
   color: var(--primary-color);
} */
.main-nav ul li .navset15{
    transition: all .4s ease-in-out;
    /* color: var(--hoverColor); */
  /* border-radius: 12px 0px 12px 0px; */
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;  */
}
.main-nav ul li:hover .navset15{
    color: var(--primary-color) !important;

}


/* .navset15 {
    color: red !important;
} */
.bg-color1{
    font-size: 14px !important;
    color: white !important;
    font-weight: 400 !important;
}

.dropdown12{
    position: absolute;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    width:320px;
    padding: 0px;
    top: 90%;
    left: 0px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in-out !important;
    transform: translateY(-15px);
    z-index:-1;
}

.main-nav ul li:hover .dropdown12{
    top: 120%;
    opacity: 1;
    visibility: inherit;
    transform: translateY(-0px);
} 

.dropdown12 ul li{
    border-bottom: 1px solid rgb(230, 230, 230);
    text-align: left;
    transition: all .2s linear;
    padding: 5px 0px !important;
}
.dropdown12 ul li a{
   font-size: 14px ;
   color: black !important;
   opacity: .8;
}
.dropdown12 ul li a:hover{
    color: var(--primary-color) !important;
    margin-left: 10px;
 }
 .dropdown12 ul li a .active12{
    color: var(--primary-color) !important;
    /* margin-left: 10px; */
 }
#subarrow .fa-solid{
    transition: all .3s ease-in-out;
}
.main-nav ul li:hover #subarrow .fa-solid{
    transform: rotate(180deg) !important;
}



/* hover bg color change dropdown */
.dropdown12 ul li:hover{
  /* background: var(--primary-color); */
}
.menuToggle{
    display: none;
}

.closebtn{
display: none;
}
#subarrow{
    margin-left: 8px;
}
.mainul li{
    padding: 15px 4px !important;
    border-radius: 3px;
}
.mainul li a{
    padding: 8px 7px !important;
}


/* responsive */

@media (max-width:1100px) {
    .mainul li{
        padding: 5px 4px !important;
        border-radius: 3px;
    }
    .mainul li a{
        padding: 35px 3px !important;
    }
}

@media (max-width:991px) {
    .menuToggle{
        display: block;
        color: white !important;
    }
    .closebtn{
        margin-top: 5px;
        width: 30px;
        height: 30px;
      background: white;
        border-radius: 50%;
    text-align:center;
    padding-top: 3px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    right: -85%;
    display: block;
    }
    header .part3{
        display: none;
    }
    .logo-img{width: 100px;}
    
    .main-nav{
    padding: 6px 0px;
    position: fixed;
    width: 90%;
    height: 100%;
    top: 0%;
    left: -100%;
    z-index: 99999 !important;
    background:white;
    transition: all .3s linear;
    overflow: scroll;
}

    .main-nav ul{ display: flex; flex-direction: column; gap: 10px; padding-left: 10px;}

    .main-nav.open{
        left: 0px !important;
    }
    .dropdown12{
        position: absolute ;
        width: 100%;
        display: none;
        transition: all .4s linear ;
        opacity: 0;
        visibility: hidden;
    }
    .dropdown12.opendropdown{
        display: block ;
        position: static ;
        opacity: 1 ;
        visibility: inherit ;
        margin-top: 20px;
        box-shadow: none;
    }
    .dropdown12 ul li{
        border-bottom: 1px solid rgb(230, 230, 230);
        text-align: left !important;
        padding-left: 7px;
        transition: all .2s linear;
    }
    #subarrow{
        position: absolute;
        right: 10px;
    }
}
@media (max-width:661px) {
    .logo-img{width: 90px !important;}
    .text_hidde{display: none;}
    .dropdown12 ul li a{
        border: none !important;
        padding: 3px 0px !important;
    }
}

.arrow_iconsNav{
    margin-right: 10px;
    font-size: 14px !important;
}

/* .active12{
    color: var(--primary-color) !important} */

header li a:hover{
    color: black !important;
}
header li a.active12{
    color: var(--primary-color) !important;
}

/* media query */

@media (max-width:990px) {
    .main-nav ul li a {
        color: var(--second-primary) !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.066);
        padding-top: 0px !important;
    }
    .main-nav ul li a.active12 {
       color: var(--primary-color) !important;
    }
   
    .main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0px;
        /* padding-left: 10px; */
        /* align-items: center; */
        justify-content: flex-start;
    }
}