body {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #000;
}

/* --------------------------------------------------------------
# NAVIGATION
-------------------------------------------------------------- */

.header-nav {
  background: white;
}

.nav-link {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: black;
}

.nav-link:hover, .nav-link:hover {
  color: #101193;
}

.navbar-toggler {
  border: none;
}

.offcanvas {
  background: white;
}

.offcanvas .nav-link {
  font-size: 20px;
  padding: 12px 0;
  color: black;
}

.offcanvas .nav-link:hover {
  color: #101193;
}

/* --------------------------------------------------------------
# HOVER LINE
-------------------------------------------------------------- */

.nav .nav-link {
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
}

.nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #101193;
  transition: width 0.25s ease;
}

.nav .nav-link:hover::after {
  width: 100%;
}

.nav .nav-link.active::after {
  width: 100%;
}

/* Exclude the button */

.nav .nav-link.contact-btn::after, .nav .nav-link.contact-btn:hover::after {
  width: 0 !important;
  content: none !important;
}

/* Text-underline */

a.text-underline {
  position: relative;
  padding-bottom: 3px;
  display: inline-block;
}

a.text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #101193;
  transition: width 0.25s ease;
}

a.text-underline:hover::after, a.text-underline.active::after {
  width: 100%;
}

a.text-underline.no-line::after {
  content: none !important;
  width: 0 !important;
}

a.text-underline.white::after {
  background-color: #fff;
}

/* --------------------------------------------------------------
# BUTTONS
-------------------------------------------------------------- */

.contact-btn {
  background-color: #101193;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
}

.contact-btn:hover {
  background-color: #0d0f7a;
  color: #fff !important;
}

/* --------------------------------------------------------------
# TEXT
-------------------------------------------------------------- */

.whitefont {
  color: #fff;
}

a.whitefont {
  color: #fff;
  text-decoration: none;
}

a.whitefont:hover {
  color: #fff;
  text-decoration: none;
}

.emailwhitefont {
  color: #fff;
}

a.emailwhitefont {
  color: #fff;
}

.bluefont {
  color: #101193;
}

.socials {
  color: #101193;
}

a.socials {
  color: #101193;
  text-decoration: none;
}

a.socials:hover {
  color: #0d0f7a;
  text-decoration: none;
}

.headerfont {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
}

.subheaderfont {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.smheaderfont {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.footerfont {
  color: #000;
  text-decoration: none;
}

a.footerfont {
  color: #000;
  text-decoration: none;
}

a.footerfont:hover {
  color: #101193;
  text-decoration: none;
}

.bottomfooterfont {
  color: #fff;
}

a.bottomfooterfont {
  color: #fff;
  text-decoration: none;
}

a.bottomfooterfont:hover {
  color: #76E2F8;
  text-decoration: none;
}

/* --------------------------------------------------------------
# BACKGROUNDS
-------------------------------------------------------------- */

.graybackground {
  background-color: #F5F5F5;
}

.bluebackground {
  background-color: #101193;
}

.patternbackground {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  align-items: center;
  background-image: url("../img/pattern-banner.jpg");
  height: 300px;
}

.grayborder {
  border-bottom: 4px solid #F5F5F5;
}

/* --------------------------------------------------------------
# VIDEO STYLES
-------------------------------------------------------------- */

.video-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 56.25vw;
  /*16: 9 ratio (9/16 = 0.5625);*/
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Tablet */

@media (max-width: 992px) {
  .video-container {
    height: 300px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .video-container {
    height: 200px;
  }
}

/* Small mobile */

@media (max-width: 480px) {
  .video-container {
    height: 150px;
  }
}