@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
}

p, li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7em;
  color: #444;
}

a {
  color: #31aced;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
}

h1, 
h2,
h3,
h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #222757;
  line-height: 1.7em;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 16px;
}

strong {
  font-weight: 600;
  color: #111;
}

.navbar {
  padding: 25px 0; 
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.hidden {
  visibility: hidden;
}

.navbar-toggler {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0;
  width: 64px;
  height: 64px;
  z-index: 1000;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.close-icon {
  background-image: url("../img/close-icon.png");
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: fixed;
  top: 22px;
  right: 22px;
}

.navbar-toggler.collapsed .close-icon {
  display: none;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  display: inline;
}

@media (max-width: 992px) {
  .navbar-brand {
    position: relative;
    left: 20px;
    top: 10px;
  }

  .navbar-collapse {
    background: rgb(32, 47, 97, 0.98);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .navbar-collapse .nav-link {
    padding: 14px 0;
  }

  .navbar-nav {
    padding: 120px 30px 60px;
  }
}

.navbar.scrolled {
  background-color: rgba(0,0,0,0.6); !important;
  transition: background-color 200ms linear;
  padding: 8px 0;
}

.nav-link {
  color: #fff;
  margin: 0 10px;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color .25s ease-in-out;
  -moz-transition: color .25s ease-in-out;
  -webkit-transition: color .25s ease-in-out;
}

.nav-link:hover {
  color: #31aced;
}

section {
  padding: 60px 0;
}

.section-heading {
    text-transform: uppercase;
    font-size: 28px;
    letter-spacing: 0.3px;
}

.gradient-bg {
  background: linear-gradient(150deg, #d6e4fd, #f9f2fe, #e5f5fb);
}

.gray-bg {
  background: linear-gradient(150deg, #eaecf6, #fff);
}

.hero {
  padding: 170px 0 70px 0;
  background: linear-gradient(150deg, #12142a, #211536, #197cd6);
  background: linear-gradient(150deg, #12142a, #251841, #1E3A71, #197cd6);
}

.hero-text h1 {
  font-size: 36px;
  color: #fff;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #fff;
}

.hero-img {
  width: 80%;
}

@media (min-width: 1200px) {
  .hero {
    padding: 180px 0 120px 0;
    /*height: 100vh;*/
  }

  .hero-text h1 {
    font-size: 47px;
  }

  .hero-text p {
    font-size: 17px;
    color: #fff;
    font-weight: 300;
    line-height: 1.8em;
    width: 75%;
  }

  .hero-img {
    width: 45%;
  }
}

@media (min-width: 1200px) {
  .content-left {
    margin-right: 60px;
  }

  .content-right {
    margin-left: 60px;
  }
}

.custom-card {
  padding: 30px 45px 45px 45px;
  border-radius: 0.25rem;
  border: none;
  background: rgba(255,255,255,0.8);
  /*background: linear-gradient(rgba(255,255,255,1), rgba(255,255,255,0.3));*/
}

.custom-card img {
  height: 80px;
  margin: 25px auto;
  -webkit-filter: grayscale(0.6); /* Webkit */
  filter: gray; /* IE6-9 */
  filter: grayscale(0.6); /* W3C */
}

.news li {
  border-bottom: 1px solid #eee;
  padding: 30px 0 10px 0;
  list-style: none;
}

.news li:last-child {
  border-bottom: 0;
}

.news li i {
  color: rgba(0,0,0,0.4);
  font-size: 20px;
}

.news li h3 {
  color: #222757;
  font-size: 17px;
  font-weight: 600;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.blockquote-footer {
  font-size: 14px;
  color: #222;
}

.news li:hover h3 {
  font-size: 18px;
}

.news li:hover h3:after {
  content: '->';
  margin-left: 5px;
  color: #222757;
}

.partner-logo {
  -webkit-filter: grayscale(1); /* Webkit */
  filter: gray; /* IE6-9 */
  filter: grayscale(1); /* W3C */
  width: 160px;
  margin-bottom: 25px;
  transition: filter .25s ease-in-out;
  -moz-transition: filter .25s ease-in-out;
  -webkit-transition: filter .25s ease-in-out;
}

.partner-logo:hover {
  -webkit-filter: grayscale(0); /* Webkit */
  filter: gray; /* IE6-9 */
  filter: grayscale(0); /* W3C */
  cursor: pointer;
}

/* Button */

.btn-blue {
  background-color: #1F88DB;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 14px 25px;
  border-radius: 30px;
  border: 0;
  transition: background .25s ease-in-out;
  -moz-transition: background .25s ease-in-out;
  -webkit-transition: background .25s ease-in-out;
}

.btn-blue:active, .btn-blue:focus {
  background-color: #1474CF;
  color: #fff;
  box-shadow: none; 
}

.btn-blue:hover {
  background-color: #1474CF;
  color: #fff;
}

/* Footer */

.footer {
  background: #2b2c2c;
  background: linear-gradient(#0e0d1d, #2a1b48);
  padding: 60px 0 20px 0;
}

.footer h4 {
  font-size: 17px;
  letter-spacing: 0.3px;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-logo {
  width: 150px;
}

.footer address, footer p {
  line-height: 2em;
  color: #fff;
  opacity: 0.8;
  font-size: 14px;
}

.footer address a {
  color: #fff;
  transition: color .25s ease-in-out;
  -moz-transition: color .25s ease-in-out;
  -webkit-transition: color .25s ease-in-out;
}

.footer address a:hover {
  color: #31aced;
}

.footer address i {
  font-size: 17px;
  margin-right: 10px;
}

.footer ul.quicklinks {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer ul.quicklinks li a {
  font-size: 14px;
  line-height: 2em;
  color: #fff;
  opacity: 0.8;
  transition: color .25s ease-in-out;
  -moz-transition: color .25s ease-in-out;
  -webkit-transition: color .25s ease-in-out;
}

.footer ul.quicklinks li a:hover {
  color: #31aced;
}

.copyright {
  font-size: 12px;
  font-weight: 200;
  color: #fff;
  opacity: 0.5;
}

/* Back to top button */

#to-top-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#to-top-button i {
  font-size: 32px;
  color: #9CA1AD;
  transition: color .5s, visibility .5s;
}

#to-top-button i:hover {
  cursor: pointer;
  color: #31aced;
}

#to-top-button.show {
  opacity: 1;
  visibility: visible;
}

/* Heading deco */

.line-overlay:after {
  content: ' ';
  display: block;
  border: 10px solid #cbd4f2;
  width: 150px;
  margin: -20px auto;
}

.accordion .card {
  margin-bottom: 15px;
  border: 0;
  background: #fff;
}

.accordion .card-header {
  background: #fff;
  border-bottom: 2px solid #eee;
}

.accordion .btn {
  text-decoration: none;
  outline: 0;
}

.accordion .btn:focus {
  box-shadow: none;
}

.accordion h3 {
  font-size: 17px;
}

.accordion .bi {
  font-size: 24px;
}

.text-underline {
    text-decoration: underline;
}

.ribbon {
    background: linear-gradient(150deg, #d6e4fd, #f9f2fe, #e5f5fb);
    position: relative;
    top: -110px;
    margin-bottom: -50px;
    padding: 25px 60px;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
    box-shadow: 0 30px 30px -25px rgba(0,0,0,0.3);
    border-radius: 5px;
}

@media (max-width: 992px) {
  .ribbon {
    top: -100px;
    padding: 25px;
}
}



