#popup {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  z-index: 100;
}
#popup > div img {
  width: 500px;
  object-fit: contain;
}
#popup .close {
  font-size: 2rem;
  position: absolute;
  top: 15px;
  right: 15px;
}
#popup #newSchoolLocations {
  position: relative;
  width: 500px;
  height: 500px;
}
#popup #newSchoolLocations img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}
#popup #newSchoolLocations .newLocationsContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(18, 45, 87, 0.5);
}
#popup #newSchoolLocations .newLocationsContainer h1 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 700;
  background: -webkit-linear-gradient(#ffffff, #E1AC48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#popup #newSchoolLocations .newLocationsContainer h2 {
  color: #ffffff;
  font-size: 30px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 30px;
}
#popup #newSchoolLocations .newLocationsContainer .text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  width: 80%;
  margin: 0 auto 15px auto;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #popup #newSchoolLocations {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  #popup #newSchoolLocations .newLocationsContainer {
    margin: 0 auto;
  }
}
@media screen and (max-width: 470px) {
  #popup #newSchoolLocations .newLocationsContainer h1 {
    font-size: 36px;
  }
  #popup #newSchoolLocations .newLocationsContainer h2 {
    font-size: 18px;
  }
}
#popup #schoolOpenHouse {
  position: relative;
  width: 500px;
  height: 500px;
}
#popup #schoolOpenHouse .openHouseContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(18, 45, 87, 0.5);
}
#popup #schoolOpenHouse .openHouseContainer h1 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 700;
  background: -webkit-linear-gradient(#ffffff, #E1AC48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#popup #schoolOpenHouse .openHouseContainer h2 {
  color: #ffffff;
  font-size: 30px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 30px;
}
#popup #schoolOpenHouse .openHouseContainer .text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  width: 80%;
  margin: 0 auto 15px auto;
  text-align: center;
}
#popup #schoolOpenHouse .openHouseContainer .openHouseList {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  background: rgba(18, 45, 87, 0.5);
  padding: 20px 0;
}
#popup #schoolOpenHouse .openHouseContainer .openHouseList .left, #popup #schoolOpenHouse .openHouseContainer .openHouseList .right {
  width: calc(50% - 10px);
}
#popup #schoolOpenHouse .openHouseContainer .openHouseList .left .location, #popup #schoolOpenHouse .openHouseContainer .openHouseList .right .location {
  font-size: 26px;
  color: #E1AC48;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
}
#popup #schoolOpenHouse .openHouseContainer .openHouseList .left .datetime, #popup #schoolOpenHouse .openHouseContainer .openHouseList .right .datetime {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
}
#popup #schoolOpenHouse .openHouseContainer .openHouseList .left .buttonGroup, #popup #schoolOpenHouse .openHouseContainer .openHouseList .right .buttonGroup {
  display: flex;
  align-items: center;
  justify-content: center;
}
#popup #schoolOpenHouse .heading {
  background: #122D57;
  color: #ffffff;
  font-weight: 700;
  padding: 0.5rem 2rem;
  font-size: 2.4rem;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
#popup #schoolOpenHouse .subheading {
  color: #0B1C37;
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 700;
  width: 50%;
  margin: 10px auto;
  text-align: center;
}
#popup #schoolOpenHouse .popupBody {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: -100px;
}
#popup #schoolOpenHouse .popupBody .imageBorder {
  border-radius: 50%;
  border: 7px solid #ffffff;
}
#popup #schoolOpenHouse .popupBody .imageBorder img {
  width: 400px;
  object-fit: contain;
}
#popup #schoolOpenHouse .popupBody .text {
  padding-top: 50px;
}
#popup #schoolOpenHouse .popupBody .text p {
  font-size: 2rem;
  color: #0B1C37;
  text-transform: uppercase;
  font-weight: 700;
}
#popup #schoolOpenHouse .popupBody .text hr {
  width: 200px;
}
#popup #schoolOpenHouse .popupBody .text .date {
  text-align: center;
  width: 20rem;
}
#popup #schoolOpenHouse .popupBody .text .date .day {
  font-size: 2.4rem;
  color: #0B1C37;
  margin-bottom: -15px;
  font-weight: 700;
}
#popup #schoolOpenHouse .popupBody .text .date .time {
  font-size: 5rem;
  color: #E1AC48;
  font-weight: 700;
}
#popup #schoolOpenHouse .popupFooter {
  background: #122D57;
  color: #ffffff;
  padding: 30px 50px;
  text-align: right;
  min-height: 150px;
  font-size: 2rem;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  #popup {
    min-width: 95%;
  }
  #popup > div img {
    width: 100%;
    object-fit: contain;
  }
  #popup .close {
    font-size: 2.6rem;
  }
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Lato";
  font-size: 10px;
}

.hide {
  display: none !important;
}

h1 {
  font-size: 3.6rem;
  color: #122D57;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 3.2rem;
  color: #122D57;
  margin-bottom: 1rem;
}

p {
  font-size: 1.7rem;
  color: #737373;
  margin-bottom: 1rem;
  line-height: 2.1rem;
}
p strong {
  font-size: 1.7rem;
  color: #737373;
}

li, a {
  font-size: 1.7rem;
}

hr {
  border: 0;
  height: 5px;
  width: 100%;
  background: #E1AC48;
  border-radius: 999px;
  margin-bottom: 3rem;
}

sup {
  font-size: 0.75em !important;
}

.leftAlign {
  text-align: left;
}
.leftAlign * {
  text-align: left;
}

.rightAlign {
  text-align: right;
}
.rightAlign * {
  text-align: right;
}

.centered {
  text-align: center;
}
.centered * {
  text-align: center;
}

.button {
  display: block;
  box-sizing: border-box;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 1.7rem;
  background-color: #122D57;
  color: #ffffff;
  border: 1px solid #122D57;
  border-radius: 999px;
  text-decoration: none;
  transition: all 200ms ease-in-out;
}
.button.square {
  border-radius: 0;
}
.button.large {
  font-size: 3rem;
  width: 400px;
  padding: 1rem 0;
}
.button.semiLarge {
  width: 300px;
  font-size: 2.2rem;
}
.button.normal {
  width: 200px;
  font-size: 2.2rem;
}
.button.small {
  width: auto;
  font-size: 1.6rem;
  padding: 0.5rem 1.5rem;
}
.button:hover {
  background-color: #ffffff;
  color: #122D57;
  text-decoration: none;
}
.button-alt {
  display: block;
  box-sizing: border-box;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 1.7rem;
  background-color: #ffffff;
  color: #122D57;
  border: 1px solid #122D57;
  border-radius: 999px;
  text-decoration: none;
  transition: all 200ms ease-in-out;
}
.button-alt:hover {
  background: #122D57;
  color: #ffffff;
  text-decoration: none;
}
.button-alt.large {
  font-size: 3rem;
  width: 400px;
  padding: 1rem 0;
}
.button-alt.semiLarge {
  width: 300px;
  font-size: 2.2rem;
}
.button-alt.normal {
  width: 200px;
  font-size: 2.2rem;
}
.button-alt.small {
  width: 150px;
  font-size: 1.8rem;
}
.button-alt.transparent-white {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.button-alt.transparent-blue {
  background: transparent;
  color: #122D57;
  border-color: #122D57;
}
.buttonGroup {
  display: flex;
  box-sizing: border-box;
  padding: 15px 0;
}
.buttonGroup.inline {
  flex-direction: row;
  align-items: center;
}
.buttonGroup.inline .button {
  margin: 0 1em;
}
.buttonGroup.stacked {
  flex-direction: column;
}
.buttonGroup.rightAlign {
  justify-content: flex-end;
}
.buttonGroup.leftAlign {
  justify-content: flex-start;
}
.buttonGroup.centered {
  justify-content: center;
}

.flexRow {
  display: flex;
  flex-direction: row;
}
.flexRow .left,
.flexRow .right {
  width: 50%;
  box-sizing: border-box;
}
.flexRow .left {
  padding: 15px 50px 15px 130px;
}
.flexRow .right {
  padding: 15px 130px 15px 50px;
}

.flexColumn {
  display: flex;
  flex-direction: column;
}
.flexColumn.centered {
  justify-content: center;
  align-items: center;
}

.alignLeft {
  text-align: left;
}
.alignCenter {
  text-align: center;
}
.alignRight {
  text-align: right;
}

.pagePrimary {
  display: block;
  width: 100%;
  min-height: 50vh;
}
.pageSecondary {
  display: flex;
  min-height: 50vh;
}
.pageSecondary.contactTheme .body {
  flex-basis: 60%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 15px;
}
.pageSecondary.contactTheme .contact {
  flex-basis: 40%;
  height: 100%;
  box-sizing: border-box;
  padding: 30px 15px;
}

@media screen and (max-width: 1400px) {
  .flexRow .left,
.flexRow .right {
    padding: 15px 50px;
  }
}
@media screen and (max-width: 1000px) {
  .flexRow {
    flex-direction: column;
  }
  .flexRow .left, .flexRow .right {
    width: 100%;
  }

  .pageSecondary.contactTheme {
    flex-direction: column;
  }
}
.mobileNav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 325px;
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.25);
  background: #ffffff;
  transition: right 1s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 5px;
  box-sizing: border-box;
}
.mobileNav.hidden {
  right: -325px;
}
.mobileNav .close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
}
.mobileNav .close i {
  font-size: 2rem;
  color: #777777;
}
.mobileNav .contact {
  padding: 30px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobileNav .contact img {
  max-width: 75px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}
.mobileNav .contact .phone {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
.mobileNav .contact .phone a, .mobileNav .contact .phone i {
  font-size: 2.5rem;
  color: #122D57;
  text-decoration: none;
}
.mobileNav .contact .phone i {
  margin-right: 1rem;
}
.mobileNav .contact ul {
  list-style-type: none;
  margin-bottom: 1.5rem;
}
.mobileNav .contact ul.quickLinks {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.mobileNav .contact ul.quickLinks li a {
  display: flex;
  border: 1px solid #E1AC48;
  border-radius: 0.5rem;
  box-sizing: border-box;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 200ms ease-in-out;
  color: #E1AC48;
  text-decoration: none;
}
.mobileNav .contact ul.quickLinks li a i {
  font-size: 2.5rem;
}
.mobileNav .contact ul.quickLinks li a:hover {
  background: #E1AC48;
}
.mobileNav .contact ul.quickLinks li a:hover i {
  color: #ffffff;
}
.mobileNav .contact ul.social {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.mobileNav .contact ul.social li {
  margin: 0 1rem;
}
.mobileNav .contact ul.social li a {
  display: flex;
  border: 1px solid #122D57;
  border-radius: 0.5rem;
  box-sizing: border-box;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 200ms ease-in-out;
  color: #122D57;
  text-decoration: none;
}
.mobileNav .contact ul.social li a i {
  font-size: 2.5rem;
}
.mobileNav .contact ul.social li a:hover {
  background: #122D57;
}
.mobileNav .contact ul.social li a:hover i {
  color: #ffffff;
}
.mobileNav nav.mainNav {
  width: 100%;
  overflow-y: scroll;
}
.mobileNav nav.mainNav > ul {
  flex-direction: column;
}
.mobileNav nav.mainNav > ul > li {
  width: 100%;
  margin: 0;
  padding: 10px 0 0 0;
  border-bottom: 1px solid #122D57;
  transition: all 500ms ease-in-out;
  background: #ffffff;
}
.mobileNav nav.mainNav > ul > li:first-child {
  border-top: 1px solid #122D57;
}
.mobileNav nav.mainNav > ul > li > a {
  display: block;
  transition: color 500ms ease-in-out;
  padding: 0 1rem;
  color: #122D57;
  margin-bottom: 1rem;
}
.mobileNav nav.mainNav > ul > li:hover {
  background: #122D57;
}
.mobileNav nav.mainNav > ul > li:hover > a {
  color: #ffffff;
}
.mobileNav nav.mainNav > ul > li > ul {
  position: relative;
  display: block;
  height: inherit;
  opacity: 1;
  padding-left: 1.5rem;
  list-style-type: none;
  background: #ffffff;
}
.mobileNav nav.mainNav > ul > li > ul > li > a {
  color: #122D57;
  font-size: 1.6rem;
}
.mobileNav nav.mainNav > ul > li > ul > li:hover {
  background: transparent;
}
.mobileNav nav.mainNav > ul > li > ul > li:hover > a {
  color: #E1AC48;
}

.burgerNavBtn {
  display: none;
  position: relative;
  width: 50px;
  cursor: pointer;
}
.burgerNavBtn .bar {
  display: block;
  margin: 0 auto 5px auto;
  height: 0.5rem;
  width: 100%;
  border-radius: 999px;
  background: #122D57;
}

@media screen and (max-width: 800px) {
  .burgerNavBtn {
    display: block;
  }
}
header {
  position: fixed;
  z-index: 99;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  transition: all 200ms ease-in-out;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
header .logo {
  flex-basis: 30%;
}
header .logo a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}
header .logo a img {
  max-width: 130px;
  margin-right: 1em;
}
header .logo a .logoTitle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
header .logo a .logoTitle .top {
  font-size: 2.6rem;
  color: #122D57;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.15rem;
  font-family: "Cardo";
  line-height: 1.5rem;
}
header .logo a .logoTitle .bottom {
  font-size: 1.7rem;
  color: #122D57;
  font-weight: 500;
  letter-spacing: 0.19rem;
  font-family: "Cardo";
  text-transform: uppercase;
}
header.condense {
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
header.condense .logo img {
  max-width: 60px;
}
header > ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header > ul li {
  margin-left: 2rem;
}
header > ul li a {
  text-decoration: none;
  color: #122D57;
  font-size: 1.7rem;
}
header > ul.social {
  flex-basis: 20%;
}
header > ul.social li {
  opacity: 0.5;
  transition: all 200ms ease-in-out;
}
header > ul.social li:hover {
  opacity: 1;
}
header > ul.social li a i {
  font-size: 3.2rem;
}
header > ul.quickLinks {
  flex-basis: 10%;
}
header > ul.quickLinks li a i {
  font-size: 2.6rem;
  color: #E1AC48;
  transition: all 200ms ease-in-out;
}
header > ul.quickLinks li:hover a i {
  opacity: 0.7;
}
header nav.mainNav {
  flex-basis: 50%;
}
header nav.mainNav > ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav.mainNav > ul > li {
  position: relative;
  margin-left: 1.5rem;
}
header nav.mainNav > ul > li a {
  text-decoration: none;
  color: #122D57;
  font-size: 18px;
  display: block;
  text-align: center;
}
header nav.mainNav > ul > li > ul {
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0B1C37;
  color: #ffffff;
  padding: 0;
  box-sizing: border-box;
  min-width: 225px;
  transition: all 200ms ease-in-out;
}
header nav.mainNav > ul > li > ul li {
  margin: 0;
  padding: 1rem;
  transition: all 200ms ease-in-out;
}
header nav.mainNav > ul > li > ul li a {
  display: block;
  color: #ffffff;
  font-size: 1.7rem;
}
header nav.mainNav > ul > li > ul li:hover {
  background: #122D57;
}
header nav.mainNav > ul > li:hover > ul {
  height: inherit;
  opacity: 1;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 100px 30px;
  box-sizing: border-box;
  background: #0B1C37;
  color: #ffffff;
}
footer .item {
  flex-basis: 22%;
}
footer .item.contact {
  flex-basis: 26%;
}
footer .item.contact .line {
  line-height: 2rem;
  margin-bottom: 1rem;
  display: flex;
}
footer .item.contact .line .left {
  margin-right: 1rem;
  font-size: 1.8rem;
  min-width: 5.5rem;
}
footer .item.contact .bothNumbers {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
footer .item.contact .bothNumbers .left {
  margin-right: 1rem;
  font-size: 1.8rem;
}
footer .item.contact .bothNumbers .right .vanityNumber a {
  margin-bottom: 0;
}
footer .item.contact .bothNumbers .right .realNumber a {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}
footer .item.contact a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 1rem;
}
footer .item.connect {
  flex-basis: 18%;
}
footer .item.copyright {
  flex-basis: 34%;
}
footer .item.copyright .line1 {
  margin-bottom: 1rem;
}
footer .item h2 {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 2.2rem;
}
footer .item * {
  font-size: 1.6rem;
}
footer .item ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
footer .item ul li a {
  color: #ffffff;
  text-decoration: none;
}
footer .item ul.inline {
  display: inline-block;
}
footer .item ul.inline li {
  display: inline-block;
}
footer .item ul.inline li a {
  opacity: 0.5;
}
footer .item ul.inline li:after {
  display: inline-block;
  content: "|";
  margin: 0 1rem;
  color: #ffffff;
}
footer .item ul.inline li:last-child:after {
  display: none;
}
footer .item ul.social li {
  margin-right: 2rem;
}
footer .item ul.social li a i {
  font-size: 3rem;
}
footer .item ul.quickLinks {
  display: none;
}

@media screen and (max-width: 1400px) {
  header .logo {
    flex-basis: 35%;
  }
  header nav.mainNav {
    flex-basis: 47.5%;
  }
  header ul.social {
    flex-basis: 17.5%;
  }
}
@media screen and (max-width: 1300px) {
  header .logo a .logoTitle .top {
    font-size: 18px;
  }
  header .logo a .logoTitle .bottom {
    font-size: 15px;
  }
  header .logo a img {
    max-width: 100px;
  }
}
@media screen and (max-width: 1200px) {
  header .logo a img {
    max-width: 75px;
  }
  header .logo a .logoTitle .top {
    font-size: 17px;
  }
  header .logo a .logoTitle .bottom {
    font-size: 13px;
  }

  footer {
    flex-direction: column;
  }
  footer .contact,
footer .address,
footer .copyright,
footer .connect {
    width: 100%;
    text-align: center;
    margin-bottom: 4rem;
  }
  footer .item ul.social {
    justify-content: center;
  }
  footer .item ul.social li:last-child {
    margin-right: 0;
  }
  footer .item.contact .line {
    justify-content: center;
  }
  footer .item.contact .line .bothNumbers {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 1130px) {
  header nav.mainNav {
    flex-basis: 54%;
  }
  header ul.quickLinks {
    flex-basis: 8%;
  }
  header ul.social {
    flex-basis: 12%;
  }
}
@media screen and (max-width: 1000px) {
  header .logo {
    flex-basis: 20%;
  }
  header .logo a .logoTitle {
    display: none;
  }
  header .logo a img {
    max-width: 130px;
    margin-right: 0;
  }
  header nav.mainNav {
    flex-basis: 60%;
  }
}
@media screen and (max-width: 910px) {
  header .logo {
    flex-basis: 20%;
  }
  header .logo a img {
    max-width: 100px;
  }
  header nav.mainNav {
    flex-basis: 80%;
  }
}
@media screen and (max-width: 800px) {
  header > nav.mainNav {
    display: none;
  }
  header > ul.social {
    display: none;
  }
  header > ul.quickLinks {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  header {
    max-height: 80px;
  }
  header .logo {
    flex-basis: 70%;
  }
  header .logo a img {
    margin-right: 1rem;
    max-width: 75px;
  }
  header .logo a .logoTitle {
    display: block;
  }
}
.collapseList {
  display: block;
  box-sizing: border-box;
  width: 90%;
  margin: 15px 0;
}
.collapseList .listItem {
  display: block;
  border-width: 1px;
  border-style: solid;
  border-color: #000;
  border-bottom: 0;
  box-sizing: border-box;
  cursor: pointer;
}
.collapseList .listItem:last-child {
  border-bottom: 1px solid #000;
}
.collapseList .listItem .title {
  padding: 15px 10px;
  box-sizing: border-box;
  transition: all 200ms ease-in-out;
  font-size: 2rem;
  margin: 0;
}
.collapseList .listItem .title:hover {
  background: #122D57;
  color: #fff;
}
.collapseList .listItem .body {
  display: block;
  box-sizing: border-box;
  padding: 0 10px;
  transition: max-height 750ms ease-in-out;
  overflow: hidden;
  max-height: 500px;
}
.collapseList .listItem .body.collapse {
  max-height: 0;
}
.collapseList .listItem .body .inner-body {
  font-size: 1.7rem;
  padding: 10px;
  box-sizing: border-box;
}
.collapseList .listItem .body .inner-body * {
  font-size: 1.7rem;
}
.collapseList .listItem .body .inner-body ol {
  box-sizing: border-box;
  padding-left: 30px;
}
.collapseList .listItem .body .inner-body ol li {
  margin-bottom: 1rem;
}
.collapseList .listItem .body .inner-body ol li .bulletHeading {
  font-weight: 700;
}
.collapseList .listItem .body ul {
  list-style-type: circle;
  padding-left: 30px;
}

@media screen and (max-width: 600px) {
  .collapseList {
    width: 100%;
  }
}
#home .primaryBanner {
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url("/images/banners/home_banner_desktop.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
#home .primaryBanner #carouselBanner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
#home .primaryBanner #carouselBanner .carousel-inner {
  width: 100%;
  height: 100%;
}
#home .primaryBanner #carouselBanner .carousel-inner .carousel-item {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#home .primaryBanner #carouselBanner .carousel-inner .carousel-item:first-child {
  background-image: url("/images/banners/fort_myers_hybrid_school_family.jpg");
}
#home .primaryBanner #carouselBanner .carousel-inner .carousel-item:nth-child(2) {
  background-image: url("/images/banners/home_banner_desktop.jpg");
}
#home .primaryBanner #carouselBanner .carousel-inner .carousel-item:last-child {
  background-image: url("/images/banners/fort_myers_hybrid_school_kids_science.jpg");
}
#home .primaryBanner .opacityFilter {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  z-index: 2;
}
#home .primaryBanner .cta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: left;
  color: #ffffff;
  z-index: 3;
  padding: 15px 30px;
  box-sizing: border-box;
}
#home .primaryBanner .cta h1 {
  font-size: 4rem;
  color: #ffffff;
}
#home .primaryBanner .cta h2 {
  font-size: 2rem;
  font-weight: 300;
  color: #ffffff;
}
#home .primaryBanner .cta .buttonGroup {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}
#home .primaryBanner .cta .buttonGroup a {
  display: block;
}
#home .primaryBanner .cta .buttonGroup a:hover {
  text-decoration: none;
}
#homeAbout {
  padding: 15px 0;
  box-sizing: border-box;
}
#homeAbout .flexRow .left .button.normal {
  margin: 30px 0 0 auto;
}
#homeAbout .flexRow .right {
  overflow: hidden;
}
#homeAbout .flexRow .right img {
  width: 100%;
  object-fit: contain;
}
#homeAcademics {
  padding: 15px 0;
  box-sizing: border-box;
}
#homeAcademics .flexRow .right .button.normal {
  margin: 30px auto 0 0;
}
#homeAcademics .flexRow .left {
  overflow: hidden;
}
#homeAcademics .flexRow .left img {
  width: 100%;
  object-fit: contain;
}
#homeAdmissions {
  padding: 30px 15px 100px 15px;
  box-sizing: border-box;
}
#homeAdmissions .flexColumn hr {
  width: 300px;
}
#homeAdmissions .flexColumn .flexRow {
  align-items: flex-start;
}
#homeAdmissions .flexColumn .flexRow .item {
  flex-basis: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0 30px;
  text-align: center;
}
#homeAdmissions .flexColumn .flexRow .item .icon {
  text-align: center;
  width: 50%;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
#homeAdmissions .flexColumn .flexRow .item .icon img {
  object-fit: contain;
  height: 100px;
}
#homeAdmissions .flexColumn .flexRow .item .title {
  font-size: 3rem;
  margin-bottom: 1.8rem;
  color: #122D57;
}
#homeAdmissions .flexColumn .flexRow .item .description {
  font-size: 1.8rem;
  text-align: center;
}
#homeAdmissions .flexColumn .buttonGroup {
  padding: 30px 0 0 0;
}
#homeDifferent {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 575px;
}
#homeDifferent .heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #ffffff, transparent);
  z-index: 10;
}
#homeDifferent .heading h2 {
  color: #122D57;
}
#homeDifferent .heading hr {
  width: 350px;
  margin: 0 auto 15px auto;
}
#homeDifferent .tileContainer {
  display: flex;
  height: 100%;
  flex-direction: row;
  align-items: flex-start;
}
#homeDifferent .tileContainer .tile {
  flex-basis: 20%;
  position: relative;
  overflow: hidden;
}
#homeDifferent .tileContainer .tile:hover .back {
  cursor: pointer;
  left: 0;
}
#homeDifferent .tileContainer .tile:hover .front .title {
  opacity: 0;
}
#homeDifferent .tileContainer .tile .front {
  position: relative;
  height: 575px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 500ms ease-in-out;
}
#homeDifferent .tileContainer .tile .front .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 0 15px 0;
  text-align: center;
  color: #333333;
  font-size: 3rem;
  background: linear-gradient(to top, #ffffff, transparent);
  transition: all 500ms ease-in-out;
}
#homeDifferent .tileContainer .tile .front.entrepreneurship {
  background-image: url("/images/home/tiles_entrepreneurship.jpg");
}
#homeDifferent .tileContainer .tile .front.leadership {
  background-image: url("/images/home/tiles_leadership.jpg");
}
#homeDifferent .tileContainer .tile .front.relationalSkills {
  background-image: url("/images/home/tiles_relational_skills.jpg");
}
#homeDifferent .tileContainer .tile .front.healthWellness {
  background-image: url("/images/home/tiles_health_wellness.jpg");
}
#homeDifferent .tileContainer .tile .front.muchMore {
  background-image: url("/images/home/tiles_much_more.jpg");
}
#homeDifferent .tileContainer .tile .back {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  height: 575px;
  width: 100%;
  top: 0;
  left: 100%;
  background: rgba(225, 172, 72, 0.8);
  transition: all 500ms ease-in-out;
  z-index: 9;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
}
#homeDifferent .tileContainer .tile .back h3 {
  font-size: 3rem;
  color: #333333;
  margin-bottom: 1rem;
}
#homeDifferent .tileContainer .tile .back p {
  font-size: 1.6rem;
  color: #333333;
}
#homePromo {
  box-sizing: border-box;
  padding: 75px 0;
  /*background: linear-gradient(to bottom, white, #999999, #555555, #999999, #555555, #999999, white);*/
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#homePromo .videoContainer {
  position: relative;
  width: 75%;
}
#homePromo .videoContainer video {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #ffffff;
}
#homePromo .videoContainer .topLeft {
  width: 40px;
  height: 40px;
  position: absolute;
  top: -30px;
  left: -30px;
  border-top: 5px solid #E1AC48;
  border-left: 5px solid #E1AC48;
}
#homePromo .videoContainer .bottomRight {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-bottom: 5px solid #E1AC48;
  border-right: 5px solid #E1AC48;
}
#homeFAQ {
  box-sizing: border-box;
  padding: 50px 0;
}
#homeFAQ .flexRow .left {
  flex-basis: 40%;
  border-right: 5px solid #122D57;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 50px;
}
#homeFAQ .flexRow .left > div {
  font-size: 8rem;
  font-weight: 700;
  color: #122D57;
  text-align: right;
}
#homeFAQ .flexRow .right {
  flex-basis: 60%;
  padding: 15px 50px;
}
#homeFAQ .flexRow .right .faq .collapseList {
  width: 100%;
}
#homeFAQ .flexRow .right .faq .collapseList .listItem .body .inner-body .locationRow {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
#homeFAQ .flexRow .right .faq .collapseList .listItem .body .inner-body .locationRow .locationTile {
  width: calc(50% - 20px);
}
#homeFAQ .flexRow .right .faq .collapseList .listItem .body .inner-body .locationRow .locationTile h3 {
  color: #122D57;
  font-weight: 700;
  font-size: 18px;
}
#homeFAQ .flexRow .right .readMore {
  padding: 3rem 0;
  box-sizing: border-box;
}
#homeFAQ .flexRow .right .readMore a {
  text-decoration: none;
  color: #E1AC48;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  text-align: right;
  align-items: center;
  justify-content: flex-end;
}
#homeFAQ .flexRow .right .readMore a i {
  font-size: 2rem;
  margin-left: 1rem;
}
#homeWork {
  background: #ffffff;
  padding: 50px 0;
  border-top: 4px solid #0B1C37;
}
#homeWork h2 {
  color: #122D57;
  margin-bottom: 1rem;
}
#homeWork p {
  width: 500px;
  text-align: center;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1300px) {
  #homeDifferent .tileContainer .tile {
    flex-basis: 25%;
  }
  #homeDifferent .tileContainer .tile:last-child {
    display: none;
  }
  #homeDifferent .tileContainer .tile .back p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1270px) {
  #homeAdmissions .flexColumn .flexRow .item .title {
    font-size: 2rem;
  }
  #homeAdmissions .flexColumn .flexRow .item .description {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  #homeFAQ .flexRow .left {
    flex-basis: 30%;
  }
  #homeFAQ .flexRow .left > div {
    font-size: 6rem;
  }
  #homeFAQ .flexRow .right {
    flex-basis: 70%;
  }
}
@media screen and (max-width: 1100px) {
  #home .primaryBanner .cta h1 {
    font-size: 6rem;
    margin-bottom: 3rem;
  }
  #home .primaryBanner .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 1000px) {
  #homeAbout .flexRow .left {
    order: 2;
  }
  #homeAbout .flexRow .left h2 {
    text-align: center;
  }
  #homeAbout .flexRow .left p {
    text-align: center;
  }
  #homeAbout .flexRow .left .button.normal {
    margin: 30px auto;
  }
  #homeAbout .flexRow .right {
    order: 1;
  }
  #homeAbout .flexRow .right img {
    display: block;
    max-width: 600px;
    margin: 0 auto;
  }
  #homeAcademics .flexRow .left img {
    display: block;
    max-width: 600px;
    margin: 0 auto;
  }
  #homeAcademics .flexRow .right h2 {
    text-align: center;
  }
  #homeAcademics .flexRow .right p {
    text-align: center;
  }
  #homeAcademics .flexRow .right .button.normal {
    margin: 30px auto;
  }
  #homeAdmissions .flexColumn .flexRow {
    flex-direction: row;
  }
  #homeAdmissions .flexColumn .flexRow .item .icon {
    height: 120px;
  }
  #homeAdmissions .flexColumn .flexRow .item .icon img {
    height: 75px;
  }
  #homeFAQ .flexRow .left {
    border-right: 0;
    border-bottom: 5px solid #122D57;
    box-sizing: border-box;
    width: 90%;
    margin: 0 auto;
  }
  #homeFAQ .flexRow .left > div {
    width: 100%;
    text-align: center;
    font-size: 4rem;
  }
  #homeFAQ .flexRow .right {
    padding: 15px;
  }
  #homeDifferent {
    height: auto;
  }
  #homeDifferent .tileContainer {
    flex-wrap: wrap;
  }
  #homeDifferent .tileContainer .tile {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 800px) {
  #home .primaryBanner .cta h1 {
    font-size: 5rem;
    margin-bottom: 2.5rem;
  }
  #home .primaryBanner .cta h2 {
    font-size: 2.25rem;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 700px) {
  #home .primaryBanner {
    background-image: url("/images/banners/home_banner_mobile.jpg");
    background-attachment: unset;
  }
  #homeAdmissions .flexColumn .flexRow {
    flex-direction: column;
  }
  #homeAdmissions .flexColumn .flexRow .item {
    width: 400px;
    margin-bottom: 3rem;
  }
  #homeAdmissions .flexColumn .flexRow .item .icon {
    height: auto;
  }
  #homeAdmissions .flexColumn .buttonGroup.inline {
    flex-direction: column;
  }
  #homeAdmissions .flexColumn .buttonGroup.inline .button-alt {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 600px) {
  #home .primaryBanner .cta h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
  #home .primaryBanner .cta h2 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 550px) {
  #homeWork {
    padding: 50px 15px;
  }
  #homeWork h2 {
    text-align: center;
  }
  #homeWork p {
    width: 100%;
  }
}
