
body {
	color: #252525;
	font-size: 16px;
	 font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
p {
    margin-top: 0;
    margin-bottom: 0;
}
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/


.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: #fff;
    color: #000;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}
.display-1 {
    font-size: 70px;
}
.btn.btn-primary:hover, .btn-trans:hover {
    background: #fff;
    color: #2a4da0;
}
.btn.btn-dark {
    background: #000;
    color: #fff;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-dark:hover {
    background: #fff;
    color: #000;
}

.btn.btn-light {
    background: #2a4da0;
    color: #fff;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: #fff;
    color: #000;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1, strong, b, th {
	font-weight: 600;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    color: #252525;
}
.color-primary {
	color: #1c398e!important;
}
.display-5 {
    font-size: 40px;
}
.form-control {
    background: #fff;
    background-color: #fff!important;
    font-size: 14px;
}
 .btn.btn-lg-square {
    padding: 10px 20px!important;
}
.fs-5 {
    font-size: 20px !important;
}
.carousel-caption p {
    display: inline-block;
    width: 100%;
}
.btn {
    font-weight: 500;
    font-size: 20px;
    border-radius: 4px;
    padding: 11px 38px!important;
}
.btn-trans {
    background: rgba(42,77,160,.4);
    color: #fff;
    border: solid 2px #ffffff;
}
section {
    display: inline-block;
    width: 100%;
}
a {
    color: #1c398e;
    text-decoration: none;
}
a:hover {
    color: #000;
    text-decoration: none;
}
.d-flex {
    flex-wrap: wrap;
}
a:-webkit-any-link:focus-visible {
    outline: none;
}
/****
      START
	        ******/
			
			
/* TOP BAR */
.hx-topbar {
  background: #f5f5f5;
  font-size: 14px;
  padding: 5px 0;
}

/* HEADER */
.hx-header {
    background: #2d4b9b;
    color: #fff;
    padding: 20px 0 50px;
}

/* NAVBAR */
.hx-navbar {
  z-index: 999;
}

/* STICKY */
.hx-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
}

/* NAV LINKS */

.hx-navbar .nav-link {
    text-transform: uppercase;
    color: #333; 
}
.navbar-expand-lg .navbar-nav .nav-item {
	border-left: solid 1px #cccccc;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    font-weight: 500;
    margin: 0 20px;
    text-align: center;
}
.navbar-expand-lg .navbar-nav li:first-child  {
	padding-left: 0;
	border-left: none;
}
.navbar-expand-lg .navbar-nav .nav-item.active .nav-link, .navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
    border-left: none;
    border-bottom: solid 3px #2d4b9b;
}
/* DROPDOWN HOVER */
.hx-navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* CAROUSEL */
.hx-carousel-item {
  height: 85vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hx-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

/* TEXT */
.hx-caption {
    position: absolute;
    top: 30%;
    color: #fff;
    max-width: 54%;
}
.hx-caption p {
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    line-height: 38px;
}
a.hx-btn {
    margin-top: 12px;
}
/* ANIMATION */
.hx-animate {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BUTTON */

.hx-btn {
    background: #2d4b9b;
    color: #fff;
    padding: 10px 30px;
    border-radius: 10px;
    text-decoration: none;
    border: solid 2px #6a8ef6;
    line-height: 28px;
}
.hx-btn:hover {
    background: #6a8ef6;
	color: #fff;
}

.carousel-control-prev {
    left: -4%;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(28,57,142,1);
    border-radius: 50%;
    padding: 10px;
    width: 50px;
    height: 50px;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-size: 30px;
}

/* SOCIAL */

.hx-social {
    display: flex;
    flex-wrap: wrap;
}
.hx-social a {
    color: #fff;
    margin-left: 3px;
    font-size: 18px;
    background: #2d4b9b;
    width: 34px;
    display: block;
    height: 34px;
    padding: 5px;
    border-radius: 50%;
}
.hx-caption h1 {
    color: #fff;
    font-size: 63px;
    line-height: 70px;
    margin-bottom: 12px;
}
.ctop {
    justify-content: space-between;
    align-items: center;
}
.ctop i {
    font-size: 30px;
    margin-right: 12px;
}
.ctop span {
    width: 134px;
    text-align: left;
    line-height: 22px;
    font-size: 16px;
}
.ctop span strong {
    width: 100%;
    float: left;
    font-size: 18px;
}
.hx-header .container {
    position: relative;
}
.navigation_sec {
    background: #ffff;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.navigation_sec {
    position: absolute;
    bottom: -78%;
    z-index: 9;
    left: 0;
    padding: 7px 12px;
}

.content-sec p {
    margin: 30px 0 20px;
}
/* TITLE */

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #1c2338;
    line-height: 54px;
    margin-top: 10px;
    margin-bottom: 16px;
}
/* SUBTEXT */
.subtitle {
    max-width: 60%;
    margin: auto;
    color: #1c2338;
    margin-top: 18px;
    line-height: 26px;
}

.zx-card {
    background: #e9efff;
    padding: 56px 20px;
    /* border-radius: 6px; */
    height: 100%;
    transition: 0.3s;
}
/*
.zx-card:hover {
  transform: translateY(-5px);
  background: #d3dbec;
}
*/



/* ICON */

.zx-icon, .ab-card .ab-icon {
    width: 80px;
    height: 80px;
    background: #2d4b9b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 15px;
    /* font-size: 24px; */
    border: solid #fff 10px;
}

/* IMAGE */
.zx-image-box img {
  width: 100%;
}
img.why_ico {
    width: 40px;
}
.zx-card h5 {
    font-size: 24px;
    color: #1c2338;
}
.ab-card .ab-icon {
    margin: 0;
}
 
/* LOGO */
.ft-logo {
  max-height: 60px;
}

/* MENU */
.ft-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft-menu li {
  display: inline-block;
  margin: 0 15px;
}

.ft-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.ft-menu li a:hover {
  color: #2d4b9b;
}
 
 
/* HOVER */
.ft-social a:hover {
  transform: scale(1.1);
}

/* BOTTOM */
.ft-bottom {
    background: #fafafa;
    padding: 40px;
    font-size: 14px;
    color: #0d0d0d;
	border-top: 1px solid #ddd;
}

/* SECTION */
.lb-section {
  background: #e9efff;
}

/* TAG */
.lb-tag {
  color: #1c398e;
  font-weight: 600;
  letter-spacing: 1px;
}

/* TITLE */
.lb-title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 10px;
  color: #1e2a3a;
}

/* SUBTEXT */
.lb-subtitle {
  max-width: 700px;
  margin: 10px auto 0;
  color: #555;
}

/* CARD */
.lb-card {
  background: #fff;
  padding: 30px;
  transition: 0.3s;
  height: 100%;
}

.lb-card img {
  width: 100%;
}

/* CONTENT */
.lb-content {
  text-align: left;
  padding: 15px 5px;
}

.lb-content h5 {
    font-size: 24px;
    font-weight: 600;
    color: #1e2a3a;
}

/* BUTTON */
.lb-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  border: 1px solid #1c398e;
  color: #1c398e;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.lb-btn:hover {
  background: #1c398e;
  color: #fff;
}

/* HOVER EFFECT */
.lb-card:hover {
  transform: translateY(-6px);
}

 
/* IMAGE */
.ab-img {
  border-radius: 6px;
}

/* COUNTER BOX */
.ab-exp-box {
    position: absolute;
    top: -8%;
    right: 0;
    background: #2d4b9b;
    color: #fff;
    padding: 28px 20px;
    text-align: center;
    border: solid #fff 12px;
    width: 200px;
    height: 200px;
}
.ab-exp-box h2 {
    font-size: 50px;
    margin: 0;
    color: #fff;
}
.ab-exp-box p {
    font-size: 24px;
    color: #a9bfff;
    font-weight: 600;
    line-height: 26px;
    margin: 4px;
}

/* TEXT */
.ab-tag {
  color: #2d4b9b;
  font-weight: 600;
}

.ab-title {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
}

.ab-text {
  color: #555;
}

/* CARD */
.ab-card {
    background: #e9efff;
    padding: 30px;
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.ab-card p {
    margin: 0;
}
 
.abt-text {
    width: 83%;
}
.abt-text h5 {
    font-size: 24px;
    margin-bottom: 6px;
}
 

/* TITLE */
.fx-title {
  font-size: 42px;
  font-weight: 700;
  color: #1e2a3a;
}

/* BOX */
.fx-box {
    background: #e9efff;
    padding: 25px;
    border-radius: 0;
    transition: 0.3s;
}

.fx-box:hover {
  transform: translateY(-5px);
}
.fx-box .fx-icon {
	margin: 0;
}
/* ICON */
.fx-icon {
  width: 60px;
  height: 60px;
  background: #2d4b9b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 10px;
  font-size: 22px;
}

/* NUMBER */
.fx-box h3 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 10px;
}

/* TEXT */
.fx-box p {
    margin: 6px 0 0;
    color: #555;
    font-size: 20px;
}