img {
  display: block;
  width: 100%;
}

a {
  transition: 0.2s;
}
a:hover {
  text-decoration: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none !important;
}

button,
input[type=submit],
input[type=button] {
  cursor: pointer;
  transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin-bottom: 0;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
th {
  font-family: "Ubuntu", sans-serif;
}

span,
p,
div,
a,
td {
  font-family: "Lato", sans-serif;
  font-weight: 300;
}

.highlight-blue {
  color: #00539f;
}

.highlight-red {
  color: #cf1d1d;
}

.hide {
  display: none !important;
}

.navbar-toggler {
  position: relative;
  padding: 0 !important;
}
.navbar-toggler .burger-menu-icon {
  position: relative;
  width: 32px;
  height: 2px;
  border-radius: 4px;
  background: #fff;
  transition: 0.3s;
}
.navbar-toggler .burger-menu-icon:after, .navbar-toggler .burger-menu-icon:before {
  content: "";
  display: block;
  position: absolute;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  background: #fff;
}
.navbar-toggler .burger-menu-icon:after {
  top: 8px;
}
.navbar-toggler .burger-menu-icon:before {
  bottom: 8px;
}
.navbar-toggler .burger-menu-checkbox {
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 8px;
  z-index: 5;
  opacity: 0;
}
.navbar-toggler .burger-menu-checkbox:checked ~ .burger-menu-icon {
  background: transparent;
}
.navbar-toggler .burger-menu-checkbox:checked ~ .burger-menu-icon:before {
  top: 0px;
  transform: rotate(45deg) translate(-2px, -1px);
}
.navbar-toggler .burger-menu-checkbox:checked ~ .burger-menu-icon:after {
  top: 0px;
  transform: rotate(-45deg) translate(0, -1px);
}

header {
  transition: 0.3s;
}
header.sticky-header {
  position: fixed;
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.3);
  width: 100%;
  top: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  z-index: 999;
}
header.sticky-header .navbar {
  padding: 0;
}
header.sticky-header .navbar .navbar-nav .nav-link {
  font-size: 16px;
}

.button {
  display: inline-block;
  border: 2px solid #ff0;
  border-radius: 4rem;
  color: yellow;
  font-family: roboto;
  font-size: 4rem;
  font-weight: 100;
  overflow: hidden;
  padding: 1rem 2rem;
  position: relative;
  text-decoration: none;
  transition: 0.2s transform ease-in-out;
  will-change: transform;
  z-index: 0;
}
.button:after {
  background-color: yellow;
  border-radius: 4rem;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.button:hover::after {
  transform: translate(0, 0);
}
.button:hover {
  border: 2px solid transparent;
  color: #4B0082;
  transform: scale(1.05);
  will-change: transform;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
div.topband {
  padding: 16px 0px;
}

header {
  background: #00539f;
  padding-top: 24px;
  padding-bottom: 24px;
}
header .navbar {
  padding: 0;
}
header .navbar .navbar-nav .nav-link {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  transition: 0.3s;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 24px;
}
header .navbar .navbar-nav .nav-link:hover {
  background: #fff;
  color: #00539f;
}
header .navbar .navbar-button select {
  display: block;
  padding: 6px 18px 8px 18px;
  color: #00539f;
  background: #fff;
  border-radius: 24px;
  border: none;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}

footer {
  background: url("../images/footer-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 56px;
  padding-bottom: 56px;
}
footer .container h2,
footer .container a,
footer .container p {
  color: #fff;
}
footer .container h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 900;
}
footer .container p,
footer .container a {
  font-size: 18px;
  line-height: 26px;
}
footer .container hr {
  background: #86accf;
  margin-top: 40px;
  margin-bottom: 40px;
}
footer .container .remove-margin-mobile {
  margin-left: 48px;
}

/**
 * mobile
 */
@media (max-width: 575.98px) {
  .topband h1 {
    font-size: 2rem;
  }

  section.hero-section .slogan {
    padding: 24px !important;
  }
  section.cta-section .row {
    flex-wrap: wrap;
    justify-content: center !important;
  }
  section.cta-section .row > .col-sm-2 {
    flex: 0 0 50%;
  }
  section.cta-section .row > .col-sm-2 .cta-content {
    margin-bottom: 32px;
  }
  section.cta-section .row > .col-sm-2:last-child .cta-content {
    margin-bottom: 0 !important;
  }
  section.learn-section .row > div {
    margin-top: 0px !important;
    margin-bottom: 16px;
  }
  section.learn-section .row > div .d-large {
    flex-direction: column;
  }
  section.partner-section .container .row > div {
    margin-top: 32px;
  }
  section.partner-section .container .row > div:nth-child(1) {
    margin-top: 0 !important;
  }

  header .navbar {
    justify-content: flex-end;
  }
  header .navbar .navbar-nav .nav-link {
    text-align: center;
  }
  header .navbar .navbar-button select {
    margin: 0 auto;
  }

  .remove-margin-mobile {
    margin-left: 0px !important;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .banner-block img {
    width: 200px;
    margin: 0 auto;
  }

  .page-content h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .page-content .container .table-wrapper {
    overflow-x: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .page-content .container .table-wrapper table thead tr th,
.page-content .container .table-wrapper table tbody tr td {
    padding: 8px !important;
    font-size: 14px !important;
  }
}
@media (min-width: 576px) {
  section.learn-section .learn-content {
    height: 470px;
  }
}
/**
 * 1366x769 screen resolution
 */
/**
 * 1910x1080 screen resolution
 */
section {
  padding-top: 48px;
  padding-bottom: 48px;
}
section.hero-section {
  background: url("../images/plant-growing-from-coins-glass-jar-blurred-nature.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.hero-section .slogan {
  padding: 32px 48px;
  background: rgba(0, 0, 0, 0.5);
}
section.hero-section .slogan h1,
section.hero-section .slogan p,
section.hero-section .slogan a {
  color: #fff;
}
section.hero-section .slogan p {
  margin: 1rem 0;
}
section.hero-section .slogan a {
  background: #00539f;
  display: inline-block;
  padding: 6px 24px;
  border-radius: 24px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}
section.hero-section .slogan a:hover {
  background: #fff;
  color: #00539f;
}
section.cta-section {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
section.cta-section .cta-content {
  cursor: pointer;
  transition: 0.1s;
}
section.cta-section .cta-content img {
  max-width: 56px;
  margin: 0 auto;
}
section.cta-section .cta-content h3 {
  margin-top: 0.5rem;
  font-size: 18px;
  text-align: center;
}
section.cta-section .cta-content:hover {
  transform: scale(1.1);
}
section.cta-section .cta-content:hover h3 {
  color: #00539f;
}
section.learn-section {
  background: #f1f1f1;
  position: relative;
}
section.learn-section .top-filler,
section.learn-section .bottom-filler {
  position: absolute;
}
section.learn-section .top-filler {
  width: 50%;
  top: 0;
  left: 0;
}
section.learn-section .bottom-filler {
  width: 20%;
  bottom: 0;
  right: 0;
}
section.learn-section .container {
  position: relative;
  z-index: 3;
}
section.learn-section .container h1.title {
  font-size: 56px;
  color: #00539f;
}
section.learn-section .container span.subtitle {
  font-size: 40px;
  color: #000;
  font-weight: 400;
}
section.learn-section .container .learn-content {
  box-shadow: 0px 1px 14.72px 1.28px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
section.learn-section .container .learn-content .learn-body {
  background: #fff;
  padding: 24px;
  height: 100%;
}
section.learn-section .container .learn-content .learn-body h4 > a {
  font-size: 22px;
  line-height: 32px;
  color: #212529 !important;
}
section.learn-section .container .learn-content .learn-body p {
  color: #7a7a7a;
}
section.learn-section .container .learn-content .learn-body div {
  margin-top: 8px;
}
section.learn-section .container .learn-content .learn-body div a {
  font-weight: 700;
  color: #cf1d1d;
}
section.learn-section .container .learn-content .learn-body div a:hover {
  color: #00539f !important;
}
section.learn-section .container .learn-content .learn-img {
  position: relative;
}
section.learn-section .container .learn-content .learn-img img.sponsor {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 72px;
}
section.learn-section .container .learn-content .learn-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.learn-section .container .learn-content:hover {
  transform: scale(1.05);
}
section.learn-section .container .d-large .learn-body {
  flex: 0 0 51%;
}
section.learn-section .container .d-large .learn-img {
  flex: 0 0 49%;
}
section.useful-link-section .col-sm-3 img {
  max-width: 230px;
  margin: 0 auto;
}
section.useful-link-section .col-sm-2 img {
  max-width: 130px;
  margin: 0 auto;
}

section.page-content {
  position: relative;
  padding-top: 0;
}
section.page-content .container {
  position: relative;
  z-index: 10;
}
section.page-content .container h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #00539f;
}
section.page-content .container .title-wrapper button {
  border: none;
  display: block;
  background: #00539f;
  font-family: "Ubuntu", sans-serif;
  color: #fff;
  padding: 8px 16px;
  border-radius: 24px;
}
section.page-content .container .title-wrapper h6,
section.page-content .container .title-wrapper button {
  margin-bottom: 1rem;
}
section.page-content .container .title-wrapper h6 {
  display: flex;
  align-items: center;
  align-content: center;
  height: 40px;
}
section.page-content .container .table-wrapper {
  margin-bottom: 48px;
}
section.page-content .container .table-wrapper .table-title {
  display: flex;
  justify-content: flex;
  align-items: center;
  margin-bottom: 8px;
}
section.page-content .container .table-wrapper .table-title img {
  margin-top: 3px;
  margin-right: 8px;
  width: 24px;
}
section.page-content .container .table-wrapper table {
  width: 100%;
}
section.page-content .container .table-wrapper table thead tr th,
section.page-content .container .table-wrapper table tbody tr td {
  padding: 16px;
  border: 1px solid #e1e4e7;
  font-size: 16px;
}
section.page-content .container .table-wrapper table thead tr th:nth-child(5), section.page-content .container .table-wrapper table thead tr th:nth-child(4), section.page-content .container .table-wrapper table thead tr th:nth-child(2), section.page-content .container .table-wrapper table thead tr th:nth-child(3),
section.page-content .container .table-wrapper table tbody tr td:nth-child(5),
section.page-content .container .table-wrapper table tbody tr td:nth-child(4),
section.page-content .container .table-wrapper table tbody tr td:nth-child(2),
section.page-content .container .table-wrapper table tbody tr td:nth-child(3) {
  width: 15%;
}
section.page-content .container .table-wrapper table thead tr th:nth-child(1),
section.page-content .container .table-wrapper table tbody tr td:nth-child(1) {
  width: 30%;
}
section.page-content .container .table-wrapper table thead tr {
  background: #00539f;
}
section.page-content .container .table-wrapper table thead tr th {
  color: #fff;
  text-transform: uppercase;
}
section.page-content .container .table-wrapper table tbody tr td {
  font-weight: 400;
}
section.page-content .container .table-wrapper table tbody tr td a {
  color: #00539f;
  font-weight: 600;
}
section.page-content .container .table-wrapper table tbody tr td a:hover {
  opacity: 0.5;
}
section.page-content .container .table-wrapper table tbody tr:nth-child(odd) {
  background-color: #fff;
}
section.page-content .container .table-wrapper table tbody tr:nth-child(even) {
  background-color: #eef7ff;
}
section.page-content .container .table-wrapper table.tbl-20 thead tr th,
section.page-content .container .table-wrapper table.tbl-20 tbody tr td {
  width: 25%;
}
section.page-content .container #datatable table td {
  padding: 8px;
  font-size: 14px;
}
section.page-content .container .form-wrapper .form-group input {
  border-radius: 0;
}
section.page-content .container .form-wrapper .form-group .input-icon-right {
  position: relative;
}
section.page-content .container .form-wrapper .form-group .input-icon-right i {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translate(-4%, -50%);
  font-size: 1rem;
}
section.page-content .container #chart-wrapper {
  height: 400px;
}

section.inner-page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5) 100%), url("../images/close-up-keyboard-glasses-table.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: 300px;
}
section.inner-page-banner .container {
  position: relative;
  height: 100%;
}
section.inner-page-banner .container .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.inner-page-banner .container .page-title h1 {
  font-weight: 900;
  font-size: 4rem;
  color: #fff;
}
section.inner-page-banner .container .page-title span {
  display: block;
  font-size: 1rem;
  text-align: center;
}
section.inner-page-banner .container .page-title h1,
section.inner-page-banner .container .page-title span {
  color: #fff;
}
section.inner-page-banner .container .col-md-6 {
  position: relative;
}
section.inner-page-banner .container .page-long-paragraph > p {
  font-weight: 400 !important;
}

/*# sourceMappingURL=main.css.map */
