:root {
    --primary-color: #009bab;
    --secondary-color: #abdfe1;
    --third-color: #00749b;
    --text-color: #5d5d5d;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-ExtraBold.woff2') format('woff2'),
        url('../fonts/Lexend-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Regular.woff2') format('woff2'),
        url('../fonts/Lexend-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-SemiBold.woff2') format('woff2'),
        url('../fonts/Lexend-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-ExtraLight.woff2') format('woff2'),
        url('../fonts/Lexend-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Medium.woff2') format('woff2'),
        url('../fonts/Lexend-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Light.woff2') format('woff2'),
        url('../fonts/Lexend-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Bold.woff2') format('woff2'),
        url('../fonts/Lexend-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Thin.woff2') format('woff2'),
        url('../fonts/Lexend-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

html {
    overflow-x: hidden;
    height: -webkit-fill-available;
}

body {
    font-family: 'Lexend', sans-serif;
    overflow-x: hidden;

    min-height: 100vh;
    min-height: -webkit-fill-available;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a,
a:hover {
    text-decoration: none;
}

option {
    color: var(--third-color);
    font-size: 14px;
    font-weight: 600;
}

option:first-child {
    color: var(--text-color);
}

.booking__form option {
    color: #5d5d5d;
    font-size: 14px;
    font-weight: 400;
}

.booking__form option:first-child {
    color: var(--third-color);
}

.booking__form .desc-text {
    background-color: #f7f7f7;
    color: #5d5d5d;
    display: block;
    padding: 10px 10px;
    font-size: 10px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: 0.24px;
    border-radius: 14px;
    margin-bottom: 10px;
}

.booking__form span#sex {
    display: flex;
}

/* width */
/* body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
} */

select::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
/* body::-webkit-scrollbar-track, */
select::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
/* body::-webkit-scrollbar-thumb, */
select::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

.mb-120 {
    margin-bottom: 120px;
}

.global-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 54px;
    color: var(--third-color);
    text-align: center;
    margin-bottom: 0;
}

.global-desc {
    display: block;
    margin: auto;
    /* font-size: 16px; */
    font-size: 14px;
    line-height: 30px;
    /* font-weight: 300; */
    font-weight: 400;
    color: #5d5d5d;
    -webkit-text-fill-color: #5d5d5d;
}

.button--global {
    border: 0;
    background-color: var(--primary-color);
    border-radius: 18px;
    padding: 10px 30px 10px;
    transition: 0.3s linear all;
}

.button--global:hover {
    transform: scale(1.04);
    transition: 0.3s linear all;
}

.button--global span {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.blur {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: block;
    content: '';
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.1);
    visibility: hidden;
    transition: all 0.3s linear;
}

.blur.active {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s linear;
}

.popup__history {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.booking__form,
.popup-success,
.popup--special,
.popup__doctor {
    /* max-width: 1144px; */
    max-width: 65%;
    width: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    background-color: #fff;
    overflow: hidden;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
}

.popup__doctor {
    max-width: 80%;
}

.popup__doctor .popup__doctor--name {
    font-size: 25px;
    line-height: 37px;
    color: var(--third-color);
    font-weight: 500;
}

.popup__doctor .popup__doctor--subtitle {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.popup__doctor .popup__doctor--desc {
    margin-bottom: 30px;
}

.popup__doctor .popup__doctor--img {
    width: 100%;
    height: 100%;
}

.popup__doctor .popup__doctor--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup__doctor .popup__doctor--group .button--global {
    padding: 8px 40px 10px;
    color: #fff;
}

.popup__doctor .popup__doctor--group .popup__doctor--back {
    background-color: var(--secondary-color);
}

.popup__doctor .popup__doctor--group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.popup__doctor .popup__doctor--desc span {
    display: block;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}

.popup__doctor .popup__doctor--desc span:not(:last-child) {
    margin-bottom: 10px;
}

.popup--special,
.popup__doctor {
    padding: 70px;
}

.popup--special.active,
.popup__doctor.active {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s linear;
}

.popup--special .popup--special {
    text-align: center;
}

.popup--special .popup--special-desc {
    width: 90%;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    color: #5d5d5d;
    display: block;
    text-align: center;
    margin: auto;
}

.popup--special .button--global {
    color: #fff;
    margin-top: 24px;
}

.popup--special .popup--special--title {
    font-size: 25px;
    font-weight: 500;
    color: var(--third-color);
    line-height: 37px;
    margin: 24px 0 12px;
    text-align: center;
}

.popup--special .popup--special-img {
    text-align: center;
}

.popup--special .popup--special-img img {
    width: auto;
    height: 60px;
}

.popup--special .popup--special-close,
.section__special .popup--special .popup--special-close {
    width: 20px;
    height: auto;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    filter: invert(70%) sepia(100%) saturate(2121%) hue-rotate(176deg)
        brightness(97%) contrast(101%);
}

.booking__form .button--global {
    background-color: var(--third-color);
    border-radius: 20px;
    margin-top: 10px;

    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    border: 1px solid #fff;
    width: fit-content;
    padding-left: 30px;
    padding-right: 30px;
}

.booking__form .button--global:hover {
    background-color: #fff;
    color: var(--third-color);
    border: 1px solid var(--third-color);
    transform: scale(1);
}

.popup-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    /* position: relative; */
}

.popup-success .success__button--close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: 0;
    outline: none;
}

.popup-success .success__button--close img {
    filter: invert(70%) sepia(100%) saturate(2121%) hue-rotate(176deg)
        brightness(97%) contrast(101%);
}

.popup-success .popup-success--title {
    display: block;
    font-size: 40px;
    line-height: 71px;
    font-weight: 500;
    color: var(--third-color);
    margin-top: 15px;
}

.popup-success .popup-success-desc {
    display: block;
    width: 50%;
    text-align: center;
    font-size: 13px;
    line-height: 20px;
    color: var(--third-color);
}

.booking__form.active,
.popup-success.active {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s linear;
}

.booking__form .booking__button--close {
    position: absolute;
    right: 15px;
    top: 20px;
    background-color: transparent;
    border: 0;
    outline: none;
    z-index: 1;
}

.booking__form .booking__img {
    width: 100%;
    height: 100%;
}

.booking__form .booking__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking__form .booking__seclect,
.booking__form .booking__date {
    position: relative;
}

.booking__form .booking__seclect select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.booking__form .booking__seclect img {
    width: 10px;
    height: auto;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 10px;
}

.booking__form .booking__date img {
    width: 16px;
    height: auto;
    position: absolute;
    top: 11px;
    right: 20px;
}

.booking__form .booking__content {
    padding: 30px 0px 30px 60px;
    height: 100%;
    /* display: flex; */
    /* flex-direction: column; */
    /* overflow: auto;
    max-height: 85vh; */
    justify-content: center;
    transition: all 0.3s linear;
}

.booking__form #booking-form {
    /* height: 70vh;
    overflow: auto;
    padding-right: 60px; */
}

.booking__form .booking__scrolling {
    height: 60vh;
    overflow: auto;
    padding-right: 60px;
}

.booking__scrolling::-webkit-scrollbar,
#booking-form::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.booking__scrolling::-webkit-scrollbar-track,
#booking-form::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
.booking__scrolling::-webkit-scrollbar-thumb,
#booking-form::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

.booking__content::-webkit-scrollbar,
#booking-form::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.booking__content::-webkit-scrollbar-track,
#booking-form::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
.booking__content::-webkit-scrollbar-thumb,
#booking-form::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

.booking__form .booking__content label.error {
    font-size: 10px;
    line-height: 1.2;
    color: red;
    margin-bottom: 0;
    transform: translateY(-5px);
    width: 100%;
    text-align: left;
}

.booking__form .booking__content label.g-recaptcha-error {
    font-size: 10px;
    line-height: 1.2;
    color: red;
    margin-bottom: 0;
    transform: translateY(-5px);
    width: 100%;
    text-align: left;
}

.booking__form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-bottom: 5px;
}

.booking__form .wpcf7-response-output {
    display: none;
}
.booking__form .booking__input--row {
    display: flex;
    /* padding: 5px; */
    gap: 5px;
}
.booking__form .booking__input--row .booking__input {
    padding: 0;
    width: 100%;
}

.booking__form .booking__input--row .booking__input--radio {
    display: flex;
    align-items: center;
    gap: 40px;
    /* padding: 40px 0 40px; */
    padding-bottom: 0px;
}

.booking__form .booking__input--row .booking__input-item {
    display: flex;
    gap: 10px;
    align-items: center;
}
.booking__form .booking__input--row .booking__input--radio {
    display: flex;
    align-items: center;
    gap: 40px;
    /* padding: 40px 0 40px; */
    padding-bottom: 0px;
}

.booking__form .booking__input--row .booking__input--radio input,
.booking__form .booking__input--row .booking__input--radio label {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 30px;
    color: #5d5d5d;
    font-weight: 400;
}

.booking__form .booking__input--row .booking__input--radio label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking__form .booking__input--row .booking__input--radio input[type='radio'] {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    outline: none;
    border: 2px solid var(--secondary-color);
}

.booking__form
    .booking__input--row
    .booking__input--radio
    input[type='radio']:before {
    content: '';
    display: block;
    width: 60%;
    height: 60%;
    margin: 20% auto;
    border-radius: 50%;
}

.booking__form
    .booking__input--row
    .booking__input--radio
    input[type='radio']:checked:before {
    background: var(--secondary-color);
}

.booking__form
    .booking__input--row
    .booking__input--radio
    input[type='radio']:checked {
    border-color: var(--secondary-color);
    padding: 0;
}

.booking__form .booking__input--row .booking__input--radio-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.booking__form .booking__heading {
    font-size: 28px;
    line-height: 48px;
    font-weight: 600;
    color: var(--third-color);
    margin-bottom: 0;
}

.booking__form .booking__group {
    margin-bottom: 5px;
}

.booking__form .booking__group--title {
    font-size: 16px;
    line-height: 37px;
    font-weight: 600;
    color: var(--third-color);
    margin-bottom: 0;
}

.booking__form input,
.booking__form select {
    width: 100%;
    height: 38px;
    border-radius: 2px;
    border: 0;
    outline: none;
    background-color: #f5f5f5;
    margin-bottom: 4px;
    padding-left: 15px;
    color: #797979;
    font-size: 10px;
    line-height: 30px;
}

/* loading page */

.loading-submit {
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 0vh;
    background: #02a0ac;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    z-index: 9999;
    overflow: hidden;
    opacity: 90%;
    transition: 0.3s height linear;
}

.loading-submit.active {
    height: 100vh;
    transition: 0.3s height linear;
}

.loading-submit .loading-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.loading-submit .loading-logo img {
    max-width: 100px;
    height: auto;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-left: 8px;
}
.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

/* banner */

.section__banner {
    position: relative;
    /* margin-top: 129px; */
    margin-top: 107px;
}

.section__banner .banner__list {
    /* max-height: 700px; */
}

.section__banner .banner__award img {
    height: 105px;
    width: auto;
    /* transform: translateX(-10px); */
}

.section__banner .banner__img {
    width: 100%;
    height: calc(100vh - 107px);
    object-fit: cover;
    object-position: top;
}

.section__banner .container {
    position: absolute;
    top: 50%;
    height: 80%;
    display: flex;
    align-items: center;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section__banner .banner__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section__banner .banner__content--text {
    margin-top: 74px;
    margin-bottom: 24px;
}

.section__banner .banner__content--text span {
    /* white-space: pre-line; */
    font-size: 58px;
    line-height: 68px;
    font-weight: 600;
    display: block;
}

/* .section__banner .banner__content span:first-child,
.section__banner .banner__content span:nth-child(2) {
    color: var(--third-color);
} */

/* .section__banner .banner__content span:last-child,
.section__banner .banner__content span:nth-child(3) {
    color: #ABDFE1;
} */

.section__banner .banner__content--text span {
    color: #abdfe1;
}

.section__banner .banner__video {
    gap: 30px;
}

.section__banner .banner__video span {
    font-size: 25px;
    line-height: 37px;
    color: #fff;
    font-weight: 500;
}

.section__banner .banner__video--button {
    background-color: transparent;
    border: 0;
    outline: none;
}

.section__banner .banner__list--img video {
    width: 100%;
    /* height: calc(100vh - 130px); */
    height: 85vh;
    object-fit: cover;
    object-position: bottom;
}

/* section form */

#search_hompage {
    max-height: 250px;
    overflow: auto;
    position: absolute;
    top: 100%;
    z-index: 2;
    background-color: #fff;
    width: 100%;
}

#search_hompage a {
    display: block;
    background-color: #f4f4f4;
    padding: 5px 0 5px 55px;
    color: var(--third-color);
    width: 100%;
    font-size: 14px;
    margin-top: 1px;
}

.section__form {
    height: 168px;
}

.section__form .form__bottom {
    padding-top: 30px;
    align-items: self-start;
    justify-content: space-between;
}

.section__form .form__top--group {
    gap: 20px;
}

.section__form .form__container {
    padding: 36px 45px 42px;
    box-shadow: 0px 30px 40px #00405315;
    border-radius: 29px;
    transform: translateY(-65%);
    z-index: 2;
    position: relative;
    background: #fff;
}

.section__form .form__top--input input {
    width: 100%;
    /* height: 56px; */
    height: 48px;
    border-radius: 9px;
    border: 1px solid #ececed;
    padding-left: 55px;
    outline: none;
    font-size: 14px;
    line-height: 40px;
    color: var(--primary-color);
    font-weight: 500;
    background-color: #f3f4f7;
}

.section__form .form__top--input input::placeholder {
    color: #bbbdbf;
}

.section__form .form__top--button {
    /* width: 67px; */
    width: 53px;
    text-align: center;
    /* height: 56px; */
    height: 48px;
    border: 0;
    border-radius: 9px;
    background-color: var(--primary-color);
    transition: 0.3s linear all;
}

.section__form .form__top--button:hover {
    transform: scale(1.06);
    transition: 0.3s linear all;
}

.section__form .form__top--button img {
    width: 22px;
    height: 22px;
    margin: auto;
}

.section__form .form__top--input {
    position: relative;
}

.section__form .form__top--input-img {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translate(0px, -50%);
}

.section__form .form__bottom .form__bottom--title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    white-space: nowrap;
    display: block;
    margin-top: 10px;
    color: var(--primary-color);
}

.section__form .form__bottom .form__bottom--link {
    background-color: var(--secondary-color);
    padding: 5px 20px 6px;
    min-width: 31%;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s linear;
}

.section__form .form__bottom .form__bottom--link:hover {
    background-color: var(--primary-color);
    transform: scale(1.04);
    transition: all 0.3s linear;
}

.section__form .form__bottom .form__bottom--link:last-child {
    background-color: var(--primary-color);
}

.section__form .form__bottom .form__bottom--link span {
    font-size: 13px;
    line-height: 19px;
    font-weight: 500;
    color: #fff;
}

.section__form .form__bottom--group {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: end;
}

.section__form .form__top--group {
    gap: 10px;
}

.section__form .form__top--input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section__form .form__top--select {
    position: relative;
}

.section__form .form__top--select img {
    width: 17px;
    height: auto;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.section__form .form__top--select select {
    width: 100%;
    height: 48px;
    border-radius: 9px;
    border: 1px solid #ececed;
    padding-left: 15px;
    padding-right: 50px;
    outline: none;
    font-size: 16px;
    line-height: 40px;
    color: #cecece;
    font-weight: 500;
    background-color: #f3f4f7;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

/* section special */

.section__special {
    background-color: #f5f7f7;
    padding: 125px 0 76px;
}

.section__special .special__infor {
    max-width: 335px;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section__special .special__infor .global-heading {
    line-height: 42px;
}

.section__special .special__list {
    min-height: 500px;
}

.section__special .special__infor--title {
    font-size: 40px;
    line-height: 71px;
    font-weight: 500;
    color: var(--third-color);
    margin-bottom: 0;
}

.section__special .special__infor--desc {
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 26px;
    color: #5d5d5d;
    margin-bottom: 12px;
}

.section__special .special__infor--link {
    text-decoration: none;
    font-size: 14px;
    line-height: 27px;
    font-weight: 600;
    color: var(--third-color);
    /* padding-left: 10px; */
    display: flex;
    align-items: center;
}

.section__special .special__infor--link img {
    transform: translateY(2px);
    width: 20px;
    height: auto;
}

.section__special .special__infor--link:hover span {
    margin-right: 20px;
    transition: all linear 0.3s;
}

.section__special .special__infor--link span {
    margin-right: 10px;
    transition: all linear 0.3s;
}

.section__special .special__item {
    /* height: 250px; */
    height: 210px;
    max-width: 335px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.section__special .special__item--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section__special .special__item--content {
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: #00749bbd; */
    background-color: transparent;
    height: 100%;
    padding: 15px 25px 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(68%);
    transition: 0.3s linear all;
}

.section__special .special__item:hover .special__item--content {
    background-color: #00749bbd;
    /* padding: 20px 25px; */
    padding: 10px 25px 18px;
    transform: translateY(0%);
    transition: 0.3s linear all;
}

.section__special .special__item--title {
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 8px;
    /* min-height: 58px; */
}

.section__special .special__item--desc {
    /* font-size: 13px; */
    font-size: 10px;
    color: #fff;
    /* line-height: 23px; */
    line-height: 20px;
    font-weight: 300;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
}

.section__special .special__item:hover .special__item--desc {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s linear;
}

.section__special .special__item--link {
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #fff;
    width: fit-content;
    padding: 3px 18px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s linear all;
}

.section__special .special__item--link:hover {
    color: var(--third-color);
    background-color: #fff;
    transition: 0.3s linear all;
}

/* section amount */

.section__amount {
    /* padding: 70px 0; */
    padding: 60px 0;
    position: relative;
}

.section__amount video {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.section__amount .amount__container {
    position: relative;
}

/* .section__amount .amount__container {
    padding: 0 40px;
    gap: 112px;
} */

.section__amount .amount__right {
    /* height: 100%; */
    /* display: flex; */
    /* align-items: center; */
}

.section__amount .amount__title span,
.section__amount .amount__item span {
    display: block;
    text-align: center;
    color: #fff;
}

.section__amount .amount__item span {
    white-space: pre-wrap;
}

.section__amount .amount__title .amount__title-large {
    /* font-size: 48px; */
    font-size: 38px;
    /* line-height: 1.6; */
    line-height: 48px;
    /* font-weight: 500; */
    font-weight: 600;
}

.section__amount .amount__title .amount__title-small {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 500;
}

.section__amount .amount__item {
    padding-top: 20px;
}

.section__amount .amount__item .amount__number {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section__amount .amount__item .amount__title {
    width: 70%;
    margin: auto;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    padding-top: 15px;
    position: relative;
}

.section__amount .amount__item .amount__title::before {
    position: absolute;
    display: block;
    content: '';
    width: 30px;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #ffffff4a;
}

/* section doctors */

.section__doctors {
    padding: 124px 0 106px;
}

.section__doctors .doctors__list,
.section__doctors .doctors__list-home {
    padding-top: 62px;
}

.section__doctors .doctors__item {
    /* max-width: 312px; */
    /* max-height: 418px; */
    position: relative;
    overflow: hidden;
}

.section__doctors .slick-slide > div {
    margin: 0 20px;
}

.section__doctors .slick-list {
    margin: 0 -20px;
}

.section__doctors .slick-list.draggable {
    padding-bottom: 90px;
}

.section__doctors .doctors__item .img-logo {
    width: 50px;
    margin: auto;
}

.section__doctors .doctors__item--img {
    width: 100%;
    height: 100%;
    height: 350px;
    object-fit: cover;
}

.section__doctors .slick-slide {
    /* padding: 0 10px; */
}

.section__doctors .doctors__item .doctors__item--content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 10px 20px;
    background-color: #009babbf;
    transform: translateY(78%);
    transition: all 0.3s linear;
}

.section__doctors .doctors__item.active .doctors__item--content {
    background-color: #009bab;
}

.section__doctors .doctors__item:hover .doctors__item--content,
.section__doctors .doctors__item.active .doctors__item--content {
    padding: 25px 20px;
    transform: translateY(0%);
    transition: all 0.3s linear;
}

.section__doctors .doctors__item--name {
    color: #fff;
    /* font-size: 20px; */
    /* font-size: 16px; */
    font-size: 11px;
    /* line-height: 1; */
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 0;

    /* min-height: 48px; */
}

.section__doctors .doctors__item--position {
    /* font-size: 11px; */
    font-size: 10px;
    min-height: 32px;
    display: block;
    line-height: 16px;
    font-weight: 300;
    color: #fff;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.section__doctors .doctors__item--desc {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.section__doctors .doctors__item--desc span {
    font-size: 9px;
    line-height: 16px;
    color: #fff;
    font-weight: 300;
    display: block;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7; /* number of lines to show */
    line-clamp: 7;
    -webkit-box-orient: vertical;
}

.section__doctors .doctors__item--more {
    width: fit-content;
    border: 0;
    border-radius: 17px;
    background-color: #fff;
    /* padding: 3px 30px 5px; */
    padding: 0px 30px 3px;
    transition: all 0.3s linear;
}

.section__doctors .doctors__item--more:hover {
    transform: scale(1.06);
    transition: all 0.3s linear;
}

.section__doctors .doctors__item--more span {
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    color: var(--third-color);
}

/* news */

.section__news {
    padding-bottom: 120px;
}

.news__item {
    height: 100%;
}

.news__item .card {
    border: 0;
    height: 100%;
    justify-content: space-between;
}

.news__item .card-img {
    height: 236px;
    width: 100%;
    overflow: hidden;
}

.news__item .card-img-top {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: 0.3s linear all;
}

.news__item:hover .card-img-top {
    transform: scale(1.08);
    transition: 0.3s linear all;
}

.news__item .card-body {
    padding: 22px 0 0;
}

.news__item .card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    margin-bottom: 20px;
}

.news__item .card-top .title,
.news__item .card-title {
    padding-right: 40px;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--third-color);
    margin-bottom: 0;
}

.news__item .card-top .title {
    font-size: 16px;
}

.news__item .card-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news__item .card-top .date {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: var(--third-color);
}

.news__item .card-text {
    /* font-size: 16px; */
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: #5d5d5d;
    margin-top: 10px;
    display: block;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news__item .card-link {
    background-color: #00a5b4;
    padding: 3px 28px;
    border-radius: 18px;
    text-decoration: none;
    width: fit-content;
    margin-top: 25px;
    transition: all 0.3s linear;
}

.news__item .card-link:hover {
    transform: scale(1.06);
    transition: all 0.3s linear;
}

.news__item .card-link span {
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    color: #fff;
}

div.section__news .news__list {
    padding: 40px 0 66px;
}

.news__more {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    color: var(--third-color);
    text-decoration: none;

    display: flex;
    align-items: center;
}

.news__more:hover {
    text-decoration: none;
    color: var(--third-color);
}

.news__more:hover img {
    transform: translateX(20px);
    transition: all 0.3s linear;
}

.news__more img {
    transform: translateX(10px);
    width: 20px;
    height: auto;
    transition: all 0.3s linear;
}

/* standard */

.section__standard {
    background-color: #eeefef;
}

.section__standard .standard__item:nth-child(even) .row {
    flex-direction: row-reverse;
}

.section__standard .standard__item:nth-child(even) .standard__item--wrap {
    margin-left: auto;
    padding-left: 0;
    padding-right: 100px;
}

.section__standard .standard__item--img,
.section__standard .standard__item--content {
    width: 100%;
    height: 100%;
}

.section__standard .standard__item--img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: left;
}

.section__standard .standard__item--content {
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section__standard .standard__item--wrap {
    max-width: 560px;
    padding-left: 60px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.section__standard .standard__item--content span {
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #5d5d5d;
    margin-bottom: 30px;
}

.section__standard .standard__item--content .global-heading {
    line-height: 40px;
    font-size: 30px;
    margin-bottom: 20px;
}

/* slick slider */

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    list-style-type: none;
}

.slick-list.draggable {
    padding-bottom: 40px;
}

.slick-dots li {
    margin: 0 0.25rem;
    width: 15px;
    height: 15px;
}

.slick-dots li button {
    display: block;
    width: 15px;
    height: 15px;
    padding: 0;

    border: none;
    border-radius: 100%;
    background-color: #fff;
    border: 1px solid #abdfe1;

    text-indent: -9999px;
}

.slick-dots li.slick-active button {
    background-color: #00a5b4;
}

/* information */

.section__information {
    background-color: #eeefef;
}

.section__information .information__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section__information .information__content {
    display: flex;
    flex-direction: column;
    gap: 47px;
    justify-content: center;
    /* align-items: center; */
    height: 100%;
    max-width: 556px;
    padding: 106px 0;
    padding-left: 99px;
}

.section__information .information__item:nth-child(even) .row {
    flex-direction: row-reverse;
}

.section__information
    .information__item:nth-child(even)
    .row
    .information__content {
    padding-left: 0;
    padding-right: 70px;
    margin-left: auto;
}

.section__information
    .information__item:nth-child(even)
    .row
    .information__content
    .global-heading {
    margin-bottom: 17px;
}

.section__information
    .information__item:nth-child(even)
    .row
    .information__content
    .global-desc {
    max-width: 410px;
    margin-left: 0;
}

.section__information .information__img {
    height: 100%;
}

.section__information .information__img img {
    height: 100%;
}

.section__information .global-heading {
    line-height: 44px;
}

/* pagination */
.section__news .news__pagination {
    padding-top: 0;
}
.section__news .news__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.news__pagination--right {
    flex-direction: row-reverse;
}

.news__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.news__pagination {
    justify-content: space-between;
    padding: 60px 0 60px;
}

.news__pagination button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s linear;
}

.news__pagination--right,
.news__pagination--left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news__pagination button:hover {
    border: 1px solid var(--third-color);
    transition: all 0.3s linear;
}

.news__pagination button i {
    color: var(--secondary-color);
    font-size: 20px;
    transition: all 0.3s linear;
}

.news__pagination button:hover i {
    color: var(--third-color);
    transition: all 0.3s linear;
}

.news__pagination--title {
    margin-bottom: 0;
}

.news__pagination .news__pagination--title {
    font-size: 20px;
    line-height: 30px;
    color: var(--third-color);
    font-weight: 500;
    max-width: 400px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news__pagination--left:hover button,
.news__pagination--right:hover button {
    border: 1px solid var(--third-color);
    transition: all 0.3s linear;
}

.news__pagination--left:hover button i,
.news__pagination--right:hover button i {
    color: var(--third-color);
    transition: all 0.3s linear;
}

.network__pagination button {
    border-radius: 50%;
    border: 1px solid #b1e0e2;
    background-color: #fff;
    margin: 0 10px;
    transition: all 0.3s linear;
}

.network__pagination button:hover {
    border: 1px solid var(--third-color);
    transition: all 0.3s linear;
}

.network__pagination button i {
    padding: 15px 13px;
    color: #b1e0e2;
    transition: all 0.3s linear;
}

.network__pagination button:hover i {
    color: var(--third-color);
    transition: all 0.3s linear;
}

/* popup video */

.possible__popup {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 10001;
    transition: all linear 0.3s;
}

.possible__popup.active {
    opacity: 1;
    visibility: visible;
    transition: all linear 0.3s;
}

.popup__sidebar {
    width: auto;
    height: 100%;
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: linear-gradient(
        0deg,
        transparent,
        rgba(171, 223, 225, 0.4)
    );
}

.popup__sidebar .popup__btn-close::after,
.popup__sidebar .popup__btn-close::before {
    height: 2.222rem;
    content: '';
    border-left: 2px solid #fff;
    position: absolute;
    top: 0;
}

.popup__sidebar .popup__btn-close {
    color: #fff;
    cursor: pointer;
    float: right;
    font-size: 24px;
    height: 47px;
    line-height: 27px;
    padding: 10px 0;
    text-align: center;
    width: 50px;
    text-decoration: none !important;
    outline: medium none;
    will-change: color;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
    background: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
}

.popup__sidebar .popup__btn-close::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.popup__sidebar .popup__btn-close::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.possible__popup .popup__video iframe {
    width: 100%;
    height: 100vh;
}

.zalo-chat-widget {
    bottom: 15px !important;
    right: 15px !important;
}

@media (min-width: 1700px) {
    /* .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1440px;
    } */

    /* banner */

    .section__banner .banner__content--text span {
        font-size: 55px;
        line-height: 65px;
    }

    /* infor */

    .infor__item {
        max-width: 425px;
    }

    .infor__group .col-md-4:nth-child(2) .infor__item {
        margin: auto;
    }

    .infor__group .col-md-4:last-child .infor__item {
        margin-left: auto;
    }

    .section__special .special__item,
    .section__special .special__infor {
        max-width: 422px;
        height: 261px;
        margin-bottom: 43px;
    }

    /* news */

    .news__item .card-title {
        padding-right: 40px;
    }

    /* footer */

    footer .section__footer {
        padding: 186px 0 139px;
    }
}
@media screen and (max-width: 1200px) {
    .section__information .information__content {
        padding-left: 30px;
        padding-right: 80px;
    }
    .section__information
        .information__item:nth-child(even)
        .row
        .information__content {
        padding-right: 30px;
        padding-left: 80px;
    }
    .section__standard .standard__item--wrap {
        padding-left: 30px;
        padding-right: 80px;
    }
    .section__standard .standard__item:nth-child(even) .standard__item--wrap {
        padding-right: 30px;
        padding-left: 80px;
    }
    .section__special .special__item--title {
        font-size: 18px;
        margin-top: 8px;
    }
    .booking__form .booking__input--row {
        box-sizing: border-box;
        /* padding-right: 5px; */
    }
    .booking__form .booking__content {
        padding: 30px 0px 30px 40px;
    }
    .booking__form .booking__scrolling {
        padding-right: 30px;
    }
    .section__doctors {
        padding-top: 50px;
    }
    .booking__form
        .booking__input--row
        .booking__input--radio
        input[type='radio'] {
        width: 20px;
        height: 20px;
    }
    #sex .wpcf7-list-item {
        margin-left: 5px;
    }
    .booking__form,
    .popup-success,
    .popup--special,
    .popup__doctor {
        max-width: 80%;
    }
}

@media (min-width: 991px) {
    /* specialties */

    .section__special .special__wrap .col-12:nth-child(2) .special__item,
    .section__special .special__wrap .col-12:nth-child(5) .special__item {
        margin: 0 auto 30px;
    }

    .section__special .special__wrap .col-12:nth-child(3) .special__item,
    .section__special .special__wrap .col-12:nth-child(6) .special__item {
        margin-left: auto;
    }
}

@media screen and (max-width: 1200px) {
    /* banner */
    .booking__form .button--global {
        margin-top: 20px;
    }
    .section__banner .banner__img {
        height: calc(100vh - 107px);
    }

    .section__banner .banner__content--text span {
        font-size: 55px;
        line-height: 60px;
    }

    .section__banner .banner__award img {
        height: 80px;
        width: auto;
        transform: translateX(0);
    }

    .section__form .form__container {
        transform: translateY(-50%);
    }

    /* form */
    .section__form .form__bottom--group {
        flex-wrap: wrap;
        justify-content: end;
    }

    .section__form .form__bottom .form__bottom--title {
        white-space: nowrap;
    }

    .section__form .form__bottom {
        align-items: baseline;
    }

    /* special */

    .section__special .special__item--desc {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    .section__special .special__infor .global-heading {
        font-size: 24px;
        line-height: 36px;
    }

    /* doctor */

    /* .section__doctors .doctors__item .doctors__item--content {
        transform: translateY(78%);
    } */

    .section__doctors .slick-list.draggable {
        padding-bottom: 40px;
    }

    .section__doctors .doctors__item--desc {
        padding-top: 0;
        margin-top: 10px;
        max-height: 120px;
        overflow: auto;
    }

    .section__doctors .doctors__item--desc::-webkit-scrollbar {
        width: 3px;
    }

    /* Track */
    .section__doctors .doctors__item--desc::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    .section__doctors .doctors__item--desc::-webkit-scrollbar-thumb {
        background: var(--third-color);
    }

    .mb-120 {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 1024px) {
    .global-heading {
        font-size: 26px;
        line-height: 40px;
    }

    .section__banner .banner__img,
    .section__banner .banner__list--img video {
        height: auto;
    }

    .section__banner .banner__content--text {
        margin-top: 40px;
        margin-bottom: 15px;
    }

    .section__banner .banner__content--text span {
        font-size: 40px;
        line-height: 50px;
    }
}

@media screen and (max-width: 991px) {
    .section__banner .container {
        position: relative;
        transform: unset;
        top: unset;
        left: unset;
    }

    .global-heading {
        line-height: 50px;
    }

    .booking__form .button--global {
        width: 100%;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    /* banner */

    .section__banner {
        margin-top: 80px;
    }

    .section__banner .banner__content--text span {
        font-size: 36px;
        line-height: 42px;
    }

    .section__banner .banner__img {
        height: auto;
    }

    .section__banner .banner__award img {
        height: 65px;
    }

    .section__banner .banner__list--img video {
        height: auto;
    }

    /* amount */

    .section__amount .amount__container {
        flex-direction: column;
    }

    .section__amount .amount__container {
        gap: 30px;
    }

    /* special */

    .section__special .special__infor {
        margin-bottom: 60px;
    }

    .section__special .special__infor--link {
        padding-left: 0;
    }

    /* form */

    .section__form .form__bottom {
        align-items: start;
        flex-direction: column;
    }

    .section__form .form__container {
        transform: translateY(-30%);
        padding: 20px 25px 20px;
    }

    .section__form .form__top--input input,
    .section__form .form__top--select select {
        height: 48px;
        font-size: 14px;
    }

    .section__form .form__top--button {
        width: 100%;
        height: 48px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .section__form .form__top--input input {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .section__form .form__bottom {
        margin-top: 20px;
    }

    .section__form .form__top--group {
        flex-direction: column;
    }

    .section__form .form__top--input {
        width: 100%;
    }

    .section__form .form__bottom .form__bottom--title {
        white-space: nowrap;
        margin-bottom: 20px;
    }

    .section__form form {
        /* gap: 15px;
        display: flex;
        align-items: end;
        flex-direction: column; */
    }

    /* spe */

    .section__special {
        padding: 80px 0 60px;
    }

    /* infor */

    .section__infor {
        padding-top: 40px;
    }
    .section__infor .infor__item .global-desc {
        max-width: 100%;
        font-size: 12px;
    }

    /* news */

    .section__news {
        padding-bottom: 80px;
    }

    .news__list {
        padding: 40px 0 10px;
    }

    .news__item {
        height: fit-content;
        /* margin-bottom: 70px; */
        margin-bottom: 35px;
        padding-bottom: 35px;
    }

    .news__list .col-12:not(:last-child) .news__item {
        border-bottom: 1px solid #00a5b4;
    }

    .news__item .card-wrap {
        display: flex;
    }

    .news__item .card-img {
        width: 35%;
    }

    .news__item .card-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 0;
        padding-left: 30px;
    }

    .news__item .card-top {
        display: none;
    }

    .news__item .card-img-top {
        height: 196px;
    }

    /* infor */

    .section__intro {
        padding: 70px 0 80px;
    }

    .section__information .information__content {
        padding-top: 40px;
        padding-bottom: 40px;
        margin: auto;
        padding: 40px 0;
    }

    .section__information
        .information__item:nth-child(even)
        .row
        .information__content {
        margin-left: 20px;
        margin: auto;
    }
    .booking__form #booking-form p {
        padding-right: 30px;
    }

    /* amount */

    .section__amount .amount__title .amount__title-large {
        font-size: 32px;
    }

    .section__amount .amount__item .amount__title {
        width: 100%;
        font-size: 14px;
    }

    /* dcotor */

    .section__doctors {
        padding: 80px 0;
    }

    .section__doctors .doctors__list-home {
        padding-top: 40px;
    }

    /* information */

    .section__information .global-heading {
        font-size: 20px;
        line-height: 44px;
    }

    /* video */

    .possible__popup .popup__container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #000;
    }

    .possible__popup .popup__video {
        position: relative;
        overflow: hidden;
        padding-top: 56.25%;
        height: unset;
        display: unset;
        background-color: transparent;
    }

    .possible__popup .popup__video iframe {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .possible__popup .popup__sidebar {
        width: 100%;
        height: auto;
        align-items: end;
        padding: 10px 10px 0 0;
        background: linear-gradient(to right, transparent, #abdfe166);
    }

    /* .possible__popup  .popup__video iframe {
        width: 100%;
        height: inherit;
    }

    .possible__popup .popup__video {
        height: 100vh;
        display: flex;
        align-items: center;
        background-color: #000;
    } */

    .popup__sidebar {
        /* position: relative; */
        position: fixed;
    }

    .section__standard .standard__item--content .global-heading {
        line-height: 32px;
        font-size: 22px;
    }
    .section__standard .standard__item--wrap {
        margin: auto;
        padding: 60px 0;
    }
    .section__standard .standard__item:nth-child(even) .standard__item--wrap {
        padding: 60px 0;
    }
    .mb-120 {
        margin-bottom: 0;
    }
    .news .section__news {
        padding: 60px 0 60px;
    }
}

@media screen and (max-width: 768px) {
    .global-heading {
        line-height: 40px;
    }

    /* #search_hompage {
        top: 70px;
    } */

    #search_hompage a {
        padding: 5px 0 5px 18px;
    }

    /* doctors */

    /* .section__doctors .doctors__item {
        margin-bottom: 30px;
    } */

    .section__doctors .doctors__item--img {
        height: auto;
        height: 280px;
    }

    /* .section__doctors .doctors__item {
        margin-bottom: 20px;
    } */

    .section__doctors .slick-list.draggable {
        padding-bottom: 20px;
    }

    .news__pagination button {
        width: 28px;
        height: 28px;
    }

    .news__pagination .news__pagination--title {
        font-size: 16px;
    }

    .mb-120 {
        margin-bottom: 0px;
    }

    /* .news__item {
        margin-bottom: 20px;
    } */

    /* popup doctor */

    .popup__doctor .popup__doctor--desc {
        height: 25vh;
        overflow: auto;
    }

    .popup__doctor .popup__doctor--group button {
        width: 100%;
    }

    /* banner */

    .section__banner .banner__img {
        height: 30vh;
    }

    .section__banner .banner__content--text span {
        font-size: 38px;
        line-height: 44px;
        white-space: unset;
        display: block;
    }

    .section__banner .banner__content--text {
        margin-bottom: 10px;
        margin-top: 40px;
        line-height: 1;
    }

    .section__banner .banner__award img {
        height: 56px;
    }

    /* form */

    .section__form {
        height: auto;
    }

    .section__form .form__bottom {
        padding-top: 0;
    }

    .section__form .form__bottom .form__bottom--title {
        margin: 10px 0 5px;
    }

    .section__form .form__top--button {
        /* width: 48px; */
        width: 100%;
        height: 48px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .section__form .form__top--button span {
        color: #fff;
        font-weight: 500;
    }

    .section__form .form__top--input input {
        padding-left: 16px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .section__form .form__top--input-img {
        /* left: 8px; */
        display: none;
    }

    .section__form .form__container {
        transform: translateY(-20%);
    }

    .section__form .form__bottom .form__bottom--link {
        width: 100%;
        padding: 12px 20px 12px;
        text-align: left;
    }

    .section__form .form__bottom--group {
        justify-content: space-between;
    }

    .section__form .form__bottom--group {
        gap: 10px;
        width: 100%;
    }
    .section__form .form__bottom,
    .section__form .form__bottom .form__bottom--link {
        width: 100%;
    }

    /* doctor */

    .section__doctors .doctors__item .doctors__item--content {
        transform: translateY(74%);
    }

    /* news */

    .section__news {
        padding-bottom: 80px;
    }

    .news__list {
        padding-bottom: 0px;
    }

    .news__item .card-img {
        height: auto;
    }

    .news__item .card-top .title,
    .news__item .card-title {
        padding-right: 0;
    }

    /* standard */

    .section__standard .standard__item--wrap,
    .section__standard .standard__item:nth-child(even) .standard__item--wrap {
        padding: 16px 32px;
    }

    /* special */

    .section__special {
        padding: 60px 0 120px;
    }

    .section__special .container {
        max-width: 100%;
    }

    .section__special .special__infor .global-heading {
        margin-bottom: 10px;
    }

    .section__special .special__item--content {
        /* background-color: #00749bbd; */
        /* padding: 20px 25px; */
        /* padding: 10px 25px 18px;
        transform: translateY(0%);
        transition: 0.3s linear all; */
    }

    .special__item .special__item--desc {
        opacity: 0;
        visibility: hidden;
        margin-bottom: 30px;
        max-width: 70%;
        text-align: center;
        font-size: 12px;
    }

    .section__special .special__item--link {
        opacity: 0;
        visibility: hidden;
    }

    .section__special .special__infor--desc {
        text-align: center;
    }

    .section__special .special__infor {
        width: 90%;
        margin: 0 auto 30px;
    }

    .section__special .special__infor--link {
        justify-content: center;
    }

    .section__special .special__item {
        max-width: 100%;
        height: auto;
        margin-bottom: 0;
    }

    .section__special .special__item::after {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-color: rgba(0, 0, 0, 0.3); */
    }

    .section__special .special__item--title {
        text-align: center;
        /* min-height: 50px; */
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .section__special .special__item:hover .special__item--title {
        margin-top: 0;
    }

    .section__special .special__item--content {
        z-index: 2;
        transform: translateY(50%);
        height: 100%;
        width: 100%;
        bottom: 0;
        top: unset;
        align-items: center;
        justify-content: center;
        /* padding: 0px; */
    }

    .special__item:hover .special__item--desc,
    .special__item:hover .special__item--link {
        opacity: 1;
        visibility: visible;
    }

    .section__special .slick-list.draggable {
        padding-bottom: 0;
    }

    /* amount */

    .section__amount {
        padding: 40px 0;
    }

    .section__amount .amount__item .amount__number {
        font-size: 30px;
        line-height: 40px;
    }

    .section__amount .amount__item .amount__title {
        width: 100%;
    }

    /* information */

    .section__information .information__content {
        margin: auto;
        text-align: center;
        padding-left: 40px;
        padding-right: 40px;
    }

    .section__information
        .information__item:nth-child(even)
        .row
        .information__content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .section__information
        .information__item:nth-child(even)
        .row
        .information__content
        .global-desc {
        max-width: 100%;
    }
    .popup--special,
    .popup__doctor {
        padding: 15px;
    }
    .popup--special .button--global {
        margin-bottom: 30px;
    }
    .section__special {
        padding-bottom: 0px;
    }
    .global-heading {
        font-size: 25px;
    }
    .booking__form .booking__scrolling {
        height: unset;
        padding-right: 0px;
    }
    .booking__form .booking__content {
        padding: 30px;
    }
    .booking__form .booking__input--row .booking__input--radio {
        width: 100%;
    }
    .booking__form #booking-form p {
        padding-right: 0px;
    }
}

@media screen and (max-width: 578px) {
    .booking__form #booking-form p {
        /* padding-right: 30px; */
    }
    .booking__form #booking-form p input[type='submit'] {
        width: 90%;
        margin-right: 30px;
    }
    .booking__button--close img {
        filter: invert(60%) sepia(84%) saturate(4684%) hue-rotate(181deg)
            brightness(93%) contrast(101%);
    }
    .global-heading {
        font-size: 22px;
        line-height: 32px;
    }

    .global-desc {
        line-height: 24px;
        text-align: center;
    }

    /* booking form */

    .section__form .form__bottom {
        padding-top: 0;
    }

    .section__banner .banner__content--text {
        margin-top: 20px;
    }

    .booking__form .booking__group--title {
        text-align: start;
    }

    /* .booking__form #booking-form, */
    .booking__form .booking__scrolling {
        padding-right: 30px;
        height: 68vh;
    }

    .booking__form .booking__content {
        /* max-height: 100vh;
        height: 100vh; */
        padding: 0 0 0 30px;

        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .booking__form,
    .popup-success,
    .popup--special,
    .popup__doctor {
        max-width: 100%;
        border-radius: 0;
    }

    .booking__form .booking__heading {
        font-size: 25px;
    }

    .popup--special,
    .popup__doctor {
        padding: 0px;
    }

    .booking__form,
    .popup-success,
    .popup--special,
    .popup__doctor {
        height: 90vh;
        /* max-height: 100vh; */
        overflow: auto;
        padding: 30px 16px;
        text-align: center;
    }

    .popup__doctor .popup__doctor--img img {
        width: 40%;
    }

    .popup--special .popup--special-desc {
        font-size: 12px;
    }

    .popup__doctor .popup__doctor--desc span {
        font-size: 12px;
    }

    .popup__doctor .popup__doctor--group {
        flex-direction: column;
    }

    /* banner */

    .section__banner .banner__content--text span {
        font-size: 22px;
        line-height: 1;
    }

    .section__banner .banner__award img {
        height: 40px;
    }

    .section__banner .banner__img {
        height: 25vh;
    }

    .section__banner .banner__list--img video {
        height: auto;
    }

    .section__banner .banner__video {
        gap: 10px;
    }

    .section__banner .banner__video span {
        font-size: 14px;
    }

    /* form */

    .section__form {
        height: auto;
    }

    .section__form .form__container {
        transform: translateY(-20%);
        border-radius: 10px;
    }

    .section__form .form__bottom .form__bottom--link {
        padding: 8px 20px 10px;
        width: 100%;
        text-align: left;
    }

    .section__form .form__bottom .form__bottom--title {
        margin-bottom: 10px;
    }

    .section__form .form__top--input-img img {
        width: 16px;
    }

    /* special

    .section__special {
        padding: 60px 0 0;
    }

    .section__special .special__infor--desc {
        text-align: center;
    }

    .section__special .special__infor {
        width: 90%;
        margin: 0 auto 30px;
    }

    .section__special .special__infor--link {
        justify-content: center;
    }

    .section__special .special__item {
        max-width: 100%;
        margin-bottom: 0;
    }

    .section__special .special__item::after {
        display: block;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .section__special .special__item--title {
        text-align: center;
        min-height: 50px;
    }

    .section__special .special__item--content {
        z-index: 2;
        transform: translateY(30%);
    }

    .section__special .special__item--desc {
        opacity: 0;
        visibility: hidden;
    }

    .special__item:hover .special__item--desc {
        opacity: 1;
        visibility: visible;
    }

    .section__special .slick-list.draggable {
        padding-bottom: 0;
    } */

    /* amount */

    .section__amount .amount__title .amount__title-large,
    .section__amount .amount__title .amount__title-small {
        font-size: 20px;
        display: inline-block;
        font-weight: 600;
    }

    .section__amount .amount__title {
        text-align: center;
    }

    .section__amount .amount__item .amount__number {
        font-size: 28px;
    }

    .section__amount .amount__item .amount__title {
        width: 100%;
        font-size: 14px;
    }

    .section__amount .amount__list {
        width: 85%;
        margin: auto;
    }

    .section__amount {
        padding: 60px 0 40px;
    }

    /* doctor */

    .section__doctors {
        padding: 60px 0;
    }

    .section__doctors .doctors__list,
    .section__doctors .doctors__list-home {
        padding-top: 30px;
    }

    .section__doctors .doctors__item .doctors__item--content {
        transform: translateY(70%);
    }

    .section__doctors .doctors__item--desc {
        max-height: 290px;
    }

    .section__doctors .doctors__item--desc span {
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }

    /* .section__doctors .doctors__item--desc span {
        font-size: 14px;
        line-height: 26px;
    }

    
    .section__doctors .doctors__item--position {
        font-size: 16px;
        line-height: 20px;
        min-height: 40px;
    } */

    .section__doctors .doctors__item--name {
        font-size: 9px;
        line-height: 16px;
    }

    .section__doctors .doctors__item--position {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* number of lines to show */
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .section__doctors .doctors__item--img {
        height: 192px;
    }

    /* infor */

    .section__infor {
        width: 100%;
        margin: auto;
    }

    .section__infor .global-heading {
        width: 90%;
        margin: 0 auto 20px;
    }

    .section__information .information__content {
        max-width: 100%;
        padding: 32px 0;
    }

    .section__information
        .information__item:nth-child(even)
        .row
        .information__content {
        padding: 32px 0;
        margin-left: 0;
    }

    /* news */

    .news__item .card-body {
        padding-left: 15px;
    }

    .news__item .card-text {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        font-size: 16px;
    }

    .news__item .card-link {
        margin-top: 10px;
    }

    .news__item .card-img-top {
        height: 156px;
    }

    /* doctors */

    .section__doctors .doctors__item--more {
        width: 100%;
        padding: 0 0 3px;
        text-align: center;
    }

    /* .section__doctors .doctors__item:hover .doctors__item--content,
    .section__doctors .doctors__item.active .doctors__item--content {
        padding: 15px 10px;
    } */

    .section__doctors .doctors__item .doctors__item--content {
        padding: 5px 15px;
    }

    #booking-form-2 {
        text-align: left;
    }

    .booking__form .button--global {
        width: calc(100% - 30px);
    }
}
