@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,400;0,500;0,700;0,800;0,900;1,500&display=swap");
body {
  font-family: "Inter", sans-serif;
}

section {
  padding: 50px 0;
}

strong {
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Alegreya Sans", sans-serif;
}

p {
  font-size: 1.125rem;
}
p a {
  color: #0556AD;
  font-weight: 500;
}
p a:hover {
  color: #044A96;
}

.skip-to-content-link {
  position: absolute;
  background: #052942;
  border-radius: 0;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  transform: translateY(-100%);
  transition: transform 0.3s;
}
.skip-to-content-link:hover {
  color: #fff;
  background: #044A96;
}
.skip-to-content-link:focus {
  transform: translateY(0%);
}

.flex-fit {
  display: flex;
  flex-direction: column;
}

.bg-grey {
  background: #EBF1F8;
}

.wrapper {
  min-height: 100vh;
  margin-bottom: -423px;
  padding-bottom: 423px;
}

/* - - - - - - - - - - - - - - - - - 
            Navigation
- - - - - - - - - - - - - - - - - */
.top-branding {
  padding: 25px 0;
  background: #0556AD;
}
.top-branding img {
  max-width: 100%;
  display: block;
  margin-bottom: 25px;
}
.top-branding .search-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.top-branding .search-box input.form-control {
  border-radius: 0;
  border-color: #fff;
  height: 50px;
}
.top-branding .search-box input:focus {
  box-shadow: none;
  outline: 5px auto -webkit-focus-ring-color;
}
.top-branding .search-box .btn-search {
  border-radius: 0;
  background: #FDB536;
  border: none;
  font-weight: 600;
  padding: 0 20px;
  margin-left: 1px;
}
.top-branding .search-box .btn-search:focus, .top-branding .search-box .btn-search:focus-within {
  box-shadow: none;
  outline: 5px auto -webkit-focus-ring-color;
}

.navbar-toggler {
  height: 50px;
  border: 1px solid #fff;
  border-radius: 0;
}
.navbar-toggler:focus, .navbar-toggler:hover {
  box-shadow: none;
  outline: 1px dotted #212121;
  outline: 5px auto -webkit-focus-ring-color;
}
.navbar-toggler span {
  position: relative;
  display: block;
  background: #fff;
  height: 3px;
  width: 29px;
  margin-top: 5px;
  margin-bottom: 5px;
  left: 0;
  opacity: 1;
  transition: all 0.35s ease-out;
  transform-origin: center left;
}
.navbar-toggler span:nth-child(1) {
  margin-top: 0.3em;
  transform: translate(0%, 0%) rotate(0deg);
}
.navbar-toggler span:nth-child(2) {
  opacity: 1;
}
.navbar-toggler span:nth-child(3) {
  transform: translate(0%, 0%) rotate(0deg);
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translate(15%, -30%) rotate(40deg);
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 30%) rotate(-40deg);
}

.navbar {
  padding: 0;
}
.navbar.navbar-dark {
  background: #0556AD !important;
}
.navbar.navbar-dark .navbar-nav li a.nav-link {
  padding: 20px 10px;
  color: #fff;
}
.navbar.navbar-dark .navbar-nav li a.nav-link.active {
  background: #FDB536;
  color: #052942;
  font-weight: 600;
}

/* - - - - - - - - - - - - - - - - - 
        Homepage Blocks
- - - - - - - - - - - - - - - - - */
.headerBlock {
  background-color: #EBF1F8;
  margin-bottom: 8px;
}
.headerBlock .flex-fit {
  display: flex;
  flex-direction: column;
}
.headerBlock .intro {
  padding: 50px 30px;
  margin: auto;
}
.headerBlock .intro h1 {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 2.75rem;
  margin-bottom: 10px;
}
.headerBlock .intro p {
  margin-bottom: 30px;
}
.headerBlock .intro .btn {
  position: relative;
  padding: 12px 30px;
  transition: 0.5s;
  width: 100%;
}
.headerBlock .intro .btn:last-child {
  margin-top: 5px;
}
.headerBlock .img-container {
  max-height: 350px;
  overflow: hidden;
}
.headerBlock .img-container img {
  height: 350px;
  object-fit: cover;
  width: 100%;
}

.quickBlock {
  padding: 60px 30px;
  color: #fff;
}
.quickBlock h2 {
  font-size: 2rem;
  font-weight: 700;
}
.quickBlock .content {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  margin-top: 0;
  display: flex;
}
.quickBlock .content a {
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  transition: 0.3s;
}
.quickBlock .content a::before {
  content: "\f0a9";
  font-family: "Font Awesome 5 Pro";
  font-size: 1.75rem;
  font-weight: 900;
  margin-right: 10px;
  vertical-align: -10%;
}
.quickBlock .content a:hover {
  margin-left: 10px;
  transition: 0.3s;
}
.quickBlock.guidance {
  background: #1A8146;
}
.quickBlock.framework {
  background: #0556AD;
}
.quickBlock.resources {
  background: #B24B7F;
}

/* - - - - - - - - - - - - - - - - - 
        Landing Page
- - - - - - - - - - - - - - - - - */
.landingBlocks {
  padding: 50px 35px;
  background: #fff;
  border: 2px solid #052942;
  margin-bottom: 20px;
}
.landingBlocks a {
  color: #0556AD;
  text-decoration: none;
  font-size: 1.125rem;
  transition: 0.3s;
  font-weight: 500;
  padding: 15px 15px 15px 0px;
}
.landingBlocks a::before {
  content: "\f0a9";
  font-family: "Font Awesome 5 Pro";
  font-size: 1.75rem;
  color: #B24B7F;
  font-weight: 900;
  margin-right: 10px;
  vertical-align: -10%;
}
.landingBlocks a:hover {
  margin: 10px;
}
.landingBlocks h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.landingBlocks p {
  margin-bottom: 25px;
}

/* - - - - - - - - - - - - - - - - - 
            Inner Header
- - - - - - - - - - - - - - - - - */
header.innerHeader {
  background: #044A96;
  padding: 30px 0;
  color: #fff;
}
header.innerHeader .banner-container {
  display: inline-block;
  margin: auto 0;
  overflow: hidden;
  word-wrap: break-word;
}
header.innerHeader .banner-container h1 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}
header.innerHeader .banner-container .breadcrumb {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 10px;
}
header.innerHeader .banner-container .breadcrumb li.breadcrumb-item {
  display: inline-block;
}
header.innerHeader .banner-container .breadcrumb li.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}
header.innerHeader .banner-container .breadcrumb li.breadcrumb-item a:hover {
  color: #FDB536;
}
header.innerHeader .banner-container .breadcrumb li.breadcrumb-item.active {
  color: #fff;
}
header.innerHeader .banner-container .breadcrumb li.breadcrumb-item::before {
  color: #fff;
}
header.innerHeader.w-image .flex-fit {
  display: flex;
  flex-direction: row;
}
header.innerHeader.w-image .image-container {
  display: inline-block;
  background: #fff;
  border-radius: 8px;
}
header.innerHeader.w-image .image-container img {
  height: 120px;
}

/* - - - - - - - - - - - - - - - - - 
          Inner Content
- - - - - - - - - - - - - - - - - */
.innerContent .goToMobile {
  display: block;
  cursor: pointer;
  background: #044A96;
  border: none;
  font-size: 1.125rem;
  color: #fff;
  text-decoration: none;
  width: 100%;
  padding: 12px 20px;
}
.innerContent .leftNavigation {
  margin-bottom: 40px;
}
.innerContent .leftNavigation ul li a {
  position: relative;
  display: block;
  padding: 15px 10px 15px 20px;
  font-family: "Alegreya Sans", sans-serif;
  color: #052942;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: initial;
  text-decoration: none;
  transition: all 0.1s ease-out;
  border-left: 4px solid transparent;
}
.innerContent .leftNavigation ul li a.active {
  background: #F1F5FA;
  border-color: #FDB536;
  color: #052942;
  font-weight: 600;
}
.innerContent .leftNavigation ul li a.active:hover {
  background: #F1F5FA;
}
.innerContent .leftNavigation ul li a:hover {
  background: #F8FAFC;
  border-left: 4px solid #FDB536;
}
.innerContent .leftNavigation ul li a.open-highlight {
  background: #F8FAFC;
  border-color: #fad99e;
  font-weight: 500;
}
.innerContent .leftNavigation ul li a.has-children:after {
  position: absolute;
  content: "\f078";
  font: var(--fa-font-regular);
  font-size: 0.938rem;
  font-weight: 600;
  right: 10px;
  top: 20px;
  float: right;
}
.innerContent .leftNavigation ul li a.has-children.open:after {
  position: absolute;
  content: "\f077";
  font: var(--fa-font-regular);
  font-size: 0.938rem;
  font-weight: 600;
  right: 10px;
  top: 20px;
  float: right;
}
.innerContent .leftNavigation ul ul li a {
  color: #052942;
  background: #F8FAFC;
  padding: 15px 10px 15px 25px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: initial;
  text-decoration: none;
  border-left: 4px solid #fad99e;
}
.innerContent .leftNavigation ul ul li a:hover {
  background: #F1F5FA;
}
.innerContent .content .img-contain {
  background: #f5f5f5;
}
.innerContent .content .img-contain img {
  max-height: 400px;
}
.innerContent .content h2 {
  font-size: 1.875rem;
  font-weight: 600;
  margin: 40px 0 10px 0;
}
.innerContent .content h2:first-child {
  margin-top: 0;
}
.innerContent .content li a {
  color: #0556AD;
  font-weight: 500;
}
.innerContent .content li a:hover {
  color: #044A96;
}
.innerContent .content h3 {
  font-size: 1.625rem;
  font-weight: 600;
  margin: 30px 0 10px 0;
}
.innerContent .content h4 {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 25px 0 5px 0;
}
.innerContent .content p a {
  text-decoration: none;
  border-bottom: 1px solid;
}
.innerContent .content p a:hover {
  text-decoration: none;
  border-bottom: 1px solid;
}
.innerContent .content ul,
.innerContent .content ol {
  margin-bottom: 30px;
}
.innerContent .content ul li,
.innerContent .content ol li {
  font-size: 1.125rem;
  margin-bottom: 5px;
}
.innerContent .content ul li a,
.innerContent .content ol li a {
  text-decoration: none;
  border-bottom: 1px solid;
}
.innerContent .content ul li a:hover,
.innerContent .content ol li a:hover {
  text-decoration: none;
  border-bottom: 1px solid;
}
.innerContent .content hr {
  border-top: 1px solid #052942;
  margin: 40px 0;
}
.innerContent .content .blockquote {
  padding: 20px;
  background: #F1F5FA;
  border-left: 5px solid #0556AD;
}
.innerContent .content .blockquote .blockquote-head p {
  font-size: 1.125rem;
  margin: 0;
}
.innerContent .content .blockquote .blockquote-footer {
  margin-top: 10px;
  font-size: 1rem;
}

/* - - - - - - - - - - - - - - - - - 
        Quick Link Slider
- - - - - - - - - - - - - - - - - */
.quickLinks {
  background: #EBF1F8;
}
.quickLinks .slide-container {
  width: 100%;
  padding: 70px 0;
}
.quickLinks .slide-container .slide-content {
  margin: 0 40px;
  overflow: hidden;
}
.quickLinks .slide-container .slide-content .card {
  padding: 40px 30px;
  background: #fff;
  border-radius: 0;
  border: none;
}
.quickLinks .slide-container .slide-content .card .card-content h2 {
  font-weight: 600;
  margin-bottom: 15px;
}
.quickLinks .slide-container .slide-content .card .card-content p {
  margin-bottom: 25px;
  color: #4C6272;
}
.quickLinks .slide-container .slide-content .card .card-content a {
  color: #0556AD;
  text-decoration: none;
  font-size: 1.125rem;
  transition: 0.3s;
  font-weight: 500;
  padding: 15px 15px 15px 0px;
}
.quickLinks .slide-container .slide-content .card .card-content a::before {
  content: "\f0a9";
  font-family: "Font Awesome 5 Pro";
  font-size: 1.75rem;
  color: #B24B7F;
  font-weight: 900;
  margin-right: 10px;
  vertical-align: -10%;
}
.quickLinks .slide-container .slide-content .card .card-content a:hover {
  margin: 10px;
}
.quickLinks .slide-container .slide-content .card.swiper-slide {
  height: initial;
}
.quickLinks .slide-container .swiper-navBtn {
  color: #B24B7F;
  font-weight: 600;
  transition: color 0.3s ease;
}
.quickLinks .slide-container .swiper-navBtn:hover {
  color: #B24B7F;
}
.quickLinks .slide-container .swiper-navBtn::before, .quickLinks .slide-container .swiper-navBtn::after {
  font-size: 38px;
}
.quickLinks .slide-container .swiper-button-next {
  right: 0;
}
.quickLinks .slide-container .swiper-button-prev {
  left: 0;
}
.quickLinks .slide-container .swiper-pagination {
  display: none;
}
.quickLinks .slide-container .swiper-pagination-bullet {
  background-color: #B24B7F;
  opacity: 1;
}
.quickLinks .slide-container .swiper-pagination-bullet-active {
  background-color: #B24B7F;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  bottom: 25px;
}

@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 10px;
  }
  .swiper-navBtn {
    display: none;
  }
}
.feedbackPanel {
  border-top: 2px solid #EBF1F8;
  background: #fff;
  padding: 30px 0;
  display: flex;
}
.feedbackPanel h3 {
  font-size: 2rem;
  font-weight: 600;
  display: inline-block;
  margin: 0 0 5px 0;
}
.feedbackPanel p {
  margin-bottom: 0;
}
.feedbackPanel p a {
  text-decoration: none;
  border-bottom: 1px solid;
}
.feedbackPanel p a:hover {
  text-decoration: none;
  border-bottom: 1px solid;
}
.feedbackPanel .btn-arrow-accent {
  background: #FDB536;
  border-color: #FDB536;
}
.feedbackPanel img {
  display: none;
}

/* - - - - - - - - - - - - - - - - - 
          Search Results
- - - - - - - - - - - - - - - - - */
.searchResults .searchBox {
  margin-bottom: 20px;
}
.searchResults .searchBox .form-control {
  height: 60px;
  background: #EBF1F8;
  border: 1px solid #052942;
  border-radius: 0;
}
.searchResults .searchBox .form-control:focus {
  box-shadow: none;
}
.searchResults .searchBox .btn-search {
  background: #FDB536;
  border: 1px solid #052942;
  border-left: 0;
  height: 60px;
}
.searchResults p.searchTerm strong {
  font-weight: 500;
}
.searchResults .result {
  padding: 20px 0;
  border-bottom: 2px solid #EBF1F8;
  /* a {
      color: $primary-color;
      text-decoration: none;
      font-size: 1.125rem;
      transition: 0.3s;
      font-weight: 500;
      padding: 15px 15px 15px 0px;

      &::before {
          content: "\f0a9";
          font-family: "Font Awesome 5 Pro";
          font-size: 1.75rem;
          color: $purple;
          font-weight: 900;
          margin-right: 10px;
          vertical-align: -10%;
      }

      &:hover {
          margin: 10px;
      }
  } */
}
.searchResults .result h2 a {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0556AD;
  text-decoration: none;
}
.searchResults .result h2 a:hover {
  text-decoration: underline;
}
.searchResults .result p {
  margin-bottom: 0px;
}

/* - - - - - - - - - - - - - - - - - 
            Accordions
- - - - - - - - - - - - - - - - - */
.accordion {
  margin: 30px 0 50px 0;
}
.accordion .accordion-item {
  border: none;
  border-radius: 0;
  border-top: 1px solid #F1F5FA;
}
.accordion .accordion-item:last-child {
  border-bottom: 1px solid #F1F5FA;
}
.accordion .accordion-item .accordion-header {
  margin: 0;
}
.accordion .accordion-item .accordion-header .accordion-button {
  font-family: "Inter", sans-serif;
  color: #0556AD;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0;
  padding: 20px;
  border-left: 3px solid transparent;
}
.accordion .accordion-item .accordion-header .accordion-button:after {
  background-image: none;
  content: "\f078";
  font: var(--fa-font-regular);
  font-weight: 600;
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: #F1F5FA;
  box-shadow: none;
  border-left: 3px solid #0556AD;
  border-top: none;
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):focus {
  border-left: 3px solid #0556AD;
}
.accordion .accordion-item .accordion-header .accordion-button:focus {
  border-left: 2px solid transparent;
  box-shadow: none;
  background: #F1F5FA;
}
.accordion .accordion-item .accordion-header .accordion-button:hover {
  background: #F1F5FA;
}
.accordion .accordion-item .accordion-body {
  font-size: 1.125rem;
  padding: 1.25rem;
  background: #F8FAFC;
  border-left: 3px solid #0556AD;
}

/* - - - - - - - - - - - - - - - - - 
          Sticky Header
- - - - - - - - - - - - - - - - - */
.sticky + .innerContent {
  padding-top: 160px;
}

.stickyLinks {
  padding: 20px 0;
  background: #f8fafc;
  text-align: center;
}
.stickyLinks.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.stickyLinks p {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
  margin: 0;
}
.stickyLinks span {
  margin: 0 10px;
  display: none;
}
.stickyLinks .btn {
  display: inline-block;
  margin-top: 5px;
}

/* - - - - - - - - - - - - - - - - - 
            Tables
- - - - - - - - - - - - - - - - - */
.table > :not(caption) > * > * {
  box-shadow: none;
}

.table {
  margin-bottom: 30px;
}
.table.table-striped thead {
  background: #052942;
  border: 1px solid #052942;
  border-bottom: 2px solid #052942;
}
.table.table-striped thead th {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  padding: 15px 10px;
}
.table.table-striped tbody {
  border: 1px solid #052942;
}
.table.table-striped tbody tr th,
.table.table-striped tbody tr td {
  font-size: 1.063rem;
  padding: 15px 10px;
  border: none;
  vertical-align: middle;
}
.table.table-striped tbody tr th strong,
.table.table-striped tbody tr td strong {
  font-weight: 600;
}
.table.table-striped tbody tr th p:last-child,
.table.table-striped tbody tr td p:last-child {
  margin: 0;
}
.table.table-striped tbody tr:nth-of-type(odd) {
  background: #F8FAFC;
}
.table.table-striped tbody tr:nth-of-type(even) {
  background: #fff;
}

/* Styles for the first row if there's no table head */
table.table-striped:not(:has(thead)) > tbody > tr:first-child {
  background: #052942 !important;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff !important;
}
table.table-striped:not(:has(thead)) > tbody > tr:first-child td {
  padding: 15px 10px !important;
  color: #fff !important;
}
table.table-striped:not(:has(thead)) > tbody > tr:first-child td p {
  font-size: 1.125rem;
  margin-bottom: 0;
  color: #fff !important;
}

/* - - - - - - - - - - - - - - - - - 
           Buttons
- - - - - - - - - - - - - - - - - */
.btn {
  font-size: 1.063rem;
  padding: 10px 20px;
  border: 2px solid;
  border-radius: 0;
}
.btn.btn-primary {
  background: #0556AD;
  border-color: #0556AD;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #044A96;
}
.btn.btn-dark {
  background: #052942;
  border-color: #052942;
}
.btn.btn-dark:hover, .btn.btn-dark:focus {
  color: #fff;
  background: #052942;
}
.btn.btn-yellow {
  color: #212529;
  background: #FDB536;
  border-color: #FDB536;
}
.btn.btn-yellow:hover, .btn.btn-yellow:focus {
  background: #eaa62d;
  border-color: #eaa62d;
}

/* - - - - - - - - - - - - - - - - - 
            Footer
- - - - - - - - - - - - - - - - - */
footer {
  background: #052942;
  padding: 50px 0;
  color: #fff;
}
footer h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
footer ul {
  margin: 0;
}
footer ul li {
  font-size: 1rem;
  margin-bottom: 7px;
}
footer ul li:last-child {
  margin-bottom: 0;
}
footer ul li a {
  color: #fff;
  text-decoration: none;
}
footer ul li a:hover {
  color: #FDB536;
  text-decoration: underline;
}

@media (min-width: 768px) {
  /* - - - - - - - - - - - - - - - - - 
              Inner Header
  - - - - - - - - - - - - - - - - - */
  header.innerHeader .banner-container {
    margin: auto 0;
  }
  header.innerHeader.w-image .banner-container {
    margin: auto 0 auto 25px;
  }
  /* - - - - - - - - - - - - - - - - - 
          Homepage Blocks
  - - - - - - - - - - - - - - - - - */
  .headerBlock .intro .btn {
    width: initial;
    margin-right: 5px;
  }
  .headerBlock .intro .btn:last-child {
    margin: 0;
  }
  /* - - - - - - - - - - - - - - - - - 
        Sticky Header
  - - - - - - - - - - - - - - - - - */
  .stickyLinks {
    text-align: left;
  }
  .stickyLinks span {
    display: inline-block;
  }
  .stickyLinks .btn {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  section {
    padding: 70px 0;
  }
  .top-branding {
    padding: 25px 0 15px 0;
  }
  .top-branding img {
    margin: initial;
  }
  .top-branding .search-box {
    margin-top: 7px;
  }
  .top-branding .search-box .form-control {
    border-radius: 0;
    height: 50px;
  }
  .top-branding .search-box .btn-search {
    border-radius: 0;
    background: #FDB536;
    font-weight: 600;
    padding: 0 20px;
    margin-left: 1px;
  }
  .top-branding #mobile-navigation {
    display: none;
  }
  .navbar.navbar-dark {
    padding: 0;
  }
  .navbar.navbar-dark .navbar-nav li a.nav-link {
    position: relative;
    font-size: 15px;
    padding: 10px 12px 20px 12px;
    color: #FFF;
    transition: all 0.5s;
  }
  .navbar.navbar-dark .navbar-nav li a.nav-link.active {
    color: #FFF;
    background: transparent;
  }
  .navbar.navbar-dark .navbar-nav li a.nav-link::before {
    transition: all 0.5s;
  }
  .navbar.navbar-dark .navbar-nav li a.nav-link::after {
    transition: all 0.5s;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: ".";
    color: transparent;
    background: #FDB536;
    height: 5px;
  }
  .navbar.navbar-dark .navbar-nav li a.nav-link:hover::before {
    height: 5px;
  }
  .navbar.navbar-dark .navbar-nav li a.nav-link:hover::after {
    width: 95%;
  }
  .navbar.navbar-dark .navbar-nav li a.nav-link.active::before, .navbar.navbar-dark .navbar-nav li a.nav-link.active::after {
    height: 4px;
    width: 90%;
  }
  /* - - - - - - - - - - - - - - - - - 
          Homepage Blocks
  - - - - - - - - - - - - - - - - - */
  .headerBlock .intro {
    padding: 50px;
  }
  .headerBlock .intro h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .headerBlock .intro .btn {
    position: relative;
    padding: 12px 40px;
    transition: 0.5s;
  }
  .headerBlock .intro .btn:last-child {
    margin: 0;
  }
  .headerBlock .img-container {
    border-left: 8px solid #FFF;
    max-height: 580px;
  }
  .headerBlock .img-container img {
    height: 580px;
  }
  /* - - - - - - - - - - - - - - - - - 
          Inner Content
  - - - - - - - - - - - - - - - - - */
  .innerContent .content {
    margin-left: 5%;
  }
  .innerContent .content .blockquote .blockquote-head p {
    font-size: 1.25rem;
  }
  .innerContent .content .blockquote .blockquote-footer {
    font-size: 1.125rem;
  }
  .feedbackPanel img {
    display: block;
  }
}
@media (min-width: 1200px) {
  .navbar.navbar-dark {
    padding: 0;
  }
  .navbar.navbar-dark .navbar-nav li a.nav-link {
    position: relative;
    font-size: 1rem;
    padding: 20px;
    color: #FFF;
    transition: all 0.5s;
  }
  .navbar.navbar-dark .navbar-nav li a.nav-link.active {
    color: #FFF;
    background: transparent;
  }
  .navbar.navbar-dark .navbar-nav li a.nav-link::before {
    transition: all 0.5s;
  }
  .navbar.navbar-dark .navbar-nav li a.nav-link::after {
    transition: all 0.5s;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: ".";
    color: transparent;
    background: #FDB536;
    height: 4px;
  }
}

/*# sourceMappingURL=style.css.map */
