* {
    margin: 0%;
    padding: 0%;
  }
  
  body {
    font-family: "Raleway", sans-serif;
  }
  
  .main-content {
    padding: 40px;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    -webkit-animation-name: contentFadeIn;
            animation-name: contentFadeIn;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    line-height: 35px;
  }
  
  @-webkit-keyframes contentFadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes contentFadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  .bg-light {
    background-color: #0065A4 !important;
  }
  
  /*  ==== Navbar styling - START ====    */
  #hm-brand {
    text-align: center;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    -webkit-animation-name: logoEnter;
            animation-name: logoEnter;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
  }
  
  .hm-logo {
    width: 30%;
  }
  
  .navbar-collapse {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  @-webkit-keyframes logoEnter {
    from {
      -webkit-transform: translateY(-300px);
              transform: translateY(-300px);
    }
    to {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
    }
  }
  
  @keyframes logoEnter {
    from {
      -webkit-transform: translateY(-300px);
              transform: translateY(-300px);
    }
    to {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
    }
  }
  
  .navbar {
    padding: 20px;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /*z-index: -1;*/
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-light .navbar-nav .nav-link {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
  }
  
  .navbar-light .navbar-nav .nav-link:hover {
    color: #cfcfcf;
    font-weight: 500;
  }
  
  .navbar-toggler {
    border: none;
    /*margin-bottom: 17px;*/
  }
  
  .navbar-light .navbar-toggler {
    outline: none;
  }
  
  .navbar, ul {
    list-style: none;
  }
  
  .hamburger-icon {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
  }
  
  /*  ==== Navbar styling - END ====  */
  .main-title {
    background-color: #fff;
    padding: 20px;
    /*margin-top: -17px;*/
    border-radius: 20px 20px 0px 0px;
  }
  
  h1 {
    text-align: center;
    color: #0065A4;
    font-weight: 800;
  }
  
  img {
    width: 70%;
  }
  
  .container-fluid {
    padding-left: 0px !important;
  }
  
  @media only screen and (max-width: 574px) {
    .container-fluid {
      text-align: center;
    }
  }
  
  .container-fluid > .row > .col-sm-6 > ul > li {
    list-style: none;
  }
  
  p, li, h3 {
    color: #333333;
  }
  
  h2 {
    color: #0065a4;
    font-weight: 500;
  }
  
  h1, h2, h3 {
    letter-spacing: 1px;
  }
  

 