#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: 600px;
}
.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%;
  }
}
#shop header {
  position: relative;
  margin-bottom: 50px;
}
