*{
    box-sizing: border-box;
}
*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

::selection{
  background: #DBF4FB;
  color: #333;
}
html{
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
     scroll-behavior: smooth;

}



body {
    margin: 0;
    padding: 0;
    color: #000;
  font-family: "Inter", sans-serif !important;
    font-variation-settings:"slnt" 0 !important;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    width: 100%;
    background:#fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}
.light-mode{
    background: #fff;
    color: #000;
}
li{
    list-style: none;
}
a:hover,
a:focus,
a{
    text-decoration: none;
    color: inherit;
}
a,button{
    outline: none;
}


p,h1,h2,h3,h4,h5,h6,ul,li,a,button,input,span,textarea{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    outline: none;
    border: none;
    color: inherit;
}


/*mid-txt*/
.mid-txt{
     font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
}


/*big-txt*/
.big-txt{
     font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}
.big-p{
    font-size: 17px;
}
.light-mode .big-p{
    color:#000;
    font-weight: 400;
}
@media screen and (max-width:1000px){
    .big-p{
    font-size: 15px !important;
    line-height: 135% !important;
}
}

.site-btn{
    position: relative;
    border-radius: 3px !important;
    padding: 9px 15px !important;
    transition: all 0.3s ease-in-out; 
}
.site-btn:hover{
    color: #fff !important;
    background: #003AB3 !important;
    border-color: #003AB3 !important;
}

.btn-bg1{
    background: #fff;
    color: #0055FF;
}
.btn-bg2{
   background: #0055FF;
   color: #fff;
}


@media screen and (max-width:500px){
    .aa_btn{
        font-size: 18px !important;
    }
.mid-txt{
     font-size: 25px !important;
     font-weight: 700 !important;
}
}
@media screen and (max-width:500px){
.big-txt{
     font-size: 20px !important;
}
}

.site-container{
    position: relative;
    width: 80%;
    margin-left: 10%;
    height: auto;
}
.large-container{
    position: relative;
    width: 80%;
    margin-left: 10%;
    height: auto;
}

@media screen and (max-width:1300px){
    .large-container,
    .site-container{
        width: 90% !important;
        margin-left: 5% !important;
        padding: 0px !important;
    }
}



/*navBar*/
.navBar{
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2000;
    background: #fff;
    border-bottom: 1px solid #DFE1EC;
    width: 100%;
    height: 75px;
}

.navBar .large-container{
    height: 100%;
    display: flex;
    align-items: center;
    grid-gap: 30px;
    gap: 30px;
}

.nav-brand img{
    max-width: 130px;
}

.main-icon{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navUl-icons{
    position: relative;
    display: inline-flex;
    align-items: center;
}
.navUl-icons li{
    padding: 5px 5px;
}
.navUl-icons li a{
    position: relative;
    padding: 10px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}
.navUl-icons li a span{
    transition: all 0.3s ease-in-out;
}
.navUl-icons li a span:hover,
.navUl-icons li .active-ULIcon span{
    border-color: #003319;
}
.navUl-icons li a i{
    margin-left: 8px;
    font-size: 13px;
    font-weight: 700;
}

.navUl-icons li:hover .pgo-dropdown{
    display: block !important;
}

.get-started-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px !important;
    background: #FFCC00;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}
.get-started-btn:hover{
    background:#E8B900;
}

.search-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px !important;
    background: #F6F6F6;
    border:1px solid #F6F6F6;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    width: 200px;
    justify-content: space-between;
}
.search-btn:hover{
    background: #EEEEEE;
}
.search-btn i{
    font-size: 22px;
}


@media screen and (max-width:1200px){
    .get-started-btn{
        font-size: 12px !important;
        position: 10px !important;
    }
}

@media screen and (max-width:600px){
    .get-started-btn{
        display: none !important;
    }
}

.pgo-dropdown{
    position: absolute;
    top:100%;
    width: 300px;
    padding: 20px 0px;
    background: #fff;
    z-index: 1000;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    display: none !important;
}
.right-drop{
    right: 0;
}
.nav-icons ul li:hover .pgo-dropdown,
.nav-icons ul li.i-iconOs div:hover .pgo-dropdown{
    display: block !important;
}

.pgo-dropdown ul{
    display: block !important;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease-in;
    animation: falkd 0.8s ease forwards;
    -webkit-animation: falkd 0.8s ease forwards;
    -moz-animation: falkd 0.8s ease forwards;
}
@keyframes falkd{
    from{
       transform: translateY(20px);
        opacity: 0; 
    }
    to{
       transform: translateY(0px);
        opacity: 1; 
    }
}
@-webkit-keyframes falkd{
    from{
       transform: translateY(20px);
        opacity: 0; 
    }
    to{
       transform: translateY(0px);
        opacity: 1; 
    }
}
@-moz-keyframes falkd{
    from{
       transform: translateY(20px);
        opacity: 0; 
    }
    to{
       transform: translateY(0px);
        opacity: 1; 
    }
}
.pgo-dropdown ul li{
    display: block !important;
    padding:0px 0px !important;
}
.pgo-dropdown ul li a{
    text-transform: capitalize !important;
    color: #04082A !important;
    padding: 5px 20px !important;
    width: 100%;
    font-weight: 500 !important;
    transition: all 0.3s ease-in-out;
}
.pgo-dropdown ul li a:hover{
    color: #003319 !important;
}

.R-nav-ics{
    position: relative;
    display: inline-flex;
    align-items: center;
    grid-gap: 20px;
    gap: 20px;
}
.nav-Toggler{
    display: none;
}
.nav-Body{
    display: none;
}
@media screen and (max-width:1200px){
    .navBar{
       height: 60px !important;
    }
    .navBar .large-container{
        justify-content: space-between !important;
    }
    .nav-brand img{
        max-width: 100px !important;
    }

    .main-icon{
        position: fixed !important;
        background: #fff;
        width: 300px !important;
        height: 100% !important;
        right: -100%;
        display: block!important;
        top: 60px !important;
        padding: 15px;
        overflow-y: auto;
        border-left: 1px solid #DFE1EC;
        transition: all 0.3s ease-in-out;
    }
    .navBar.togle-navBaroo .main-icon{
        right: 0%;
    }
    .navUl-icons{
        display: block !important;
    }
    .navUl-icons li{
        display: block !important;
        width: 100% !important;
    }
    .navUl-icons li a{
        display: flex !important;
        width: 100% !important;
        align-items: center;
        font-size: 14px !important;
        padding: 5px 0px!important;
        justify-content: space-between !important;
    }
    .navUl-icons .pgo-dropdown{
        display: block !important;
        position: relative !important;
        background: transparent !important;
        padding: 0px !important;
        width: 100% !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        box-shadow: none !important;
    }
    .navUl-icons .pgo-dropdown ul li a{
        font-weight: normal !important;
        font-size: 14px !important;
        opacity: .9;
        padding: 5px 0px !important;
    }
     .navUl-icons .pgo-dropdown ul li a i{
        font-size: 10px !important;
     }
    .navUl-icons li a span:hover,
.navUl-icons li .active-ULIcon span{
    border-color: #E1AE00 !important;
}
    .navUl-icons .pgo-dropdown ul li a:hover{
    color: #2571E2 !important;
    opacity: 1 !important;
    }
    .navUl-icons li a.get-started-btn{
        padding: 13px 20px !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .search-btn{
        width: 100% !important;
        font-size: 14px !important;
        padding: 13px 20px !important;
    }
    .search-btn i{
        font-size: 17px !important;
    }
.nav-Toggler{
    position: relative !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 30px;
}
.nav-Toggler span{
    position: absolute;
    width: 100%;
    height: 3px;
    background: #000;
    transition: all 0.3s ease-in-out;
}
.nav-Toggler span:first-child{
    transform: translateY(-7px);
}
.nav-Toggler span:last-child{
    transform: translateY(7px);
}
.navBar.togle-navBaroo .nav-Toggler span:first-child{
    transform: rotate(45deg);
}
.navBar.togle-navBaroo .nav-Toggler span:last-child{
    transform: rotate(-45deg);
}
.navBar.togle-navBaroo .nav-Toggler span:nth-child(2){
    opacity: 0;
}
.nav-Body{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease-in-out;
    -webkit-animation: fadeIn 0.3s ease-in-out;
    -moz-animation: fadeIn 0.3s ease-in-out;
    display: none;
}
.togle-navBaroo.nav-Body{
    display: block !important;
}
}


@media screen and (max-width:450px){
    .main-icon{
        width: 100% !important;
    }
}




/*search-sec*/
.search-sec{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 500;
    background: #fff;
    color: #2d2d2d;
    -webkit-animation: fadeInDown 0.3s ease-in-out;
    -moz-animation: fadeInDown 0.3s ease-in-out;
    animation: fadeInDown 0.3s ease-in-out;
    display: none;
}
.search-sec .large-container{
    justify-content: center !important;
    grid-gap: 10px !important;
    gap: 10px !important;
}
.show-search-sec.search-sec{
    display: block;
}
.search-sec .site-container{
    height: 100%;
    display: flex;
    align-items: center;
}
.search-form{
    position: relative;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 40px;
    overflow: hidden;
    background: #F3F3F3;
    transition: all 0.3s ease-in-out;
    border: 1px solid #D3D3D3;
}
@media screen and (max-width:1250px){
    .search-form{
        height: 40px !important;
    }
}
.search-form:hover{
    background: transparent;
    border-color: #C5C5C5;
}
.search-form button{
    position: relative;
    width: 55px;
    height: 100%;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    outline: none;
}
@media screen and (max-width:400px){
    .close-search,
    .search-form button{
        font-size: 16px !important;
    }
    .search-form input{
        font-size: 13px !important;
    }
}
.search-form input{
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
}
@media screen and (max-width:280px){
    .search-form input::placeholder{
        color: transparent !important;
    }
}
.close-search{
    margin-left: 7px;
    padding:3px 10px;
    font-size: 20px;
    background: transparent;
}
.close-search i{
    font-weight: 800;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
}
.close-search:hover i{
    transform: rotate(180deg);
}








/*site-footer*/
.site-footer{
    position: relative;
    width: 100%;
    height: auto;
    background: #fff;
    margin-top: 50px;
    padding: 30px 0px;
}
@media screen and (max-width:500px){
   .site-footer p{
    font-size: 14px !important;
} 
}


.top-foot{
    position: relative;
    width: 100%;
    height: auto;
}
.T_Top_Foot{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

@media screen and (max-width:600px){
    .T_Top_Foot{
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 20px !important;
        grid-gap: 20px !important;
    }
}
.T_Top_Foot img{
    max-width: 130px;
}
@media screen and (max-width:1200px){
    .T_Top_Foot img{
    max-width: 100px !important;
}
}
.top-foot h3{
    font-size: 20px;
    font-weight: 500;
}
.top-foot p{
    margin-top: 20px;
}
.social-icons{
    position: relative;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
}
.social-icons a{
    margin-left: 20px;
}
.social-icons a:first-child{
    margin-left: 0px;
}

/*sub-foot*/
.sub-foot{
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px 0px;
    border-top: 1px solid #DFE1EC;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 30px;
}
@media screen and (max-width:1000px){
    .sub-foot{
        display: block !important;
    }
    .sub-foot ul{
        margin-bottom: 60px !important;
    }
}
.sub-foot ul{
    position: relative;
    width: 100%;
    height: auto;
    margin-left: -8px;
}
.sub-foot ul li{
    display: inline-flex;
    align-items: center;
    margin: 8px;
}
.sub-foot ul li a{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px;
    border-radius: 30px;
    background: #F6F6F6;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}
@media screen and (max-width:1000px){
    .sub-foot ul li a{
        font-size: 14px !important;
        padding: 0px !important;
        background: transparent !important;
    }
}
@media screen and (max-width:400px){
    .sub-foot ul li{
        display: block !important;
    }
}
.sub-foot ul li a:hover{
    background: #EAEAEA;
}
.sub-foot p{
    font-size: 15px;
    display: flex;
    align-items: center;
}

