@charset "UTF-8";
/* test content */
:root {
  --bb-bg-main: #FFFFFF;
  --bb-bg-secondary: #FFFFFF;
  --bb-bg-header: #555555;
  --bb-bg-footer: #FFFFFF;
  --bb-accent: #458C89;
  --bb-accent-contrast: #FFFFFF;
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding: 10% 0% 10% 0%;
  box-sizing: border-box;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modalContent {
  position: relative;
  background-color: #FFFFFF;
  margin: auto;
  box-sizing: border-box;
  padding: 20px;
  width: 90%;
  min-height: 70%;
  max-width: 950px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.modalClose {
  z-index: 101;
  position: absolute;
  top: 35px;
  right: 35px;
}

/*------------------   Owl carousel   ------------------*/
.imgSlider {
  margin: 50px -30px 50px -30px;
  width: 1084px !important;
  height: 469px;
}
.imgSlider .item {
  width: 1084px;
  height: 469px;
  background-size: cover;
  background-position: center;
  content: "";
}

/*------------------   Form element styles   ------------------*/
.blockForm {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  background-color: #458C89;
  border-radius: 0px;
  padding: 30px;
}
.blockForm h2 {
  color: #FFFFFF;
  font-size: 30px;
  margin-top: 0px;
}
.blockForm form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0px;
  padding-top: 0px;
}
.blockForm form .inputWrapper {
  width: calc(50% - 8px);
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .blockForm form .inputWrapper {
    width: 100%;
  }
}
@media screen and (max-width: 595px) {
  .blockForm form .inputWrapper {
    width: 100%;
  }
}
.blockForm form .inputWrapper input {
  width: 100%;
  height: 40px;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: #000000;
  border-radius: 0px;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 25px;
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and (max-width: 595px) {
  .blockForm form .inputWrapper input {
    width: 100%;
  }
}
.blockForm form .inputWrapper label {
  width: 100%;
  color: #FFFFFF;
  font-size: 20px;
}
.blockForm form .inputWrapper .formError {
  margin-top: -20px;
  color: red;
  text-align: center;
}
.blockForm form .textAreaWrapper {
  width: 100%;
}
.blockForm form .textAreaWrapper textarea {
  width: 100%;
  border-style: solid;
  min-height: 130px;
  border-width: 0px 0px 0px 0px;
  border-radius: 0px;
  font-size: 20px;
  line-height: 24px;
  padding-top: 15px;
  padding-bottom: 0px;
  margin-top: 10px;
  margin-bottom: 25px;
}
.blockForm form .textAreaWrapper label {
  width: 100%;
  color: #FFFFFF;
  font-size: 20px;
}
.blockForm form .textAreaWrapper .formError {
  margin-top: -20px;
  margin-bottom: 10px;
  color: red;
  text-align: center;
}
.blockForm form .formPrivacy {
  width: 100%;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  font-size: 16px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 18px;
  box-sizing: border-box;
  color: #FFFFFF;
}
.blockForm form .formPrivacy a {
  text-decoration: underline;
  color: #FFFFFF;
}
.blockForm form .recapcha {
  width: 100%;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  font-size: 16px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 40px;
  color: #FFFFFF;
}
.blockForm form .buttonAreaWrapper button {
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  margin: 0px;
  color: #000000;
  border-radius: 0px;
  padding-left: 20px;
  padding-right: 20px;
  min-width: 100px;
  height: 40px;
  border: solid 1px #458C89;
  background-color: #FFFFFF;
  cursor: pointer;
}
.blockForm form .buttonAreaWrapper .formSuccess {
  margin-top: 20px;
  color: green;
  text-align: center;
}

/*------------------   Form element styles   ------------------*/
.minimalForm {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border-radius: 0px;
  padding: 0px;
}
.minimalForm h2 {
  color: #FFFFFF;
  font-size: 30px;
  margin-top: 0px;
}
.minimalForm form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0px;
  padding-top: 0px;
}
.minimalForm form .inputWrapper {
  width: 100%;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .minimalForm form .inputWrapper {
    width: 100%;
  }
}
@media screen and (max-width: 595px) {
  .minimalForm form .inputWrapper {
    width: 100%;
  }
}
.minimalForm form .inputWrapper input {
  width: 100%;
  height: 40px;
  border-style: solid;
  border-width: 5px 0px 0px 0px;
  border-color: #458C89;
  text-align: center;
  border-radius: 0px;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 25px;
  padding-left: 0px;
  padding-right: 0px;
  background-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 595px) {
  .minimalForm form .inputWrapper input {
    width: 100%;
  }
}
.minimalForm form .inputWrapper input::placeholder {
  color: #194642;
  opacity: 1;
}
.minimalForm form .inputWrapper input::-ms-input-placeholder { /* Edge 12 -18 */
  color: #194642;
  opacity: 1;
}
.minimalForm form .inputWrapper label {
  display: none;
}
.minimalForm form .inputWrapper .formError {
  margin-top: -20px;
  color: red;
  text-align: center;
}
.minimalForm form .textAreaWrapper {
  width: 100%;
}
.minimalForm form .textAreaWrapper textarea {
  width: 100%;
  border-style: solid;
  min-height: 130px;
  border-width: 5px 0px 0px 0px;
  border-color: #458C89;
  border-radius: 0px;
  font-size: 20px;
  line-height: 24px;
  padding-top: 15px;
  padding-bottom: 0px;
  margin-top: 10px;
  margin-bottom: 25px;
  resize: vertical;
  background-color: rgba(0, 0, 0, 0);
}
.minimalForm form .textAreaWrapper textarea::placeholder {
  color: #194642;
  opacity: 1;
}
.minimalForm form .textAreaWrapper textarea::-ms-input-placeholder { /* Edge 12 -18 */
  color: #194642;
  opacity: 1;
}
.minimalForm form .textAreaWrapper label {
  display: none;
}
.minimalForm form .textAreaWrapper .formError {
  margin-top: -20px;
  margin-bottom: 10px;
  color: red;
  text-align: center;
}
.minimalForm form .formPrivacy {
  width: 100%;
  border-style: solid;
  border-width: 5px 0px 0px 0px;
  border-color: #458C89;
  font-size: 16px;
  padding-top: 25px;
  padding-bottom: 0px;
  margin-bottom: 18px;
  box-sizing: border-box;
  color: #194642;
}
.minimalForm form .formPrivacy a {
  text-decoration: underline;
  color: #194642;
}
.minimalForm form .recapcha {
  width: 100%;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  font-size: 16px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 40px;
  color: #FFFFFF;
}
.minimalForm form .buttonAreaWrapper button {
  text-align: center;
  display: block;
  font-size: 20px;
  line-height: 20px;
  margin: 0px;
  color: #FFFFFF;
  border-radius: 0px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  height: 40px;
  border: solid 0px #458C89;
  background-color: #458C89;
  cursor: pointer;
}
.minimalForm form .buttonAreaWrapper .formSuccess {
  margin-top: 20px;
  color: green;
  text-align: center;
}

.galleryOuter {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.galleryOuter .galleryItem {
  width: 33.3333333333%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .galleryOuter .galleryItem {
    width: 50%;
  }
}
@media screen and (max-width: 595px) {
  .galleryOuter .galleryItem {
    width: 100%;
  }
}
.galleryOuter .galleryItemOverlay {
  width: 100%;
  height: 100%;
  opacity: 0;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
}
.galleryOuter .galleryItemOverlay:hover {
  opacity: 1;
}
.galleryOuter .galleryItemOverlay:hover h2 {
  display: inline-block;
  width: auto;
  color: white;
  opacity: 1;
  border-bottom: 3px solid #458C89;
}

/*------------------   Form element styles   ------------------*/
.outlineForm {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  background-color: #FFFFFF;
  border-radius: 0px;
  padding: 40px;
  box-shadow: 0px 3px 10px #000000;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .outlineForm {
    padding: 40px 25px 40px 25px;
  }
}
@media screen and (max-width: 595px) {
  .outlineForm {
    padding: 40px 25px 40px 25px;
  }
}
.outlineForm h2 {
  color: #FFFFFF;
  font-size: 30px;
  margin-top: 0px;
}
.outlineForm form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0px;
  padding-top: 0px;
}
.outlineForm form .inputWrapper {
  width: calc(50% - 8px);
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .outlineForm form .inputWrapper {
    width: 100%;
  }
}
@media screen and (max-width: 595px) {
  .outlineForm form .inputWrapper {
    width: 100%;
  }
}
.outlineForm form .inputWrapper input {
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  border-style: solid;
  border-width: 3px;
  border-color: #458C89;
  border-radius: 0px;
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  margin-top: 0px;
  margin-bottom: 25px;
  padding: 5px;
}
@media screen and (max-width: 595px) {
  .outlineForm form .inputWrapper input {
    width: 100%;
    height: 30px;
  }
}
.outlineForm form .inputWrapper label {
  width: 100%;
  color: #194642;
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 15px;
}
.outlineForm form .inputWrapper .formError {
  font-size: 15px;
  margin-top: -20px;
  margin-bottom: 20px;
  color: red;
  text-align: center;
}
.outlineForm form .inputWrapper .formSuccess {
  margin-top: 20px;
  color: green;
  text-align: center;
}
.outlineForm form .textAreaWrapper {
  width: 100%;
}
.outlineForm form .textAreaWrapper textarea {
  width: 100%;
  border-style: solid;
  min-height: 130px;
  border-width: 3px;
  border-radius: 0px;
  border-color: #458C89;
  font-size: 15px;
  line-height: 18px;
  padding: 5px;
  margin-top: 0px;
  margin-bottom: 25px;
}
.outlineForm form .textAreaWrapper label {
  width: 100%;
  color: #194642;
  font-size: 15px;
  line-height: 15px;
}
.outlineForm form .textAreaWrapper .formError {
  font-size: 15px;
  margin-top: -20px;
  margin-bottom: 20px;
  color: red;
  text-align: center;
}
.outlineForm form .textAreaWrapper .formSuccess {
  margin-top: 20px;
  color: green;
  text-align: center;
}
.outlineForm form .buttonAreaWrapper {
  width: 100%;
  text-align: center;
}
.outlineForm form .buttonAreaWrapper .formError {
  font-size: 15px;
  margin-top: -20px;
  margin-bottom: 20px;
  color: red;
  text-align: center;
}
.outlineForm form .buttonAreaWrapper .formSuccess {
  margin-top: 20px;
  color: green;
  text-align: center;
}
.outlineForm form .formPrivacy {
  width: 100%;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  font-size: 13px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 18px;
  box-sizing: border-box;
  color: #194642;
}
.outlineForm form .formPrivacy a {
  text-decoration: underline;
  color: #FFFFFF;
}
.outlineForm form .recapcha {
  width: 100%;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  font-size: 16px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 40px;
  color: #458C89;
}
.outlineForm form button {
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  margin: 0px;
  color: #FFFFFF;
  border-radius: 0px;
  padding-left: 20px;
  padding-right: 20px;
  min-width: 100px;
  height: 40px;
  border: solid 3px #458C89;
  background-color: #458C89;
  cursor: pointer;
}

/*------------------   Contact specific elements   ------------------*/
.contactDetailsCentred {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 10px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contactDetailsCentred {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
  }
}
.contactDetailsCentred .contactItem {
  flex-direction: column;
  align-items: center;
  height: auto;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contactDetailsCentred .contactItem {
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 595px) {
  .contactDetailsCentred .contactItem {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
}
.contactDetailsCentred .contactItem .contactItemIcon {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: auto;
  margin-right: 0px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contactDetailsCentred .contactItem .contactItemIcon {
    margin-right: 0px;
  }
}
@media screen and (max-width: 595px) {
  .contactDetailsCentred .contactItem .contactItemIcon {
    margin-right: 0px;
  }
}
.contactDetailsCentred .contactItem .contactItemText {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contactDetailsCentred .contactItem .contactItemText {
    text-align: center;
  }
}
@media screen and (max-width: 595px) {
  .contactDetailsCentred .contactItem .contactItemText {
    text-align: center;
  }
}
.contactDetailsCentred .contactItem .contactItemText p {
  font-size: 20px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.testimonialsSection {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  background-color: #458C89;
  position: relative;
  overflow-y: visible;
  min-height: 700px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .testimonialsSection {
    min-height: 600px;
  }
}
@media screen and (max-width: 595px) {
  .testimonialsSection {
    min-height: 550px;
  }
}
.testimonialsSection .testimonials-heading {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  height: 100px;
  width: 100%;
  margin: 0;
  padding: 60px 80px 0;
  line-height: 1.3;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .testimonialsSection .testimonials-heading {
    padding: 60px 80px 0;
  }
}
@media screen and (max-width: 595px) {
  .testimonialsSection .testimonials-heading {
    padding: 60px 80px 0;
  }
}
.testimonialsSection .testimonials-carousel-wrap {
  flex-grow: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 60px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .testimonialsSection .testimonials-carousel-wrap {
    padding: 0 20px 0 20px;
  }
}
@media screen and (max-width: 595px) {
  .testimonialsSection .testimonials-carousel-wrap {
    padding: 0 20px 0 20px;
  }
}
.testimonialsSection .testimonialsCarousel.owl-carousel {
  width: 100% !important;
  margin: 0 !important;
  left: 0 !important;
  height: auto;
}
.testimonialsSection .testimonialsCarousel .owl-stage-outer {
  width: 100% !important;
  height: 100% !important;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.testimonialsSection .owl-stage {
  height: 100% !important;
}
.testimonialsSection .owl-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonialsSection .testimonial-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  text-align: center;
  padding: 40px 20vw 50px 20vw;
  box-sizing: border-box;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .testimonialsSection .testimonial-item {
    padding: 40px 60px 50px 60px;
  }
}
@media screen and (max-width: 595px) {
  .testimonialsSection .testimonial-item {
    padding: 40px 20px 50px 20px;
  }
}
.testimonialsSection .testimonial-quote {
  color: #FFFFFF;
  font-family: poppins, sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 3vw;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 4;
  margin: 120px 0 20px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .testimonialsSection .testimonial-quote {
    font-size: 5vw;
    margin: 100px 0 30px;
  }
}
@media screen and (max-width: 595px) {
  .testimonialsSection .testimonial-quote {
    font-size: 7vw;
    margin: 100px 0 20px;
  }
}
.testimonialsSection .testimonial-client {
  color: #FFFFFF;
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-grow: 2;
  margin: 0;
  opacity: 0.9;
}
@media screen and (max-width: 595px) {
  .testimonialsSection .testimonial-client {
    font-size: 12px;
  }
}
.testimonialsSection .owl-nav {
  margin: 0;
  display: block !important;
}
.testimonialsSection .owl-prev,
.testimonialsSection .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 60px;
  height: 60px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  z-index: 10;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .testimonialsSection .owl-prev,
  .testimonialsSection .owl-next {
    top: auto;
    transform: none;
    bottom: 40px;
    width: 44px;
    height: 44px;
  }
}
@media screen and (max-width: 595px) {
  .testimonialsSection .owl-prev,
  .testimonialsSection .owl-next {
    top: auto;
    transform: none;
    bottom: 40px;
    width: 44px;
    height: 44px;
  }
}
.testimonialsSection .owl-prev:hover,
.testimonialsSection .owl-next:hover {
  opacity: 1;
  background: none !important;
}
.testimonialsSection .owl-prev span,
.testimonialsSection .owl-next span {
  display: none;
}
.testimonialsSection .owl-prev i,
.testimonialsSection .owl-next i {
  font-size: 35px;
  color: #FFFFFF;
}
.testimonialsSection .owl-prev {
  left: 0;
}
.testimonialsSection .owl-next {
  right: 0;
}
.testimonialsSection .owl-dots {
  display: none !important;
}

.decoration-right {
  position: absolute;
  right: -150px;
  bottom: 100px;
}
@media (max-width: 1280px) {
  .decoration-right {
    right: -250px;
  }
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .decoration-right {
    display: none;
  }
}
@media screen and (max-width: 595px) {
  .decoration-right {
    display: none;
  }
}

.decoration-left {
  position: absolute;
  left: -150px;
  top: 100px;
}
@media (max-width: 1280px) {
  .decoration-left {
    left: -250px;
  }
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .decoration-left {
    display: none;
  }
}
@media screen and (max-width: 595px) {
  .decoration-left {
    display: none;
  }
}

.headerSectionHP {
  display: flex;
  flex-direction: column;
}
.headerSectionHP .headerSectionContent {
  flex-grow: 1;
}
@media screen and (max-width: 595px) {
  .headerSectionHP .headerSectionContent {
    padding: 0;
    height: 100%;
  }
}
@media screen and (max-width: 595px) {
  .headerSectionHP .headerSectionContent .headerSectionContentArea {
    position: relative;
  }
}
.headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP {
  position: relative;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpLogoWelcomePanel {
  position: absolute;
  top: -30px;
  left: 10px;
  width: 280px;
  height: 100%;
  box-sizing: border-box;
  padding: 30px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10;
}
.headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpLogoWelcomePanel img {
  width: 100%;
  height: auto;
  display: block;
}
.headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpLogoWelcomePanel .hpWelcomeText h1 {
  color: #194642;
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 5px 0;
  line-height: 1.1;
}
.headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpLogoWelcomePanel .hpWelcomeText h2 {
  color: #194642;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpLogoWelcomePanel {
    width: 240px;
    padding: 20px;
  }
  .headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpLogoWelcomePanel .hpWelcomeText h1 {
    font-size: 38px;
  }
  .headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpLogoWelcomePanel .hpWelcomeText h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 595px) {
  .headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpLogoWelcomePanel {
    display: none;
  }
}
.headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpLogoBarMobile {
  display: none;
}
@media screen and (max-width: 595px) {
  .headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpLogoBarMobile {
    display: block;
    box-sizing: border-box;
    width: 100vw;
    background-color: #FFFFFF;
    padding: 20px 25px 20px 40px;
    margin: -25px -25px 0px -25px;
  }
  .headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpLogoBarMobile img {
    width: 100px;
    height: auto;
  }
}
.headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpWelcomeMobile {
  display: none;
}
@media screen and (max-width: 595px) {
  .headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpWelcomeMobile {
    display: inline;
    box-sizing: border-box;
    width: 80vw;
    background-color: #FFFFFF;
    padding: 25px 25px 25px 40px;
    margin: 0px 0px -25px -25px;
    position: absolute;
    bottom: 0px;
    left: 0px;
  }
  .headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpWelcomeMobile h1 {
    color: #194642;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.1;
  }
  .headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpWelcomeMobile h2 {
    color: #194642;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
  }
}
.headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpMenuButton {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  cursor: pointer;
}
@media screen and (max-width: 595px) {
  .headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpMenuButton .menuButton {
    top: 20px;
    right: 25px;
    z-index: 100;
  }
}
.headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpMenuButton .menuButton .fa-bars {
  font-size: 30px;
  color: #FFFFFF;
}
@media screen and (max-width: 595px) {
  .headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpMenuButton .menuButton .fa-bars {
    color: #458C89;
  }
}
@media screen and (max-width: 595px) {
  .headerSectionHP .headerSectionContent .headerSectionContentArea .headerHP .hpMenuButton {
    top: 20px;
    right: 25px;
  }
}

/*------------------   Prevent mobile browser resizeing text   ------------------*/
html, body, form, p, div, h1, h2 {
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
}

/*------------------   Common DOM element styles   ------------------*/
* {
  box-sizing: border-box;
}

body {
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
  margin: 0px;
}

p {
  color: #194642;
  font-size: 22px;
  line-height: 1.3;
}
@media screen and (max-width: 595px) {
  p {
    font-size: 22px;
  }
}

h1, h2, h3 {
  color: #194642;
  line-height: 1.3;
}

ul {
  color: #194642;
  font-size: 22px;
  line-height: 1.3;
}
ul li {
  color: #194642;
  font-size: 22px;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: #194642;
}

a:visited {
  text-decoration: none;
  color: #194642;
}

/*------------------   Text Justification   ------------------*/
.centred {
  text-align: center;
}

.justified {
  text-align: justify;
}

/*------------------   Generic layout elements   ------------------*/
#wrapper {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  overflow-x: hidden;
}

.section {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 0px;
  background-color: #FFFFFF;
}

.contentAreaNarrow {
  width: 600px;
  height: auto;
  padding: 40px;
  overflow-y: visible;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contentAreaNarrow {
    width: 100%;
    padding: 40px 25px 40px 25px;
  }
}
@media screen and (max-width: 595px) {
  .contentAreaNarrow {
    width: 100%;
    padding: 40px 25px 40px 25px;
  }
}
.contentAreaNarrow ul {
  color: #194642;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.contentAreaNarrow ul li {
  color: #194642;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.contentArea {
  width: 950px;
  height: auto;
  padding: 40px;
  overflow-y: visible;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contentArea {
    width: 100%;
  }
}
@media screen and (max-width: 595px) {
  .contentArea {
    width: 100%;
  }
}
.contentArea ul {
  color: #194642;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contentArea ul {
    color: #194642;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 595px) {
  .contentArea ul {
    color: #194642;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}
.contentArea ul li {
  color: #194642;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contentArea ul li {
    color: #194642;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 595px) {
  .contentArea ul li {
    color: #194642;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}
.contentArea .multiColWrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 0px;
  margin-bottom: 50px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contentArea .multiColWrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 595px) {
  .contentArea .multiColWrapper {
    flex-direction: column;
  }
}
.contentArea .multiColWrapper .col1 {
  width: 60%;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contentArea .multiColWrapper .col1 {
    width: 100%;
  }
}
@media screen and (max-width: 595px) {
  .contentArea .multiColWrapper .col1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.contentArea .multiColWrapper .col1 h2 {
  margin-bottom: 40px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contentArea .multiColWrapper .col1 h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 595px) {
  .contentArea .multiColWrapper .col1 h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}
.contentArea .multiColWrapper .col2 {
  width: calc(40% - 65px);
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contentArea .multiColWrapper .col2 {
    width: 100%;
    margin-top: 60px;
  }
}
@media screen and (max-width: 595px) {
  .contentArea .multiColWrapper .col2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 60px;
  }
}
.contentArea .multiColWrapper .col2 h2 {
  margin-bottom: 40px;
  font-size: 20px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contentArea .multiColWrapper .col2 h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 595px) {
  .contentArea .multiColWrapper .col2 h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}

/*------------------   Header Section   ------------------*/
.headerSection {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-position: center;
  background-size: cover;
  background-color: #555555;
}
@media screen and (max-width: 595px) {
  .headerSection {
    background-position: calc(50% - 150px) center;
  }
}
.headerSection .headerSectionContent {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 30px;
  min-height: 60vh;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .headerSection .headerSectionContent {
    min-height: 400px;
  }
}
@media screen and (max-width: 595px) {
  .headerSection .headerSectionContent {
    padding: 25px;
  }
}
.headerSection .headerSectionContent .headerSectionContentArea {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1;
  width: 950px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .headerSection .headerSectionContent .headerSectionContentArea {
    width: 100%;
  }
}
@media screen and (max-width: 595px) {
  .headerSection .headerSectionContent .headerSectionContentArea {
    width: 100%;
  }
}
.headerSection .headerSectionContent .headerSectionContentArea .header {
  width: auto;
  height: auto;
  min-height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  color: #FFFFFF;
  flex-grow: 0;
}
.headerSection .headerSectionContent .headerSectionContentArea .header .headerMenu {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .headerSection .headerSectionContent .headerSectionContentArea .header .headerMenu {
    display: none;
  }
}
@media screen and (max-width: 595px) {
  .headerSection .headerSectionContent .headerSectionContentArea .header .headerMenu {
    display: none;
  }
}
.headerSection .headerSectionContent .headerSectionContentArea .header .headerMenu .headerMenuLink {
  margin-left: 0px;
  margin-right: 8px;
  text-align: center;
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.1);
}
.headerSection .headerSectionContent .headerSectionContentArea .header .headerMenu .headerMenuLink a {
  color: #194642;
  font-size: 22px;
}
.headerSection .headerSectionContent .headerSectionContentArea .header .headerMenu .headerMenuLink a:visited {
  color: #194642;
  text-decoration: none;
}
.headerSection .headerSectionContent .headerSectionContentArea .header .headerMenu .headerMenuLink:after {
  content: "";
  margin-left: 16px;
}
.headerSection .headerSectionContent .headerSectionContentArea .headerContentOuter {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-grow: 3;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .headerSection .headerSectionContent .headerSectionContentArea .headerContentOuter {
    margin-left: 0px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 595px) {
  .headerSection .headerSectionContent .headerSectionContentArea .headerContentOuter {
    justify-content: flex-start;
  }
}
.headerSection .headerSectionContent .headerSectionContentArea .headerContentOuter .headerContentInner {
  width: 70%;
  flex-direction: column;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .headerSection .headerSectionContent .headerSectionContentArea .headerContentOuter .headerContentInner {
    width: auto;
  }
}
@media screen and (max-width: 595px) {
  .headerSection .headerSectionContent .headerSectionContentArea .headerContentOuter .headerContentInner {
    width: auto;
  }
}

.logoWrapper {
  width: auto;
  height: auto;
  margin-top: 0px;
  overflow-y: visible;
  z-index: 1000;
}
@media screen and (max-width: 595px) {
  .logoWrapper {
    display: none;
  }
}

.logoWrapperMobile {
  display: none;
}
@media screen and (max-width: 595px) {
  .logoWrapperMobile {
    display: block;
    margin-left: 0px;
    margin-top: 0px;
  }
}

#mobileMenuWrapper {
  display: none;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  #mobileMenuWrapper {
    display: flex;
    justify-content: flex-end;
    width: 150px;
  }
}
@media screen and (max-width: 595px) {
  #mobileMenuWrapper {
    display: flex;
    justify-content: flex-end;
    width: 150px;
  }
}

.owl-carousel {
  margin-left: -70px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .owl-carousel {
    margin: 50px -40px 50px -40px;
    width: calc(100% + 80px) !important;
    height: 400px;
  }
}
@media screen and (max-width: 595px) {
  .owl-carousel {
    margin: 50px -40px 50px -40px;
    width: calc(100% + 80px) !important;
    height: 200px;
  }
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .owl-carousel .item {
    width: calc(100% + 0px);
    height: 400px;
  }
}
@media screen and (max-width: 595px) {
  .owl-carousel .item {
    width: calc(100% + 0px) !important;
    height: 200px;
  }
}

.footer {
  width: 100%;
  height: auto;
  overflow: auto;
  padding: 40px;
  display: flex;
  justify-content: center;
  background-color: #FFFFFF;
  color: #194642;
}
.footer a {
  color: #194642;
}
.footer a:visited {
  text-decoration: none;
  color: #194642;
}
.footer .footerContentArea {
  width: 950px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer .footerContentArea .footerMenu {
  display: flex;
  flex-direction: row;
  margin-top: 35px;
  margin-bottom: 40px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .footer .footerContentArea .footerMenu {
    flex-direction: column;
  }
}
@media screen and (max-width: 595px) {
  .footer .footerContentArea .footerMenu {
    flex-direction: column;
  }
}
.footer .footerContentArea .footerMenu .footerMenuLink {
  margin-left: 0px;
  margin-right: 0px;
  text-align: center;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .footer .footerContentArea .footerMenu .footerMenuLink {
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 595px) {
  .footer .footerContentArea .footerMenu .footerMenuLink {
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 10px;
    text-align: center;
  }
}
.footer .footerContentArea .footerMenu .footerMenuLink a {
  color: #194642;
  font-size: 20px;
  text-align: center;
}
.footer .footerContentArea .footerMenu .footerMenuLink a:visited {
  text-decoration: none;
  color: #194642;
}
.footer .footerContentArea .footerMenu .footerMenuLink::after {
  content: "";
  margin-left: 16px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .footer .footerContentArea .footerMenu .footerMenuLink::after {
    content: "";
    margin-left: 0px;
  }
}
@media screen and (max-width: 595px) {
  .footer .footerContentArea .footerMenu .footerMenuLink::after {
    content: "";
    margin-left: 0px;
  }
}
.footer .footerContentArea .footerMenu .footerMenuLink:last-child::after {
  content: "";
  margin-left: 0px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .footer .footerContentArea .footerMenu .footerMenuLink:last-child::after {
    content: "";
    margin-left: 0px;
  }
}
@media screen and (max-width: 595px) {
  .footer .footerContentArea .footerMenu .footerMenuLink:last-child::after {
    content: "";
    margin-left: 0px;
  }
}
.footer .footerContentArea .credit a {
  font-size: 12px;
  color: #000000;
  font-weight: 100;
}
.footer .footerContentArea .credit a:visited {
  color: #000000 !important;
}

/*------------------   Contact specific elements   ------------------*/
.contactDetails {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contactDetails {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
  }
}

.contactItem {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contactItem {
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 595px) {
  .contactItem {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
}
.contactItem .contactItemIcon {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: auto;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contactItem .contactItemIcon {
    margin-right: 0px;
  }
}
@media screen and (max-width: 595px) {
  .contactItem .contactItemIcon {
    margin-right: 0px;
  }
}
.contactItem .contactItemText {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: flex-start;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .contactItem .contactItemText {
    text-align: center;
  }
}
@media screen and (max-width: 595px) {
  .contactItem .contactItemText {
    text-align: center;
  }
}
.contactItem .contactItemText p {
  font-size: 20px;
  margin-top: 6px;
  margin-bottom: 6px;
}
.contactItem .contactItemText p a {
  text-decoration: none;
}

/*------------------   Card items   ------------------*/
.cardWrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.cardWrapper .card {
  width: 160px;
  height: auto;
  display: flex;
  flex-direction: column;
  margin: 15px 25px;
}
@media screen and (max-width: 595px) {
  .cardWrapper .card {
    width: 200px;
  }
}
.cardWrapper .card .cardImage {
  width: 100%;
  height: 100px;
  display: flex;
  margin-bottom: 10px;
  justify-content: center;
  align-items: center;
}
.cardWrapper .card .cardImage img {
  width: 100px;
  height: 100px;
}
.cardWrapper .card .cardDetails {
  width: 100%;
  text-align: center;
}
.cardWrapper .card .cardDetails h3 {
  font-family: poppins, sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #194642;
}
@media screen and (max-width: 595px) {
  .cardWrapper .card .cardDetails h3 {
    font-size: 22px;
  }
}
.cardWrapper .card .cardDetails p {
  font-size: 14px;
  margin-top: 0px;
}

/*------------------   Mobile menu   ------------------*/
.mobileMenu {
  position: fixed;
  top: 0px;
  right: -310px;
  z-index: 16000161;
  width: 300px;
  height: 100vh;
  min-height: 300px;
  background-color: #FFFFFF;
  box-sizing: border-box;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=0, Color='#000000');
}
@media screen and (max-width: 595px) {
  .mobileMenu {
    padding-bottom: 150px;
  }
}
.mobileMenu #closeButton {
  flex-basis: 15%;
  color: #FFFFFF;
}
.mobileMenu #pageList {
  flex-basis: 60%;
  color: #FFFFFF;
}
.mobileMenu #pageList ul {
  margin-left: 0px;
  margin-top: 0px;
  padding: 0px;
}
.mobileMenu #pageList ul li.mobileMenuItem {
  list-style: none;
  font-size: 20px;
  line-height: 26px;
  color: #194642;
  font-weight: 100;
  border-top: 1px solid #458C89;
  padding-top: 20px;
  padding-bottom: 20px;
}
.mobileMenu #pageList ul li.mobileMenuItem:last-child {
  border-bottom: 1px solid #458C89;
}
.mobileMenu #pageList ul li.mobileMenuItem ul {
  list-style-type: "– ";
  margin-left: 20px;
  color: #194642;
}
.mobileMenu #pageList ul li.mobileMenuItem ul li a {
  color: #194642;
}
.mobileMenu #pageList ul li.mobileMenuItem ul li a:visited {
  color: #194642;
}
.mobileMenu #pageList ul li.mobileMenuItem a {
  color: #194642;
  font-size: 20px;
  line-height: 26px;
  font-weight: 100;
}
.mobileMenu #pageList ul li.mobileMenuItem a:visited {
  color: #194642;
  text-decoration: none;
}
.mobileMenu #details {
  flex-basis: 20%;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-width: 0px 0px 0px 0px;
  border-style: solid;
  border-color: #FFFFFF;
}
.mobileMenu #details .iconRow {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.mobileMenu.active {
  position: fixed;
  right: 0px;
}

/*------------------   Link based button styles ------------------*/
p.centred a.button {
  box-sizing: border-box;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  margin: 0px 20px 0px 20px;
  color: #458C89;
  border-radius: 0px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 11px;
  min-width: 100px;
  height: 40px;
  display: inline-block;
  border: solid 1px #458C89;
  cursor: pointer;
}
p.centred a.button:visited {
  color: #458C89;
  text-decoration: none;
}

p.centred a.buttonRev {
  box-sizing: border-box;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  margin: 0px 20px 0px 20px;
  color: #FFFFFF;
  background-color: #458C89;
  border-radius: 0px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 11px;
  min-width: 100px;
  height: 40px;
  display: inline-block;
  border: solid 1px #458C89;
  cursor: pointer;
}
p.centred a.buttonRev:visited {
  color: #FFFFFF;
  text-decoration: none;
}

a.button {
  box-sizing: border-box;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  margin: 0px 40px 0px 0px;
  color: #458C89;
  border-radius: 0px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 11px;
  min-width: 100px;
  height: 40px;
  display: inline-block;
  border: solid 1px #458C89;
  cursor: pointer;
}
a.button:visited {
  color: #458C89;
  text-decoration: none;
}

a.buttonRev {
  box-sizing: border-box;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  margin: 0px 40px 0px 0px;
  color: #FFFFFF;
  background-color: #458C89;
  border-radius: 0px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 11px;
  min-width: 100px;
  height: 40px;
  display: inline-block;
  border: solid 1px #458C89;
  cursor: pointer;
}
a.buttonRev:visited {
  color: #FFFFFF;
  text-decoration: none;
}

.footerSubscribe {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: middle;
  margin-bottom: 30px;
}
.footerSubscribe .inputWrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footerSubscribe button[type=submit] {
  float: left;
  font-size: 20px;
  line-height: 20px;
  height: 40px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  color: #FFFFFF;
  border-radius: 0px 0px 0px 0px;
  border: 1px solid #458C89;
  background-color: #458C89;
  margin: 0px 0px 0px 0px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .footerSubscribe button[type=submit] {
    width: 100%;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 595px) {
  .footerSubscribe button[type=submit] {
    width: 100%;
    border-radius: 0px 0px 0px 0px;
  }
}
.footerSubscribe input {
  float: left;
  font-size: 20px;
  line-height: 20px;
  height: 40px;
  text-align: center;
  border-radius: 0px 0px 0px 0px;
  width: 300px;
  border: 1px solid #458C89;
  margin: 0px 0px 0px 0px;
}
@media screen and (min-width: 595px) and (max-width: 1024px) {
  .footerSubscribe input {
    width: 100%;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 595px) {
  .footerSubscribe input {
    width: 100%;
    border-radius: 0px 0px 0px 0px;
  }
}
.footerSubscribe input::placeholder {
  color: #194642;
}
.footerSubscribe .alertWrapper {
  width: 100%;
  text-align: center;
}
.footerSubscribe .alertWrapper .formError {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: red;
  text-align: center;
}
.footerSubscribe .alertWrapper .formSuccess {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: green;
  text-align: center;
}/*# sourceMappingURL=style.css.map */