:root {
  --goudy: "Sorts Mill Goudy", serif;
  --roboto: "Roboto", sans-serif;
  --blue: #3F70A2;
  --green: #317622;
  --red: #c53d18;
  --white: #FFFFFF;
  --black: #000000;
  --dark-grey: #1b1b1b;
  --light-grey: #F4F4F4;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--roboto);
}

button {
  font-family: var(--roboto);
}

.left {
  float: left;
}
.right {
  float: right;
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  color: var(--blue);
}

.goudy {
  font-family: var(--goudy);
}
.roboto {
  font-family: var(--roboto);
}



.wrapped {
  max-width: 1200px;
  width: calc(100% - 100px);
  margin: 0 auto;
}
.navContainer {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  overflow: auto;
  width: 100%;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.5);
}
.mobileNav {
  display: none;
}
.blueNav {
  background: var(--blue);
  color: var(--white);
  height: 40px;
  line-height: 40px;
}
.blueNav img {
  height: 18px;
  margin-top: 11px;
}
#navNumber {
  margin-left: 5px;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
#navTimes {
  margin-left: 5px;
  font-size: 13px;
}
#navLocation {
  font-size: 13px;
  margin-left: 10px;
  margin-right: 30px;
  color: white;
}
#navSearchIcon {
  margin-left: 30px;
}
#navSearch {
  height: 30px;
  margin-top: 5px;
  padding: 0px;
  background: none;
  border: none;
  margin-left: 10px;
}
#navSearch::placeholder {
  color: white;
}
#navBookContainer {
  background: var(--green);
  color: white;
  cursor: pointer;
}
#navBookContainer {
  padding-left: 20px;
  padding-right: 20px;
  height: 40px;
}
#navCalendarText {
  font-weight: bold;
  font-size: 13px;
  float: left;
  margin-left: 10px;
}
.whiteNav {
  overflow: auto;
  background: white;
  line-height: 90px;
}
#navLogo {
  height: 40px;
  margin-top: 25px;
}
#navNav {

}
#navNav .nav {
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  cursor: pointer;
  padding-top: 25px;
}
#navChev {
  transform: rotate(90deg);
  margin-left: 10px;
}
.subNav {
  padding-top: 50px;
  padding-bottom: 25px;
  display: none;
  width: 100%;
  background: white;
  overflow: auto;
}
.subNavText {
  width: 45ch;
}
.subNavNav {
  width: calc(50% - 50px);
}
h3 {
  font-weight: 500;
  color: var(--blue);
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 15px;
}
.subNavDescription {
  font-weight: 300px;
  line-height: 19px;
  margin-bottom: 0px;
}
.navLine {
  height: 1px;
  background: var(--blue);
  width: 100%;
}
.navLineHalf {
  height: 1px;
  background: var(--blue);
  width: calc(50% - 10px);
  margin-bottom: 20px;
}
.subNavNav .halfNav {
  width: calc(50% - 10px);
  height: 40px;
  line-height: 40px;
}
.subNavNav .halfNav:hover {
  color: var(--blue);
  cursor: pointer;
  font-weight: 300px;
}
#hero {
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
#hero #heroGrid {
  width: 85%;
    max-width: 1200px;
    grid-template-rows: auto;
    grid-template-columns: 450px 1fr;

    grid-row-gap: 16px;
grid-column-gap: 16px;
grid-template-rows: auto auto;
grid-template-columns: 1fr 1fr;
grid-auto-columns: 1fr;
display: grid;
}
#hero #heroGrid #gridContentLeft {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  width: 450px;
}
#hero #heroGrid .heroTitle {
  color: var(--blue);
  letter-spacing: -1.5px;
  margin-top: 0;
  margin-bottom: 18px;
  font-family: var(--goudy);
  font-size: 62px;
  font-weight: 400;
  line-height: 50px;
}
#hero #heroGrid .heroDescription {
  margin-bottom: 25px;
font-size: 20px;
line-height: 26px;
font-weight: 300;
color: var(--dark-grey);
}
#hero #heroGrid button {
  background-color: var(--green);
  color: var(--white);
  border: none;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-top: 10px;
  margin-left: 0;
  padding: 10px 25px 9px;
  font-size: 13px;

  transition: background-color .2s;
  cursor: pointer;
}
#hero #heroGrid button:hover {
  background: var(--blue);
}
#overflowContainer {

}
#overflowContainerInner {
  width: 85%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;

  position: relative;
}
#overflowContainerBoxes {
  grid-column-gap: 30px;
  grid-row-gap: 15px;
  grid-template-rows: auto;

  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
  top: -50px;

}
.overflowBox {
  overflow: auto;
  display: flex;
  align-items: center;
}
.overflowBoxContent {
  align-self: auto;
  background-color: #fff;
  flex-flow: column wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 23px 0 25px 24px;
  display: flex;
}
.overflowBox h3 {
  margin-top: 0;
    margin-bottom: 5px;
    font-size: 22px;
    line-height: 23px;
}
.overflowBoxArrow {
  align-self: center;
  justify-self: center;
  padding: 10px;
  display: flex;
}
.overflowBoxArrow img {
  max-width: 100%;
vertical-align: middle;
display: inline-block;
width: 30px;
}
.overflowText {
  color: var(--dark-grey);
margin-bottom: 0;
font-size: 14px;
line-height: 18px;
text-decoration: none;
}
.overflowBox:hover {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.5);
box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.5);
}
.testRowContainer {
  padding-bottom: 50px;
}
.testRow {
  grid-column-gap: 39px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-auto-columns: 1fr;
    display: grid;
}
.test {
  text-align: center;
}
.test img {
  width: 30px;
  margin-bottom: 10px;
}
.testText {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 700;
  line-height: 21px;
}
.textAuthor {
  font-weight: 300;
  font-size: 14px;
}
.whiteTestButton {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.blueTestButton {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.greenTestButton {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.whiteTestButton button {
  color: var(--white);
  cursor: pointer;
  font-weight: 500;
  background-color: transparent;
  border: 1px solid #fff;
  transition: border-color .2s, background-color .2s;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-top: 10px;
  margin-left: 0;
  padding: 8px 25px 7px;
  font-size: 13px;
  font-weight: 500;
}
.whiteTestButton button:hover {
  border: solid 1px #659fdb;
}

.blueTestButton button {
  color: var(--blue);
  cursor: pointer;
  font-weight: 500;
  background-color: transparent;
  border: 1px solid var(--blue);
  transition: border-color .2s, background-color .2s;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-top: 10px;
  margin-left: 0;
  padding: 8px 25px 7px;
  font-size: 13px;
  font-weight: 500;
}
.blueTestButton button:hover {
  border: solid 1px var(--green);
}

.greenTestButton button {
  color: var(--green);
  cursor: pointer;
  font-weight: 500;
  background-color: transparent;
  border: 1px solid var(--green);
  transition: border-color .2s, background-color .2s;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-top: 10px;
  margin-left: 0;
  padding: 8px 25px 7px;
  font-size: 13px;
  font-weight: 500;
}
.greenTestButton button:hover {
  border: solid 1px var(--blue);
}


#editorBar {
  position: fixed;
  height: calc(100vh - 50px);
  top: 25px;
  width: 50px;
  z-index: 10000;
}

#editorBar .notch {
  background: #c0c2c4;
  cursor: pointer;
  margin-bottom: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 50px;
  height: 50px;
  overflow: hidden;
}
#editorBar .notch .notchContainer {
  float: right;
  height: 50px;
  width: 30px;
  padding-top: 10px;
  margin-right: 10px;
}
#editorBar .notch img {
  height: 20px;
  margin: 0 auto;
}
#editorBar .notch .text {
  font-size: 10px;
  height: 20px;
  overflow: hidden;
  width: 100%;
  text-align: center;
  font-weight: bold;
}
#editorBar .notch:hover {
  width: 60px;
  transition: 0.5s;
}
#editorWindow {
  position: fixed;
  left: -300px;
  padding: 20px;
  top: 25px;
  max-height: calc(100vh - 90px);
  overflow: auto;
  min-height: calc(100vh - 90px);
  width: 260px;
  background: #c0c2c4;
  border-bottom-right-radius: 10px;
  z-index: 10000;
}

.inputContainer {
  margin-bottom: 20px;
  font-family: var(--roboto);
  font-size: 13px;
}
.inputContainer .title {
  font-weight: bold;
  font-size: 14px;
  float: left;
}
.inputContainer .input {
  border: none;
  background: transparent;
  border-bottom: solid 1px black;
  margin-top: 5px;
  height: 30px;
  width: 100%;
  font-family: var(--roboto);
}
.inputContainer .input:focus {
  outline: none;
}
.titleUpdating {
  background: orange;
  font-size: 10px;
  padding: 5px;
  color: white;
  margin-top: -5px;
  border-radius: 5px;
  float: right;
  margin-left: 10px;
}
.titleUpdated {
  background: green;
  font-size: 10px;
  padding: 5px;
  color: white;
  margin-top: -5px;
  border-radius: 5px;
  float: right;
  margin-left: 5px;
}
.newModule {
  display: block;
  height: 50px;
  line-height: 50px;
  border: dashed 1px var(--blue);
  background: #cedff0;
  text-align: center;
  cursor: pointer;
  display: none;
}
.newModule img {
  height: 20px;
  margin-top: 15px;
  opacity: 0.5;
}
.newModule img:hover {
  opacity: 1;
}
.newModuleContainer {
  background: black;
  color: white;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
}
.newModuleContainer .newModuleName {
  font-weight: bold;
}
.newModuleContainer .newModuleDescription {
  font-size: 12px;
  font-style: oblique;
}
.moduleOption {
  height: 40px;
  width: 40px;
  cursor: pointer;
}
.moduleOption img {
  width: 100%;
}
#editorMode {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100000;
  height: 200px;
  width: 200px;
  opacity: 0.5;
}
.moduleEditorTitle {
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: solid 1px #343434;
  padding-bottom: 10px;
  font-size: 20px;
}
.inputContainer .html {
  background: var(--dark-grey);
  color: white;
  width: calc(100%);
  height: 150px;
  font-family: monospace;
  resize: none;
  border: none;
  padding: 10px;
  margin-top: 10px;

}
#autoReload {
  position: fixed;
  left: 10px;
  bottom: 10px;
  height: 20px;
  background: red;
  width: 150px;
  border-radius: 10px;
  overflow: hidden;
  border: solid 2px white;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.75);
  box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.75);
}
#autoReloadInner {
  background: green;
  height: 20px;
  width: 0px;
}
.gridContainer {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  position: relative;
}
.gridContainer .grid {

}
.noMarginPadding {
  margin: 0;
  padding: 0;
}
.smallIcon {
  height: 20px;
}
.mouseable:hover {
  opacity: 0.8;
  cursor: pointer;
  transition: 0.5s;
}
.servicesImage {
  width: 100%;
  min-height: 250px;
  margin-bottom: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.servicesImage .servicesImageText {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  font-size: 22px;
  line-height: 23px;
  font-weight: 700;
}
h2 {
  color: var(--blue);
  font-size: 26px;
}
.relative {
  position: relative;
}
.pageHeader {
  letter-spacing: -1.5px;
margin-top: 0;
margin-bottom: 0;
font-size: 37px;
font-weight: 400;
line-height: 37px;
}
strong {
  color: var(--green);
  font-weight: bold;
}
b {
  color: var(--green);
  font-weight: bold;
}
.greenButton {
  background-color: var(--green);
  color: var(--white);
  border: none;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 10px 25px 9px;
  font-size: 13px;

  transition: background-color .2s;
  cursor: pointer;
}
.greenButton:hover {
  background: var(--blue);
}
.productGrid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
}
.productGrid .product {
  flex: 1;
  padding: 20px;
  padding-top: 0px;
  margin-bottom: 20px;
}
.productRowContainer .product:hover {
  /* -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
transition: 0.5s; */
}
.productImage {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}
.productBrand {
  color: var(--blue);
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 400;
}
.mobileOnly {
  display: none;
}
.productName {
  color: var(--blue);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}
.productTagline {
  color: var(--dark-grey);
    margin-bottom: 10px;
    line-height: 18px;
    font-size: 15px;
    font-weight: 300;
}
.brandBreakdownContainer {
}
.brandBreakdownContainer .supplier {
    height: 60px;
      justify-content: center;
      align-items: center;
      padding: 15px 20px;
      display: flex;
}
.brandBreakdownContainer .supplier img {
  max-height: 50px;
    max-width: 110px;
}
h4 {
  color: var(--green);
  font-size: 22px;
  font-weight: 700;
}


.branchRowContainer {
  display: flex;
  flex: 1;

}
.branchRowContainer .branch {
  flex: 1;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.branchImage {
  width: 100%;
  padding-top: 75%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.branchName {
  color: var(--blue);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}
.branchAddress {
  color: var(--dark-grey);
    margin-bottom: 10px;
    line-height: 18px;
    font-size: 14px;
    font-weight: 300;
}
.branchContact {
  color: var(--dark-grey);
    margin-bottom: 10px;
    line-height: 18px;
    font-size: 14px;
    font-weight: 300;
}
.greenLink {
  color: var(--green);
  text-decoration: underline;
}
.blueArrow {
  color: var(--blue);
  font-weight: 700;
}
.noModules {
  border: dashed var(--blue) 1px;
  width: 400px;
  color: var(--blue) !important;
  margin: 0 auto;
  margin-top: 60px;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
}
.noModules strong {
  color: var(--blue);
}
.noModules p {
  margin-bottom: 0;
  padding-bottom: 0;
}
.dragDrop {
  height: 10px;
  margin-bottom: -0px;
  background: red;
  display: none;
}
.enchancedSupplierBreakdown {
}
.enchancedSupplierBreakdown .esbGrid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.enchancedSupplierBreakdown .esbGrid .grid {

  position: relative;
  margin-bottom: 20px;
}
.gridLeft {


}
.gridMid {


}
.gridRight {


}
.enchancedSupplierBreakdown .esbGrid .grid .gridInner {

}
.enchancedSupplierBreakdown .esbGrid .grid .gridInner .esbImage {
  background: white;
  height: 70px;
  width: 120px;
  padding: 10px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.5);
  float: left;
  margin-top: 20px;

}
.enchancedSupplierBreakdown .esbGrid .grid .gridInner .esbImage .image {
  width: 100%;
  max-height: 50px;
}
.enchancedSupplierBreakdown .esbGrid .grid .gridInner .text {
  background: var(--light-grey);
  padding: 20px;
  margin-left: 80px;
  padding-left: 80px;
}
.module13Title {
  font-family: var(--goudy);
  color: var(--blue);
  font-size: 37px;
  line-height: 1;
  margin-bottom: 10px;
}
.module13Date {
  color: var(--green);
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}
.module13Time {

}
.module13Place {
  margin-top: 10px;
}
.module13CalendarSlot {
  float: left;
  width: calc(100% / 3);
}
.module13CalendarSlotInner {
  margin-left: 10px;
  margin-right: 10px;
  text-align: center;
  border: solid 2px var(--blue);
  border-radius: 10px;
  cursor: pointer;
  color: var(--blue);
}
.module13CalendarSlotInner:hover {
  background: var(--blue);
  color: white;
  transition: 0.5s;
}
.module13CalendarSlotInner .slotDate {
  padding: 10px;
}
.module13CalendarSlotInner .slotDate .day {
  color: inherit;
}
.module13CalendarSlotInner .slotDate .date {
  color: inherit;
}
.module13CalendarSlotInner .slotTime {
  background: var(--blue);
  color: #F4F4F4;
  padding: 5px;
  font-weight: bold;
  font-size: 20px;
}
.module13CalendarHeader {
  color: var(--blue);
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}
.module13CalendarFooter {
  text-align: right;
  color: var(--blue);
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
}
.thirdContainer {
  width: calc(100% / 3);
  float: left;
}
.leftThird {

  margin-right: 20px;
}
.midThird {
  margin-left: 20px;
  margin-right: 20px;

}
.rightThird {

  margin-left: 20px;
}
.module13HPTitle {
  color: var(--blue);
  font-weight: bold;
  font-size: 20px;
}
.module13HPAvatar {
  background-color: #F4F4F4;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  margin-top: 20px;
  margin-bottom: 10px;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
}
.module13HP {
  float: left;
  width: 100%;
  text-align: center;
}
.module13HPName {
  margin-bottom: 0px;
}
.module13HPQualifications {
  font-size: 14px;
  color: var(--blue);
}
.thirdContainer .midThird p {
  font-size: 14px;
  line-height: 1.5em;
}

.wteContainer {
  margin-top: 20px;
  overflow: auto;
}
.wteContainer .wteIcon {
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 10px;
}
.wteContainer .wteText {
  float: left;
  width: calc(100% - 60px);
  font-size: 14px;
  height: 40px;
}
.module16IndContainer {
  float: left;
  width: calc(100% / 4);
  margin-top: 20px;
  background: white;
}
.module16IndContainerInner {
  padding: 20px;

}
.module16IndContainerLeft {
  margin-right: 10px;
  width: calc((100% / 4) - 10px);
}
.module16IndContainerMid {
  margin-left: 10px;
  margin-right: 10px;
  width: calc((100% / 4) - 20px);
}
.module16IndContainerRight {
  margin-left: 10px;
  width: calc((100% / 4) - 10px);
}
.module16Location {
  font-weight: bold;
  color: var(--green);
  font-size: 20px;
  margin-bottom: 10px;
}
.module16Date {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}
.module16Address {
  margin-bottom: 20px;
  font-size: 14px;
  min-height: 50px;
  overflow: auto;
}
.module16Button {
  color: var(--green);
  width: 100%;
  border: solid 1px var(--green);
  height: 40px;
  border-radius: 20px;
  background: none;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}
.module16Button:hover {
  color: var(--blue);
  border: solid 1px var(--blue);
  transition: 0.2s;

}
.module14Parking {
  background: var(--light-grey);
  padding: 20px;
  margin-top: 20px;
  font-size: 14px;
}

.blueBoxImage {
  width: calc(100% - 20px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.blueBoxText {
  position: absolute;
  right: -20px;
  bottom: -30px;
  background: var(--blue);
  color: var(--white);
  max-width: 300px;
  padding: 20px;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  line-height: 1.2em;
}
.blueBoxTextMobile {
  display: none;
}
.branchCheckContainer {
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  display: grid;
}
.branchCheckContainer .branchCheck {
  border-radius: 10px;
}
.branchCheckContainer .branchCheck .branchCheckInner {
  padding: 20px;
}
.branchCheckName {
  font-weight: bold;
  font-size: 20px;
}
.branchCheckAddress {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
  height: 50px;
}
.branchCheckButton {
  width: 100%;
  background: none;
  height: 40px;
  border-radius: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.slimDivide {
  height: 2px;
  background: #e2dfdf;
}
.brandImageImage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: calc(100% - 100px);
}
.brandImageBrand {
  width: 200px;
  background: white;
  padding: 20px;
  border: solid 1px grey;
  position: absolute;
  left: -100px;
  top: 0;
}
.brandImageBrand img {
  width: 100%;
}
.roundle {
  width: 30%;
  padding-bottom: 30%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  float: left;
  margin-right: 20px;
}
.fullRoundle {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  float: left;
  margin-right: 20px;
}
.roundleText {
  float: right;
  width: calc(70% - 20px);
}
ul {
  margin-left: 0px;
  padding-left: 0px;
}
ul li {
  margin-left: 0px;
  list-style-type: none;
  margin-bottom: 10px;
  border-left: solid 3px #F4F4F4;
  padding-left: 10px;
}
ul li:last-child {
  margin-bottom: 0px;
}
.desktopHidden {
  display: none;
}
.mobileOnly {
  display: none;
}
.desktopOnly {
  display: block;
}
.module14HPSection {
  overflow: auto;
}
.module14HP {
  float: left;
  width: calc((100% / 3) - 20px);
  text-align: center;
  margin-right: 20px;
}
.module20Container {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.module20Inner {
  background: rgb(255,255,255);
  background: -moz-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  background: -webkit-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.module20InnerContent {
  padding: 20px;
}
.styleGallery {
  display: grid;
  grid-template-columns: repeat(10,1fr);
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}
.styleGalleryImage {
  width: 100px;
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
#modal {
  position: fixed;
  width: 70vw;
  left: calc(15vw);
  height: 80vh;
  top: 10vh;
  z-index: 10000;
  background: white;
  overflow: hidden;
  display: none;
  overflow-y: scroll;
}
#imageModal {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 10000;
  overflow: hidden;
  display: none;
}
#imageModal img {
  max-height: 80vh;
}
#modalBG {
  background: var(--dark-grey);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  opacity: 0.8;
  display: none;
}
.module22Search {
  width: 250px;
  float: left;
}
#module22Results {
  width: calc(100% - 300px);
  float: right;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-row-gap: 40px;
  grid-column-gap: 40px;
}
.searchContainer {
  margin-bottom: 10px;
}
.searchContainer .title {
  font-size: 16px;
  font-weight: bold;
}
.searchContainer .input {
  height: 30px;
  background: var(--light-grey);
  color: var(--dark-grey);
  border: none;
  padding-left: 10px;
  padding-right: 10px;
  width: calc(100% - 20px);
  line-height: 30px;
  font-size: 14px;
}
.searchContainer .inputSelected {
  height: 30px;
  background: var(--green);
  color: white;
  border: none;
  padding-left: 10px;
  padding-right: 10px;
  width: calc(100% - 20px);
  line-height: 30px;
  font-size: 14px;
}
.searchContainer .input:focus {
  outline: none;
}
.greenOutlineButton {
  height: 40px;
  border: solid 1px var(--green);
  background: white;
  color: var(--green);
  text-transform: uppercase;
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
}
#module22NoResults {
  background: var(--green);
  color: white;
  padding: 20px;
  text-align: center;
  float: right;
  width: calc(100% - 300px);
  border-radius: 10px;
  font-weight: 300;
  font-size: 18px;
  display: none;
}
.module23ProductData {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 50px;
}
.module23ProductImage {
  width: 80%;
  margin: 0 auto;
}
.module23SupportingImages {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
}
.module23SupportingImage {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: none;
  cursor: pointer;
}
.module23ScoreContainer {
border-bottom: solid 2px var(--light-grey);
padding-bottom: 20px;
margin-bottom: 20px;
}
.module23FeatureList {
  font-weight: 300;
  font-size: 14px;
}
.module23ScoreContainer .score {
  float: left;
  width: 25%;
}
.module23ScoreContainer .description {
  width: calc(75% - 50px);
  float: right;
}
.module23Score {
  overflow: auto;
  margin-bottom: 10px;
}
.module23Score {
  margin-bottom: 20px;
}
.module23Score:last-child {
  margin-bottom: 0px;
}
.module23Score .score .star {
  height: 15px;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.module23Score .description {
  font-size: 12px;
  line-height: 1.5em;
}
.module23GreyBox {
  padding: 20px;
  background: var(--light-grey);
  margin-top: 50px;
  font-size: 14px;
  font-weight: 300;
}
.module23Blurb {
  margin-top: 20px;
  margin-bottom: 50px;
  font-weight: 300;
  font-size: 14px;
}
.module23CTA {
  width: 70%;
  text-align: right;
  float: right;
}
.module11Container {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  flex-wrap: wrap;
  overflow: auto;
  align-items: stretch;
}
.module24Container {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 100px;
  row-gap: 50px;
}
.module24Inner {
  font-weight: 300;
  font-size: 14px;
  background: white;
  padding: 20px;
  border-radius: 20px;
}
.module24Left {
  width: calc((100% / 3) - 20px);
  float: left;
}
.module24Right {
  width: calc((100% / 3) * 2);
  float: right;
}
.module24Avatar {
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background-size: cover;
  background-repeat: none;
  background-position: center;
  background-color: #F4F4F4;
}
.module25Container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 50px;
  row-gap: 50px;
}
.module25Inner {
  background: var(--light-grey);
  padding: 20px;
  font-weight: 300;
  font-size: 14px;
}
.module25Image {
  height: 250px;
  width: 100%;
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}
.module26Container {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 50px;
  row-gap: 50px;
}
.module26Icon {
  width: 30px;
  margin-bottom: 20px;
}
.module26Inner {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 300;
}
.onlineHearingTest {
  width: 100%;
  height: 700px;
  border: none;
  border-radius: 20px;
}
.module27Container {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 30px;
  row-gap: 30px;
}
.module27Inner {
  background: var(--light-grey);
  border-radius: 20px;
  overflow: hidden;
}
.module27Image {
  height: 150px;
  background: var(--light-grey);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.module28Container {

}
.module28Title {
  float: left;
  width:calc(100% - 200px);
  margin-top: 0px;
}
.module28Image {
  width: 100%;
  border-radius: 20px;
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 20px;
  margin-bottom: 20px;
}
.module28Content {
  font-weight: 300;
  line-height: 1.5em;
  font-size: 16px;
  width: 100%;
  overflow-wrap: break-word;

}
.module28Content p {
  overflow-wrap: break-word;

}
.module30Container {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 30px;
  row-gap: 30px;
}
.module30Container .module30Inner {
  background: white;
  padding: 20px;
  font-size: 14px;
}
.module31Container {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 300;
}
.module31Left {
  float: left;
  width: calc(60% - 20px);
}
.module31Right {
  float: right;
  width: 40%;
}
.module32Container {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  column-gap: 20px;
  background: var(--dark-grey);
  color: white;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5em;
  padding-top: 50px;
}
.clickableText {
  color: var(--blue);
  font-weight: bold;
}
.heroTitle {
  font-size: 40px;
  font-family: var(--goudy);
  font-weight: normal;
  line-height: 1em;
  margin: 0;
  padding: 0;
}
.mobileNavClear {
  display: none;
}
#mobileNavMenu {
  display: none;
}
.formContainer {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  column-gap: 20px;
}
.formInput {
  width: calc(100% - 20px);
  background: none;
  border: solid 1px white;
  border-radius: 5px;
  height: 30px;
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  font-family: var(--roboto);
}
.formInput::placeholder {
  color: white;
}
.clearButton {
  height: 30px;
  background: transparent;
  border: solid 1px white;
  border-radius: 15px;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
}
.whiteButton {
  height: 30px;
  background: white;
  border: solid 1px white;
  border-radius: 15px;
  color: var(--blue);
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
}
input:focus {
  outline: none;
}
.formResponse {
  height: 30px;
  background: white;
  color: var(--blue);
  line-height: 30px;
  text-align: center;

  border-radius: 10px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: normal;
  display: none;
}
.module13NoSpace {
  background: white;
  padding: 20px;
  border-radius: 20px;
  padding-bottom: 10px;
}
.module33Container {
  background: white;
  border-radius: 10px;
}
.module33Inner {
  padding: 20px;
}
.module33Location {
  color: var(--green);
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}
.module33Date {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}
.module33Address {
  margin-bottom: 20px;
  font-size: 14px;
  min-height: 50px;
  overflow: auto;
}
.module33Button {
  color: var(--green);
  width: 100%;
  border: solid 1px var(--green);
  height: 40px;
  border-radius: 20px;
  background: none;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 38px;
}
.module33Button:hover {
  color: var(--blue);
  border-color: var(--blue);
  transition: 0.5s;
}
.navigationParent  {
  background: white;
  margin-bottom: 10px;
  border: solid 1px grey;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
}
.navigationChild {
  background: white;
  margin-bottom: 10px;
  border: solid 1px grey;
  border-radius: 5px;
  padding: 10px;
  width: calc(100% - 40px);
  float: right;
  cursor: pointer;
}
.navInput {
  border:  none;
  margin-left: 10px;
  width: calc(100% - 50px);
}
.redButton {
  height: 20px;
  background: red;
  border: none;
  color: white;
  font-size: 10px;
  border-radius: 5px;
  cursor: pointer;
}
