:root {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
  }
  
  a {
    color: #4154f1;
    text-decoration: none;
  }
  
  a:hover {
    color: #717ff5;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Nunito", sans-serif;
  }
  
    
  /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumbs {
    padding: 15px 0;
    background: #012970;
    min-height: 40px;
    margin-top: 82px;
    color: #fff;
  }
  
  @media (max-width: 992px) {
    .breadcrumbs {
      margin-top: 57px;
    }
  }
  
  .breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
  }
  
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
  }
  
  .breadcrumbs ol a {
    color: #fff;
    transition: 0.3s;
  }
  
  .breadcrumbs ol a:hover {
    text-decoration: underline;
  }
  
  .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #8894f6;
    content: "/";
  }
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #4154f1;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #6776f4;
    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;
    padding: 20px 0;
  }
  
  .header.header-scrolled {
    background: rgb(255, 255, 255);
    padding: 10px 0;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  }
  
  .header .logo {
    line-height: 0;
  }
  
  .header .logo img {
  
    max-height: 75px;
  
  }
  
  .header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #05414d;
    font-family: "Nunito", sans-serif;
    margin-top: 3px;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
  }
  
  .navbar ul {
    font-size: 10px;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a:hover {
    color: white;
    border-radius: 5px;
  }
  
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0 9px 30px;
    font-family: "Nunito", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #073869;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navbar a i,
  .navbar a:focus i {
    font-size: 15px;
    line-height: 0;
    margin-left: 5px;
  }
  
  
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #23308f;
  }
  
  .navbar .login,
  .navbar .login:focus {
    background-color: #004AAD;
    /* background: linear-gradient(-90deg ,rgb(43, 159, 236) , rgb(39, 81, 172)); */
    padding: 6px 40px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }
  
  .navbar .login:hover,
  .navbar .login:focus:hover {
    color: #fff;
    /* background: linear-gradient(-90deg ,  rgb(39, 81, 172),rgb(43, 159, 236)); */
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #012970;
    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: linear-gradient(-90deg, rgb(39, 81, 172), rgb(43, 159, 236));
  
    transition: 0.3s;
  }
  
  .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: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #012970;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #4154f1;
  }
  
  .navbar-mobile .login,
  .navbar-mobile .login:focus {
    margin: 15px;
  
  }
  
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  .hero {
    width: 100%;
    padding: 0;
    justify-content: center;
    /* height: 100vh; */
    /* background: url("/assets/img/home-bg.png") top center no-repeat; */
    background-size: cover;
  }
  
  .hero .container{
    justify-content: center;
  }
  
  .hero h1 {
    margin: 0px;
    font-size: 62px;
    font-weight: 700;
    color: #073869;
  }
  
  .hero h2 {
    color: #01172d;
    margin: 35px 0 0 0;
    font-size: 30px;
  }
  
  .hero h4 {
    color: #073869;
    margin: 0 0 0 0;
    font-size: 25px;
  }
  
  .hero .btn-signup {
    margin-top: 18px;
    line-height: 0;
    padding: 13px 36px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background-color: #004AAD;
    box-shadow: 0px 2px 1000px rgba(65, 84, 241, 0.4);
  }
  
  .hero .btn-signup span {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
  }
  
  .hero .btn-signup i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
  }
  
  .hero .btn-signup:hover {
    transform: translateX(20px);
  }
  
  .hero .hero-img {
    text-align: right;
    /* height: 5px;
    width: 10px; */
  }
  
  @media (min-width: 1024px) {
    .hero {
      background-attachment: fixed;
    }
  }
  
  @media (max-width: 991px) {
    .hero {
      height: auto;
      padding: 120px 0 60px 0;
    }
  
    .hero .hero-img {
      text-align: center;
      margin-top: 80px;
    }
  
    .hero .hero-img img {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      text-align: center;
    }
  
    .hero h1 {
      font-size: 40px;
    }
  
    .hero h2 {
      font-size: 24px;
      font-weight: 600;
    }
  
    .hero h4 {
      font-size: 24px;
    }
  
    .hero .hero-img img {
      width: 100%;
    }
  }
  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  .footer {
    background: linear-gradient(-90deg, rgb(43, 159, 236), rgb(39, 81, 172));
  
    padding: 0 0 30px 0;
    font-size: 14px;
  }
  
  
  .footer .footer-top {
    background: white url(/assets/img/footer-bg.png) no-repeat right top;
    background-size: contain;
    border-top: 1px solid #e1ecff;
    border-bottom: 1px solid #e1ecff;
    padding: 60px 0 30px 0;
  }
  @media (max-width: 992px) {
    .footer .footer-top {
      background-position: center bottom;
    }
  }
  .footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  .footer .footer-top .footer-info .logo {
    line-height: 0;
    margin-bottom: 15px;
  }
  
  .footer .footer-top .footer-info .logo img {
    max-height: 75px;
  }
  
  .footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
  }
  .footer .footer-top .social-links a:hover {
    color: #012970;
  }
  .footer .footer-top .footer-links h4 {
    font-size: 16px;
    font-weight: bold;
    color: #012970;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
  }
  .footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  .footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #d0d4fc;
    font-size: 12px;
    line-height: 0;
  }
  .footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  .footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  .footer .footer-top .footer-links ul a {
    color: #013289;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  .footer .footer-top .footer-links ul a:hover {
    color: #4154f1;
  }
  
  .fa-twitter {
    background: #55ACEE;
    color: white;
    padding: 10px;
    border-radius: 20px;
  }
  
  .fa-youtube {
    background: #bb0000;
    color: white;
    padding: 10px;
    border-radius: 20px;
  }
  
  .fa-linkedin {
    background: #007bb5;
    color: white;
    padding: 10px;
    border-radius: 20px;
  }
  
  .fa-instagram {
    background: #ee14ad;
    color: white;
    padding: 10px;
    border-radius: 20px;
  }
  .footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  .footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: #f3f5f9;
  }
  
  .footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #012970;
  }