html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #e0ecf3;
    overflow: hidden;
}

/* font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Source Sans Pro', sans-serif; */

h1 {
    font-size: 3vh;
}

h2 {
    font-size: 2.5vh;
}

h3 {
    font-size: 2vh;
}

h4 {
    font-size: 1.8vh;
}

h5 {
    font-size: 1.5vh;
}

.smaller-h1 {
    font-size: 1.5vh;
}

p, button, a, li {
    font-size: 1.5vh;
}

@media only screen and (max-width: 980px) {
    p, button, a, li {
        font-size: 1.8vh;
    }
}

a {
    color: #304aed;
    text-decoration: none;
}

a:hover {
    color: #0b1e9d;
}

button, .button {
    display: inline-block;
    background-color: #ecf8ff;
    color: #505050;
    border: none;
    border-radius: 5px;
    padding: 1vh 2vh;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 1px 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin-top: 1%;
}

button.button-red-border, .button.button-red-border {
    border: 2px solid rgba(200,5,5,0.8);
}

button.button-red-border:hover, .button.button-red-border:hover {
    border: 2px solid rgba(200,5,5,0.6);
}

button:hover, .button:hover {
    background: rgba(252,225,102,1);
    box-shadow: 1px 2px 5px rgba(0,0,0,0.1);
}

#header {
    width: 100%;
    height: 20%;
    background: #fff;
    display: table;
    table-layout: fixed;
    background: #cee8ff;
    transition: all 0.3s ease;
}

#header.collapsed {
    height: 8%;
}

#header #header-appointment {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#header #header-appointment-title {
    margin: 0 auto;
}

#header #header-appointment #header-appointment-title h2 {
    font-size: 1.8vh;
    margin: 1vh 0;
}

#header.collapsed #header-appointment-title {
    -webkit-transition: height 0.5s ease;
    -moz-transition: height 0.5s ease;
    -o-transition: height 0.5s ease;
    transition: height 0.5s ease;
}

#header.collapsed #header-appointment-title {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

#header #header-logo {
    display: table-cell;
    vertical-align: middle;
    padding-left: 2%;
}

#header #header-logo img {
    width: 10vh;
    transition: all 0.3s ease;
}

#header.collapsed #header-logo img {

}

#header #header-navigation {
    display: table-cell;
    vertical-align: middle;
}

#header #header-navigation table {
    float: right;
    margin-right: 2vh;
}

@media only screen and (max-width: 980px) {
    #navigation-table {
        display: none;
    }

    #mobile-navigation {
        display: block;
    }

    #header-appointment-title {
        display: none;
    }

    #header {
        height: 10%;
    }

    #header #header-logo img {
        width: 8vh
    }
}

@media only screen and (min-width: 981px) {
    #navigation-table {
        display: block;
    }

    #mobile-navigation {
        display: none;
    }

    #header-appointment-title {
        display: block;
    }
}

#mobile-navigation {
    text-align: right;
}

#header #header-navigation #mobile-navigation i.menu-icon {
    font-size: 3vh;
    padding-top: 1vh;
}

#header #header-navigation #mobile-navigation i.menu-close-icon {
    position: absolute;
    display: none;
    right: 5vh;
    font-size: 5vh;
    z-index: 101;
}

#mobile-menu-overlay {
    display: none;
    background: #e0ecf3;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
}

#mobile-menu-container {
    display: none;
    position: absolute;
    left: 10%;
    top: 20%;
    width: 90%;
    height: 80%;
    z-index: 101;
}

#mobile-menu-container ul li {
    list-style: none;
    margin-top: 3vh;
}

#mobile-menu-container ul li a {
    font-size: 5vh;
    color: #333;
}

#mobile-menu-container ul li.active a {
    border-bottom: 2px solid #333;
}

#mobile-navigation i {
    margin-right: 5vh;
}

#navigation-table {
    float: right;
    margin-right: 2vh;
    width: 40vh;
    font-size: 0.9vh;
}

#navigation-table li {
    display: inline;
    padding: 0 0.8vh;
    color: #000;
    font-weight: 500;
    cursor: pointer;
}

#navigation-table li a:hover, #navigation-table li.active a {
    color: rgba(0,0,0,0.7);
}

#navigation-table li a {
    text-decoration: none;
    color: #000;
}

#navigation-table li li {
    display: block;
}

#navigation-table li ul {
    width: 10%;
}

#navigation-table li #navigation-section-about {
    display: none;
    position: absolute;
}

#navigation-table li.about:hover #navigation-section-about {
    display: block;
}

#nav-line {
    position: absolute;
    border-bottom: 2px solid #000;
}

#content.collapsed {
    height: 91%;
}

#content {
    height: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
    max-width: 1920px !important;
    margin: 0 auto;
}

#content #content-banner {
    position: relative;
    width: 100%;
    height: 60%;
    background-image: url("../images/banner-blurred.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: inset 2px 2px 8px rgba(0,0,0,0.2);
}

#content #content-banner-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255,255,255,0.25);
}

#content #main-content-title {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

@media only screen and (max-width: 980px) {
    #content #main-content-title {
        width: 90%;
    }
}

#content #main-content-title .button {
    width: 20vh;
    height: 2vh;
}

#content #main-content-title .left-button {
    margin-right: 1%;
}

#content #main-content-title .right-button {
    margin-left: 1%;
}

#content #content-banner h1 {
    margin: 0;
}


#whatsapp {
    position: absolute;
    bottom: 2vh;
    right: 2vh;
}

#whatsapp a {
    background: #25D366;
    font-size: 3vh;
    padding: 1vh 1.8vh;
    color: #fff;
    border-radius: 50%;
    box-shadow: 1px 1px 5px 5px rgba(0,0,0,0.05);
}

#whatsapp a:hover {
    box-shadow: none;
}


#main-content-sections {
    display: table;
    width: 80%;
    height: 30vh;
    margin: 2vh auto;
    table-layout: fixed;
}

@media only screen and (max-width: 980px) {
    #content #main-content-sections .content-section {
        display: block !important;
        width: 100%;
        margin-top: 2vh;
    }

    #content #main-content-sections .content-section.move-right {
        padding-left: 0;
    }

    #main-content-sections {
        height: auto;
    }
}

#main-content-sections .content-section {
    display: table-cell;
    vertical-align: top;
    height: 100%;
    padding: 0;
    margin: 0;
}

#main-content-sections .content-section.move-left {
    padding-right: 1.5vh;
}

#main-content-sections .content-section.move-right {
    padding-left: 1.5vh;
}

#main-content-sections .content-inner-section {
    background: #ecf8ff;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.3);
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
    /* background: rgba(252, 225, 102, 0.1); */
}

#main-content-sections .content-inner-section .content-section-title {
    height: 17%;
    overflow: hidden;
    padding: 2vh 2vh 1vh 2vh;
}

#main-content-sections .content-inner-section .content-section-title h2,
#main-content-sections .content-inner-section .content-section-title h3 {
    padding: 0;
    margin: 0;
}

#main-content-sections .content-inner-section .content-section-body {
    vertical-align: middle;
    height: 47%;
    overflow: hidden;
    padding: 1vh 2vh 0 2vh;
}

#main-content-sections .content-inner-section .content-section-body p {
    margin: 0;
}

#main-content-sections .content-inner-section .content-section-readmore {
    vertical-align: bottom;
    height: 7%;
    overflow: hidden;
    padding: 2vh 2vh 1vh 2vh;
}

#footer {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 50vh;
    margin-top: 30vh;
    background: #abfc9b;
}

#footer h4 {
    margin-left: 4vh;
}

#footer ul {
    margin-left: 4vh;
    padding: 0;
}

#footer .footer-item {
    display: table-cell;
    vertical-align: top;
}

#footer .footer-item ul li {
    list-style: none;
    font-size: 1vh;
}

#footer .footer-item ul li a {
    font-size: 1vh;
}

#footer .footer-item.logos {
    text-align: center;
}

#footer .footer-item.logos img {
    width: 40%;
    padding-top: 2vh;
}


#quick-menu {
    text-align: center;
    font-size: 1.2vh;
    margin-top: 2vh;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
}

#quick-menu .quick-menu-item {
    display: inline-block;
    padding: 0.5vh;
    background: #efefef;
    border: 1px solid #bfbfbf;
    border-radius: 25px;
    cursor: pointer;
}

#quick-menu .quick-menu-item.active,
#quick-menu .quick-menu-item:hover {
    background: #bfbfbf;
}

@media only screen and (max-width: 980px) {
    #quick-menu {
        width: 100%;
    }
}



#leftright {
    width: 100%;
    display: table;
    table-layout: fixed;
    margin-top: 5vh;
}

#leftright .leftright-row {
    display: table-row;
    width: 100%;
}

#leftright .leftright-left,
#leftright .leftright-right {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 5vh;
}

#leftright .leftright-image {
    text-align: center;
}

@media only screen and (max-width: 980px) {
    #leftright .leftright-image {
        display: none;
    }
}

#leftright img {
    width: 20vh;
}




#faq {
    margin-top: 5vh;
}

#faq .faq-question {
    position: relative;
    display: table;
    padding: 2vh;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 50%;
    margin: 1vh auto;
    cursor: pointer;
    vertical-align: middle;
    font-weight: 500;
}

@media only screen and (max-width: 980px) {
    #faq .faq-question {
        font-size: 1.8vh;
        width: 80%;
    }
}

#faq .faq-question:hover, #faq .faq-question.collapsed {
    background: rgba(0,0,0,0.1);
}

#faq .faq-question .question {
    display: table-cell;
    width: 85%;
}

#faq .faq-question .icon {
    display: table-cell;
    width: 15%;
    text-align: center;
    vertical-align: middle;
}

#faq .faq-answer {
    display: none;
    width: 50%;
    margin: 1vh auto;
    margin-bottom: 6vh;
}

@media only screen and (max-width: 980px) {
    #faq .faq-answer {
        width: 80%;
    }
}






#costs {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 50vh;
    text-align: center;
}

#costs .costs-container {
    display: table;
    table-layout: fixed;
    width: 50%;
    margin: 0 auto;
}

#costs .costs-container .costs-box {
    display: table-cell;
    height: 6vh;
}

#costs .costs-container .costs-box .costs-box-inner {
    height: 100%;
    border: 2px solid rgba(0,0,0,0.8);
    margin: 1vh;
    padding: 1vh;
    background: rgba(252,225,102,1);
}

#costs .costs-container .costs-box .costs-box-inner h4 {
    margin: 0;
}

#costs .costs-container .costs-box .costs-box-inner h4.half {
    display: none;
}

#costs .costs-container .costs-box .costs-box-inner h5 {
    font-size: 3vh;
    margin: 1vh 0;
    font-weight: 400;
}

#costs .costs-container .costs-box .costs-box-inner .costs-note {
    font-size: 1.2vh;
    font-style: italic;
}

@media only screen and (max-width: 980px) {
    #costs .costs-container {
        width: 100%;
    }

    #costs .costs-container .costs-box {
        height: 4vh;
    }

    #costs .costs-container .costs-box .costs-box-inner {
        height: 17vh;
    }
}


@media only screen and (max-width: 1300px) {
    #costs .costs-container .costs-box .costs-box-inner h4.half {
        display: block;
    }

    #costs .costs-container .costs-box .costs-box-inner h4.full {
        display: none;
    }
}






#contact .form {
    margin-top: 5vh;
    width: 50%;
}

@media only screen and (max-width: 980px) {
    #contact .form {
        width: 80%;
    }
}

#contact .form form {
    width: 100%;
}

#contact .form .error-message {
    color: rgb(183, 9, 9);
    font-size: 1.2vh;
    margin: 0;
}

#contact .appointment-form,
#contact .contact-form {
    margin-left: 5vh;
}

#contact .form input {
    display: block;
    outline: 0;
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.2);
}

#contact .form input[type="text"],
#contact .form input[type="email"],
#contact .form input[type="phone"],
#contact .form input[type="password"]{
    width: 30vh;
    height: 2vh;
    margin: 1vh;
    padding: 1vh;
    margin-left: 0;
}


#contact .form input::placeholder {
    font-size: 1vh;
}

#contact .form .form-note {
    font-size: 1.2vh;
    font-style: italic;
}

#contact .form button {
    font-size: 1vh;
    background: #ecf8ff;
    height: 3vh;
    line-height: 0.8vh;
    border: 1px solid rgba(0,0,0,0.2);
    display: block;
}

#contact #privacy-checkbox, #contact .privacy-note {
    display: inline-block;
    font-size: 1.5vh;
}

#contact .contact-form p {
    font-size: 1.5vh;
}

#contact .contact-form b {
    font-size: 1.5vh;
}





