/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

*,*:before,*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-family: 'Poppins',sans-serif;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong {
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #00a2af;
    text-decoration: none;
    background-color: transparent;
    transition: all .3s;
}

a:hover {
    color: #058691;
    text-decoration: underline;
}

p {
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ====================== */
/* = Buttons */
/* ====================== */
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 24px;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    color: #212529;
    text-decoration: none;
}

.arrow-btn {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.btn-outline-secondary {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    color: #6c757d;
    border-color: #6c757d;
    position: relative;
    z-index: 2;
}

/* ====================== */
/* = LAYOUT */
/* ====================== */
.row {
    display: flex;
    align-items: center;
    display: flex;
    margin-right: -15px;
    margin-left: -15px;
}

.row--align-center {
    align-items: center!important;
}

.row--align-top {
    align-items: flex-start !important;
}

.row--justify-center {
    justify-content: center!important;
}

.row--reverse {
    flex-direction: row-reverse!important;
}

.row--wrap {
    flex-wrap: wrap;
}

[class^="col"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-2 {
    float: left;
    width: 16.67%;
}

.col-3 {
    float: left;
    width: 25%;
}

.col-5 {
    float: left;
    width: 41.67%
}

.col-4 {
    float: left;
    width: 33.33%;
}

.col-8 {
    float: left;
    width: 66.67%;
}

@media (min-width: 576px) {
    .col-sm-2 {
        float: left;
        width: 16.67%;
    }

    .col-sm-3 {
        float: left;
        width: 25%;
    }

    .col-sm-4 {
        float: left;
        width: 33.33%;
    }

    .col-sm-5 {
        float: left;
        width: 41.67%
    }

    .col-sm-6 {
        float: left;
        width: 50%
    }
}

@media (min-width: 768px) {
    .col-md-2 {
        float: left;
        width: 16.67%;
    }

    .col-md-3 {
        float: left;
        width: 25%;
    }

    .col-md-4 {
        float: left;
        width: 33.33%;
    }

    .col-md-5 {
        float: left;
        width: 41.67%
    }

    .col-md-6 {
        float: left;
        width: 50%;
    }

    .col-md-7 {
        float: left;
        width: 58.33%;
    }

    .col-md-8 {
        float: left;
        width: 66.67%;
    }
}

@media (min-width: 992px) {
    .col-lg-2 {
        float: left;
        width: 16.67%;
    }

    .col-lg-3 {
        float: left;
        width: 25%;
    }

    .col-lg-4 {
        float: left;
        width: 33.33%;
    }

    .col-lg-5 {
        float: left;
        width: 41.67%
    }

    .col-lg-6 {
        float: left;
        width: 50%
    }
}

/* ====================== */
/* = section */
/* ====================== */
.section {
}

.section__title {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
	line-height: 35px;
}

@media (max-width: 767px) {
    .section__title {
        font-size: 27px;
    }
}

/* ====================== */
/* = HEADER */
/* ====================== */
.main-header {
    padding: 10px 0;
    position: relative;
}

.main-header .site-logo {
}

.main-header .site-logo img {
    max-width: 200px;
    width: 100%;
}

/* header (burger-icon) */
.burger-icon {
    display: none;
    width: 100%;
    max-width: 29px;
    position: relative;
    height: 24px;
}

@media (max-width: 767px) {
    .burger-icon {
        display: block;
        float: right;
    }
}

.burger-icon__top, .burger-icon__middle, .burger-icon__bottom {
    content: '';
    display: inline-block;
    width: 100%;
    height: 4px;
    background: #00a2af;
    position: absolute;
    border-radius: 10px;
}

.burger-icon__top {
    top: 0;
    left: 0;
}

.burger-icon__middle {
    top: calc(50% - 2px);
    left: 0;
}

.burger-icon__bottom {
    bottom: 0;
    left: 0;
}

/* header (nav list) */
.header-nav__list {
    text-align: center;
}

@media (max-width: 767px) {
    .header-nav__list {
        display: none;
        position: absolute;
        width: 200px;
        top: 60px;
        right: 10px;
        z-index: 9;
        background: #fff;
        border: 1px solid #dadada;
    }
}

.header-nav__list li {
    display: inline-block;
    margin: 0 15px;
}

@media (max-width: 767px) {
    .header-nav__list li {
        display: block;
        width: 100%;
        padding: 20px;
        margin: 0;
        border-bottom: 1px solid #dadada;
    }
}

.header-nav__list a {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    transition: all .5s ease-in-out;
}

@media (max-width: 767px) {
    .header-nav__list li a {
        margin-bottom: 10px;
    }
}

.header-nav__list a:hover {
    color: #f0ce11;
    text-decoration: none;
}

/* header (contact) */
.header-contact {
    display: flex;
    align-items: center;
}

.header-contact p {
    color: #00a2af;
    font-size: 12px;
    font-weight: 700;
    padding-right: 20px;
    text-align: right;
}

@media (max-width: 980px) {
    .header-contact p {
        display: none;
    }
}

.header-contact a {
    font-size: 22px;
    font-weight: 700;
    background: #f0ce11;
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #fff;
    border-radius: 5px;
}

@media (max-width: 575px) {
    .header-contact a {
        padding: 2px;
    }
}

@media (max-width: 575px) {
    .header-contact a span {
        display: none;
    }
}

.header-contact a img {
    margin-right: 5px;
}

@media (max-width: 575px) {
    .header-contact a img {
        margin-right: 0;
    }
}

/* ====================== */
/* = section banner */
/* ====================== */
.section--main-banner {
    background: url(../images/home-banner.png) no-repeat top;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
    /* display: none; */
}

.section--main-banner .container {
}

/* section banner (booking) */
.booking {
    color: #fff;
    background: #00a2af;
    padding: 30px;
    position: relative;
}

.booking-animate {
    transition-property: opacity,-webkit-transform;
    transition-property: opacity,transform;
    transition-property: opacity,transform,-webkit-transform;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.47,0,.745,.715);
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.booking img {
    position: absolute;
    bottom: -70px;
    z-index: 9;
}

.booking-animate img {
    transition-property: opacity,-webkit-transform;
    transition-property: opacity,transform;
    transition-property: opacity,transform,-webkit-transform;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.25,.25,.75,.75);
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition-delay: .3s;
}

.booking h1 {
    font-size: 34px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
}

.booking p {
    font-size: 22px;
    margin-bottom: 10px;
}

form .input-group {
    margin-bottom: 24px;
    position: relative;
    display: flex;
    -ms-flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

form .input-city {
    position: relative;
}

form .input-control {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

form .input-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}

.input-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 9px 18px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.input-group .input-control {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.booking form input {
    background-image: url(../images/eg-v4-map.png);
    background-repeat: no-repeat;
    padding-left: 55px;
    background-position: 20px 50%;
    height: 60px;
    position: relative;
    font-size: 18px;
}

a.tooltip {
    position: absolute;
    left: auto;
    right: 6px;
    top: 7px;
    z-index: 2;
}

.input-results {
    display: block;
    padding: 10px;
    background: #fff;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow: auto;
    transition: display .2s linear 0s;
    border-radius: 4px;
}

.input-city .input-results {
    position: absolute;
    top: 60px;
    height: 300px;
    z-index: 9;
}

.booking form button {
    display: block;
    width: 100%;
    height: 60px;
    color: #000 !important;
    background-color: #f0ce11;
    padding: 10px 15px;
    transition: all .5s ease-in-out;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.booking form button:after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 17px;
    background-image: url(../images/eg-v4-r-arrow.png);
    background-repeat: no-repeat;
    position: relative;
    margin: 0 0 0 10px;
    top: 2px;
}

/* section banner (hero image) */
.banner-hero-image {
    padding: 50px;
}

@media (max-width: 575px) {
    .banner-hero-image {
        padding: 0 0 30px;
    }
}

@media (max-width: 575px) {
    .banner-hero-image img {
        margin: 100px auto 0;
        max-width: 350px;
        /* background-color: white; */
    }
}

/* ====================== */
/* = SECTION SERVICES */
/* ====================== */
.section--services {
    padding: 50px 0;
    background: #f5f8fc;
    /* display: none; */
}

.section--services p {
    font-size: 18px;
    margin-bottom: 15px;
}

.section--services .container {
    max-width: 880px;
}

.services__service {
    padding: 25px;
    text-align: center;
    color: #646464;
    font-size: 7.78px;
    font-weight: 700;
    border-radius: 4px;
    margin: 0 0 15px;
    background: #fff;
    border: 1px solid #dee2e6!important;
}

.services__service h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #00a2af;
}

.services__service-icon img {
    margin: 0 auto 15px;
    width: 62px;
}

.services__service p {
    font-size: 14px;
}

.services__service p i {
    margin-right: 10px;
    color: #00a856;
}

/* ====================== */
/* = SECTION HEARING AID */
/* ====================== */
@media (max-width: 767px) {
    .hearing-block--text {
        padding: 20px;
    }
}

.hearing-block--text p {
    font-size: 18px;
    margin: 15px 0;
}

.section--hearing {
    /* display: none; */
}

.section--hearing .hearing-compare, .section--hearing .free-hearing {
    padding-top: 50px;
}

.hearing-compare button[type='button'], .free-hearing button[type='button'] {
    height: 60px;
    color: #000;
    background-color: #f0ce11;
    padding: 10px 45px;
    transition: all .5s ease-in-out;
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    margin: 20px 0;
    font-weight: 700;
    cursor: pointer;
}

.hearing-compare button[type='submit']:after, .free-hearing button[type='submit']:after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 17px;
    background-image: url(../images/eg-v4-r-arrow.png);
    background-repeat: no-repeat;
    position: relative;
    margin: 0 0 0 10px;
    top: 2px;
}

@media (max-width: 575px) {
    .hearing-compare button[type='submit'], .free-hearing .hearing-compare button[type='submit'] {
        height: 50px;
    }
}

.free-hearing {
    background: #f5f8fc;
}

/* ====================== */
/* = SECTION CUSTOMERS */
/* ====================== */
.section--customers {
    background: #00a2af;
    padding: 50px 0;
    color: #fff;
    text-align: center;
    /* display: none; */
}

.section--customers h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section--customers p {
    font-size: 24px;
    font-weight: 700;
}

.section--customers p.customer-rate {
    font-size: 18px;
    font-weight: 400;
}

.section--customers p span i {
    color: #ffad2d;
    font-size: 18px;
    margin-left: 8px;
}

/* section customers (customers slider) */
.customers-slider {
    margin: 30px 0;
}

.section--customers .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -30px
}

.section--customers .owl-nav .owl-prev span {
    font-size: 40px;
}

.section--customers .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -30px
}

.section--customers .customers-slider .owl-nav .owl-next span {
    font-size: 40px;
}

.customers-slider__slide {
    background: #f5f8fc;
    color: #626262;
    padding: 20px;
    text-align: left;
}

.customers-slider__slide-rate {
    margin-bottom: 15px;
    font-weight: 400;
}

.customers-slider__name-rate span {
    margin-bottom: 5px;
}

.customers-slider__name-rate span i {
    color: #ffad2d;
    font-size: 14px;
    margin-left: 5px;
}

.customers-slider__name-rate span i:first-child {
    margin-left: 0;
}

.customers-slider__name-rate p {
    font-size: 16px;
}

.customers-slider__day p {
    font-size: 14px;
    color: #626262;
    font-weight: 300;
}

.customers-slider__content h5 {
    font-size: 18px;
    color: #00a2af;
    margin-bottom: 15px;
    font-weight: 700;
}

.customers-slider__content p {
    font-size: 16px;
    font-weight: 400;
}




/* questioning section styles */
/* section questions */
#questions {
}

.section--questions {
    background: url(../images/questions/bg-image.jpg) no-repeat top;
    background-size: cover;
    background-attachment: fixed;
    padding: 7% 0;
    position: relative;
}

.section--questions h2 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .section--questions h2 {
        font-size: 46px;
    }
}

.section--questions p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .section--questions p {
        font-size: 18px;
    }
}

.section--questions p span {
    color: #ffae2a;
    font-weight: 700;
}

.section--questions .container {
}

.questions-sec {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    position: relative;
    margin-bottom: 90px;
}

.questions-sec:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 20px;
    left: -180px;
    background: url(../images/questions/start.svg) no-repeat 50%;
    background-size: 170px;
    width: 170px;
    height: 170px;
}

.q-progress, .q-progress-bar {
    background-color: #e9ecef;
    overflow: hidden;
    display: flex;
}

.q-progress {
    border-radius: 0;
    height: 2.2rem;
    margin-bottom: 30px;
    font-size: large;
    font-stretch: extra-expanded;
    font-weight: 800;
}

.progressbar {
}

#q-progress {
}

.q-progress-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    -webkit-transition: width .6s ease;
    transition: width .6s ease;
    overflow: visible;
}

.questions-sec .q-progress-bar {
    background: #98f785;
    background: -webkit-gradient(linear,left top,right top,from(#98f785),to(#28a745));
    background: linear-gradient(90deg,#98f785 0,#28a745);
}

/* questions form */
input[type=checkbox], input[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

.q-form-body {
    padding: 5%;
}

.q-step1 {
}

.questions-sec h5 {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .questions-sec h5 {
        font-size: 17px;
    }
}

.input-group {
}

.form-radio {
    margin-bottom: 20px;
    text-align: center;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 30px;
}

.form-check-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 18px;
}

.form-check-input {
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0;
}

.q-form-body .form-check-inline input {
    display: none;
}

.q-form-body .input-group {
    text-align: left;
    margin-bottom: 20px;
    text-align: center;
}

.q-form-body .input-group input {
    height: 60px;
}

.q-form-body .form-check-inline label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 22px;
    margin: 0 10px;
}

.q-form-body .input-group label {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
}

.form-check-label {
    margin-bottom: 0;
}

.q-form-body .form-check-inline label img {
    max-width: 38px;
    margin-right: 10px;
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    filter: grayscale(1);
}

.q-form-body .form-check-inline label:hover {
    cursor: pointer;
}

.q-form-body .form-check-inline label:hover img {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    filter: grayscale(0)
}

.q-form-body p.small {
    color: #000;
    font-size: 13px;
}

/* companies */
.companies {
    background: hsla(0,0%,100%,.2);
    width: 100%;
    padding: 15px 0;
    margin-bottom: -7%;
}

.companies .container {
}

.companies-seen {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 767px) {
    .companies-seen {
        margin-bottom: 20px;
        text-align: center;
    }
}

.companies-block {
}

.companies-block img {
    max-width: 150px;
    width: 100%;
    margin: 0 auto;
}

/* section free-check */
.section--free-check {
    background: #f5f5f5;
    padding: 30px 0;
}

.section--free-check .container {
}

.free-check-block {
    position: relative;
}

@media (max-width: 767px) {
    .free-check-block {
        margin-bottom: 15px;
    }
}

.section--free-check .free-check-block:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    height: 70px;
    width: 1px;
    background: #d8d8d8;
}

.free-check-block img {
    margin: 0 auto;
}

/* section--hearing */
.section--hearing-aid {
    padding: 7% 0;
}

.section--hearing-aid .container {
}

.hearing-block {
    padding: 0 5%;
    text-align: center;
}

@media (max-width: 767px) {
    .hearing-block {
        margin-bottom: 5%;
    }
}

.hearing-block img {
    margin: 0 auto 7%;
	width: 80%;
}

.hearing-block p {
    font-size: 18px;
}

@media (max-width: 767px) {
    .hearing-block p {
        font-size: 16px;
    }
}

.hearing-block p span {
    font-weight: 700;
}

/* step3 */
.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.q-form-body .input-group select {
    height: 60px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.next-btn {
    margin: 40px 0 15px;
}

.next-btn button {
    display: block;
    width: 100%;
    height: 60px;
    color: #fff;
    background-color: #f0ce11;
    padding: 10px 15px;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

/* step 7  */
.back {
    margin-bottom: 25px;
}

.back a {
    color: #757474;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
}

.back a img {
    margin-right: 15px;
}

.good-news {
    padding: 0 20px 20px;
    border-radius: 3px;
    margin-bottom: 25px;
}

.good-news img {
    max-width: 100px;
    margin: 0 auto 15px;
}

.good-news h3 {
    color: #4bc059;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
}

.good-news p {
    color: #1f1f1f;
    margin-bottom: 0;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.q-form-body .has-feedback {
    padding: 0;
    margin-bottom: 20px;
}

.q-form-body .has-feedback label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 22px;
    margin: 0 auto 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
}

.q-form-body .has-feedback input.form-control {
    height: 60px;
    position: relative;
}

.q-form-body .has-feedback .invalid {
    font-size: 12px;
    color: red;
    padding: 5px;
    background: #f8d7da;
}

.q-form-body .has-feedback .form-control-feedback {
    position: absolute;
    top: 50px;
    right: 15px;
}

.q-form-body .has-feedback .form-control-feedback.invalid, .q-form-body .has-feedback .form-control-feedback.valid {
    background: transparent;
}

.q-form-body .has-feedback .form-control-feedback i {
    font-size: 16px;
}

.text-success {
    color: #28a745!important;
}

.q-form-body .has-feedback .valid {
    font-size: 12px;
    color: green;
    padding: 5px;
    background: #f8d7da;
}

div.results {
    display: block;
    padding: 10px;
    background: #fff;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow: auto;
    -webkit-transition: display .2s linear 0s;
    transition: display .2s linear 0s;
    border-radius: 4px;
}

/* temp loading */
.load-match h5 {
    font-size: 26px;
    color: #00a2af;
}

@media (max-width: 767px) {
    .load-match h5 {
        font-size: 22px;
    }
}

.load-match img {
    margin: 0 auto
}


/* ====================== */
/* = FOOTER */
/* ====================== */
.footer {
    border-top: 5px solid #eaf3fe;
}

/* footer top */
.footer__top {
    padding: 40px 0;
}

.footer__top .row .row {
    align-items: flex-start;
}

.footer__logo {
    margin-bottom: 15px;
}

.footer__logo img {
    max-width: 200px;
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 575px) {
	.booking h1 {
		font-size: 1.8em;
		line-height: 33px;
		margin-bottom: 5px;
	}
	
	.booking p {
		font-size: 19px;
	}
	
	.services__service h5 {
		font-size: 17px;
	}
	
	.services__service-icon img {
		width: 100px;
	}
	
	.section--customers h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
	
	.customers-slider__day p {
		font-size: 13px;
	}
	
	.header-nav__list li {
		padding: 12px;
	}
	
	.hearing-block img {
		width: 100%;
	}
	
	.section--questions h2 {
		font-size: 30px;
    	line-height: 35px;
	}
	
	.section--questions p {
		font-size: 16px;
	}
	
	.section--hearing-aid .hearing-block img {
		width: 70%;
	}
	
	.section--hearing-aid .hearing-block p {
		font-size: 23px;
	}
	
    .footer__logo img {
        margin: 0 auto;
    }
	
	.footer__address {
        text-align: center;
    }
	
	.footer__nav {
        margin-top: 20px;
        text-align: center;
    }
	
	.footer__social {
        margin-top: 20px;
        text-align: center;
    }
}

.footer__address .address p {
    font-size: 14px;
    padding-left: 10px;
    margin-top: 9px;
}

.footer__nav {
    margin-top: 10px;
}

.footer__nav li {
    margin-bottom: 10px;
    line-height: 10px;
}

.footer__nav a {
    font-weight: 700;
    color: #686868;
    font-size: 13px;
    transition: all .5s ease-in-out;
}

.footer__nav a:hover {
    color: #058691;
    text-decoration: underline;
}

/* footer social  */
.footer__social {
    margin-top: 10px;
}

.footer__social li {
    display: inline-block;
    margin: 0 15px 15px 0;
}

.footer__social p {
    font-size: 13px;
}

/* footer__subscribe */
.footer__subscribe p {
    font-size: 14px;
    padding-left: 10px;
    margin-top: 9px;
    padding-left: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer__subscribe .mb-3 {
    margin-bottom: 24px !important;
}

.footer__subscribe form input {
    font-size: 13px;
}

.footer__subscribe .input-group-append {
    display: flex;
    margin-left: -1px;
}

.footer__subscribe button {
    background: #00a2af;
    cursor: pointer;
    transition: all .3s;
}

.footer__subscribe button:hover {
    background: #058691;
}

#button-addon2 i {
    color: #fff;
}

/* footer bottom */
.footer__bottom {
    background: #333941;
    color: #fff;
    font-size: 14px;
    padding: 25px 0;
    text-align: center;
}

.subscribe button.btn {
	padding: 0 .75rem;
}

/* ====================== */
/* = COMPONENTS */
/* ====================== */
/* Reusable elements will go here. e.g., ".social", ".clearfix" */
.clear {
    clear: both;
}

.clearfix:before, .clearfix:after {
    content: '.';
    display: block;
    overflow: hidden;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 0;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1; }

.mb-50 {
    margin-bottom: 50px !important;
}

.no-spacing {
    padding: 0;
    margin: 0;
}

.no-spacing-top {
    padding-top: 0;
    margin-top: 0;
}

.text-center {
    text-align: center !important;
}

.small {
    font-size: 80%;
    font-weight: 400;
}

/* Animation */
.animation {
	animation: fadeInUp 1.25s ease-in 0s 1;
}

.animation button:hover {
	animation: push .3s linear 0s 1;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes push {
  	50% {
    	transform: scale(0.8);
	}
	
	100% {
		transform: scale(1);
	}
}