@font-face {
  font-family: "FilsonProBold";
  src: url("../../assets/FilsonProBold/font.woff") format("woff2"), url("../../assets/FilsonProBold/font.woff2") format("woff2"); }

/* BASE Styling */
/* Order of styling properties 
Box model properties
(width, height, min-/max-width, min-/max-height, padding, margin, border)
Background
(background-image, background-size, etc.)
Layout
(display, position, justify-content, top, bottom, align-items, align-content, grid-gap, grid-template-columns, flex-wrap, etc.)
Typography
(font-size, font-style, font-family, color, line-height, letter-spacing, etc.)
Everything else, in alphabetical order
*/
* {
  box-sizing: border-box;
  margin: 0px; }

body {
  background: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  /* ALL REM Units are decimal fractions of this unit size (automatic text resizing for browser text size) */
  font-weight: 400;
  line-height: 1.5625rem;
  color: #3c3c3c; }

a {
  text-decoration: none;
  color: initial; }

p a {
  text-decoration: underline;
  color: #30a6b6; }

a,
button,
p {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #3c3c3c; }

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none; }

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: "FilsonProBold", sans-serif;
  color: #3c3c3c;
  margin-bottom: 22px; }

h1,
.h1 {
  font-size: 3.4375rem;
  line-height: 3.875rem; }

h2,
.h2 {
  font-size: 2.75rem;
  line-height: 3.375rem; }

h3,
.h3 {
  font-size: 2.1875rem;
  line-height: 2.625rem; }

h4,
.h4 {
  font-size: 1.75rem;
  line-height: 2.375rem; }

h5,
.h5 {
  font-size: 1.25rem;
  line-height: 1.625rem; }

@media (max-width: 480px) {
  h1,
  .h1 {
    font-size: 3rem;
    line-height: 3.4375rem; }
  h2,
  .h2 {
    font-size: 2rem;
    line-height: 2.625rem; }
  h3,
  .h3 {
    font-size: 1.875rem;
    line-height: 2.3125rem; }
  h4,
  .h4 {
    font-size: 1.5625rem;
    line-height: 2.125rem; }
  h5,
  .h5 {
    font-size: 1.25rem;
    line-height: 1.625rem; } }

.content-desktop {
  display: block !important; }

.content-mobile {
  display: none !important; }

@media (max-width: 992px) {
  .content-desktop {
    display: none !important; }
  .content-mobile {
    display: block !important; } }

.bg-grey {
  background: #f3f2f6; }

.bg-cream {
  background: #fffcf9; }

.bg-peach {
  background: #ffede6; }

.bg-purple-light {
  background: #d6cfe8; }

.bg-purple-medium {
  background: #a07bb7; }

.bg-purple-dark {
  background: #462970; }

.text-white {
  color: #ffffff; }

.text-purple {
  color: #462970; }

@media (max-width: 992px) {
  .bg-grey-mobile-alt {
    background: #fffcf9; } }

.container {
  max-width: 1000px;
  margin: auto;
  width: 100%; }

.section {
  padding: 124px 0px; }

.center-align {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center; }

@media (max-width: 1024px) {
  .container {
    padding: 0px 12px; } }

@media (max-width: 768px) {
  .container {
    padding: 0px 22px; } }

input {
  padding: 12px 22px;
  font-size: 1rem;
  line-height: 1.5625rem;
  border-radius: 8px;
  color: #3c3c3c;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border: solid 3px #3c3c3c;
  width: 100%; }

label {
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px; }

.form-group__input-wrapper {
  width: 100%;
  position: relative; }

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px; }
  .form-group--invalid label {
    color: #f04659;
    display: flex;
    justify-content: space-between; }
    .form-group--invalid label:after {
      content: "Missing Information!"; }
  .form-group--invalid input {
    border: solid 3px #f04659 !important; }
  .form-group--valid .form-group__input-wrapper::after {
    background-image: url("../../assets/images/check.svg");
    content: "";
    height: calc(24px + 1.875rem);
    width: calc(24px + 1.875rem);
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center; }
  .form-group--valid input {
    padding-right: calc(24px + 1.875rem); }

.form-group--horizontal {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.form-checkbox__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .form-checkbox__container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  .form-checkbox__container input:checked ~ .checkmark {
    background-image: url("../../assets/images/check.svg");
    border-color: #30a6b6;
    background-size: 125%;
    border-color: #30a6b6;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 10px; }

.form-checkbox__content {
  width: 292px;
  font-size: 1rem;
  line-height: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400; }

.checkmark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: solid 3px #3c3c3c; }

@media (max-width: 768px) {
  .checkmark {
    width: 34px;
    height: 34px;
    border-radius: 8px; } }

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.custom-select {
  position: relative; }

.custom-select select {
  position: absolute;
  height: 1px;
  width: 1px;
  left: 50%;
  top: calc(100% - 2px);
  color: transparent;
  border: transparent;
  background: transparent; }

.select-selected {
  background: #ffffff;
  padding: 12px 22px;
  font-size: 1rem;
  line-height: 1.5625rem;
  border-radius: 8px;
  color: #3c3c3c;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border: solid 3px #3c3c3c;
  width: 100%; }

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: calc(9px + (1.56rem / 2));
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #3c3c3c transparent transparent transparent; }

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #3c3c3c transparent;
  top: calc(3px + (1.56rem / 2)); }

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
  padding: 8px 16px;
  cursor: pointer; }

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #f3f2f6;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  overflow: hidden; }
  .select-items .heading-option {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0px;
    font-family: "FilsonProBold", sans-serif;
    font-size: 1.5625rem;
    line-height: 1.875rem;
    border-top: 3px solid #3c3c3c; }
    .select-items .heading-option.same-as-selected {
      padding-top: 15px;
      padding-bottom: 15px;
      margin-bottom: 0px;
      font-family: "FilsonProBold", sans-serif;
      font-size: 1.5625rem;
      line-height: 1.875rem;
      border-top: 3px solid #3c3c3c;
      font-weight: 700;
      color: #30a6b6;
      text-decoration: underline; }

.close-custom-select {
  align-self: flex-end;
  font-weight: 700;
  border: none;
  border-bottom: 3px solid #3c3c3c;
  padding: 2px 20px;
  margin-left: calc(100% - 20px);
  margin-bottom: 20px;
  transform: translate(-100%, 0); }
  .close-custom-select:hover {
    cursor: pointer; }

/* Hide the items when the select box is closed: */
.select-hide {
  display: none; }

.select-items div:hover {
  background-color: rgba(0, 0, 0, 0.1); }

.same-as-selected {
  font-weight: 700;
  color: #30a6b6;
  text-decoration: underline; }

#top-banner {
  position: sticky; }

.navigation {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fffcf9; }

.active {
  text-decoration: underline !important;
  color: #30a6b6 !important;
  font-weight: 700 !important; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px; }
  .nav__logo-link {
    display: flex; }
  .nav__logo {
    height: 50px;
    width: 167px; }
  .nav__items {
    list-style: none;
    padding: 0px;
    display: flex;
    min-height: calc(56px + 0.875rem); }
  .nav__item {
    display: flex; }
  .nav__items-mobile {
    display: none; }
  .nav__caret {
    width: 1.0625rem;
    height: 0.5625rem;
    fill: #3c3c3c; }
  .nav__link-content {
    padding-right: 4px;
    transition: ease width 0.3s; }
    .nav__link-content::before {
      content: attr(data-text);
      content: attr(data-text)/"";
      display: flex;
      height: 0;
      visibility: hidden;
      overflow: hidden;
      user-select: none;
      pointer-events: none;
      font-weight: 700; }
  .nav__link {
    text-align: center;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #3c3c3c;
    font-weight: 600;
    padding: 10px 15px; }
    .nav__link.active, .nav__link:hover {
      font-weight: 700;
      color: #462970 !important;
      text-decoration: none !important;
      position: relative;
      background: url(../../assets/images/green-underline.svg);
      background-repeat: no-repeat;
      background-position: center calc((54px / 2) + 0.875rem);
      background-size: auto; }
    .nav__link--active .nav__caret {
      transform: rotate(180deg);
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      fill: #462970; }

.dropdown-menu {
  display: none;
  width: 100%;
  position: absolute;
  background: #fffcf9;
  top: calc(56px + 0.875rem);
  left: 0;
  border-top: 1px solid #f3f2f6;
  z-index: 1;
  padding-bottom: calc(28px + 1.375rem); }
  .dropdown-menu__banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; }
    .dropdown-menu__banner::after {
      content: "";
      position: absolute;
      top: calc(25px + 1.5625rem);
      width: 100vw;
      height: 100vw;
      background-color: rgba(0, 0, 0, 0.33); }
  .dropdown-menu__content {
    display: flex;
    min-height: 420px; }
  .dropdown-menu__links-wrapper {
    display: flex;
    justify-content: space-between;
    width: 63%;
    padding: 50px 60px 50px calc((100% - 1000px) / 2); }
  .dropdown-menu__featured {
    right: 0;
    width: 37%;
    background: #f3f2f6;
    padding: 50px calc((100% - 1280px) / 2) 50px 60px; }
    .dropdown-menu__featured-heading {
      font-family: "FilsonProBold", sans-serif;
      font-size: 2.1875rem;
      line-height: 2.625rem; }
    .dropdown-menu__featured-description {
      font-size: 1.125rem;
      line-height: 1.75rem;
      margin-top: 8px; }
  .dropdown-menu__heading-list {
    padding: 0px;
    list-style: none;
    flex-grow: 1; }
  .dropdown-menu__heading-list-item {
    font-family: "FilsonProBold", sans-serif;
    font-size: 1.25rem;
    line-height: 1.625rem;
    font-weight: 600;
    margin-top: 36px;
    color: #3c3c3c; }
    .dropdown-menu__heading-list-item:first-child {
      margin-top: 0px; }
  .dropdown-menu__heading-link {
    text-decoration: none;
    color: #3c3c3c;
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out; }
    .dropdown-menu__heading-link:hover {
      color: #30a6b6;
      text-decoration: underline; }
  .dropdown-menu__list {
    padding: 0px;
    list-style: none; }
  .dropdown-menu__list-item {
    margin-bottom: 10px;
    margin-top: 10px; }
    .dropdown-menu__list-item:last-child {
      margin-bottom: 25px; }
  .dropdown-menu__list-link {
    text-decoration: none;
    color: #3c3c3c;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    line-height: 1.5625rem;
    margin-top: 10px; }
    .dropdown-menu__list-link:hover {
      color: #30a6b6;
      text-decoration: underline; }
  .dropdown-menu__shop-items {
    display: flex;
    padding: 0px;
    list-style: none;
    justify-content: space-between;
    width: 100%;
    align-items: center; }
  .dropdown-menu__shop-item a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: "FilsonProBold", sans-serif;
    max-width: 138px;
    min-height: 160px; }
    .dropdown-menu__shop-item a img {
      height: 100px; }
    .dropdown-menu__shop-item a:hover {
      text-decoration: underline;
      color: #30a6b6; }

@media (max-width: 1440px) {
  .dropdown-menu__featured {
    right: 0;
    width: 37%;
    background: #f3f2f6;
    padding: 50px calc((100% - 1000px) / 2) 50px 60px; } }

.vertical-rule {
  content: "";
  border-left: 3px solid #a07bb7;
  margin-left: -1.5px;
  flex-grow: 0;
  margin-right: 60px; }

.banner {
  min-height: 50px;
  background: #f3f2f6;
  text-align: right;
  font-size: 0.875rem;
  font-weight: bold;
  color: #30a6b6;
  display: flex; }
  .banner--purple {
    background: #462970;
    color: #ffffff; }
  .banner__items {
    width: 100%;
    list-style: none;
    padding: 0px;
    display: flex;
    justify-content: flex-end; }
  .banner__item {
    display: flex;
    align-items: center;
    margin-left: 50px; }
  .banner__icon {
    margin-right: 4px;
    height: 28px;
    width: 28px;
    fill: #30a6b6; }
  .banner__link {
    text-decoration: none;
    color: #30a6b6;
    font-size: 0.875rem;
    line-height: 1.625rem;
    font-weight: 700; }
  .banner__announcements {
    padding: 14px 0px;
    display: flex;
    text-align: left;
    list-style: none;
    justify-content: space-between; }
  .banner__announcement {
    font-family: "FilsonProBold", sans-serif;
    text-transform: uppercase;
    display: inline-flex;
    font-size: 1rem;
    line-height: 1.375rem; }

@media (max-width: 992px) {
  .navigation {
    border-bottom: 1px solid rgba(60, 60, 60, 0.15);
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap; }
  .banner--desktop {
    display: none; }
  .banner--purple {
    width: 100%; }
  .nav {
    width: 100%;
    min-height: 60px; }
  .nav__logo {
    height: 40px; }
  .nav__items {
    display: none; }
  .nav__items-mobile {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    padding: 0px; }
  .nav__items-mobile-link {
    margin: auto 16px;
    text-transform: uppercase; }
    .nav__items-mobile-link a {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-weight: 700;
      font-size: 0.875rem;
      line-height: 1rem;
      color: #30a6b6; }
      .nav__items-mobile-link a img {
        height: 26px;
        width: 26px; }
  .nav__items-mobile-button {
    margin: auto 0px auto 10px; }
    .nav__items-mobile-button button {
      padding: 0px;
      border: none;
      background: transparent;
      display: flex; }
      .nav__items-mobile-button button img {
        height: 34px;
        width: 42px; } }

@media (max-width: 768px) {
  .navigation .container {
    padding: 0px 10px; }
  .banner--purple .banner__announcement {
    display: none; }
  .banner--purple .banner__announcement--mobile {
    font-size: 0.75rem;
    line-height: 0.875rem;
    display: block; } }

.menu-1 {
  background-image: url(../../assets/images/menu-1.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain; }

.menu-2 {
  background: #d6cfe8;
  background-image: url(../../assets/images/menu-2.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 75%; }
  .menu-2 .dropdown-menu__featured-heading {
    color: #462970; }

.menu-3 {
  background-image: url(../../assets/images/menu-3.svg);
  background-repeat: no-repeat;
  background-position: top right; }

.menu-4 {
  background: #d6cfe8;
  background-image: url(../../assets/images/menu-4.svg);
  background-repeat: no-repeat;
  background-position: bottom right; }

.menu-5 {
  background: #30a6b6;
  background-image: url(../../assets/images/menu-5.svg);
  background-repeat: no-repeat;
  background-position: top right; }
  .menu-5 .menu-5__image {
    height: 80px; }
  .menu-5 .dropdown-menu__featured-heading {
    color: #ffffff; }

.mobile-menu .collapsible {
  position: relative; }
  .mobile-menu .collapsible.active {
    text-decoration: none !important; }

@media (max-width: 392px) {
  .nav__logo {
    width: 127px; } }

@media (max-width: 372px) {
  .nav__items-mobile .nav__items-mobile-link {
    display: none; } }

em {
  font-style: normal; }

.background-underline em {
  position: relative;
  background: url(../../assets/images/purple-underline.svg);
  background-repeat: no-repeat;
  background-position: center 75%;
  background-size: 100%, 10%;
  padding-bottom: 5px; }

.background-underline--lg em {
  background-position: center 75%;
  background-size: 75%, 10%; }

.background-underline--cream em {
  background: url(../../assets/images/cream-underline.svg);
  background-repeat: no-repeat;
  background-position: center 75%;
  background-size: 100%, 10%;
  padding-bottom: 5px; }

.background-underline--green em {
  background: url(../../assets/images/green-underline.svg);
  background-repeat: no-repeat;
  background-position: center 90%;
  background-size: 100%, 10%;
  padding-bottom: 5px; }

.background-dashedline {
  position: relative;
  background: url(../../assets/images/dashed-line.svg);
  background-repeat: no-repeat;
  background-position: 59% 20%;
  background-size: calc(contain - 10%); }

@media (max-width: 992px) {
  .background-dashedline {
    position: relative;
    background: url(../../assets/images/left-arc.svg), url(../../assets/images/right-arc.svg);
    background-repeat: no-repeat;
    background-position: 25% calc(33% + 100px), 75% calc(66% + 100px);
    background-size: auto; } }

.btn {
  width: 398px;
  max-width: 100%;
  padding: 8px 8px 9px 8px;
  margin-top: 30px;
  min-height: calc(1.6875rem + 21px);
  display: block;
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #3c3c3c;
  transition: background 0.2s, color 0.2s;
  border-radius: 100px;
  border: solid 3px transparent; }
  .btn:hover {
    cursor: pointer; }
  .btn--green {
    background: #30a6b6;
    color: #ffffff;
    transition: box-shadow 0.1s ease-in-out; }
  .btn--purple {
    background: #462970;
    color: #ffffff;
    transition: box-shadow 0.1s ease-in-out; }
  .btn--white {
    background: #ffffff;
    transition: border 0.2s ease-in; }
    .btn--white:hover {
      border: solid 3px #462970; }
  .btn--green:hover, .btn--purple:hover {
    box-shadow: 3px 6px #a07bb7; }
  .btn--border {
    border: solid 3px #30a6b6; }
    .btn--border:hover {
      background: #30a6b6;
      color: #ffffff; }
  .btn--border-purple {
    border: solid 3px #462970; }
    .btn--border-purple:hover {
      background: #462970;
      color: #ffffff; }
  .btn--border-grey {
    border: solid 3px #3c3c3c; }
    .btn--border-grey:hover {
      background: #ffffff;
      color: #3c3c3c; }
  .btn--border-white {
    border: solid 3px #ffffff;
    background: transparent; }
    .btn--border-white:hover {
      background: #ffffff;
      color: #3c3c3c; }

/* Block and Image */
.bai {
  display: flex;
  align-items: center; }
  .bai__block {
    width: 50%;
    padding: 40px 10%; }
  .bai__image {
    width: 50%; }
  .bai--image-right .bai__block {
    padding-left: 10%;
    padding-right: 10%; }
  .bai--heading .bai__block {
    padding-left: calc((100% - 1000px) / 2);
    padding-right: 80px; }
  .bai__background-map {
    background: #d6cfe8;
    height: 720px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../../../assets/images/ireland.svg");
    background-size: auto 90%;
    background-repeat: no-repeat;
    background-position: center; }
    .bai__background-map .bai__background-title {
      color: #ffffff;
      margin-left: 30px;
      width: 200px;
      font-family: "FilsonProBold", sans-serif;
      font-size: 2.1875rem;
      line-height: 2.8125rem;
      text-align: center; }
  .bai .price-promise-list {
    padding-left: 0px;
    width: 378px;
    max-width: 100%;
    list-style: none; }
    .bai .price-promise-list__list-item {
      font-family: "FilsonProBold", sans-serif;
      font-size: 1.25rem;
      line-height: 1.625rem;
      position: relative;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      margin-bottom: 5px; }
      .bai .price-promise-list__list-item::before {
        background-image: url("../../../assets/images/check2-circle.svg");
        background-repeat: no-repeat;
        height: 33px;
        width: 30px;
        content: "";
        flex: 1;
        margin-right: 10px; }
      .bai .price-promise-list__list-item span {
        width: calc(100% - 40px); }

@media (max-width: 1024px) {
  .bai__block {
    width: 50%;
    padding: 12px; }
  .bai__image {
    width: 50%; }
  .bai--image-right .bai__block {
    padding-left: 12px;
    padding-right: 12px; } }

@media (max-width: 768px) {
  .bai {
    padding: 38px 22px;
    flex-direction: column; }
    .bai--map {
      padding: 0px; }
      .bai--map .bai__block {
        padding: 50px 20px !important;
        margin: 0px;
        display: flex;
        flex-direction: column;
        align-items: center; }
        .bai--map .bai__block h2 {
          text-align: center; }
    .bai__background-map {
      background-size: 50% 90%;
      background-position: right center;
      height: 250px;
      width: 100%;
      align-items: center;
      justify-content: flex-start; }
      .bai__background-map .bai__background-title {
        font-size: 1.875rem;
        line-height: 2.5rem;
        font-family: "FilsonProBold", sans-serif;
        color: #462970;
        text-align: left;
        width: 175px;
        margin-left: 20px; }
    .bai__block {
      margin: 10px calc(23.3px / 2);
      width: 100%;
      margin-top: 40px;
      padding: 0px; }
    .bai__image {
      width: 100%;
      max-width: 480px; }
    .bai--image-right .bai__block {
      order: 2;
      padding: 0px; }
    .bai--image-right .bai__image {
      order: 1; }
    .bai--heading {
      padding: 0px; }
      .bai--heading .bai__block {
        padding: 38px 22px;
        text-align: center; }
      .bai--heading .bai__image {
        width: 100%;
        max-width: 100%; }
    .bai .price-promise-list {
      list-style: initial;
      padding-left: 20px; }
      .bai .price-promise-list__list-item {
        font-family: "Montserrat", sans-serif;
        font-size: 1rem;
        line-height: 1.5625rem;
        position: relative;
        display: list-item; }
        .bai .price-promise-list__list-item::before {
          display: none; }
        .bai .price-promise-list__list-item span {
          width: 100%; } }

@media (max-width: 480px) {
  .bai {
    padding: 26px 22px 16px 22px; }
  .bai-3 {
    text-align: center; }
    .bai-3 .bai__block {
      order: 1; }
      .bai-3 .bai__block .btn {
        margin-bottom: 55px; }
    .bai-3 .bai__image {
      order: 2;
      width: calc(100% + 44px);
      margin-bottom: -16px;
      margin-left: -22px;
      margin-right: -22px; }
    .bai-3 p {
      text-align: left; }
  .bai__block .btn {
    margin-bottom: 29px; }
  .bai__background-map {
    margin: -26px -22px 0px;
    width: calc(100% + 44px); } }

/* Decorative background CTA Section */
.section-flare {
  background-image: url("../../assets/images/green-oval.svg"), url("../../assets/images/purple-ring.svg");
  background-repeat: no-repeat;
  background-position: 10% 0%, 90% 100%;
  padding: 124px 0px; }
  .section-flare__content {
    width: 648px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .section-flare__title {
    margin-bottom: 0px; }

.section-poster {
  position: relative;
  height: 420px;
  width: 100%; }
  .section-poster--product {
    height: 600px; }
  .section-poster__img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .section-poster__overlay {
    background: rgba(70, 41, 112, 0.51);
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .section-poster__text {
    width: 481px;
    max-width: 100%;
    margin-bottom: 0px;
    font-size: 2.1875rem;
    line-height: 2.625rem;
    color: #fffcf9; }
  .section-poster--product__heading {
    font-size: 3.4375rem;
    line-height: 3.875rem;
    font-family: "FilsonProBold", sans-serif;
    color: #ffffff; }
  .section-poster--product__description {
    font-size: 1.25rem;
    line-height: 1.625rem;
    font-family: "FilsonProBold", sans-serif;
    color: #ffffff;
    width: 400px;
    max-width: 100%; }
  .section-poster--product__button {
    width: 270px;
    max-width: 100%; }

.textblock {
  padding: 124px 22px;
  position: relative; }
  .textblock__content {
    width: 648px;
    max-width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0px auto;
    text-align: center; }
  .textblock__description {
    width: 500px;
    max-width: 100%;
    font-family: "FilsonProBold", sans-serif;
    font-size: 1.5625rem;
    line-height: 1.875rem; }
  .textblock__waveline {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translate(-100%, 0); }

.textblock-range__image {
  width: 980px;
  max-width: 100%; }

@media (max-width: 768px) {
  .textblock {
    padding: 60px 22px; }
    .textblock__waveline {
      transform: translate(-50%, -50%) rotateY(180deg);
      top: 0;
      height: 75px; } }

.collapsible,
.collapsible-alt {
  background: transparent;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: #3c3c3c;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .collapsible:after,
  .collapsible-alt:after {
    content: "";
    position: absolute;
    height: 28px;
    width: 28px;
    background-image: url("/assets/images/+.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    right: 25px; }
  .collapsible--active:after,
  .collapsible-alt--active:after {
    content: "";
    background-image: url("/assets/images/-.svg");
    right: 25px; }
  .collapsible__content,
  .collapsible-alt__content {
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    text-align: left; }
  .collapsible__content-item,
  .collapsible-alt__content-item {
    font-size: 1rem;
    line-height: 1.5625rem;
    font-weight: 600;
    margin-top: 24px; }
    .collapsible__content-item:first-child,
    .collapsible-alt__content-item:first-child {
      margin-top: 15px; }
    .collapsible__content-item:last-child,
    .collapsible-alt__content-item:last-child {
      margin-bottom: 15px; }
    .collapsible__content-item--light,
    .collapsible-alt__content-item--light {
      font-weight: 400;
      margin-top: 12px; }
  .collapsible__content-link,
  .collapsible-alt__content-link {
    color: #3c3c3c;
    font-weight: 700; }
  .collapsible__content-link-list,
  .collapsible-alt__content-link-list {
    padding-left: 0px;
    list-style: none;
    margin-bottom: 54px; }
  .collapsible__divide,
  .collapsible-alt__divide {
    border: 3px solid #3c3c3c;
    border-left: none;
    border-top: none;
    border-right: none;
    width: calc(100% - 36px);
    margin: 0px auto; }

.collapsible-single-column {
  position: relative; }
  .collapsible-single-column .collapsible {
    background: transparent;
    cursor: pointer;
    padding: 14px 0px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    text-transform: none;
    font-weight: 600;
    font-size: 1.5625rem;
    line-height: 1.875rem;
    font-family: "FilsonProBold", sans-serif;
    color: #3c3c3c;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .collapsible-single-column .collapsible__divide {
    width: 100%; }

.section-triple__override {
  padding-top: 109px !important; }

.section-triple__wrapper {
  padding: 82px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .section-triple__wrapper--lg {
    padding: 116px 0px; }

.section-triple__title {
  text-align: center;
  max-width: 100%;
  width: 648px; }
  .section-triple__title--wide {
    width: 100%; }

.section-triple__description {
  text-align: center;
  max-width: 100%;
  width: 648px;
  font-size: 1.125rem;
  line-height: 1.5625rem;
  margin-bottom: 40px; }

.section-triple__columns {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: stretch; }

.section-triple__column {
  width: calc(33% - 47px);
  display: flex;
  flex-direction: column;
  align-items: center; }

.column__icon {
  margin-bottom: 40px;
  height: 100px;
  width: 100px;
  max-width: 90%;
  flex-shrink: 0; }
  .column__icon--rounded {
    width: 100%;
    height: 190px;
    border-radius: 100%;
    max-width: 190px;
    object-fit: cover;
    max-height: 190px; }

.column__title {
  margin-bottom: 8px; }

.column__description {
  flex-basis: 100%;
  font-size: 1rem;
  line-height: 1.5625rem; }

.section-triple__column--left-align {
  text-align: left;
  align-items: flex-start; }
  .section-triple__column--left-align .column__icon {
    align-self: center; }

.section-triple--compressed .section-triple__title {
  margin-bottom: 55px; }

.section-triple--compressed .section-triple__column {
  width: calc(33% - 30px); }
  .section-triple--compressed .section-triple__column .column__icon {
    margin-bottom: 24px;
    height: 100px;
    width: 100px;
    flex-shrink: 0; }
  .section-triple--compressed .section-triple__column .column__title {
    margin-bottom: 8px; }
  .section-triple--compressed .section-triple__column .column__description {
    margin-bottom: 16px; }
  .section-triple--compressed .section-triple__column .btn {
    margin-top: 0px; }

@media (max-width: 992px) {
  .section-triple__columns {
    flex-direction: column;
    align-items: center; }
  .section-triple__column {
    width: 100%;
    max-width: 648px;
    margin-bottom: 40px; }
    .section-triple__column:last-child {
      margin-bottom: 0px; } }

@media (max-width: 992px) and (max-width: 768px) {
  .section-triple__override {
    padding: 82px 0px !important; }
  .section-triple--compressed .section-triple__wrapper {
    padding: 50px 0px; }
    .section-triple--compressed .section-triple__wrapper .section-triple__title {
      margin-bottom: 16px; }
    .section-triple--compressed .section-triple__wrapper .section-triple__column {
      margin-bottom: 60px; }
      .section-triple--compressed .section-triple__wrapper .section-triple__column:last-of-type {
        margin-bottom: 30px; }
  .section-triple__wrapper--condensed {
    padding: 44px 0px; } }

@media (max-width: 992px) {
  .section-triple--compressed .section-triple__column {
    width: 100%; } }

.team-content {
  display: flex;
  padding: 75px 0px 0px 0px; }

.team-tabs {
  width: 230px; }
  .team-tabs__button, .team-tabs__collapsible-button {
    padding: 14px 0px;
    display: block;
    border: none;
    border-bottom: 3px solid #3c3c3c;
    width: 100%;
    outline: none;
    text-align: left;
    cursor: pointer;
    background: transparent;
    font-family: "FilsonProBold", sans-serif;
    font-size: 1.5625rem;
    line-height: 1.875rem; }
  .team-tabs__collapsible-button {
    display: none;
    position: relative; }
    .team-tabs__collapsible-button:after {
      content: "";
      position: absolute;
      height: 28px;
      width: 28px;
      background-image: url("/assets/images/+.svg");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      right: 0; }
    .team-tabs__collapsible-button.collapsible--active:after {
      content: "";
      position: absolute;
      height: 28px;
      width: 28px;
      background-image: url("/assets/images/-.svg");
      right: 0; }
  .team-tabs__content {
    padding: 0px;
    padding-left: 100px;
    flex: 1; }

.team-members {
  padding-left: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch; }
  .team-members__member {
    flex-basis: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    margin-bottom: 75px; }
  .team-members__image {
    flex-shrink: 0;
    border-radius: 100%;
    border: 2px solid #462970;
    margin-bottom: 24px;
    height: 150px;
    width: 150px; }
  .team-members__name {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    width: 100%; }
  .team-members__description {
    font-size: 1rem;
    line-height: 1.5625rem;
    flex-basis: 100%;
    width: 100%; }
  .team-members__clinics {
    display: inline-block;
    list-style: none;
    padding-left: 0px;
    margin-top: 16px;
    width: 100%; }
  .team-members__clinics-item {
    font-weight: 700;
    color: #3c3c3c;
    display: inline-block; }
    .team-members__clinics-item:last-child .team-members__clinics-link:after {
      content: " ";
      color: #3c3c3c; }
  .team-members__clinics-link {
    color: #30a6b6; }
    .team-members__clinics-link:after {
      content: ", ";
      color: #3c3c3c; }

@media (max-width: 992px) {
  .team-content {
    padding-bottom: 82px; }
  .team-tabs {
    width: 230px; }
    .team-tabs__content {
      padding-left: 40px; } }

@media (max-width: 768px) {
  .team-tabs {
    display: none; }
  .team-content {
    flex-direction: column; }
  .team-tabs__collapsible-button {
    display: block; }
  .team-tabs__content {
    padding: 48px 0px 0px; }
  .team-tabs__heading {
    display: none; }
  .team-members__member {
    flex-basis: 100%;
    margin-bottom: 48px;
    align-items: center; } }

/* Team Form */
.team-form {
  background: #462970;
  padding: 82px 0px;
  color: #ffffff; }
  .team-form__wrapper {
    display: flex;
    align-items: center; }
  .team-form__heading-wrapper {
    flex-basis: 50%;
    width: 50%; }
  .team-form__heading {
    color: #ffffff; }
    .team-form__heading--phone {
      margin-bottom: 0px; }
    .team-form__heading--mobile-only {
      display: none; }
    .team-form__heading-button {
      display: none; }
  .team-form__form-wrapper {
    flex-basis: 50%;
    width: 50%;
    display: flex;
    justify-content: flex-end; }
  .team-form__form {
    display: flex;
    flex-direction: column;
    max-width: 315px; }
    .team-form__form--mobile {
      display: none; }
  .team-form__form-title {
    display: none; }
  .team-form__submit-button {
    color: #ffffff;
    background: transparent; }
    .team-form__submit-button:hover {
      background: #30a6b6; }
  .team-form__input {
    border: 3px solid #d6cfe8; }
    .team-form__input:first-of-type {
      margin-bottom: 16px; }

@media (max-width: 768px) {
  .team-form {
    background: transparent;
    padding: 0px; }
    .team-form .container {
      padding: 0px; }
    .team-form__input {
      width: 100%; }
    .team-form__wrapper {
      text-align: center;
      flex-direction: column;
      background: #f3f2f6;
      color: #3c3c3c; }
    .team-form__heading-wrapper {
      flex-direction: column;
      width: 100%;
      padding: 45px 22px;
      display: flex;
      align-items: center; }
    .team-form__heading {
      color: #3c3c3c;
      display: none; }
      .team-form__heading--mobile-only {
        display: block; }
      .team-form__heading--phone {
        display: block; }
      .team-form__heading-button {
        display: block; }
    .team-form__form-wrapper {
      width: 100%;
      background: #d6cfe8;
      flex-direction: column;
      color: #3c3c3c;
      padding: 45px 22px; }
    .team-form__form {
      width: 100%;
      max-width: 100%;
      display: none; }
      .team-form__form--mobile {
        display: block; }
    .team-form__form-title {
      display: block; }
    .team-form__submit-button {
      margin: 30px auto 0px;
      background-color: #30a6b6; } }

.booking-form {
  background: #fffcf9; }
  .booking-form__form {
    padding: 100px 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  .booking-form__fields {
    flex-basis: calc(50% - 40px);
    display: flex;
    flex-direction: column; }
    .booking-form__fields:last-child {
      margin-bottom: 0px; }
  .booking-form__checkboxes {
    flex-basis: calc(50% - 40px);
    display: flex;
    flex-direction: column; }
  .booking-form__checkbox {
    margin-bottom: 24px; }
  .booking-form__submit-button {
    flex-basis: 100%;
    max-width: 397px;
    width: 100%;
    margin: 0px auto 0px; }

@media (max-width: 992px) {
  .booking-form__form {
    padding: 100px 0px; } }

@media (max-width: 768px) {
  .booking-form__form {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding: 60px 0px; }
    .booking-form__form .form-group {
      margin-bottom: 48px; }
    .booking-form__form .booking-form__checkbox:last-of-type {
      margin-bottom: 30px; }
  .booking-form__fields {
    flex-basis: 100%; }
  .booking-form__checkboxes {
    flex-basis: 100%;
    max-width: 100%; }
  .booking-form__checkboxes-heading {
    font-size: 1.5625rem;
    line-height: 1.875rem; }
  .booking-form__submit-button {
    background: #30a6b6;
    margin-top: 24px; } }

/* Upload Audiogram */
.upload-audiogram {
  padding: 82px 0px; }
  .upload-audiogram__heading-wrapper {
    width: 100%;
    max-width: 686px;
    text-align: center;
    margin: auto; }

.form-audiogram--hidden {
  display: none; }

.form-audiogram__inputs {
  display: flex;
  justify-content: space-between; }

.form-audiogram__upload-container {
  width: calc(50% - 25px);
  display: flex;
  flex-direction: column; }

.form-audiogram__upload-wrapper {
  height: 100%;
  width: 100%;
  flex-basis: 100%; }

.form-audiogram__form-container {
  width: calc(50% - 25px); }

.form-audiogram__form-wrapper {
  background: #f3f2f6;
  padding: 28px 35px;
  width: 100%; }
  .form-audiogram__form-wrapper .form-group {
    margin-bottom: 28px; }

.form-audiogram__form-heading {
  font-size: 1.5625rem;
  line-height: 1.875rem;
  font-family: "FilsonProBold", sans-serif;
  margin-bottom: 8px;
  margin-top: 60px; }
  .form-audiogram__form-heading br {
    display: none; }

.form-audiogram__drag-box {
  background: #30a6b6;
  flex: 1;
  padding: 52px 74px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; }

.form-audiogram__upload-description {
  color: #ffffff;
  font-family: "FilsonProBold", sans-serif;
  font-size: 1.25rem;
  line-height: 1.625rem; }

.form-audiogram__upload-icon {
  height: 178px;
  width: 134px;
  opacity: 0.5; }

.form-audiogram__upload-btn {
  margin-top: 0px;
  color: #ffffff; }

.form-audiogram__submit-btn {
  margin-left: auto;
  margin-right: auto; }

.form-audiogram input {
  border-color: #d6cfe8; }

.form-audiogram__success-banner {
  margin-top: 55px;
  padding: 84px 35px;
  display: none;
  background-color: #30a6b6;
  text-align: center; }
  .form-audiogram__success-banner--visible {
    display: block; }

.form-audiogram__success-heading, .form-audiogram__success-description {
  max-width: 642px;
  width: 100%;
  margin: 10px auto;
  color: #ffffff;
  font-family: "FilsonProBold", sans-serif; }

@media (max-width: 992px) {
  .upload-audiogram {
    padding: 75px 0px 50px; }
  .form-audiogram__upload-icon {
    margin-top: 32px;
    margin-bottom: 62px; }
  .form-audiogram__inputs {
    display: flex;
    flex-direction: column; }
  .form-audiogram__upload-container {
    width: 100%; }
  .form-audiogram__upload-wrapper {
    height: 100%;
    width: 100%;
    flex-basis: 100%; }
  .form-audiogram__form-container {
    width: 100%; }
  .form-audiogram__form-wrapper {
    background: #fffcf9;
    padding: 40px 10px 0px;
    width: 100%; }
    .form-audiogram__form-wrapper .form-group:last-of-type {
      margin-bottom: 20px; }
  .form-audiogram__form-heading {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    font-family: "FilsonProBold", sans-serif;
    margin-bottom: 8px;
    margin-top: 60px;
    text-align: center; }
    .form-audiogram__form-heading br {
      display: block; }
  .form-audiogram input {
    border-color: initial; } }

@media (max-width: 600px) {
  .form-audiogram__drag-box {
    padding: 52px 5px; }
    .form-audiogram__drag-box .form-audiogram__upload-description {
      width: calc(100% - 50px);
      margin-left: auto;
      margin-right: auto; } }

.ctone-widget {
  display: block; }

.ctone-section {
  padding: 55px 35px;
  background: #d6cfe8;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .ctone-section__heading {
    margin-bottom: 58px;
    text-align: center; }
  .ctone-section__wrapper {
    border: 3px solid #3c3c3c;
    max-width: 100%;
    width: 640px;
    min-height: 470px;
    background: #ffffff;
    border-radius: 8px;
    position: relative; }
  .ctone-section__exit-link {
    margin-top: 90px;
    text-decoration: underline;
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.6875rem;
    color: #3c3c3c; }
  .ctone-section__notice {
    display: flex;
    flex-direction: column;
    padding: 50px 60px;
    align-items: center;
    text-align: center; }
  .ctone-section__notice-icon {
    height: 70px;
    width: 48px;
    margin-bottom: 28px; }
  .ctone-section__notice-heading {
    font-size: 1.875rem;
    line-height: 2.375rem; }
  .ctone-section__notice-button {
    background: #ffffff; }
  .ctone-section .ctone-hearing-test-dom {
    position: absolute !important;
    width: 100%;
    height: 100%; }
    .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_0,
    .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_1,
    .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_2,
    .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_3,
    .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_4 {
      width: 100% !important;
      max-width: 400px !important;
      margin: 0 auto 20px !important; }
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_0 *,
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_1 *,
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_2 *,
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_3 *,
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_4 * {
        text-align: left !important;
        font-size: 1.2rem !important; }
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_0:first-child, .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_0:last-child,
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_1:first-child,
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_1:last-child,
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_2:first-child,
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_2:last-child,
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_3:first-child,
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_3:last-child,
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_4:first-child,
      .ctone-section .ctone-hearing-test-dom .ctone-start-step-details #uniqName_3_4:last-child {
        top: initial !important;
        left: initial !important;
        right: initial !important;
        bottom: initial !important;
        width: 100% !important;
        text-align: left !important; }
    .ctone-section .ctone-hearing-test-dom input {
      font-size: 1rem !important; }
    .ctone-section .ctone-hearing-test-dom input[type="text"] {
      padding: 14px 20px;
      width: 100% !important; }
    .ctone-section .ctone-hearing-test-dom input[type="range"] {
      border: none; }
    .ctone-section .ctone-hearing-test-dom label.ctone-radio-inline {
      font-size: 1.35rem; }
    .ctone-section .ctone-hearing-test-dom .ctone-details-button-container {
      width: calc(100% - 30px) !important;
      overflow: visible !important;
      left: initial !important; }
    .ctone-section .ctone-hearing-test-dom .ctone-setup-sample-tone-container {
      overflow: visible !important;
      width: 100% !important;
      left: initial !important; }
    .ctone-section .ctone-hearing-test-dom .ctone-setup-begin-test {
      overflow-y: visible !important;
      width: 100% !important;
      left: initial !important; }
    .ctone-section .ctone-hearing-test-dom .ctone-next-tone-container {
      overflow: visible !important;
      width: 100%;
      left: initial; }
      .ctone-section .ctone-hearing-test-dom .ctone-next-tone-container button {
        width: 280px; }
    .ctone-section .ctone-hearing-test-dom .ctone-tone-sequence-container div {
      font-size: 1.5rem !important; }
    .ctone-section .ctone-hearing-test-dom .ctone-instructions {
      font-family: "Montserrat", sans-serif; }
      .ctone-section .ctone-hearing-test-dom .ctone-instructions b {
        font-family: "FilsonProBold", sans-serif;
        color: #3c3c3c; }
    .ctone-section .ctone-hearing-test-dom .ctone-widget-button {
      width: 398px;
      max-width: 100%;
      padding: 8px 8px 9px 8px;
      margin-top: 30px;
      min-height: calc(1.6875rem + 21px);
      display: block;
      font-size: 1.375rem;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
      border-radius: 100px;
      border: solid 3px transparent;
      background: #462970;
      color: #ffffff;
      transition: box-shadow 0.1s ease-in-out; }
      .ctone-section .ctone-hearing-test-dom .ctone-widget-button:hover {
        cursor: pointer;
        box-shadow: 3px 6px #a07bb7; }
    .ctone-section .ctone-hearing-test-dom .ctone-headset .ctone-widget-button,
    .ctone-section .ctone-hearing-test-dom .ctone-earbud .ctone-widget-button,
    .ctone-section .ctone-hearing-test-dom .ctone-device-speaker .ctone-widget-button {
      max-width: 120px; }
      .ctone-section .ctone-hearing-test-dom .ctone-headset .ctone-widget-button img,
      .ctone-section .ctone-hearing-test-dom .ctone-earbud .ctone-widget-button img,
      .ctone-section .ctone-hearing-test-dom .ctone-device-speaker .ctone-widget-button img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important; }

@media (max-width: 992px) {
  .ctone-section {
    padding: 55px 15px; }
    .ctone-section__notice {
      display: flex;
      flex-direction: column;
      padding: 35px 18px 70px;
      align-items: center;
      text-align: center; } }

@media (max-width: 768px) {
  .ctone-section
.ctone-hearing-test-dom
.ctone-hearing-test-container
.ctone-start-step-details
.ctone-details-container #uniqName_3_0 div.textAdjustElement,
  .ctone-section
.ctone-hearing-test-dom
.ctone-hearing-test-container
.ctone-start-step-details
.ctone-details-container #uniqName_3_1 div.textAdjustElement,
  .ctone-section
.ctone-hearing-test-dom
.ctone-hearing-test-container
.ctone-start-step-details
.ctone-details-container #uniqName_3_2 div.textAdjustElement,
  .ctone-section
.ctone-hearing-test-dom
.ctone-hearing-test-container
.ctone-start-step-details
.ctone-details-container #uniqName_3_3 div.textAdjustElement,
  .ctone-section
.ctone-hearing-test-dom
.ctone-hearing-test-container
.ctone-start-step-details
.ctone-details-container #uniqName_3_4 div.textAdjustElement {
    text-align: left !important;
    width: 90px !important; }
  .ctone-section
.ctone-hearing-test-dom
.ctone-hearing-test-container
.ctone-start-step-details
.ctone-details-container #uniqName_3_0 div.textAdjust,
  .ctone-section
.ctone-hearing-test-dom
.ctone-hearing-test-container
.ctone-start-step-details
.ctone-details-container #uniqName_3_1 div.textAdjust,
  .ctone-section
.ctone-hearing-test-dom
.ctone-hearing-test-container
.ctone-start-step-details
.ctone-details-container #uniqName_3_2 div.textAdjust,
  .ctone-section
.ctone-hearing-test-dom
.ctone-hearing-test-container
.ctone-start-step-details
.ctone-details-container #uniqName_3_3 div.textAdjust,
  .ctone-section
.ctone-hearing-test-dom
.ctone-hearing-test-container
.ctone-start-step-details
.ctone-details-container #uniqName_3_4 div.textAdjust {
    width: calc(100% - 100px) !important;
    left: 100px !important; }
  .ctone-section .ctone-hearing-test-dom .ctone-details-button-container {
    top: 80%; } }

.test-results {
  padding: 60px 0px;
  background: #fffcf9; }
  .test-results .collapsible-alt {
    display: none; }
  .test-results__title {
    margin-bottom: 60px; }
  .test-results__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  .test-results__content {
    width: calc(100% - 500px); }
  .test-results__graph-wrapper {
    width: 400px;
    max-width: 100%;
    min-height: 400px;
    padding-bottom: 40px; }
  .test-results__graph {
    width: 400px;
    height: 400px;
    max-width: 100%;
    border: solid 3px #3c3c3c;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #ffffff; }
  .test-results__about-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px; }
  .test-results__about-header {
    margin-top: 30px;
    color: #462970;
    font-size: 2.1875rem;
    line-height: 2.625rem;
    width: 100%; }
  .test-results__left-ear {
    width: 370px;
    max-width: 100%;
    font-size: 1.5625rem;
    line-height: 1.875rem;
    font-family: "FilsonProBold", sans-serif; }
  .test-results__right-ear {
    width: 370px;
    max-width: 100%;
    font-size: 1.5625rem;
    line-height: 1.875rem;
    font-family: "FilsonProBold", sans-serif;
    margin-right: 30px; }
  .test-results__download-icon {
    margin-right: 32px; }
  .test-results__download-link {
    display: flex;
    align-items: center;
    padding: 0px 15px; }
  .test-results__chart {
    border: solid 3px #3c3c3c;
    height: 50px;
    width: 100%;
    max-width: 370px;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    margin-top: 15px; }
  .test-results__chart-item {
    border-right: 3px solid #3c3c3c;
    width: 25%; }
    .test-results__chart-item:last-child {
      border-right: none; }
  .test-results__chart-item--warning {
    background: #f04659; }
  .test-results__chart-item--poor {
    background: #f04659; }
  .test-results__chart-item--ok {
    background: #f2b37b; }
  .test-results__chart-item--good {
    background: #30a6b6; }
  .test-results__chart-labels {
    max-width: 370px;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    line-height: 1.5625rem;
    display: flex;
    margin-top: 10px;
    margin-bottom: 20px; }
  .test-results__chart-item-label {
    width: 25%;
    text-align: right;
    padding-right: 5px; }
    .test-results__chart-item-label:first-of-type {
      text-align: left; }
    .test-results__chart-item-label--active {
      font-weight: 700; }

@media (max-width: 992px) {
  .test-results__title {
    font-size: 2rem;
    line-height: 2.625rem; }
  .test-results__content {
    width: calc(50% - 30px); }
  .test-results__graph-wrapper {
    width: 400px;
    max-width: 100%;
    margin: 0px auto; } }

@media (max-width: 768px) {
  .test-results .collapsible-alt {
    display: block;
    border-bottom: 3px solid #3c3c3c;
    padding: 18px 0px;
    font-family: "FilsonProBold", sans-serif;
    text-transform: none;
    font-size: 1.875rem;
    line-height: 2.3125rem;
    width: 100%; }
    .test-results .collapsible-alt--active {
      margin-bottom: 60px; }
  .test-results__title {
    font-size: 2rem;
    line-height: 2.625rem;
    text-align: center;
    margin-bottom: 40px; }
  .test-results__description {
    margin-bottom: 40px; }
  .test-results__content {
    width: 100%; }
  .test-results__graph-wrapper {
    max-height: 0px;
    width: 400px;
    max-width: 100%;
    margin: 0px auto;
    min-height: initial;
    overflow: hidden; }
  .test-results__about-wrapper {
    max-height: 0px;
    overflow: hidden; }
  .test-results__about-header {
    display: none; } }

.testimonials-heading-section {
  padding-top: 68px; }

.testimonials-heading__button {
  margin: 45px auto 0px; }

.trust-index {
  padding: 0px 15px 60px;
  display: flex;
  flex-direction: column;
  align-items: center; }

/* Splide Styles */
@keyframes splide-loading {
  0% {
    transform: rotate(0); }
  to {
    transform: rotate(1turn); } }

.splide__container {
  position: relative;
  box-sizing: border-box; }

.splide__list {
  margin: 0 !important;
  padding: 0 !important;
  width: -webkit-max-content;
  width: max-content;
  will-change: transform; }

.splide.is-active .splide__list {
  display: flex; }

.splide__pagination {
  display: inline-flex;
  align-items: center;
  width: 95%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  width: 50%; }

.splide__pagination li {
  list-style-type: none;
  display: inline-block;
  line-height: 1;
  margin: 0; }

.splide {
  visibility: hidden; }

.splide,
.splide__slide {
  position: relative;
  outline: none; }

.splide__slide {
  box-sizing: border-box;
  list-style-type: none !important;
  margin: 0;
  flex-shrink: 0; }

.splide__slide img {
  vertical-align: bottom; }

.splide__slider {
  position: relative; }

.splide__spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #999;
  border-left-color: transparent;
  animation: splide-loading 1s linear infinite; }

.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden; }

.splide--draggable > .splide__track > .splide__list > .splide__slide {
  -webkit-user-select: none;
  user-select: none; }

.splide--fade > .splide__track > .splide__list {
  display: block; }

.splide--fade > .splide__track > .splide__list > .splide__slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0; }

.splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1; }

.splide--rtl {
  direction: rtl; }

.splide--ttb > .splide__track > .splide__list {
  display: block; }

.splide--ttb > .splide__pagination {
  width: auto; }

.splide__arrow {
  position: absolute;
  z-index: 1;
  top: 90%;
  transform: translateY(-50%);
  width: 2em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  background: transparent; }

.splide__arrow svg {
  width: 2em;
  height: 2em;
  fill: #ffffff; }

.splide__arrow:hover {
  cursor: pointer;
  opacity: 0.9; }

.splide__arrow:focus {
  outline: none; }

.splide__arrow--prev {
  left: 1em; }

.splide__arrow--prev svg {
  transform: scaleX(-1); }

.splide__arrow--next {
  right: 1em; }

.splide__pagination {
  position: absolute;
  z-index: 1;
  bottom: 8%;
  left: 50%;
  transform: translate(-50%);
  padding: 0; }

.splide__pagination__page {
  border: 3px solid #ffffff;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: transparent;
  border-radius: 50%;
  margin: 3px;
  padding: 0;
  transition: transform 0.2s linear; }

.splide__pagination__page.is-active {
  background: #fff; }

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9; }

.splide__pagination__page:focus {
  outline: none; }

.splide__progress__bar {
  width: 0;
  height: 3px;
  background: #ccc; }

.splide--nav > .splide__track > .splide__list > .splide__slide {
  border: 3px solid transparent; }

.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
  border-color: #000; }

.splide--nav > .splide__track > .splide__list > .splide__slide:focus {
  outline: none; }

.splide--rtl > .splide__arrows .splide__arrow--prev,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev {
  right: 1em;
  left: auto; }

.splide--rtl > .splide__arrows .splide__arrow--prev svg,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: scaleX(1); }

.splide--rtl > .splide__arrows .splide__arrow--next,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--next {
  left: 1em;
  right: auto; }

.splide--rtl > .splide__arrows .splide__arrow--next svg,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: scaleX(-1); }

.splide--ttb > .splide__arrows .splide__arrow,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow {
  left: 50%;
  transform: translate(-50%); }

.splide--ttb > .splide__arrows .splide__arrow--prev,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev {
  top: 1em; }

.splide--ttb > .splide__arrows .splide__arrow--prev svg,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: rotate(-90deg); }

.splide--ttb > .splide__arrows .splide__arrow--next,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--next {
  top: auto;
  bottom: 1em; }

.splide--ttb > .splide__arrows .splide__arrow--next svg,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: rotate(90deg); }

.splide--ttb > .splide__pagination {
  display: flex;
  flex-direction: column;
  bottom: 50%;
  left: auto;
  right: 0.5em;
  transform: translateY(50%); }

/* Splide Video Extension Styles */
.splide__slide--has-video {
  cursor: pointer; }

.splide__slide--has-video:hover .splide__video__play {
  opacity: 1; }

.splide__slide__container--has-video {
  cursor: pointer;
  position: relative; }

.splide__slide__container--has-video:hover .splide__video__play {
  opacity: 1; }

.splide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; }

.splide__video div {
  height: 100%; }

.splide__video iframe,
.splide__video video {
  width: 100%;
  height: 100%; }

.splide__video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ccc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7; }

.splide__video__play:after {
  content: "";
  display: inline-block;
  border-color: transparent transparent transparent #000;
  border-style: solid;
  border-width: 9px 0 9px 17px;
  margin-left: 4px; }

/* BESPOKE STYLING */
.video-carousel {
  margin-top: 80px;
  margin-bottom: 10px;
  max-width: 100%;
  overflow: hidden; }
  .video-carousel__placeholder img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover; }
  .video-carousel__placeholder:after {
    content: "";
    position: absolute;
    background: rgba(70, 41, 112, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block; }

.splide__video iframe,
.splide__video video {
  width: 100%;
  height: 100%; }

.videos-example {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 30px;
  background: #fffcf9;
  background-image: url(../../../assets/images/dash-wave.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 32%; }
  .videos-example__heading {
    margin-bottom: 80px; }
  .videos-example__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
  .videos-example__column {
    display: flex;
    flex-direction: column;
    width: calc(50% - 35px); }
  .videos-example__video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    background: rgba(70, 41, 112, 0.5);
    margin-bottom: 28px; }
  .videos-example__video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .videos-example__testimonial {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    margin: 0px 0px 20px; }
  .videos-example__author {
    font-family: "FilsonProBold", sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    margin: 0px 0px 30px; }

@media (max-width: 992px) {
  .videos-example {
    background: #ffede6;
    padding: 46px 22px; }
    .videos-example__heading {
      margin-bottom: 16px; }
    .videos-example__column {
      display: flex;
      width: 100%;
      margin-bottom: 20px; }
    .videos-example__testimonial {
      display: none; }
    .videos-example .btn {
      margin-top: 10px; } }

.blog-articles {
  padding: 70px 0px 10px; }
  .blog-articles__wrapper {
    display: flex;
    padding: 70px 0px 60px;
    justify-content: space-between; }
  .blog-articles__title {
    margin: 0px auto;
    width: 100%;
    text-align: center; }

.blog-articles__filters-select-wrapper {
  display: none; }

.blog-articles__filters {
  width: 240px; }
  .blog-articles__filters ul {
    list-style: none;
    padding-left: 0px; }
  .blog-articles__filters-heading {
    margin-top: 15px;
    padding-bottom: 15px;
    font-family: "FilsonProBold", sans-serif;
    font-size: 1.5625rem;
    line-height: 1.875rem;
    border-bottom: 3px solid #3c3c3c; }
    .blog-articles__filters-heading-link {
      font-family: "FilsonProBold", sans-serif;
      font-size: 1.5625rem;
      line-height: 1.875rem;
      color: #3c3c3c; }
    .blog-articles__filters-heading:first-of-type {
      margin-top: 0px; }
  .blog-articles__filters-link {
    padding-bottom: 15px; }
    .blog-articles__filters-link--active {
      color: #30a6b6;
      font-weight: bold;
      text-decoration: underline; }
  .blog-articles__filters-sublist-item {
    padding-top: 12px; }
    .blog-articles__filters-sublist-item:last-of-type {
      padding-bottom: 15px;
      border-bottom: 3px solid #3c3c3c; }
  .blog-articles__filters-sublist-link--active {
    color: #30a6b6;
    font-weight: bold;
    text-decoration: underline; }

.blog-articles__back {
  display: none; }

.blog-results {
  width: calc(100% - 240px - 80px); }
  .blog-results__heading-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .blog-results__heading {
    color: #462970;
    margin-bottom: 0px; }

.blog-cards-list {
  margin: 65px 0px 48px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0px;
  justify-content: space-between; }

.blog-card-item {
  width: calc(50% - 20px);
  margin-bottom: 35px; }

.blog-card {
  background: #f3f2f6;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden; }
  .blog-card__image {
    height: 170px;
    width: 100%;
    object-fit: cover; }
  .blog-card__content {
    display: flex;
    flex-direction: column;
    padding: 16px 24px; }
  .blog-card__author {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center; }
    .blog-card__author-image {
      height: 48px;
      width: 48px;
      border-radius: 100%; }
    .blog-card__author-name {
      font-size: 0.875rem;
      line-height: 1.25rem;
      margin-left: 15px; }
  .blog-card__title {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    margin-bottom: 0px;
    margin-top: 10px; }
  .blog-card__article {
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 6.25rem;
    line-height: 1.5625;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0px; }
  .blog-card--compressed {
    width: 400px;
    max-width: 100%; }
    .blog-card--compressed .blog-card__image {
      height: 170px;
      width: 100%;
      object-fit: cover; }
  .blog-card__button {
    width: 100%;
    margin-top: 20px; }

.select-sort-by {
  font-weight: 700; }
  .select-sort-by select {
    border: none;
    border-bottom: 3px solid #3c3c3c;
    background: transparent;
    min-width: 180px;
    margin-left: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    line-height: 1.5625rem;
    color: #3c3c3c; }

.pagination {
  display: flex;
  flex-wrap: wrap; }

.pagination__link,
.pagination__button {
  padding: 8px 16px;
  margin: 0px 10px;
  text-decoration: none;
  color: #30a6b6;
  font-weight: 700; }

.pagination__button {
  padding: 8px 0px;
  min-width: 69px; }

.pagination__link--active {
  background: #30a6b6;
  border-radius: 4px;
  color: #ffffff; }

@media (max-width: 992px) {
  .blog-articles__wrapper {
    flex-direction: column;
    padding-top: 20px; }
  .blog-results__heading {
    color: #3c3c3c; }
  .blog-articles__filters-select-wrapper {
    width: 100%;
    display: block;
    margin-bottom: 45px; }
    .blog-articles__filters-select-wrapper label {
      margin-bottom: 10px;
      display: block; }
    .blog-articles__filters-select-wrapper .select-items {
      position: relative; }
  .blog-articles__filters {
    display: none; }
  .blog-articles__back {
    display: block;
    margin-bottom: 12px; }
  .blog-articles__back-link {
    color: #30a6b6;
    text-decoration: underline;
    font-weight: 700; }
  .blog-results {
    width: 100%; } }

@media (max-width: 768px) {
  .blog-cards-list {
    margin-bottom: 0px; }
  .blog-card-item {
    width: 100%;
    margin-bottom: 35px; }
  .blog-results__heading-wrapper {
    display: block; }
  .blog-results__heading {
    margin-bottom: 36px; }
  .select-sort-by {
    text-align: right; }
  .pagination__link,
  .pagination__button {
    padding: 8px 8px;
    margin: 0px 8px;
    text-decoration: none;
    font-weight: 700; }
  .pagination__link--active {
    padding: 8px 16px;
    margin: 0px 10px; } }

/* Blog Article */
.blog-article {
  width: calc(100% - 240px - 80px); }
  .blog-article__content {
    overflow: hidden; }
    .blog-article__content p,
    .blog-article__content ul {
      margin-top: 10px;
      margin-bottom: 10px; }
    .blog-article__content img {
      max-width: 100%;
      margin: 20px 0px; }
  .blog-article__heading {
    margin-bottom: 45px;
    margin-top: -6px; }
  .blog-article__feature-image {
    display: none; }
  .blog-article__author-wrapper {
    padding: 12px 0px;
    width: 100%;
    border-top: 3px solid #3c3c3c;
    display: flex;
    flex-direction: column;
    margin-top: 60px; }
  .blog-article__author {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center; }
  .blog-article__author-image {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    margin-right: 15px; }

.blog-article-section__banner {
  position: relative;
  height: 420px;
  width: 100%; }
  .blog-article-section__banner-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .blog-article-section__banner-overlay {
    background: rgba(70, 41, 112, 0.51);
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

@media (max-width: 992px) {
  .blog-article-section__banner {
    display: none; }
  .blog-article {
    width: 100%; }
    .blog-article__feature-image {
      display: block; }
    .blog-article__heading {
      margin-top: 0px; } }

.related-articles-section {
  padding-bottom: 30px;
  background: #fffcf9; }
  .related-articles-section h2 {
    text-align: center;
    margin-bottom: 65px; }
  .related-articles-section .blog-card--compressed {
    margin-bottom: 60px; }

.related-articles {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .related-articles .related-articles-all-btn {
    display: none; }

.related-article {
  width: 390px;
  max-width: 100%;
  margin-bottom: 40px; }
  .related-article__image {
    border-radius: 8px;
    width: 100%;
    height: 210px;
    object-fit: cover; }
  .related-article__title {
    font-family: "FilsonProBold", sans-serif;
    font-size: 1.5625rem;
    line-height: 1.875rem;
    margin: 20px 0px 10px; }
  .related-article__description {
    margin-bottom: 60px; }

.related-article__card-wrapper {
  display: none; }

@media (max-width: 992px) {
  .related-articles {
    flex-direction: column;
    align-items: center; }
  .related-articles-section .blog-card--compressed {
    display: none; }
    .related-articles-section .blog-card--compressed:first-of-type {
      display: block; }
  .related-articles-section .related-articles-all-btn {
    margin-top: 0px;
    display: block; } }

@media (max-width: 768px) {
  .related-article {
    display: none; }
  .related-articles-section {
    padding-bottom: 50px; }
    .related-articles-section h2 {
      margin-bottom: 30px; }
  .related-article__card-wrapper {
    display: block;
    max-width: 100%; }
    .related-article__card-wrapper .blog-card {
      width: 380px;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto; }
    .related-article__card-wrapper .related-article__all-articles-button {
      width: 380px;
      max-width: 100%;
      margin: 55px auto 0px; } }

.header-carousel__slide {
  width: 100%; }

.header-carousel__image {
  width: 100%;
  height: 600px;
  object-fit: cover; }

.header-carousel__overlay {
  background: rgba(70, 41, 112, 0.51);
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.header-carousel__title {
  padding-top: 100px;
  color: #fffcf9;
  font-family: "FilsonProBold", sans-serif;
  font-size: 2.1875rem;
  line-height: 2.625rem;
  max-width: 482px; }

.header-carousel .btn {
  color: #fffcf9; }
  .header-carousel .btn:hover {
    color: #3c3c3c; }

.header-carousel .splide__pagination {
  left: calc((100% - 940px) / 2);
  width: 300px; }

.header-carousel .splide__arrow--prev {
  display: none; }

.header-carousel .splide__arrow--next {
  right: calc((100% - 1000px) / 2); }

@media (max-width: 1100px) {
  .header-carousel .splide__pagination {
    left: 50%;
    transform: translate(-50%, 0%);
    width: 300px; } }

@media (max-width: 1000px) {
  .header-carousel .splide__arrow--next {
    right: 20px; }
  .header-carousel .splide__pagination {
    width: auto; } }

.testimonials-carousel-section {
  padding: 60px 0px;
  min-height: 720px;
  background-image: url("../../../assets/images/green-semi-circle.svg");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: auto; }

.testimonials-carousel__heading {
  margin-bottom: 45px; }

.testimonials-carousel__slide {
  width: 100%;
  padding-right: 10%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%; }

.testimonials-carousel__stars {
  margin-bottom: 12px; }
  .testimonials-carousel__stars .testimonials-carousel__star {
    height: 34px; }

.testimonials-carousel__quote {
  font-family: "FilsonProBold", sans-serif;
  font-size: 2.1875rem;
  line-height: 2.625rem;
  color: #462970;
  width: 100%;
  max-width: 800px; }

.testimonials-carousel__testimonial-author {
  color: #3c3c3c;
  font-size: 1.5625rem;
  line-height: 1.875rem;
  font-family: "FilsonProBold", sans-serif;
  padding: 40px 0px 20px;
  margin-bottom: 25px; }

.testimonials-carousel .splide__arrow {
  top: 100%; }
  .testimonials-carousel .splide__arrow:hover {
    opacity: 1; }
  .testimonials-carousel .splide__arrow svg {
    fill: #333333; }

.testimonials-carousel .splide__arrow--prev {
  display: none; }

.testimonials-carousel .splide__arrow--next {
  right: calc((100% - 1000px) / 2);
  transform: translateY(-75%); }

.testimonials-carousel .splide__pagination {
  left: calc((100% - 700px) / 2);
  width: 300px;
  bottom: 0;
  justify-content: flex-start; }
  .testimonials-carousel .splide__pagination button {
    border: 3px solid #333333;
    margin-right: 25px; }
  .testimonials-carousel .splide__pagination .splide__pagination__page.is-active {
    background: #333333; }

.testimonials-carousel__button {
  margin-top: 60px; }

@media (max-width: 1000px) {
  .testimonials-carousel .splide__pagination {
    left: 50%;
    justify-content: center;
    max-width: 100%; }
  .testimonials-carousel .splide__arrow--next {
    right: 20px; } }

@media (max-width: 640px) {
  .testimonials-carousel__quote {
    font-size: 1.875rem;
    line-height: 2.3125rem;
    color: #3c3c3c; }
  .testimonials-carousel__slide {
    padding-right: 0px; } }

.product-header-alt__image {
  height: 600px;
  width: auto; }

.product-header-alt__heading {
  font-family: "FilsonProBold", sans-serif;
  color: #3c3c3c; }

.product-header-alt__description {
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-family: "FilsonProBold", sans-serif;
  color: #3c3c3c;
  width: 400px;
  max-width: 100%; }

@media (max-width: 992px) {
  .product-header-alt__image {
    height: 300px;
    width: auto; } }

.product-compare {
  /*Product Row Styling */
  /* Price */
  /*Type Row Styling */
  /* Feature Row Styling */
  /* Battery Row Styling */ }
  .product-compare__title {
    margin: 65px auto 60px;
    text-align: center; }
  .product-compare__choose-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 60px;
    border-bottom: 3px solid #a07bb7;
    margin-bottom: 15px;
    position: relative; }
  .product-compare__product-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 3px solid #a07bb7;
    margin-bottom: 15px; }
  .product-compare__details-wrapper {
    padding-bottom: 60px;
    border-bottom: 3px solid #a07bb7;
    margin-bottom: 60px; }
  .product-compare__details-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 50px; }
    .product-compare__details-row:last-of-type {
      padding-bottom: 0px; }
  .product-compare__container {
    max-width: 1000px;
    margin: auto;
    width: 100%; }
  .product-compare__label {
    width: 146px;
    font-family: "FilsonProBold", sans-serif;
    font-size: 1.25rem;
    line-height: 1.625rem; }
  .product-compare__select {
    width: 330px; }
    .product-compare__select .custom-select {
      width: 100%; }
    .product-compare__select .select-selected {
      border: 3px solid #d6cfe8; }
  .product-compare__content {
    width: 330px;
    max-width: 100%; }
  .product-compare__details-label {
    width: 146px;
    font-family: "FilsonProBold", sans-serif;
    font-size: 1.25rem;
    line-height: 1.625rem; }
  .product-compare__details-content {
    display: flex;
    flex-direction: column;
    width: 330px;
    max-width: 100%; }
  .product-compare__product-title {
    font-family: "FilsonProBold", sans-serif;
    font-size: 1.5625rem;
    line-height: 1.875rem; }
  .product-compare__product-image {
    margin-top: 15px; }
  .product-compare__price-with-grant {
    font-family: "FilsonProBold", sans-serif;
    font-size: 2.1875rem;
    line-height: 2.625rem; }
  .product-compare__price-with-description {
    padding: 8px 0px 6px; }
  .product-compare__price-without-grant {
    font-family: "FilsonProBold", sans-serif;
    font-size: 1.5625rem;
    line-height: 1.875rem; }
  .product-compare__price-grant-link {
    margin-top: 10px;
    font-weight: 700;
    color: #30a6b6; }
  .product-compare__type-image {
    height: 100px;
    width: 150px;
    margin-bottom: 10px; }
  .product-compare__feature-image {
    width: 28px;
    height: 45px;
    margin-bottom: 5px; }
  .product-compare__battery-image {
    width: 50px;
    height: 38px;
    margin-bottom: 5px; }

@media (max-width: 1000px) {
  .product-compare__container {
    margin: auto;
    width: 100%;
    padding: 0px 22px; } }

@media (max-width: 992px) {
  .product-compare__choose-wrapper, .product-compare__product-wrapper, .product-compare__details-row {
    flex-wrap: wrap; }
  .product-compare__choose-wrapper {
    display: flex; }
  .product-compare__label {
    width: 100%; }
  .product-compare__details-label {
    width: 100%;
    font-family: "FilsonProBold", sans-serif;
    font-size: 1.5625rem;
    line-height: 1.875rem;
    margin-bottom: 4px; }
  .product-compare__details-label--price {
    display: none; }
  .product-compare__select, .product-compare__content {
    width: 50%;
    flex: 1; }
    .product-compare__select .custom-select, .product-compare__content .custom-select {
      flex: 1;
      width: calc(100% - 5px); }
    .product-compare__select .select-items, .product-compare__content .select-items {
      font-weight: bold; }
  .product-compare .select-selected {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
  .product-compare__select--active {
    z-index: 1000;
    position: absolute;
    top: 1.65rem; }
  .product-compare__label--product {
    display: none; }
  .product-compare__details-content {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px); }
  .product-compare__price-without-grant {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-top: 18px; } }

@media (max-width: 768px) {
  .product-compare__container {
    padding: 0px 12px; }
  .product-compare__product-button {
    font-size: 1rem;
    line-height: 1.5rem; } }

.hearing-aids-range {
  padding: 70px 22px;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0px auto;
  text-align: center;
  position: relative; }
  .hearing-aids-range--background {
    background: url("../../../assets/images/purple-corner-circle.svg");
    background-position: top right;
    background-size: auto 25%;
    background-repeat: no-repeat; }
  .hearing-aids-range__title {
    width: 648px;
    max-width: 100%; }
  .hearing-aids-range__description {
    width: 648px;
    max-width: 100%;
    text-align: left; }
  .hearing-aids-range__image {
    max-width: 100%;
    text-align: left; }
  .hearing-aids-range__squiggle {
    display: none; }

@media (max-width: 768px) {
  .hearing-aids-range--background {
    background-image: none; }
  .hearing-aids-range.background-underline--cream em {
    background-image: url("../../../assets/images/purple-underline.svg"); }
  .hearing-aids-range__squiggle {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    height: auto;
    width: auto;
    max-width: 100%; } }

.how-they-compare {
  padding: 60px 0px; }
  .how-they-compare .products-carousel {
    display: none; }
  .how-they-compare__heading {
    text-align: center; }
  .how-they-compare__list {
    display: flex;
    justify-content: space-between;
    padding-left: 0px;
    list-style: none; }
  .how-they-compare__list-item {
    display: flex;
    flex-direction: column;
    width: calc(25% - 15px); }
  .how-they-compare__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 245px; }
  .how-they-compare__title {
    margin-top: 48px;
    font-size: 1.875rem;
    line-height: 2.3125rem;
    color: #462970;
    margin-bottom: 6px; }
  .how-they-compare__description {
    color: #3c3c3c;
    font-weight: 700; }
  .how-they-compare__price-with-grant {
    margin-top: 30px; }
    .how-they-compare__price-with-grant .how-they-compare__price {
      font-family: "FilsonProBold", sans-serif;
      font-size: 2.1875rem;
      line-height: 2.625rem;
      display: block; }
  .how-they-compare__price-without-grant {
    margin-top: 30px; }
    .how-they-compare__price-without-grant .how-they-compare__price {
      font-family: "FilsonProBold", sans-serif;
      font-size: 1.5625rem;
      line-height: 1.875rem;
      display: block; }
  .how-they-compare__button {
    margin: 85px auto 0px; }
  .how-they-compare .products-carousel__slide {
    text-align: center; }
  .how-they-compare .products-carousel .how-they-compare__image {
    width: 50%; }

@media (max-width: 992px) {
  .how-they-compare__list {
    display: none; }
  .how-they-compare .products-carousel {
    display: block; }
  .how-they-compare__title {
    opacity: 0;
    transition: opacity 0.3s linear; }
  .how-they-compare__description {
    opacity: 0;
    transition: opacity 0.3s linear; }
  .how-they-compare__price-with-grant {
    opacity: 0;
    transition: opacity 0.3s linear; }
    .how-they-compare__price-with-grant .how-they-compare__price {
      color: #30a6b6; }
  .how-they-compare__price-without-grant {
    display: none; }
  .how-they-compare .splide__pagination {
    display: none; }
  .how-they-compare .splide__arrow svg {
    fill: #3c3c3c; }
  .how-they-compare .is-visible .how-they-compare__title {
    opacity: 1; }
  .how-they-compare .is-visible .how-they-compare__description {
    opacity: 1; }
  .how-they-compare .is-visible .how-they-compare__price-with-grant {
    opacity: 1; }
    .how-they-compare .is-visible .how-they-compare__price-with-grant .how-they-compare__price {
      color: #30a6b6; } }

@media (max-width: 768px) {
  .how-they-compare__list {
    display: none; } }

.advice {
  padding: 60px 0px;
  background-image: url("../../../assets/images/dashed-line-advice.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  min-height: 830px; }
  .advice__title {
    width: 648px;
    max-width: calc(100% - 24px);
    margin: 0px auto;
    text-align: center;
    margin-bottom: 70px; }
  .advice__articles-wrapper {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    max-width: 100%;
    margin: 0px auto; }

.advice-articles-carousel {
  display: none; }

@media (max-width: 992px) {
  .advice {
    background-image: none;
    padding: 48px 22px 100px;
    min-height: 700px; }
    .advice__articles-wrapper {
      display: none; }
    .advice__title {
      font-size: 2rem;
      line-height: 2.625rem;
      text-align: center;
      margin-bottom: 16px; }
  .advice-articles-carousel {
    display: block;
    margin-bottom: 30px; }
    .advice-articles-carousel .related-article {
      margin: 0px auto;
      display: block !important; }
    .advice-articles-carousel .splide__arrow {
      top: initial;
      left: initial;
      right: 0;
      bottom: -90px; }
    .advice-articles-carousel .splide__arrow--prev {
      display: none; }
    .advice-articles-carousel .splide__pagination {
      bottom: -70px; }
      .advice-articles-carousel .splide__pagination button {
        border: 3px solid #333333;
        margin-right: 15px;
        margin-left: 15px; }
      .advice-articles-carousel .splide__pagination .splide__pagination__page.is-active {
        background: #333333; } }

.home-header {
  background: #fffcf9;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center; }
  .home-header__product-section {
    height: 100%;
    padding: 10px 60px 10px 0px;
    margin-left: calc((100% - 1150px) / 2);
    display: flex;
    flex-direction: column; }
  .home-header__product-image-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative; }
  .home-header__product-image {
    height: 370px; }
  .home-header__product-sticker {
    background: #30a6b6;
    color: #ffffff;
    border-radius: 100%;
    height: 180px;
    width: 180px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, 0%); }
  .home-header__product-sticker-icon {
    height: 40px;
    width: 40px; }
  .home-header__product-sticker-text {
    font-weight: 700;
    color: #fffcf9;
    text-align: center; }
  .home-header__product-description {
    width: 436px;
    max-width: 100%;
    font-weight: 700;
    font-family: "FilsonProBold", sans-serif;
    font-size: 1.25rem;
    line-height: 1.625rem; }
  .home-header__product-button {
    margin-top: 18px; }
  .home-header__other-wrapper {
    height: 100%;
    width: 44.9%; }
  .home-header__test {
    position: relative;
    height: 430px; }
  .home-header__test-image {
    width: 100%;
    height: 430px;
    object-fit: cover; }
  .home-header__test-overlay {
    background: rgba(70, 41, 112, 0.7);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 85px calc((100% - 1000px) / 2) 85px 64px; }
  .home-header__test-heading {
    color: #ffffff; }
  .home-header__test-description {
    width: 364px;
    max-width: 100%;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5625rem;
    font-weight: 700; }
  .home-header__test-button {
    color: #ffffff; }
  .home-header__locations {
    background: #ffede6;
    background-image: url("../../../assets/images/background-wave-cream.svg");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 40% auto;
    padding: 60px calc((100% - 1000px) / 2) 60px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 290px; }
  .home-header__locations-heading {
    margin-bottom: 8px; }
  .home-header__locations-button {
    margin-top: 16px; }

@media (max-width: 1280px) {
  .home-header__product-section {
    padding: 10px 60px 10px 0px;
    margin-left: 20px;
    display: flex;
    flex-direction: column; }
  .home-header__product-sticker {
    transform: translate(25%, 0%); }
  .home-header__test-overlay {
    align-items: center;
    padding: 10px; }
  .home-header__locations {
    align-items: center;
    padding: 10px; } }

@media (max-width: 992px) {
  .home-header {
    flex-direction: column;
    overflow: hidden; }
    .home-header__product-section {
      width: 100%;
      padding: 0px;
      margin-left: 0px;
      text-align: center;
      align-items: center;
      padding: 40px 20px 40px; }
    .home-header__product-title {
      order: 1; }
    .home-header__product-description {
      order: 2; }
    .home-header__product-button {
      order: 3;
      margin-bottom: 50px;
      background: #30a6b6; }
    .home-header__product-image-wrapper {
      position: relative;
      order: 4; }
    .home-header__product-sticker {
      top: initial;
      right: initial;
      left: 0;
      bottom: 0;
      transform: translate(-25%, 0%);
      width: 130px;
      height: 130px; }
    .home-header__product-sticker-icon {
      height: 40px;
      width: 40px; }
    .home-header__product-sticker-text {
      font-size: 0.75rem;
      line-height: 1.0625rem; }
    .home-header__other-wrapper {
      width: 100%;
      flex: 1; }
    .home-header__test {
      height: 100%;
      display: flex; }
    .home-header__test-image {
      height: 310px; } }

@media (max-width: 768px) {
  .home-header__product-image {
    height: auto;
    width: calc(100% - 65px);
    margin: 0px auto; }
  .home-header__product-sticker {
    top: initial;
    right: initial;
    left: 0;
    bottom: 0;
    transform: translate(0%, 10%);
    width: 130px;
    height: 130px; } }

.single-column {
  padding: 0px calc((100% - 648px) / 2);
  width: 100%;
  max-width: 100%;
  margin: auto;
  position: relative;
  padding-bottom: 82px; }
  .single-column p,
  .single-column img,
  .single-column h2,
  .single-column h3,
  .single-column h4,
  .single-column h5 {
    margin-bottom: 20px;
    max-width: 100%; }
  .single-column:last-child {
    padding-bottom: 20px;
    margin-bottom: 0px; }

.single-column__divide {
  width: 100%;
  border: 3px solid #3c3c3c;
  border-left: none;
  border-top: none;
  border-right: none;
  width: 100%;
  margin: 0px auto; }

.single-column--with-top {
  padding-top: 70px;
  padding-bottom: 120px; }
  .single-column--with-top__header {
    text-align: center;
    margin-bottom: 48px; }

@media (max-width: 692px) {
  .single-column {
    padding: 0px 22px; } }

/* Location Heading */
.location-heading {
  background: #fffcf9;
  padding-top: 60px;
  padding-bottom: 48px; }
  .location-heading .search-group {
    position: relative;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    margin-top: 46px;
    margin-bottom: 36px; }
    .location-heading .search-group input {
      border-radius: 34px;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      width: calc(100% - 120px); }
    .location-heading .search-group .search-group-append {
      width: 120px;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
      .location-heading .search-group .search-group-append button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        border-radius: 34px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border: 3px solid #3c3c3c;
        border-left: transparent;
        background: transparent; }
        .location-heading .search-group .search-group-append button span {
          display: none; }
        .location-heading .search-group .search-group-append button img {
          height: 30px;
          width: 30px; }
  .location-heading .search-by-location {
    display: flex;
    align-items: center; }
    .location-heading .search-by-location img {
      margin-right: 7px;
      height: 40px; }

/* Map Section */
.map__wrapper {
  height: 720px;
  background: rgba(0, 255, 255, 0.2);
  position: relative; }

.map__marker {
  background: #462970;
  color: #ffffff;
  padding: 22px 18px;
  width: 300px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .map__marker::before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 24px solid #462970;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #462970;
    border-top: 20px solid transparent;
    right: -36px;
    bottom: 50%;
    -webkit-transform: skewY(12deg) translateY(50%);
    transform: skewY(12deg) translateY(50%); }
  .map__marker-title {
    color: #fffcf9; }
  .map__marker-description {
    color: #ffffff; }

.location-results {
  padding: 0px 0px 40px; }
  .location-results__heading-wrapper {
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }
    .location-results__heading-wrapper h2 {
      margin-bottom: 0px; }
  .location-results__sort-wrapper {
    margin-bottom: 10px; }
    .location-results__sort-wrapper select {
      border: none;
      border-bottom: 3px solid #3c3c3c;
      background: transparent;
      min-width: 180px;
      margin-left: 10px;
      font-family: "Montserrat", sans-serif;
      font-size: 1rem;
      line-height: 1.5625rem;
      color: #3c3c3c; }
  .location-results__sort-wrapper--mobile {
    display: none; }
  .location-results__wrapper {
    display: flex; }
  .location-results__dropdowns {
    width: 230px; }
    .location-results__dropdowns .custom-select__label {
      margin-top: 16px;
      font-weight: 700;
      font-size: 1rem;
      line-height: 1.5625rem; }
  .location-results__mobile-filter-btn {
    display: none; }
  .location-results__mobile-filters {
    display: none; }
  .location-results__show-all-link {
    display: block;
    margin-top: 44px;
    text-decoration: underline;
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.625rem; }
  .location-results__show-all-link--mobile {
    display: none; }
  .location-results__content {
    padding: 0px;
    padding-left: 100px;
    flex: 1;
    margin-top: 7px; }
  .location-results__card-list {
    list-style: none;
    padding-left: 0px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  .location-results__card {
    padding: 29px 22px;
    background: #f3f2f6;
    border-radius: 8px;
    width: calc(50% - 11px);
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    max-width: 100%; }
    .location-results__card-town {
      color: #462970;
      font-family: "FilsonProBold", sans-serif;
      margin-bottom: 6px;
      max-width: 100%;
      word-break: break-word; }
    .location-results__card-name {
      font-size: 1rem;
      line-height: 1.5625rem;
      max-width: 100%; }
    .location-results__card-address {
      flex-grow: 1;
      max-width: 100%; }
    .location-results__card-btn {
      margin-top: 10px;
      max-width: 100%; }
    .location-results__card--book {
      background: #ffede6; }
      .location-results__card--book .location-results__card-title {
        display: flex;
        align-items: flex-start;
        justify-content: space-between; }
        .location-results__card--book .location-results__card-title h3 {
          width: calc(100% - 40px); }
  .location-results__home-icon {
    height: 34px; }

@media (max-width: 992px) {
  .location-results__content {
    padding-left: 20px; }
  .location-results__show-all-link--mobile {
    margin-top: 18px;
    margin-bottom: 18px;
    display: block;
    text-align: center; } }

@media (max-width: 900px) {
  .location-results__wrapper {
    display: flex;
    flex-direction: column; }
  .location-results__dropdowns {
    display: none; }
  .location-results__content {
    width: 100%;
    padding-left: 0px; } }

@media (max-width: 600px) {
  .location-heading .search-group input {
    border-radius: 34px;
    width: 100%; }
  .location-heading .search-group .search-group-append {
    width: 100%;
    border: none;
    border-radius: 0px; }
    .location-heading .search-group .search-group-append button {
      display: initial;
      width: 398px;
      max-width: 100%;
      padding: 8px 8px 9px 8px;
      margin-top: 30px;
      min-height: calc(1.6875rem + 21px);
      height: auto;
      font-size: 1.375rem;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      color: #3c3c3c;
      transition: background 0.2s, color 0.2s;
      border-radius: 100px;
      border: solid 3px transparent;
      background: #462970;
      color: #ffffff;
      transition: box-shadow 0.1s ease-in-out; }
      .location-heading .search-group .search-group-append button span {
        display: block; }
      .location-heading .search-group .search-group-append button img {
        display: none; }
  .location-results__heading-wrapper {
    border-bottom: 3px solid #3c3c3c; }
  .location-results__mobile-filter-btn {
    min-width: 106px;
    margin-bottom: 10px;
    min-height: 35px;
    padding: 0px;
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    font-weight: 700;
    color: #3c3c3c;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .location-results__mobile-filter-btn:hover {
      cursor: pointer; }
    .location-results__mobile-filter-btn .location-results__mobile-filter-icon {
      display: block; }
    .location-results__mobile-filter-btn .location-results__mobile-filter-icon-close {
      display: none; }
    .location-results__mobile-filter-btn img {
      margin-left: 26px; }
  .location-results__mobile-filter-btn--active .location-results__mobile-filter-icon {
    display: none; }
  .location-results__mobile-filter-btn--active .location-results__mobile-filter-icon-close {
    display: block; }
  .location-results__content {
    width: 100%;
    padding-left: 0px; }
  .location-results__card {
    width: 100%; }
  .location-results__sort-wrapper {
    display: none; }
  .location-results__mobile-filters--active {
    display: block; }
  .location-results__mobile-filters .location-results__dropdowns {
    margin: 0px -22px;
    display: block;
    width: calc(100% + 44px);
    padding: 10px 22px 40px;
    background: #d6cfe8; }
  .location-results__mobile-filters:after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 3px solid #3c3c3c; }
  .location-results__sort-wrapper--mobile {
    display: block;
    margin-top: 30px;
    margin-bottom: 42px;
    text-align: right;
    font-size: 1rem;
    line-height: 1.5625rem;
    font-weight: 700; }
    .location-results__sort-wrapper--mobile select {
      border: none;
      border-bottom: 3px solid #3c3c3c;
      background: transparent;
      width: 130px;
      margin-left: 8px;
      font-family: "Montserrat", sans-serif;
      font-size: 1rem;
      line-height: 1.5625rem;
      color: #3c3c3c;
      -webkit-appearance: none !important;
      -webkit-border-radius: 0px !important; } }

.clinic-heading {
  padding: 60px 0; }
  .clinic-heading__wrapper {
    display: flex;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap; }
  .clinic-heading__content {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: calc(100% - 400px);
    max-width: 100%; }
    .clinic-heading__content p {
      font-size: 1.25rem;
      line-height: 1.625rem;
      font-family: "FilsonProBold", sans-serif;
      color: #3c3c3c; }
  .clinic-heading__image-wrapper {
    position: relative;
    max-width: 400px;
    width: 50%;
    text-align: right; }
    .clinic-heading__image-wrapper .clinic-heading__image-circle {
      content: "";
      height: 100px;
      width: 120px;
      position: absolute;
      top: 0;
      right: 0;
      background: #30a6b6;
      border-radius: 100%;
      display: block; }
    .clinic-heading__image-wrapper img {
      width: 373px;
      height: 290px;
      object-fit: cover;
      border-radius: 100%;
      position: relative;
      max-width: 100%; }

.top-left {
  object-position: left top; }

.top-middle {
  object-position: center top; }

.top-right {
  object-position: right top; }

.top-left {
  object-position: left top; }

.middle-left {
  object-position: left center; }

.middle-right {
  object-position: right center; }

.bottom-left {
  object-position: left bottom; }

.bottom-middle {
  object-position: center bottom; }

.bottom-right {
  object-position: right bottom; }

@media (max-width: 768px) {
  .clinic-heading__wrapper {
    flex-direction: column; }
  .clinic-heading__content {
    width: 100%;
    max-width: 100%;
    text-align: center; }
    .clinic-heading__content p {
      display: none; }
  .clinic-heading__image-wrapper {
    width: 220px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto; }
    .clinic-heading__image-wrapper img {
      width: 214px;
      height: 166px; }
    .clinic-heading__image-wrapper .clinic-heading__image-circle {
      right: -20px;
      height: 66px;
      width: 78px; } }

.clinic-information .section-triple__column {
  text-align: left;
  align-items: flex-start; }
  .clinic-information .section-triple__column .column__description {
    flex-grow: 1;
    width: 100%; }
  .clinic-information .section-triple__column .column__icon {
    align-self: center; }
  .clinic-information .section-triple__column .column__days {
    list-style: none;
    padding: 0px;
    width: 100%; }
    .clinic-information .section-triple__column .column__days li {
      margin-bottom: 12px;
      width: 100%;
      display: flex;
      justify-content: space-between; }
  .clinic-information .section-triple__column .column__services-list {
    padding-left: 30px; }
  .clinic-information .section-triple__column .get-directions-link {
    font-weight: 700;
    color: #30a6b6; }

.clinic-personel {
  display: flex; }
  .clinic-personel__content {
    width: 290px;
    max-width: 100%;
    display: flex;
    flex-direction: column; }
  .clinic-personel__content img {
    height: 130px;
    width: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #462970;
    margin-top: 24px;
    margin-bottom: 10px;
    align-self: center; }
  .clinic-personel__content p {
    color: #ffffff;
    font-family: "FilsonProBold", sans-serif;
    font-size: 1.25rem;
    line-height: 1.625rem; }
    .clinic-personel__content p:nth-of-type(2) {
      font-size: 2.1875rem;
      line-height: 2.625rem; }
  .clinic-personel__purple {
    background: #462970;
    color: #fffcf9;
    padding: 40px 100px 40px calc((100% - 1000px) / 2);
    width: 50%; }
    .clinic-personel__purple .clinic-personel__content {
      width: 260px;
      max-width: 100%;
      margin: 0 0 0 auto; }
  .clinic-personel__green {
    background: #30a6b6;
    padding: 40px calc((100% - 1000px) / 2) 40px 100px;
    color: #fffcf9;
    width: 50%; }

@media (max-width: 1000px) {
  .clinic-personel__purple,
  .clinic-personel__green {
    width: 50%;
    padding: 20px 40px; } }

@media (max-width: 768px) {
  .clinic-personel {
    flex-direction: column;
    align-items: center; }
  .clinic-personel__purple,
  .clinic-personel__green {
    width: 100%; }
    .clinic-personel__purple .clinic-personel__content,
    .clinic-personel__green .clinic-personel__content {
      margin: 0 auto; } }

.clinic-form {
  background: #f3f2f6; }
  .clinic-form .team-form__heading {
    color: #3c3c3c; }
  .clinic-form .team-form__form {
    color: #3c3c3c; }
  .clinic-form .team-form__heading--phone a {
    color: #30a6b6 !important;
    font-size: 2rem !important;
    line-height: 2.625rem !important;
    font-family: "FilsonProBold", sans-serif !important; }

.digital-hearing {
  padding: 130px 20px; }
  .digital-hearing--compressed {
    padding: 40px 20px 0px; }
  .digital-hearing__heading-wrapper {
    width: 648px;
    max-width: 100%;
    margin: 0 auto 52px;
    text-align: center; }
  .digital-hearing__benefits {
    width: 1000px;
    max-width: 100%;
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap; }
  .digital-hearing__benefits-column {
    display: flex;
    flex-direction: column;
    width: 33%;
    text-align: center;
    align-items: center;
    padding: 5px; }
    .digital-hearing__benefits-column p {
      max-width: 270px;
      font-family: "FilsonProBold", sans-serif;
      font-size: 1.25rem;
      line-height: 1.625rem;
      display: block;
      min-height: calc(3.125rem + 27px);
      padding-bottom: 20px;
      margin-bottom: 60px;
      width: 100%;
      position: relative;
      background: url(../../assets/images/purple-underline.svg);
      background-repeat: no-repeat;
      background-position: center 100%;
      background-size: 75%, 20px; }

@media (max-width: 768px) {
  .digital-hearing {
    padding: 50px 10px; }
  .digital-hearing__benefits-column {
    width: 50%; } }

@media (max-width: 768px) {
  .digital-hearing__benefits-column {
    width: 50%; } }

@media (max-width: 400px) {
  .digital-hearing__benefits-column {
    width: 100%; } }

.faq {
  padding: 90px 20px; }
  .faq__wrapper {
    position: relative;
    width: 648px;
    max-width: 100%;
    margin: 0px auto; }
  .faq .collapsible {
    font-size: 1rem;
    line-height: 1.5625rem; }
  .faq .collapsible__content p {
    padding-bottom: 20px; }

.alt-cta-m {
  display: none; }

.alt-cta__content {
  padding: 40px 0px;
  width: 1000px;
  max-width: 100%;
  margin: 0px auto;
  display: flex;
  align-items: center; }

.alt-cta__text {
  width: 50%;
  order: 1; }

.alt-cta__image-half {
  width: 50%;
  order: 2; }

.alt-cta__image-wrapper {
  position: relative;
  width: 340px;
  height: 320px;
  margin: 0px auto; }
  .alt-cta__image-wrapper img {
    height: 310px;
    width: 310px;
    border-radius: 100%;
    display: block;
    position: absolute;
    left: 29px;
    top: 10px; }
  .alt-cta__image-wrapper span {
    content: "";
    height: 166px;
    width: 156px;
    position: absolute;
    top: 0;
    left: 0;
    background: #30a6b6;
    border-radius: 100%;
    display: block; }

@media (max-width: 1000px) {
  .alt-cta {
    padding: 40px 20px; } }

@media (max-width: 768px) {
  .alt-cta {
    display: none; }
    .alt-cta__content {
      flex-direction: column; }
    .alt-cta__text {
      width: 100%;
      order: 2;
      margin-top: 20px; }
    .alt-cta__image-half {
      width: 100%;
      order: 1; }
  .alt-cta-m {
    padding: 40px 20px;
    display: block;
    background-color: #d6cfe8; }
    .alt-cta-m__text .btn {
      margin-bottom: 50px; }
    .alt-cta-m__textandicon {
      display: flex;
      align-items: center;
      text-align: left; }
      .alt-cta-m__textandicon p {
        font-family: "FilsonProBold", sans-serif;
        font-size: 1.125rem;
        line-height: 1.625rem; }
    .alt-cta-m__icon {
      margin-right: 28px; }
    .alt-cta-m__content {
      text-align: center;
      font-size: 2rem;
      line-height: 2.625rem; } }

.footer {
  background: #f3f2f6; }
  .footer__content {
    display: flex;
    width: 100%;
    padding: 60px 0px 0px; }
  .footer__column {
    flex: 1; }
  .footer__column--contact {
    flex: 2; }
  .footer__column-heading {
    font-size: 1.25rem;
    line-height: 1.625rem;
    font-family: "FilsonProBold", sans-serif; }
  .footer__column-links {
    padding: 0px;
    list-style: none; }
    .footer__column-links li:first-child {
      margin-top: 10px; }
  .footer__column-link {
    text-decoration: none;
    color: #3c3c3c;
    font-size: 0.875rem;
    line-height: 1.25rem; }
    .footer__column-link--bold {
      font-weight: 700; }
  .footer__social-links {
    display: flex;
    padding: 0px;
    list-style: none;
    margin-top: 25px; }
  .footer__address {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-top: 40px; }
  .footer__social-link {
    margin-right: 20px; }
  .footer__fineprint {
    border-top: 3px solid #d6cfe8;
    padding: 20px 0px 30px; }
  .footer__fineprint-list {
    list-style: none;
    padding: 0px;
    display: flex;
    max-width: 100%;
    flex-wrap: wrap; }
  .footer__fineprint-link {
    text-decoration: none;
    color: #3c3c3c; }
  .footer__fineprint-link--divider {
    padding: 0px 10px; }
  .footer__middle-wrapper {
    width: 100%;
    display: flex;
    margin-top: 50px;
    margin-bottom: 50px; }
  .footer__stripe-image {
    margin-right: 156px;
    order: 1; }
  .footer__newsletter-wrapper {
    max-width: 50%;
    width: 50%;
    order: 2; }
  .footer__newsletter-form {
    display: flex; }
    .footer__newsletter-form .newsletter-form-group {
      margin-right: 24px;
      min-width: 333px; }
      .footer__newsletter-form .newsletter-form-group input {
        border-color: #d6cfe8; }

@media (max-width: 992px) {
  .footer__content {
    flex-wrap: wrap; }
  .footer__stripe-image {
    margin-right: calc(50% - 234px); }
  .footer__column {
    flex-basis: 50%;
    margin-bottom: 60px; }
  .footer__fineprint {
    font-size: 0.875rem;
    line-height: 1.25rem; }
  .footer__newsletter-form {
    flex-direction: column; }
    .footer__newsletter-form .newsletter-form-group {
      margin: 0; }
    .footer__newsletter-form label {
      font-size: 1.5625rem;
      line-height: 1.875rem;
      font-family: "FilsonProBold", sans-serif;
      margin-bottom: 12px;
      display: block; }
    .footer__newsletter-form input {
      width: 366px;
      max-width: 100%; }
    .footer__newsletter-form .btn {
      margin-top: 12px;
      width: 366px;
      max-width: 100%; } }

@media (max-width: 768px) {
  .footer__middle-wrapper {
    flex-direction: column;
    margin-top: 0px; }
  .footer__newsletter-wrapper {
    order: 1;
    width: 100%;
    max-width: 100%; }
  .footer__stripe-image {
    order: 2;
    margin: 0;
    width: 224px;
    max-width: 224px;
    margin-top: 40px; } }

@media (max-width: 480px) {
  .footer__column:nth-child(odd) {
    border-right: 3px solid #a07bb7;
    margin-right: 20px;
    flex-basis: calc(50% - 23px);
    padding-right: 20px; }
  .footer__social-links {
    flex-wrap: wrap; }
    .footer__social-links .footer__social-link img {
      height: 60px;
      width: 60px; }
  .footer__column--contact {
    flex: 1;
    flex-basis: 50%;
    width: 50%; }
    .footer__column--contact span {
      display: none; }
  .footer__stripe-image {
    order: 2;
    margin: 0;
    width: 178px;
    max-width: 178px;
    margin-top: 48px; }
  .footer__newsletter-form .newsletter-form-group {
    min-width: initial; } }

.modal {
  background: #fffcf9;
  backface-visibility: hidden;
  background: #fffcf9;
  border-radius: 3px;
  box-sizing: border-box;
  display: none;
  left: 0;
  margin: auto;
  height: 100%;
  max-width: 100%;
  opacity: 0;
  overflow-y: auto;
  padding: 0;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  visibility: hidden;
  z-index: 1000; }
  @media (min-aspect-ratio: 1 / 1) {
    .modal {
      box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.6); } }
  @media (max-aspect-ratio: 1 / 1) {
    .modal {
      box-shadow: 0 0 0 100vh rgba(0, 0, 0, 0.6); } }
  .modal--open {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease; }
  .modal__close {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    line-height: 0.875rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .modal__close img {
      margin-bottom: 3px; }
  .modal-footer {
    margin-bottom: 70px; }
    .modal-footer__icon-buttons-wrapper {
      display: flex;
      margin-top: 65px;
      margin-bottom: 54px; }
    .modal-footer__icon-link {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      flex-basis: 33%;
      text-transform: uppercase;
      font-weight: 700;
      font-size: 0.875rem;
      line-height: 1.625rem; }
      .modal-footer__icon-link img {
        height: 35px;
        width: 35px;
        margin-bottom: 12px; }
    .modal-footer .btn {
      margin-left: auto;
      margin-right: auto;
      max-width: 370px;
      font-weight: 700;
      font-size: 1.25rem;
      line-height: 1.5rem;
      max-width: calc(100% - 30px); }

.modal-heading {
  border-bottom: 1px solid rgba(60, 60, 60, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px; }

.modal-body .collapsible {
  padding: 18px; }

.modal-body .collapsible__content {
  padding: 0px 38px;
  background: #ffede6;
  list-style: none; }
