/*NAVBAR*/
nav{
  font-size: 1.0rem;
}

:focus {outline:none;}
::-moz-focus-inner {border:0;}

#mainNav {
  background-color: #221F72;
  height: 70px;
}

#navbar{
  width: 100%;
  z-index: 10;
  top: 0;
}

.dropdown-item{
  color: #ddd !important;
  font-family: "Source Sans Pro", sans-serif;
  padding: .25rem 0;
}

.dropdown-item:hover{
  color: #fff !important;
  background-color: #0059ff;
}

#mainNav .dropdown-menu {
  background-color:#221F72;
  color:#FFF;
  text-align:center;
  width:100%;
  padding: 0 !important;
  margin-top:0;
  border: 3px solid black;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#mainNav .navbar-toggler {
  font-size: 12px;
  right: 0;
  padding: 13px;
  text-transform: uppercase;
  color: #FFFFFF;
  border: 0;
  background-color: #221F72;
  font-family: "Oswald";
}

#mainNav .navbar-toggler:hover,
 #mainNav .navbar-toggler:focus{
	font-style:bold;
	outline:none;
}

#mainNav .navbar-brand {
  color: #dddddd;
  font-family: 'Germond Pro';
}

#mainNav .navbar-brand.active, #mainNav .navbar-brand:active, #mainNav .navbar-brand:focus, #mainNav .navbar-brand:hover {
  color: #FFFFFF;
  font-style: bold;
}

#mainNav .navbar-nav .nav-item .nav-link {
  font-size: 90%;
  font-weight: 400;
  padding: 0.75em 0;
  letter-spacing: 1px;
  color: #dddddd;
}

#mainNav .navbar-nav .nav-item .nav-link.active, #mainNav .navbar-nav .nav-item .nav-link:hover {
  color: #FFFFFF;
}

.bb {
    border-bottom: 3px solid black;
}

@media (min-width: 992px) {
  #mainNav {
    padding-top: 25px;
    padding-bottom: 25px;
    -webkit-transition: padding-top 0.3s, padding-bottom 0.3s;
    transition: padding-top 0.3s, padding-bottom 0.3s;
    border: none;
    background-color: #221F72;
  }
  #mainNav .navbar-brand {
    font-size: 1.75em;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #mainNav .navbar-nav .nav-item .nav-link {
    padding: 1rem 1rem !important;
  }
  #mainNav.navbar-shrink {
    padding-top: 0;
    padding-bottom: 0;
    background-color: #221F72;
  }
  #mainNav.navbar-shrink .navbar-brand {
    font-size: 1.45em;
    padding: 0;
  }
}

/*BANNER*/
.banner {
  height: 100%;
  max-height: 100%;
}

.banner::after {
  background-color: rgb(0,0,0);
  background-color: rgba(0, 0, 0, 0.3);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.banner-box {
  background-color: rgb(30,30,30);
  background-color: rgba(30, 30, 30, 0.9);
  border-radius: 1rem;
  color: #fff;
  font-size: 1.5em;
  font-weight: 400;
  text-align: center;
  width: 60%;
  margin: auto;
  padding: 0.75rem;
}

.banner-content {
  color: white;
  z-index: 1;
}

.banner-title {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 4em;
  font-weight: 600;
  line-height: auto;
  text-align: center;
  text-transform: uppercase;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.banner-footer {
  text-align: center;
  bottom: 0.25rem;
  left: 50%;
  position: absolute;
  z-index: 1;
  transform: translateX(-50%);
  min-width: 60%;
}

.banner-footer-p {
  color: white;
  font-size: 1rem;
  font-weight: 200;
  margin: auto;
  width: 100%;
}

.banner-center-y {
  position: relative;
  top: calc(50% - 32.15835px);
  width: 100%;
  height: auto;
  transform: translateY(-50%);
}

.btn-lrc{
  background-color: #221F72;
  color: white;
}

.btn-lrc:hover{
  background-color:  #0069d9;
  color: white;
}

.h-100vh-minus-nav {
  height: calc(100vh - 64.3167px);
}

@media only screen and (max-width: 576px){

}
@media only screen and (max-width: 768px){
  .banner-box {
    margin: auto;
    width: 100%;
  }

  .banner-footer{
    display: none;
  }

  .banner-title{
    font-size:2em;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 992px){
  .banner-center-y {
    top: calc(50% - 34.6px);
  }

  .h-100vh-minus-nav{
    height: calc(100vh - 69.2px);
  }
}

/*ACCORDION*/
#toggleNav {
  display: inline-block;
  background-color: #221F72;
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 10px;
  left: calc(25% + 6px);
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  z-index: 1;
  padding-left: 0;
  padding-right: 3px;
  font-size: 17px;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
}
#toggleNav.show {
  opacity: 0.75;
  visibility: visible;
}
#toggleNav:active {
  background-color: #221F72;
}
#toggleNav:hover {
  opacity: 1;
  cursor: pointer;
  background-color: #221F72;
}
#toggleNav.closed{
  left: 10px;
  padding-right: 0px;
  padding-left: 3px;
}


.accordion {
  background-color: #221F72;
  overflow: auto;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 64.3167px;
  height: calc(100vh - 64.3167px);
}

.accordion-title{
  color: #fff;
  margin: 0;
  padding-bottom: 1rem;
  padding-top: 1rem;
  text-align: center;
}

.accordion-title-a:hover{
  text-decoration: none;
  background-color: #0047cc;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
}

.nav-wrap {
  width: 100%;
  margin: 1em auto 0;
}

[hidden] {
  display: none;
  visibility: hidden;
}

.acnav {
  width: 100%;
}

.acnav__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.acnav__list--level1 {
  border: 0px solid #fcfcfc;
}

.has-children > .acnav__label::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: inherit;
  transition: transform 0.3s;
}

.fundamentalsIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1rem;
}

.fundamentalsInnerIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1rem;
}

.emptyIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1rem;
  opacity: 0;
}

.manufacturersIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1rem;
}

.manufacturersInnerIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1rem;
}

.occupantsIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1rem;
}

.schoolIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f19d";
  margin-right: 1rem;
}

.schoolInnerIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f549";
  margin-right: 1rem;
}

.occupantsInnerIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1rem;
}

.officeInnerIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0b1";
  margin-right: 1rem;
}

.officeIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1.3rem;
  margin-left: 0.1rem;
}

.healthcareIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1.3rem;
  margin-left: 0.15rem;
}

.healthcareInnerIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1rem;
}

.seniorcareIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1.1rem;
  margin-left: 0.2rem;
}

.seniorcareInnerIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1rem;
}

.additionalIcon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1.1rem;
  margin-left: 0.2rem;
}

.has-children.is-open > .acnav__label::before {
  transform: rotate(90deg);
  transform-origin: 50% 50%;
}

.acnav__link, .acnav__label {
  display: block;
  font-size: 1rem;
  padding: .5em;
  margin: 0;
  cursor: pointer;
  color: #fcfcfc;
  background: #221F72;
  transition: color 0.25s ease-in, background-color 0.25s ease-in;
}

.acnav__link:hover, .acnav__label:hover {
  color: #e3e3e3;
  background: #f0f5ff;
  color: black;
  text-decoration: none;
}

.acnav__label a {
  color: inherit;
  text-decoration: none;
}

.acnav__link.active {
  background-color: #f0f5ff;
  color: black;
}

.acnav__label a:hover {
  color: inherit;
  text-decoration: none;
}

.acnav__link a {
  color: inherit;
  text-decoration: none;
}

.acnav__link a:hover {
  color: inherit;
  text-decoration: none;
}

.acnav__link--level2, .acnav__label--level2 {
  padding-left: 3em;
  background: #494188;
}

.acnav__link--level2:hover, .acnav__label--level2:hover {
  background: #f0f5ff;
  color: black;
  text-decoration: none;
}

.acnav__link--level3, .acnav__label--level3 {
  padding-left: 5em;
  background: #7770a6;
}

.acnav__link--level3:hover, .acnav__label--level3:hover {
  background: #f0f5ff;
  color: black;
  text-decoration: none;
  color: black;
}

.acnav__list--level2, .acnav__list--level3, .acnav__list--level4 {
  display: none;
}

.is-open > .acnav__list--level2, .is-open > .acnav__list--level3, .is-open > .acnav__list--level4 {
  display: block;
}

@media only screen and (max-width: 768px){
  .accordion{
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    top: auto;
    z-index: 1030;
    height: auto;
    max-height: calc(100vh - 50px);
  }

  #toggleNav{
    display: none;
  }
}
@media only screen and (max-width: 992px){
  #toggleNav{
    left: calc(41.666667% + 10px);
  }
}
@media only screen and (max-width: 1200px){
  #toggleNav{
    left: calc(33.33333% + 10px);
  }
}
@media (min-width: 992px) {
  .nav-wrap {
    width: 50%;
  }
}

/*TEXT*/
article {
  margin-bottom: 2.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

figure{
  display: block;
  margin: 0 0 1.5rem 0;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

figure .img{
  width: 100%;
  padding: 0;
  margin: 0;
}

figure figcaption{
  padding: 0.5rem 1rem;
  font-size: 70%;
  font-style: italic;
  margin-top: 1.5rem;
  background-color: #221F7228;
  border-radius: 0.25rem;
}

.article-content{
  margin-top: 1.5rem;
  padding-right: 1.5rem;
}

.animation-card-bg{
  background: #ededed;
}

.animation-card-ul{
  font-size: 1rem;
}

.section-inner-title{
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 800;
}

.section-title-container{
  border-bottom: 2px solid #383838;
  text-align: center;
}

.section-title{
  margin: .5rem 0;
}



@media only screen and (max-width: 768px){

}
@media only screen and (max-width: 992px){
  article{
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .mobile-figure{
    float: none;
    padding: 1rem;
    width: 100%;
  }

  .mobile-figure img{
    float: none;
    width: 100%;
    margin: 0;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 1200px){
  
}

/*GENERAL*/
html, body {
  font-family: arial;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.2rem;
}

#contentRow{
  margin: 0;
}

#contentRow-container{
  padding: 0;
}

.anchored::before{
  content: "";
  display: block;
  height: 64.3167px;
  margin: 64.3167px 0 0;
}

.drop-shadow{
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), 0 10px 10px rgba(0, 0, 0, 0.24);
}

.sticky-top {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 0;
}

@media only screen and (max-width: 768px){
  .anchored{
    margin-top: -69.2px;
    padding-top: 69.2px;
  }
}
