:root {
  --blue: #4687F3;
  --green: #317622;
  --grey: #F4F4F4;
  --white: #FFFFFF;
  --padding: 100px;
  --inner: calc(100% - 200px);
  --body: 'Roboto', sans-serif;
  --title: 'Sorts Mill Goudy', serif;
  --black: #172A3A;
  --deepBlue: #4582DB;
}
h1 {
  margin: 0;
  padding: 0;
  font-size: 60px;
}
h2 {
  margin: 0;
  padding: 0;
  font-size: 40px;
}
h3 {
  font-size: 26px;
  padding: 0;
  margin: 0;
  color: inherit;
}
h4 {
  padding: 0;
  margin: 0;
  font-size: 20px;
}
body {
  padding: 0;
  margin: 0;
}
p {
  margin-top: 10px;
  margin-bottom: 0px;
}
.left {
  float: left;
}
.right {
  float: right;
}

#header {
  font-family: var(--body);
  position: fixed;
  left: 0;
  top: 0;
  overflow: auto;
  width: 100%;
  height: 130px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.25);
  background: white;
  z-index: 1000;
}
#topHeader {
  background: var(--blue);
  height: 40px;
  line-height: 40px;
  padding-left: 200px;
  padding-right: 200px;
  color: white;
}
#phoneIcon {
  height: 20px;
  margin-top: 10px;
  margin-right: 10px;
  float: left;
}
#phoneNumber {
  float: left;
  font-weight: bold;
  font-size: 18px;
  margin-right: 10px;
  cursor: pointer;
}
#phoneNumber a {
  text-decoration: none;
  color: inherit;
}
#openingHours {
  float: left;
  font-size: 14px;
}
#navHeader {
  height: 90px;
  padding-left: 200px;
  padding-right: 200px;
}
#appBox {
  background: var(--green);
  float: right;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-left: 20px;
  cursor: pointer;
}
#findCentre {
  float: right;
  font-size: 14px;
  cursor: pointer;
}
#findCentreIcon {
  float: left;
  margin-right: 10px;
  height: 20px;
  margin-top: 10px;
}
#appBoxIcon {
  float: left;
  margin-right: 10px;
  height: 20px;
  margin-top: 10px;
}
#navHeader .logo {
  height: 40px;
  margin-top: 25px;
  float: left;
}
#navHeader .navigation {
  float: right;
  line-height: 90px;
}
#navHeader .navigation .nav {
  float: right;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  padding-left: 30px;
}
#navHeader .navigation .nav:hover {
  color: var(--blue);
  transition: 0.2s;
}
.marginRight10 {
  margin-right: 10px;
}
.marginRight20 {
  margin-right: 20px;
}
.mainHeader {
  background: white;
  padding-left: var(--padding);
  padding-left: var(--padding);
  height: 90px;
  position: fixed;
  top: 40px;
  left: 0;
  z-index: 10000;
  width: 100%;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
.mainHeader .logo {
  height: 40px;
  margin-top: 25px;
}
.module {
  position: relative;
}
.fixedButton {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  padding-left: 15px;
  padding-right: 20px;
  z-index: 10000;
  cursor: pointer;
  font-size: 20px;
}
.newModulePosition {
  height: 0px;
  background: red;
}
.blockquote {
  border-left: solid 5px #3F70A2;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 300;
}
.module8Tick {
  float: left;
  width: 40px;
}
.module8Content {
  float: right;
  width: calc(100% - 60px);
}
.module9Inner {
  float: left;
}
.module9Comment {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}
.module9Author {

}
.module9Image {
  margin: 0 auto;
  width: 40px;
}
.blueGreenHollowButton {
  border: solid 1px #3F70A2;
  height: 30px;
  color: #3F70A2;
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  text-transform: uppercase;
  background: none;
  font-weight: bold;
  font-size: 13px;
}
.whiteHollowButton {
  border: solid 1px #FFFFFF;
  height: 30px;
  color: #FFFFFF;
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  text-transform: uppercase;
  background: none;
  font-weight: bold;
  font-size: 13px;
}
.greenBlueButton {
  background: #317622;
  height: 30px;
  color: white;
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  border: none;
}
.greenBlueButton:hover {
  transition: 0.5s;
  background: #3F70A2;
}
.blueGreenHollowButton:hover {
  border: solid 1px #317622;
  color: #317622;
  transition: 0.3s;
}
.whiteHollowButton:hover {
  border: solid 1px red;
}
.module10Pin {
  width: 50px;
  margin-bottom: 20px;
}
.module10Branch {
  font-weight: bold;
}
.module10Container {
  float: left;
}
.module10Image {
  width: 50px;
  float: left;
  margin-right: 20px;
}
.module10Image img {
  width: 100%;
}
.module10Content {
  float: right;
  width: calc(100% - 70px);
}

.shadowBox:hover {
  background: blue;
}
.module15Roundle {
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#footer {
  background: var(--black);
  color: var(--white);
  padding-left: 200px;
  padding-right: 200px;
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 12px;
  overflow: auto;
}
#footerContent1 {
  width: calc(100% / 7);
  float: left;
  line-height: 2em;
}
.footerTitle {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#footerContent2 {
  width: calc((100% / 7) * 2);
  float: left;
  line-height: 2em;
}
.noLink {
  text-decoration: none;
  color: inherit;
}
.footerLogo {
  height: 40px;
  float: right;
}
.module10Title {
  margin-bottom: 50px;
}
.module17Image {
  width: 100%;
}
.pageFooter {
  background: #172A3A;
  color: var(--white);
}
.footerLink {
  color: var(--white);
}
.textLeft {
  text-align: left;
}
.textRight {
  text-align: right;
}
.pageHeaderRender {
  height: 100px;
  margin-bottom: -100px;
  background: var(--blue);
  position: relative;
  width: 100%;
  opacity: 0.9;
  z-index: 10;
}
.pageHeaderRenderMobile {
  height: 70px;
  background: var(--blue);
  position: relative;
  width: 100%;
  opacity: 0.9;
  z-index: 10;
}
.pageHeader {
  height: 100px;
  margin-bottom: -100px;
  background: var(--blue);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.9;
  z-index: 10;
  overflow: hidden !important;
}
.pageHeaderMobile {
  height: 70px;
  background: var(--blue);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.9;
  z-index: 10;
  overflow: hidden !important;
  display: none;
}
@media only screen and (max-width: 1400px) {
  .pageHeaderMobile {
    display: block;
  }
}
.pageHeaderLogo {
  height: 60px;
  margin: 20px;
}
.pageHeaderLogoMobile {
  height: 50px;
  margin: 10px;
}
.pageHeaderMenuMobile {
  height: 50px;
  margin: 10px;
}
.pageHeaderNav {
  height: 100px;
  line-height: 100px;
}
.pageHeaderNav .nav {
  float: left;
  color: var(--white);
  padding-left: 30px;
  padding-right: 30px;
  cursor: pointer;
  font-family: 'Titillium Web';
  font-size: 20px;
}
.pageHeaderNav .nav:hover {
  background: var(--black);
  transition: 0.5s;
}
.rounded {
  border-radius: 10px;
  width: 100%;
}
.whiteOutline {
  height: 70px;
  padding-left: 20px;
  padding-right: 20px;
  color: white;
  border: solid 2px white;
  border-radius: 5px;
  background: none;
  font-size: 20px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Titillium Web';
}
.blueOutline {
  height: 70px;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--blue);
  border: solid 2px var(--blue);
  border-radius: 5px;
  background: none;
  font-size: 20px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Titillium Web';
}
.blueOutline:hover {
  background: var(--blue);
  color: white;
  transition: 0.5s;
}
.whiteOutline:hover {
  background: white;
  color: var(--blue);
  transition: 0.5s;
}
.blueOutline {
  height: 70px;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--blue);
  border: solid 2px var(--blue);
  border-radius: 5px;
  background: none;
  font-size: 20px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Titillium Web';
}
.blueOutline:hover {
  background: var(--blue);
  color: var(--white);
  transition: 0.5s;
}
ul {
  padding-left: 0px;
  margin-bottom: -5px;
}
.blueList li {
  border-left: solid 2px var(--blue);
  padding-left: 15px;
  margin-bottom: 15px;
  list-style: none;
  margin-left: 0px;
}
.whiteList li {
  border-left: solid 2px var(--white);
  padding-left: 15px;
  margin-bottom: 15px;
  list-style: none;
  margin-left: 0px;
}
.homeImage {
  height: 50vh;
}
.footerNavRender {
  height: 70px;
  background: var(--black);
}
.footerNav {
  height: 70px;
  width: 100%;
  background: var(--black);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1000;
  opacity: 0.9;
}
.fNav {
  color: white;
  line-height: 70px;
  text-align: center;
  font-family: 'Titillium Web';
  font-size: 1vw;
  font-weight: bold;
  float: left;
  cursor: pointer;
}
.fNav:hover {
  background: var(--blue);
  color: var(--black);
  transition: 0.5s;
}
.halfWidth {
  width: calc(50% - 10px);
}
.inputContainer {
  margin-bottom: 20px;
}
.inputContainer .titleWhite {
  font-weight: bold;
  color: white;
}
.inputContainer .inputWhite {
  width: 100%;
  color: white;
  border: none;
  border-bottom: solid 2px white;
  background: none;
  height: 40px;
  font-family: 'Titillium Web';
  font-size: 16px;
}
.inputContainer .titleBlue {
  font-weight: bold;
  color: var(--blue);
}
.inputContainer .inputBlue {
  width: 100%;
  color: var(--blue);
  border: none;
  border-bottom: solid 2px var(--blue);
  background: none;
  height: 40px;
  font-family: 'Titillium Web';
  font-size: 16px;
}
input:focus {
  outline: none;
}
textarea:focus {
  outline: none;
}
#formFail {
  background: red;
  color: white;
  padding: 10px;
  border-radius: 10px;
  opacity: 0.7;
  margin-bottom: 20px;
  display: none;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  font-weight: bold;
}
.newsContainer {
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
}
.newsContainer .news {
  flex: 1;
  padding: 20px;
  cursor: pointer;
}
.newsContainerMobile {
  margin-top: 20px;
}
.newsContainerMobile .news {
  width: 100%;
  overflow: auto;
  margin-bottom: 20px;
  margin-top: 10px;
}
.newsContainerMobile .newsThumb {
  width: calc(50% - 10px);
  padding-top: calc(50% - 10px);
  float: left;
  border-radius: 10px;
}
.newsContainerMobile .newsThumbTitle {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  margin-left: 20px;
  float: left;
  width: calc(50% - 10px);
}
.newsContainer .newsThumb {
  width: 100%;
  background: var(--grey);
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}
.newsContainer .newsThumbTitle {
  font-weight: bold;
  margin-top: 30px;
  font-size: 26px;
}
.center {
  text-align: center;
}
#mobileMenu {
  background: var(--blue);
  overflow: auto;
  position: fixed;
  left: 0;
  top: 70px;
  color: white;
  z-index: 1000;
  width: 100%;
  display: none;
}
#mobileMenu .nav {
  height: 70px;
  font-size: 30px;
  text-align: center;
  line-height: 70px;
  font-family: 'Titillium Web';
}
.whiteLink {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.dashedBar {
  height: 0px;
  width: calc(100% - 2px);
  border: dashed 1px var(--blue);
  margin-top: 20px;
  margin-bottom: 10px;
}
.dashedBarWhite {
  height: 0px;
  width: calc(100% - 2px);
  border: dashed 1px var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
}
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: var(--white) var(--deepBlue);
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: var(--deepBlue);
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--white);
    border-radius: 10px;
    border: 5px solid var(--deepBlue);
  }
