*,::after,::before{box-sizing:border-box}
body,html{height:100%}
@font-face {
  font-family:abel;
  src: url(../fonts/Abel-Regular.ttf);
}
body {
  font-family:abel;
  color: #585a61;
}

a {
  color: #5777ba;
  text-decoration: none;
}

a:hover {
  color: #7b94c9;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family:abel;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5777ba;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #748ec6;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  color: #04176d;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #04176d;
  text-decoration: none;
}

#header .logo img {
  margin: 0;
  
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family:abel;
  font-size: 15px;
  font-weight: 700px;;
  color: blue;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: blue;
 
}
 .navbar .active {
  color: blue;
  border-bottom: 4px solid  rgb(3, 133, 138);
  padding: 10px 0px 10px 0px;
}

.navbar .getstarted {
  background: #5777ba;
  color: #fff;
  padding: 12px 25px;
  margin-left: 30px;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}

.navbar .getstarted:hover {
  background: #748ec6;
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #5777ba;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #47536e;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(51, 60, 79, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #47536e;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #5777ba;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #5777ba;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px 0;
  background-image: url('img/top_illustration.png');
  background-repeat: no-repeat;
}

#hero::before {
  content: '';
  position: absolute;
  right: -100%;
  top: 20%;
  width: 250%;
  height: 200%;
  z-index: -1;
  background-color: white;
  transform: skewY(135deg);
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight:bold;
  line-height: 45px;
 color: #2045c1;
  font-family: abel;
}
#hero .banner-info-outer{}
#hero h2 {
  color: #333333;
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 28px;
  font-family: abel;
  border:1px solid #ccc;
  padding:15px;
  border-radius:10px;
}

#hero .download-btn {
  font-family:abel;
  font-weight: 600;
  font-size: 24px;
  display: inline-block;
  padding: 14px 40px 14px 40px;
  border-radius: 20px;
  transition: 0.5s;
  color: #fff;
  background: #1834ba;
  position: relative;
}

#hero .download-btn:hover {
  background: #08196a;
}


.download-btn2 {
  font-family:abel;
  font-weight: 600;
  font-size: 24px;
  display: inline-block;
  padding: 14px 40px 14px 40px;
  border-radius: 20px;
  transition: 0.5s;
  color: #000000;
  background: #58e6e0;
  position: relative;
}

.download-btn2:hover {
  background: #096e6a;
  color:#ffffff;
}

#hero .download-btn i {
  font-size: 20px;
  position: absolute;
  left: 18px;
  top: 8.5px;
}

#hero .download-btn + .download-btn {
  margin-left: 20px;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  } 
  #hero .download-btn + .download-btn {
    margin: 0 10px;
  }   
  
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f2f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #5777ba;
  
}
.titlee{
  font-size: 35px;
  font-weight:bold;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #1938bd;
  
}
p{
  font-size: 18px;
  font-weight:500;
  color: black;
  font-style: bold;

}
.titleecon{
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: black;
  
}
.titleecard{
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #1b2c58;
  
}
.paraacard{
  font-size: 18px;
  font-weight: 400;
  color: #1b2c58;
  font-style: bold;
  padding: 5px;;
}
.polaroid {
padding:20px;
  box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.24), 0 6px 20px 0 rgba(0, 0, 0, 0.24);
  text-align: center;
  border-radius: 10px;;
  
}
.section-title p {
  margin-bottom: 0;
}
.greenicon{
  max-height: 60px;
  max-width: 60px;
  width:100%;
}
.details .backgroundcolors{
background-color: azure;
}
#tiletmid{
  text-align: center;
}
#paramid{
  text-align: center;
}
.cardboxtitle{
  color: black;
  font-size: 20px;
}
.cardboxpara{
  color: black;
  font-size: 16px;
}
.box{
  padding: 20px;;
}
.cards{
background-color: #2659ce;
color: white;
padding: 0px 20px 20px 0;
min-height:210px;

}
.boxtitle{
  color: white;
  font-size: 25px;
  font-weight: bold;

  
}
.boxpara{
  color: white;
  font-size: 16px;

}


.features .content .icon-box {
  
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
 
  background-color: white;
padding: 10px;
max-height: auto;

}




.features .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #5777ba;
}



@media (max-width: 991px) {
  .features .image {
    text-align: center;
  }
  .features .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .features .image img {
    max-width: 100%;
  }
}
#contactbox {
  box-shadow: 0 4px 8px 0 rgba(124, 243, 150, 0.452), 0 6px 20px 0 rgba(83, 196, 120, 0.432);
  background-color: white;
padding: 50px;

max-height: auto;

}
.formm{
  padding: 20px;;
}
/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content + .content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #47536e;
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
  color:#000000;
  margin-bottom:10px;
  font-size: 18px;
}

.details .content ul i {
  font-size: 24px;
  padding-right: 2px;
  color: #5777ba;;
  line-height: 0;
}

.details .content p:last-child {
  margin-bottom: 0;
}
.whtbox {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}
.mx-700{max-width:700px; margin:0 auto; }
.mx-900{max-width:900px; margin:0 auto; }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 20px 40px;
  background: #f1f3f6;
  color: #47536e;
  text-align: center;
  border: 1px solid #fff;
}

.contact .info i {
  font-size: 48px;
  color: #9fb2d8;
  margin-bottom: 15px;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  
}

.contact .info p {
  font-size: 15px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
  
  margin-bottom: 5px;
  color: #8a8c95;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 10px;
  box-shadow: none;
  font-size: 14px;
  box-shadow: 0 4px 8px 0 rgba(124, 243, 150, 0.452), 0 6px 20px 0 rgba(83, 196, 120, 0.432);

}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #5777ba;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #1dcbc5;
  border: 0px solid #5777ba;
  padding: 10px 24px;
  color: #ffffff;
  transition: 0.4s;
  border-radius: 20px;
  margin-top: 5px;
  width: 100%;
  font-size:24px;
  font-weight:bold;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #0b928d;
  color: #fff;
}

@media (max-width: 1024px) {
  .contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}

@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 15px 0 0 0;
  }
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footera{
  color: white;
  padding-left: 10px;;
  font-size: 16px;
}
#foot{
  background-color:#14306f;
  padding: 30px;
}
.copyright {
  text-align: center;
  color: white;
  font-size: 16px;
}

#top-inner {width: auto; position: relative; padding: 160px 0 100px 0; background: url("../img/top_illustration.png") no-repeat top left; }
#top-inner h1 {margin: 0 0 10px 0; font-size: 38px; font-weight:bold; line-height: 45px; color: #2045c1; font-family: abel; }
.cs-info-blue-bx{background:#152e66; padding:30px; border-radius:20px;}
.cs-white-head{color:#ffffff; font-size:25px;}
.numbig{color:#00ffff; font-size:45px; font-weight:bold; margin-bottom:0px;}
.white-font{color:#ffffff !important; }
.lblue-sec{background:#4fe4df; padding:40px 0 40px 0;}
.pb-0{padding-bottom:0px;}
.respo-img{max-width:100%; height:auto;}
.pos-rel{position:relative;}
.pos-abs-top-info{position:absolute; top:0px; left:0px; margin:0 15px 0 15px;}
.grey-bx{background:#eaeaea; padding:40px; border-radius:10px; }
.grey-bx h4{color:#152e66; font-size:18px;}
.grey-bx h4 strong{color:#152e66; font-size:20px; font-weight:bold;}
.sub-head-blue {font-size: 24px; font-weight: bold; margin-bottom: 20px; padding-bottom: 0; color: #152e66; }
.cs-sec p{color: #152e66; font-size:18px; }
.dblue-bx{background:#152e66; padding:30px;}
.dblue-bx p{color:#00ffff; font-weight:bold;}
.lblue-br-bx{border:3px solid #00ffff; padding:20px; min-height:200px;}
.quote-bx{background:#00ffff; padding:30px;}
.quote-bx h4{color:#152e66; font-size:20px; font-weight:bold;}
.menu-right-side {position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding-top: .5rem; padding-bottom: .5rem; }

.top-mail-link{margin-right:15px; margin-left:15px; font-size:18px; font-weight:bold;}

@media (max-width: 992px) {
  .pos-abs-top-info{position:relative; top:0px; left:0px; margin:0px; margin-bottom:60px;}
}
@media (max-width: 768px) {
  #foot .copyright, #foot .credits {
    float: none;
    text-align: center;
    padding: 5px 0;
  }
}
