@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100;200;300;400;500;600;700;800;900&display=swap');


body {
    width: 100%;
    height: 100vh;
    font-family: 'Alexandria', sans-serif;
    margin: 0 auto;
}


h1 {
    font-size: 60px;
    font-weight: 700;
    color: #374050;
}

h2 {
  font-size: 49px;
  font-weight: 600;
  color: #374050;
}

h3 {
  color: #374050;
}

p {
  font-size: 18px;
  line-height: 2rem;
}

a {
    text-decoration: none;
}


ul {
  list-style-type:none;
  padding-left: 0rem;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
  transition: all 0.5s;
  z-index: 997;;
}

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #013289;
  /* font-family: "Nunito", sans-serif; */
  margin-top: 3px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
*/

.navbar .navbar-brand {
  font-size: 30px;
}
.navbar .nav-item {
  padding: 10px 10px;
}
.navbar .nav-link {
  font-size: 16px;
  margin-left: 10px;
  font-weight: 300;
}

.nav-item a {
  color: #374050;
  font-weight: 300;
}

.nav-item a:hover {
  color: #2A8E9D;
  font-weight: 300;
}

.nav-item a:focus {
  color: #2A8E9D;
  font-weight: 300;
}


.fa-bars {
  color: #374050;
  font-size: 30px;
}

.active   {
  color: #2A8E9D !important;
  font-weight: 400 !important;
}
 
a.nav-link.contact-button {
  background-color: #2A8E9D;
  color: white;
  border-radius: 5px;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media (max-width: 786px) {
  .header {
    padding: 20px 0px;
  }
}
