@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
::selection {
    background: #8faeff;
}
#content {
    display:none;
}
.preload{
    width:100px;
    height: 100px;
    position: fixed;
    top: 50%;
    left: 50%;
}
/*loader*/
.loading-bg{
  height: 100%;
  width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#overlayer {
  width:100%;
  height:100%;  
  position:absolute;
  z-index:1;
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index:3;
  border: 4px solid #1b3884;
  top: 50%;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #1b3884;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}

/* scroll top */
.scroll-to-top i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #8faeff;
    display: inline-block;
    font-size: 20px;
}

.scroll-to-top{
    background-color: #fff;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    text-align: center;
    border: 4px solid #8faeff;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}
/* scroll top */
/* body{
    min-height: 100vh;
} */
nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 70px;
    background: #ffffff8c;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    z-index: 99;
    transition: 1s;
}
nav .navbar{
    height: 100%;
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 0 50px;
}
.navbar .logo img{
    width: 250px;
}
.sidebar-logo img{
    width: 80px;
    height: 60px;
}
nav .navbar .nav-links{
    line-height: 70px;
    height: 100%;
}
nav .navbar .links{
    display: flex;
}
nav .navbar .links li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}
nav .navbar .links li a{
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #1b3884;
    font-size: 15px;
    font-weight: 500;
    transition: 0.5s;
}
nav .navbar .links li a:hover{
    color: #8faeff;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
    transform: rotate(180deg);
}

nav .navbar .links li .arrow{
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #1b3884;
    transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: #ffffff8c;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
    padding: 0;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
    display: block;
}
.navbar .links li .sub-menu li{
    padding: 0 22px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
    color: #1b3884;
    font-size: 15px;
    font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
    line-height: 40px;
}
.navbar .links li .sub-menu .more-sub-menu{
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
    display: block;
}
.search-box{
    display: none;
}
@media (max-width:800px) {
    .search-box{
        display: block;
    }
}
.bx-menu, .bx-x{
    cursor: pointer;
}
.navbar .nav-links .sidebar-logo{
    display: none;
}
.navbar .bx-menu{
    display: none;
}       
@media (max-width:920px) {
    nav .navbar{
        max-width: 100%;
        padding: 0 25px;
    }
}
@media (max-width:800px){
    .navbar .bx-menu{
        display: block; 
    }
    nav .navbar .nav-links{
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background:  #fff;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }
    .navbar .nav-links .sidebar-logo{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sidebar-logo .logo-name{
        font-size: 25px;
        color: #1b3884;
    }
    .sidebar-logo  i,
    .navbar .bx-menu{
        font-size: 25px;
        color: #1b3884;
    }
    nav .navbar .links{
        display: block;
        margin-top: 20px;
        padding: 0;
    }
    nav .navbar .links li{
        display: block;
    }
}
@media (max-width:800px){
    .logo{
        display: flex;
        align-items: center;
        text-align: center;
    }
}

/*Button Bounce To Right2 */
.hvr-bounce-to-right2 {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    color:#1b3884;
    border: 0;
    background: transparent;
    border: 1px solid #1b3884;
    padding: 7px 12px;
  }
  .hvr-bounce-to-right2:before {
    content: "";
    position: absolute;
    color:#FFFFFF;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1b3884;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .hvr-bounce-to-right2:hover, .hvr-bounce-to-right2:focus, .hvr-bounce-to-right2:active {
    color:#FFFFFF;
  }
  .hvr-bounce-to-right2:hover:before, .hvr-bounce-to-right2:focus:before, .hvr-bounce-to-right2:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
/*Button Bounce To Right2 */

/* Carousel Slider */
.slider-txt{
    position: absolute;
    right: 15%;
    top: 0;
    bottom: 0;
    left: 15%;
    z-index: 1;
    display: flex;
    padding: 0;
    color: #fff;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.slider-txt h5{
    font-size: 30px;
    text-transform: uppercase;
    margin-top: 25px;
    color: #1b3884;
    animation-delay: 1s;
}
.slider-txt p{
    color: #000;
    animation-delay: 1.5s;
}
.slider-txt button{
    animation-delay: 2s;
}
@media (max-width:700px){
    .slider-txt h5{
        font-size: 20px;
    }
}
@media (max-width:500px){
    .slider-txt{
        top: unset;
        padding: 15px 0;
    }
    .slider-txt p,
    .slider-txt button{
        display: none;
    }
    .slider-txt h5{
        font-size: 13px;
        font-weight: bold;
    }
}
/* Carousel Slider */

/* Quote After Slider or Before About */
#quote{
    background-color: #1b3884;
    padding: 40px;
}
#quote p{
    margin-bottom: 0;
    color: #fff;
}
@media (max-width:500px) {
    #quote{
        padding: 15px;
        font-size: 12px;
    }
}
/* Quote After Slider or Before About */

/* Home About Section*/
.abt .col-lg-6{
    margin-top: 40px;
}
.abt .img-w{
    width: 90%;
}
@media (max-width:575px) {
    .abt .img-w{
        width: 70%;
    }
}
/* Home Choose Us */
.choose{
    margin-top: 50px;
    text-align: center;
    display: flex;
    align-items: center;
}

.choose .row h4,
.choose .row h3{
    text-align: center;
    padding: 30px 0;
    font-weight: bold;
}
.choose .row h4{
    font-size: 18px;
}
/* Home Choose Us */

/*  */
.bg_fix{
    margin-top: 30px;
    padding: 100px 0;
    background-image: linear-gradient(
        45deg, rgb(27 56 132 / 90%), rgb(143 174 255)), url(../images/download.jpg);background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.bg_fix p,
.bg_fix h2{
    color: #fff;
}
.bg_fix h2{
    font-weight: bold;
}
/*  */

/* Home Partners */
.clients{
    overflow: hidden;
    margin-top: 50px;
}
.our-c{
    background-color: #1b3884;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 275px;
    padding: 29px 0;
}
.our-c h3{
    text-align: center;
    color: #fff;
}
#wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
#slider{
    width: 100%;
    height: 100px;
    position: relative;
    background: transparent;
    display: flex;
    overflow: hidden;
}

.pslide{
    height: 100px;
    display: flex;
    align-items:center;
    animation: slideshow 30s linear infinite;
}

.pslide img{
    height: 70px;
    padding: 0 30px 0 30px;
}

@keyframes slideshow{
    0% {transform: translateX(0);}
    100% {transform: translateX(-100%);}
}



/* Home Partners */

/* ----------ABOUT PAGE----------- */
#breadcrumb{
    height: 350px;
    background: linear-gradient(45deg, rgb(27 56 132 / 90%), rgb(143 174 255));  
}
#breadcrumb h1{
    padding-top: 150px;
    text-align: center;
    font-family: 'Abril Fatface', cursive;
    text-transform: uppercase;
}
#breadcrumb h6{
    text-align: center;
    text-transform: uppercase;
}

.company .col-lg-6,
.company .col-lg-12{
    margin-top: 40px;
}
.company li{
    list-style: square;
}
.company img{
    width: 100%;
}
.img{
    text-align: center;
}
@media (max-width:575px) {
    .company img{
        width: 70%;
    }
}

/* ----------ABOUT PAGE----------- */

/* -------- contact page -------- */
.contact{
    margin-top: 40px;
}
.contact h4,
.contact p,
.branches h4,
.branches p{
    text-align: center;
}
.contact .border-right,
.branches .border-right{
    border-right: 3px solid #8faeff;
}
@media (max-width:768px) {
    .contact .border-right,
    .branches .border-right{
        border-right: none;
        border-bottom: 3px solid #8faeff;
    }
    .contact .col-lg-4,
    .branches .col-lg-4{
        padding: 20px 0;
    }
    .scroll-to-top{
        bottom: 20px;
        right: 20px;
    }
}
.form-control:focus{
	box-shadow: none;
	border-color: #8faeff;
}
form{
    margin: 40px 0;
}
form .col-lg-6{
    margin: 10px 0;
}
.contact-h{
    text-align: center;
    margin: 25px 0;
}
.contact .row,
.branches .row{
    padding: 20px 0;
}

.branches h4,
.contact h4{
    padding-bottom: 20px;
}
iframe{
    width: 100%;
    height: 450px;
}
/* -------- contact page -------- */


/* Principles Page */
.principle{
    margin-top: 50px;
}
.principle img{
    width: 100%;
    padding: 13px 0;
}
@media (max-width:575px) {
    .principle{
        display: flex;
        align-items: center;
        text-align: center;
    }
    .principle img{
        width: 60%;
    }
}
/* Principles Page */


/* footer */
footer{
    background-color: #1b3884;
    overflow: hidden;
    margin-top: 60px;
    color: #fff;
    padding: 100px 0px 70px 0;
}
footer li,
footer ul{
    list-style: none;
    padding:0 ;
    margin-top: 10px;
}
footer a{
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
}
footer a:hover{
    color: #8faeff;
}
footer h3{
    font-weight: bold;
}
.f-outer{
    display: flex;
    justify-content: center;
    margin-bottom: -20px;
    margin-top: 50px;
}
.f-quote{
    background-color: #8faeff;
    padding: 20px;
    width: 80%;
    position: absolute;
}
@media (max-width:575px) {
    .f-quote{
        width: 100%;
    }
}
.f-quote h3{
    color: #1b3884;
    float: left;
    padding: 0;
}

.f-quote button{
    float: right;
}
.footer-inner{
    background-color: #8faeff;
    color: #1b3884;
    text-align: center;
    padding: 20px 0 2px 0;
}
.footer-inner a{
    color: #1b3884;
}
.active{
    background-color: #fff;
}
@media (max-width:992px) {
    footer h3{
        padding-bottom: 10px;
    }
}
@media (max-width:430px) {
    .f-quote button{
        float: left;
    }
}
/* footer */