*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    line-height: 24px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

body.has-popup {
    position: fixed;
    width: 100%;
    overflow-y: hidden;
}

#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    transition: opacity 0.66s ease-in-out;
}

a {
    text-decoration: none;
}

#header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 60px;
    background: #63bfd0;
    padding-left: 70px;
    padding-right: 70px;
    color: #fff;
    text-align: center;
}

#header-logo-image {
    position: absolute;
    top: 5px;
    left: 15px;
    width: auto;
    height: 50px;
}

#header-title {
    padding-top: 10px;
    line-height: 40px;
    font-size: 30px;
}

#header-menu-toggle {
    position: absolute;
    top: 8px;
    right: 15px;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    border: 1px solid #fff;
    background: transparent;
    padding: 11px;
}

#header-menu-toggle .menu-icon-bar {
    display: block;
    width: 20px;
    height: 4px;
    border-radius: 2px;
    background: #fff;
    content: "";
}

#header-menu-toggle .menu-icon-bar:not(:first-of-type) {
    margin-top: 4px;
}

.menu-icon {
    display: inline-block;
    height: 32px;
    vertical-align: middle;
}

.section-container {
    padding-right: 10px;
    padding-left: 10px;
}

.section-heading {
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    font-weight: 700;
}

.section-subheading {
    color: #666;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    font-weight: 700;
}

.section-body {
    margin-top: 25px;
}

.content-block {
    padding: 30px 10px 10px;
}

.content-block.fullwidth {
    padding-right: 0;
    padding-left: 0;
}

.content-block-heading {
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    font-weight: 700;
}

.content-block-subheading {
    color: #666;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    font-weight: 700;
}

.content-block-body {
    margin-top: 16px;
    padding-bottom: 30px;
    line-height: 30px;
    font-size: 20px;
}

.content-block-body p:not(:last-child),
.content-block-body-image:not(:last-child) {
    margin-bottom: 30px;
}

.content-block-body-image {
    display: block;
    margin-top: 30px;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1.25s cubic-bezier(0.1, 0, 1.0, 1.0);
}

.content-block-body-image.in {
    opacity: 1;
}

.animate-in-container {
    position: relative;
    top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: top 0.75s ease-out, opacity 0.75s ease-in;
}

.animate-in-container.in {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.animate-in-container + .animate-in-container {
    margin-top: 30px;
}

.animate-in-trigger {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 1px;
}

.animate-in-trigger-start {
    top: 0;
}

.animate-in-trigger-middle {
    top: 50%;
}

.animate-in-trigger-end {
    bottom: 0;
}

.more-container {
    position: relative;
    padding-top: 30px;
}

.more-container:first-child {
    padding-top: 0;
}

.more-button-container {
    height: 82px;
}

.more-button {
    left: 50%;
    border-radius: 32px;
    border: 0 none;
    background: #666;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    color: #fff;
    line-height: 16px;
    font-size: 14px;
    font-weight: 600;
    transform: translateX(-50%);
}

.more-button-text {
    padding-right: 24px;
    white-space: nowrap;
}

.more-button-icon {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    background: #63bfd0;
}

.more-button-icon::before,
.more-button-icon::after {
    position: absolute;
    border-radius: 2px;
    background: #fff;
    content: "";
}

.more-button-icon::before {
    top: 9px;
    left: 16px;
    width: 4px;
    height: 18px;
}

.more-button-icon::after {
    top: 16px;
    left: 9px;
    width: 18px;
    height: 4px;
}

.more-button.top,
.more-button.bottom {
    position: absolute;
}

.more-button.top {
    top: 30px;
}

.more-button.bottom {
    bottom: 30px;
}

.more-button.floating {
    position: fixed;
    bottom: 30px;
}

.more-content-popup {
    position: fixed;
    bottom: 0;
    left: 2.5vw;
    width: 95vw;
    height: 0;
    overflow-y: auto;
    z-index: 1;
    transition: height 0.66s ease-in-out;
}

.more-content-popup.open {
    height: 100vh;
    /*noinspection CssInvalidPropertyValue*/
    height: 100dvh;
}

.more-content-popup-container {
    padding-top: 60px;
    position: relative;
}

.more-content {
    position: relative;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border: 2px solid #63bfd0;
    border-bottom: 0 none;
    background: #fff;
    padding: 62px 12px 12px;
}

.more-content-close-button-floating-trigger {
    position: absolute;
    top: -21px;
    left: 0;
    width: 100%;
    height: 1px;
    overflow: hidden;
}

.more-content-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 2px solid #63bfd0;
    background: #fff;
    padding: 0 0 10px;
    color: #63bfd0;
    text-align: center;
    line-height: 30px;
    font-size: 25px;
}

.more-content-close-button.floating {
    position: fixed;
    top: 30px;
    right: calc(2.5vw + 12px);
}

.more-content-close-button::before,
.more-content-close-button::after {
    position: absolute;
    top: 8px;
    left: 17px;
    width: 2px;
    height: 20px;
    background: #63bfd0;
    content: "";
}

.more-content-close-button::before {
    transform: rotate(-45deg);
}

.more-content-close-button::after {
    transform: rotate(45deg);
}

.more-content-body p,
.more-content-body ul {
    margin-top: 24px;
    margin-bottom: 24px;
}

.more-content-body ul {
    padding-left: 1.5em;
}

.more-content-body-image {
    display: block;
    width: 100%;
    height: auto;
}

#home-about {
    padding-top: 5px;
}

#home-brand {
    display: flex;
    align-items: center;
}

#home-logo-image {
    width: 72px;
}

#home-brand-text {
    margin-left: 12px;
}

#home-brand-name {
    line-height: 24px;
    font-size: 19px;
    font-weight: 700;
}

#home-brand-description {
    color: #63bfd0;
    line-height: 20px;
    font-size: 16px;
}

#home-contact {
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.home-contact-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-contact-icon {
    width: 40px;
    height: auto;
}

.home-contact-text {
    padding-left: 9px;
    line-height: 15px;
    font-size: 11px;
}

.home-contact-text::before {
    position: absolute;
    top: 0;
    left: 43px;
    width: 1px;
    height: 100%;
    border-left: 1px dotted #a8a8a8;
    content: "";
}

#home-contact-address-text {
    padding-right: 9px;
}

#home-introduction {
    margin-top: 25px;
}

#home-introduction-top,
#home-introduction-middle {
    text-align: center;
    line-height: 40px;
    font-size: 26px;
    font-weight: 700;
}

#home-introduction-middle {
    aspect-ratio: 3 / 2;
    background: url("../img/background/home-introduction.jpg") center / cover no-repeat;
    padding-top: 5px;
    color: #63bfd0;
}

#home-introduction-bottom {
    padding-top: 15px;
    padding-bottom: 15px;
}

#home-introduction-list {
    padding-left: 64px;
    padding-right: 16px;
    list-style: none;
}

.home-introduction-item {
    position: relative;
    border-radius: 16px;
    background: #63bfd0;
    padding: 6px 16px;
    color: #fff;
    text-align: center;
    line-height: 20px;
    font-size: 15px;
    font-weight: 700;
}

.home-introduction-item + .home-introduction-item {
    margin-top: 20px;
}

.home-introduction-item::before {
    position: absolute;
    top: -20px;
    left: -64px;
    width: 56px;
    height: 51px;
    background: url("../img/check-icon.png") center / contain no-repeat;
    content: "";
}

#home-about-bottom {
    background: #63bfd0;
    padding-top: 20px;
    padding-bottom: 60px;
}

#home-healthcare-icon {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

#home-healthcare-text {
    margin-top: 10px;
    color: #d41c23;
    text-align: center;
    line-height: 39px;
    font-size: 25px;
    font-weight: 700;
}

#home-healthcare-link {
    color: inherit;
}

#home-booking {
    margin-top: 10px;
}

#home-booking-text {
    text-align: center;
    line-height: 39px;
    font-size: 25px;
    font-weight: 700;
}

#home-booking-actions {
    margin-top: 26px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    display: flex;
    justify-content: space-between;
}

#home-booking-online-button,
#home-booking-phone-button {
    width: 53px;
    height: 44px;
    border: 0 none;
    background-color: #747678;
    background-position: center;
    background-repeat: no-repeat;
}

#home-booking-online-button {
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    background-image: url("../img/booking-online-icon.png");
}

#home-booking-phone-button {
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
    background-image: url("../img/booking-phone-icon.png");
}

#home-services-text {
    margin-top: 40px;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    line-height: 36px;
    font-size: 22px;
}

#home-services-text::before,
#home-services-text::after {
    position: absolute;
    width: 55px;
    height: 52px;
    background: url("../img/quotation-mark.png") center / cover no-repeat;
    content: "";
}

#home-services-text::before {
    top: 0;
    left: 0;
    transform: rotate(180deg);
}

#home-services-text::after {
    right: 0;
    bottom: 0;
}

#home-services-section {
    padding-top: 15px;
    padding-bottom: 15px;
}

#home-services-container {
    margin: -3px;
    display: flex;
    flex-wrap: wrap;
}

.home-service {
    margin: 3px;
    width: calc(50% - 6px);
    background: #63bfd0;
}

.home-service-image {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: all 0.66s ease-in-out;
}

.home-service-image.in {
    opacity: 1;
}

.home-service-text {
    padding: 8px 12px;
    color: #fff;
    text-transform: uppercase;
    line-height: 24px;
    font-size: 12px;
    font-weight: 700;
}

#home-advantages-section {
    position: relative;
    background: #63bfd0;
    padding-top: 20px;
    padding-bottom: 20px;
}

#home-advantages-section::after {
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 0;
    width: 100%;
    height: 82px;
    background: #63bfd0;
    content: "";
}

.home-advantage + .home-advantage {
    margin-top: 25px;
}

.home-advantage-text {
    line-height: 33px;
    font-size: 25px;
    font-weight: 700;
}

.home-advantage-text-bottom {
    color: #747678;
}

#home-philosophy-quote {
    position: relative;
    background: #63bfd0;
    padding-bottom: 30px;
}

#home-philosophy-quote::before,
#home-philosophy-quote::after {
    position: absolute;
    width: 48px;
    height: 45px;
    background: url("../img/quotation-mark.png") center / cover;
    content: "";
}

#home-philosophy-quote::before {
    top: 0;
    left: 0;
    transform: rotate(180deg);
}

#home-philosophy-quote::after {
    right: 0;
    bottom: 0;
}

#home-philosophy {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

#home-philosophy::before {
    position: absolute;
    top: -112px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 132px;
    background: #63bfd0;
    content: "";
}

#home-philosophy-quote-content {
    color: #fff;
    text-align: center;
    line-height: 32px;
    font-size: 24px;
}

#home-philosophy-image {
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: 45%;
    width: auto;
    height: auto;
    transform: translateY(-20px);
}

#home-philosophy-text {
    line-height: 39px;
    font-size: 25px;
    font-weight: 700;
}

#home-philosophy-text-bottom {
    margin-top: 39px;
    color: #747678;
}

#home-patient-path-section {
    background: #63bfd0;
    padding-top: 20px;
    padding-bottom: 20px;
}

#home-patient-path-text {
    margin-top: 10px;
    color: #fff;
    text-align: center;
    line-height: 30px;
    font-size: 22px;
    font-weight: 700;
}

#home-patient-path-image {
    display: block;
    margin-top: 25px;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    width: auto;
    height: auto;
}

#home-patient-path-video-section {
    padding-top: 20px;
    padding-bottom: 20px;
}

#home-patient-path-video-text {
    margin-top: 39px;
    line-height: 39px;
    font-size: 25px;
    font-weight: 700;
}

#home-patient-path-video-text-bottom {
    color: #747678;
}

#home-gallery-section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.home-gallery-image {
    display: block;
    width: 100%;
    height: auto;
    transition: filter 1s ease-in-out;
}

.glide__slide .home-gallery-image {
    filter: blur(5px);
}

.glide__slide.current .home-gallery-image,
.glide__slide.moving-in .home-gallery-image {
    filter: blur(0);
}

#home-virtual-walk-section {
    position: relative;
    background: #63bfd0;
    padding-top: 20px;
    padding-bottom: 20px;
}

#home-virtual-walk-section::after {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 82px;
    background: #63bfd0;
    content: "";
}

#home-news-section {
    background: #63bfd0;
    color: #fff;
}

#news-slider {
    padding-top: 8px;
}

.news-item-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.news-item {
    background: #fff;
    padding: 12px;
    transition: filter 1s ease-in-out;
}

.glide__slide .news-item {
    filter: blur(5px);
}

.glide__slide.current .news-item,
.glide__slide.moving-in .news-item {
    filter: blur(0);
}

.news-item-title {
    margin-top: 12px;
    height: 90px;
    text-overflow: ellipsis;
    text-align: center;
}

.news-item-title-link {
    color: #000;
}

#testimonials-slider {
    padding-top: 8px;
}

.testimonial {
    border-radius: 8px;
    border: 4px solid #63bfd0;
    padding: 36px 16px;
    text-align: center;
    line-height: 28px;
    font-size: 20px;
    font-weight: 700;
    transition: filter 1s ease-in-out;
}

.glide__slide .testimonial {
    filter: blur(5px);
}

.glide__slide.current .testimonial,
.glide__slide.moving-in .testimonial {
    filter: blur(0);
}

.glide__slide:not(.glide__slide--active) .testimonial {
    border-width: 3px;
    border-color: #000;
}

.testimonial-author {
    margin-top: 20px;
    color: #888;
}

.testimonial-author::before {
    content: "- ";
}

.testimonial-author::after {
    content: " -";
}

.testimonial-stars {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-star {
    margin-right: 2px;
    margin-left: 2px;
    width: 24px;
    height: 24px;
    background: url("../img/star-icon.svg") center / cover;
}

.video-wrapper {
    position: relative;
    height: 0;
    overflow-y: hidden;
    padding-bottom: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#partners {
    display: flex;
    flex-wrap: wrap;
}

.partner-image {
    margin: 10px;
    width: calc(50% - 20px);
    transform: scale(0);
    transition: transform 0.75s ease-in-out;
}

.partner-image.in {
    transform: scale(1);
}