﻿html,
body {
  font-family: "Open Sans", sans-serif;
  font-size: 100%;
  color: #333333;
}

.hp-section {
  display: flex;
  align-items: center;
  padding: 5em 0em;
}

@media only screen and (min-width: 992px) {
  .hp-section {
    height: 100vh;
    padding: unset;
  }
}
.content-section {
  padding: 5em 0;
}

.hp-section-title {
  font-size: 3em;
  text-align: center;
  margin-bottom: 1em;
}

.blue-bg {
  background-color: #3954a5;
  color: white;
}

.section-title {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 1em;
}

.gr-section {
  padding: 2em 0;
}

.light-gray-bg {
  background-color: #f3f3f3;
}

.light-blue-bg {
  background-color: #d4dbf0;
}

.heading-hw {
  font-family: "Kristi", cursive;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  color: #471513;
}
a:hover {
  color: #3954a5;
  text-decoration: underline;
}

@media only screen and (min-width: 1200px) {
  body {
    font-size: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.site-header {
  padding: 10px 0px;
  background-color: rgba(0, 70, 105, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}

.site-header-logo {
  max-width: 80px;
}

@media only screen and (min-width: 992px) {
  .site-header-logo {
    max-width: 120px;
  }
}
.nav-top {
  padding: 0;
}
.nav-top .nav-link {
  margin: 0 0.5em;
  font-size: 1em;
  color: white;
}
.nav-top .nav-link.active {
  color: white;
}
.nav-top .navbar-toggler {
  border-color: white;
}
.nav-top .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='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.offcanvas-nav {
  background-color: rgba(0, 0, 0, 0.5);
}

.site-footer {
  padding: 1em;
  font-size: 0.85em;
  color: inherit;
  background-color: white;
}

.site-footer-slogan {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.site-footer-email {
  font-size: 1.5em;
}

.btn {
  -moz-border-radius: 1.5em !important;
  -webkit-border-radius: 1.5em !important;
  border-radius: 1.5em !important;
  padding: 10px 15px;
  min-width: 175px;
}

a.btn-primary,
.btn-primary {
  background-color: #3954a5;
  color: white;
  border-color: #2c417f;
}
a.btn-primary:hover,
.btn-primary:hover {
  background: #2c417f;
  border-color: #2c417f;
  text-decoration: none;
}

a.btn-default,
.btn-default {
  background-color: #e0e0e0;
  color: inherit;
  border-color: #c7c7c7;
}
a.btn-default:hover,
.btn-default:hover {
  background: #c7c7c7;
  border-color: #c7c7c7;
  text-decoration: none;
}

.card {
  overflow: hidden;
  margin-bottom: 1em;
}

.card-img {
  max-width: 100%;
  height: auto;
  transition: transform 0.2s ease;
  height: 250px;
}

.card-img-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.card-info {
  padding: 0.5em;
  color: white;
  width: 100%;
  cursor: pointer;
}
.card-info a {
  color: white;
  text-decoration: none;
}

.card-title {
  font-size: 2.2em;
  margin-bottom: 0;
}

.card-text {
  font-size: 0.75em;
}

@media only screen and (min-width: 768px) {
  .card:hover .card-img {
    transform: scale(1.2);
  }
}
.cta {
  padding: 8em 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.cta::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.cta .container {
  position: relative;
  z-index: 2;
  color: white;
}

.cta-title {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.cta-content {
  max-width: 50%;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  padding: 1em;
  line-height: 1.2em;
}
.form-control:read-only {
  background-color: #f3f3f3;
}
.form-control:focus {
  border-color: #3954a5;
}

.field-validation-error {
  font-size: 0.75em;
}

.hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 8em;
  padding-bottom: 2em;
}
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero .container {
  position: relative;
  z-index: 2;
  color: white;
}
.hero .hero-content {
  color: white;
  max-width: 600px;
}

@media only screen and (min-width: 992px) {
  .hero {
    height: 450px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.hero-title {
  font-size: 4em;
  margin-bottom: 0.5em;
}

.hero-lg {
  height: 100vh;
  padding-top: 0;
}

/*
@media only screen and (min-width: 768px) {

    .hero-lg {
        flex-direction: row;

        .hero-img,
        .hero-content-container {
            width: 50%;
        }

        .hero-content-container {
            padding: 0 5em;
        }

        .hero-content {
            margin: unset;
            max-width: unset;
        }
    }
}

@media only screen and (min-width: 992px) {

    .hero {
        padding: 8.5em 0;
    }

    .hero-title {
        font-size: 2.5em;
    }

}*/
