@font-face { font-family: Montserrat-Regular; src: url('../fonts/Montserrat-Regular.otf'); } 
@font-face { font-family: Montserrat-Medium; src: url('../fonts/Montserrat-Medium.otf'); } 
@font-face { font-family: Montserrat-SemiBold; src: url('../fonts/Montserrat-SemiBold.otf'); } 
@font-face { font-family: Montserrat-Bold; src: url('../fonts/Montserrat-Bold.otf'); } 

html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: Montserrat-Regular;;
    width: 100%;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #fff;
    color: #333333;
}
.nopadding{
    padding: 0px !important;
}
.sec-pad{
    padding: 100px 0px; 
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}
p{
    font-size: 19px;
    line-height: 30px;
}
.theme-color{
    color: #00649A!important;
}
.underline{
    text-decoration: underline!important;
}
.bold{
    font-family: Montserrat-Bold!important;
}
.semibold{
    font-family: Montserrat-SemiBold!important;
}


/*header*/

.header{
    width: 100%;
    background-color: #fff;
    padding: 15px 0px;
    position: relative;
    z-index: 99;
    -webkit-transition: animation ease .5s;
    transition: animation ease .5s;
}
.sticky-top {
    position: sticky;
    top: 0px;
    padding: 10px 0px;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: 0px 0px 8px #41414129;
}
.sticky-top .logo{
    height: 100px;
    width: auto;
}
.navbar{
    padding: 0px;
}
.navbar-light .navbar-brand {
    align-items: center;
    display: flex;
    padding: 0px;
}
@media (min-width: 991px){
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 45px;
        padding-left: 45px;
    }
}
.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-size: 20px;
    line-height: 25px;
    font-family: Montserrat-SemiBold;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-item.active .nav-link , .navbar-light .navbar-nav .nav-item .nav-link.active , .navbar-light .navbar-nav .nav-link:focus {
    color: #00649A;
}
.navbar-toggler:focus{
    box-shadow: none;
    outline: 0;
}
.navbar-light .navbar-toggler {
    color: #333;
    border: none;
}
.navbar-toggler svg{
    color: #333;
}
#navbar-hamburger.show{
    display: block;
}
#navbar-hamburger, #navbar-close{
    display: none;
}
#navbar-close.show{
    display: block;
}

/*hero sec*/

.carousel-item {
    min-height: calc(100vh - 382px);
    height: auto;
    align-items: center;
    justify-content: center;
}
.carousel-item-next, .carousel-item-prev, .carousel-item.active {
    display: flex;
}
.hero-sec{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero-sec::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #333;
    opacity: .74;
}
.position-initial{
    position: initial!important;
}
.hero-title{
    font-size: 72px;
    line-height: 92px;
    font-family: Montserrat-Bold;
    margin-bottom: 30px;
}
.carousel-indicators {
    bottom: 20px;
}
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
    margin-left: 5px;
    opacity: .4;
}
.carousel-indicators .active {
    opacity: 1;
}
/*.carousel-item {
    transition: transform 0s ease-in-out;
}*/

/*content area*/

.title{
    font-size: 42px;
    line-height: 52px;
    font-family: Montserrat-Bold;
    margin-bottom: 30px;
}
.mini-title{
    font-size: 28px;
    line-height: 40px;
    font-family: Montserrat-Bold;
    margin-bottom: 30px;   
}
.service-icon{
    min-height: 100px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
hr{
    opacity: 1;
}
.slant-bg{
    position: relative;
}
.slant-bg::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #F9F9F9;
    transform: skewY(2deg);
}
.relative-9{
    position: relative;
    z-index: 9;
}
.check-icon{
    min-width: 28px;
    width: 28px;
    height: auto;
}
.small-title{
    font-size: 22px;
    line-height: 30px;
    font-family: Montserrat-Bold;
    margin-bottom: 30px;   
}
.contact-box{
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
    padding: 40px 30px;
}
.form-group{
    margin-bottom: 20px;
}
.form-group label{
    font-size: 18px;
    color: #64686D;
    margin-bottom: 7px;
}
.form-control{
    font-size: 19px;
    padding: 10px 20px;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
}   
.form-control:focus{
    box-shadow: none;
    outline: 0;
    border-color: #00649A;
}
.theme-btn{
    font-size: 19px;
    padding: 10px 20px;
    background-color: #00649A;
    color: #FCFEFF;
    border-radius: 5px;
    min-width: 180px;
    transition: all ease .5s;
}
.theme-btn:hover{
    background-color: #02466b;
    color: #fff;
}
.theme-btn:focus{
    box-shadow: none;
    outline: 0;
}
.roadmap-div{
    padding: 30px 0px;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}
.roadmap-div:first-child{
    padding-top: 0px;
}
.roadmap-div:before {
    content: '';
    width: 3px;
    height: 100%;
    background-color: #00649A;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 38px;
}
.roadmap-div:last-child:before{
    height: 50%;
}
.map-number{
    height: 80px;
    min-width: 80px;
    width: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00649A;
    color: #fff;
    font-size: 42px;
    font-family: Montserrat-SemiBold;
    margin-right: 50px;
    position: relative;
    z-index: 9;
}
.map-content{
    font-size: 20px;
    color: #14213D;
    margin-bottom: 0px;
}



/*footer*/

.footer{
    background-color: #333;
    padding: 65px 0px;
}
.links li{
    display: inline-block;
    list-style: none;
    color: #F9F9F9;
    font-size: 20px;
    font-family: Montserrat-Medium;
    padding: 0px 30px;
    margin-bottom: 20px;
    transition: all ease .5s;
}
.links li:hover{
    color: #00649A;
}
.links li:last-child{
    padding-right: 0px;
}
.footer-text{
    color: #DED4D4;
    font-size: 15px;
}