:root {
    --color-white-: #fff;
    --color-primary-: #006991;
    --color-second-: #0090a1;
    --color-grey-: #929497;
}

body {
    overflow-x: hidden;
}

.popup-booking .section__book .container {
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}

@media screen and (max-width: 576px) {
.popup-booking .section__book .container {
    max-height: 70vh;
}	
}

.zalo-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    transition: all 0.3s linear;
}

.zalo-sticky a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.zalo-sticky a span {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s linear;
}

.zalo-sticky:hover a span {
    transform: translateX(5px);
    transition: all 0.3s linear;
}

.zalo-sticky a img {
    width: 60px;
    height: auto;
    object-fit: contain;
    transition: all 0.5s;
}

.zalo-sticky a img:hover {
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes trin {
    from {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    20%,
    32%,
    44%,
    56%,
    68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%,
    35%,
    47%,
    59%,
    71% {
        transform: rotate3d(0, 0, 1, 15deg);
    }
    26%,
    38%,
    50%,
    62%,
    74% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    29%,
    41%,
    53%,
    65%,
    77% {
        transform: rotate3d(0, 0, 1, -15deg);
    }
    80% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.banner__container {
    padding: 0 15px;
}

.popup-booking {
    position: fixed;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s linear all;
}

.popup-booking.active {
    opacity: 1;
    visibility: visible;
    transition: 0.3s linear all;
}

.popup-booking .close {
    position: absolute;
    top: 10px;
    right: 10px;
    text-shadow: unset;
    opacity: 1;
    color: #fff;
    cursor: pointer;
}

.blur {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s linear all;
}

.blur.active {
    opacity: 1;
    visibility: visible;
    transition: 0.3s linear all;
}

.global-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 54px;
    color: #00749b;
    text-align: center;
    margin-bottom: 0;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
    color: #ff0f1c;
    font-weight: 500;
    margin-bottom: 0;
}
.group-choice-date .wpcf7-form-control-wrap {
    width: 100%;
}
strong {
    font-weight: 700;
}

.background-grey {
    background-color: #f4f6f6;
}

.title-campaign {
    color: var(--color-primary-);
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
}

.title-campaign--second {
    color: #00749b;
    font-size: 28px;
    line-height: 35px;
    font-weight: 600;
}

.header__book-section {
    background-color: var(--white-color);
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    height: 110px;
    z-index: 3;
    transition: all 0.3s linear;
}

#header__book-section.header__book-section.active {
    height: 110px;
    border-bottom: 6px solid #8ccbd3;
    transition: all 0.3s linear;
}

header .header__book--group-left {
    gap: 40px;
}

header .header__menu--list {
    gap: 35px;
    display: flex;
    align-items: center;
}

header .header__menu--list .header__menu--item {
    /*    white-space: pre-line;*/
    text-align: left;
    letter-spacing: 0.68px;
    color: #009bab;
    font-size: 13px;
    line-height: 22px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

/* header .header__menu--list .header__menu--item::before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    height: 80%;
    width: 5px;
    opacity: 0;
    visibility: hidden;
    background-color: #a2dadd;
    transition: all 0.3s linear;
}

header .header__menu--list .header__menu--item:hover::before {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s linear;
} */

/* section banner */

.section__banner {
    position: relative;
}

.section__banner .banner__img {
    width: 100%;
    height: auto;
}

.section__banner .banner__content--heading {
    font-size: 54px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00749b;
}

.section__banner .banner__content--heading br:last-child {
    content: '';
}

.section__banner .banner__content--heading br:last-child::after {
    content: ' ';
}

/* .section__banner .banner__container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
} */

.section__banner .banner__container .col-content-custom {
    flex: 0 0 45%;
    max-width: 45%;
}

.section__banner .banner__content--heading div:first-child {
    color: var(--color-primary-);
}

.section__banner .banner__content--heading div:last-child {
    color: var(--color-second-);
}

.section__banner .banner__content--desc {
    font-size: 16px;
    line-height: 31px;
    font-weight: 400;
    color: #5d5d5d;
    text-align: justify;
}

.section__banner .banner__content--desc p strong {
    color: #00749b;
	font-weight: 600;
	line-height: 24px;
}

.section__banner .banner__content--button {
    font-size: 18px;
    line-height: 1;
    color: var(--color-white-);
    font-weight: 500;
    background-color: #009bab;
    padding: 12px 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s linear;
}

.banner__content--button.call {
    background-color: #abdfe1;
}

.section__banner .banner__content--button.call:hover {
    background-color: #00749b;
}

.section__banner .banner__content--button:hover {
    background-color: #00749b;
    transform: scale(1.02);
    transition: all 0.3s linear;
}

.section__banner .banner__content--button img {
    width: 32px;
    height: auto;
    margin: 0;
}

/* section news */

.section__news {
    padding: 40px 0;
}

.section__news .news__item .news__group--title {
    padding: 33px 0;
    cursor: pointer;
}

.section__news .news__item:first-child .news__group--title {
    background-color: #a2dadd;
}

.section__news .news__item:nth-child(2) .news__group--title {
    background-color: #6cb5c3;
}

.section__news .news__item:nth-child(3) .news__group--title {
    background-color: #368faa;
}

.section__news .news__item:last-child .news__group--title {
    background-color: #006991;
}

.section__news .news__group--title h3 {
    color: #fff;
    padding: 0 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section__news .news__group--title h3 .news__dropdown {
    margin: 0;
    transition: all linear 0.3s;
    /* padding-left: 20px; */
    margin-left: 20px;
}

.section__news .news__group--title h3 .news__dropdown.active {
    transform: rotate(180deg);
    transition: all linear 0.3s;
}

.section__news .news__group--content .container {
    padding: 50px 38px;
}
.section__news .news__group--content ul {
    list-style: disc;
    padding-left: 15px;
}
.section__news .news__group--content ul li {
    margin-bottom: 5px;
}
.section__news .news__group--content {
    /*    max-height: 0;*/
    overflow: hidden;
    transition: all 0.4s linear;
}

.section__news .news__group--content.active {
    /*    max-height: 2000px;*/
    transition: all 0.6s linear;
}

/* section infor */

.section__infor {
    padding: 120px 0 0px;
}

.section__infor .infor__img {
    padding-right: 25px;
}

.section__infor .infor__img img {
    width: 100%;
    height: auto;
}

.section__infor .infor__content {
    /* padding-top: 15px; */
    padding-left: 10px;
}

.infor__content--button {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: #fff;
    background-color: #009bab;
    padding: 8px 40px;
    border-radius: 27px;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s linear;
}

.infor__content--button:hover {
    transform: scale(1.02);
    color: #fff;
    background-color: #00749b;
    transition: all 0.3s linear;
}

.infor__content ul {
    list-style-position: inside;
    padding-left: 20px;
}

.section__infor .infor__content ul li {
    list-style: disc;
    margin-bottom: 4px;
}
.section__infor .infor__content--desc {
    /* white-space: break-spaces; */
    padding-top: 20px;
    font-weight: 400;
    color: #5d5d5d;
    margin-bottom: 24px;
    text-align: justify;
    font-size: 16px;
    line-height: 32px;
}

.section__infor .infor__content--desc ol {
    padding-left: 20px;
}

.section__infor .infor__content--desc p {
    margin-bottom: 5px;
}

/* section package */

.section__package {
    padding: 40px 0 50px;
}

.section__package .package__item {
    background: #f5f7f7 0% 0% no-repeat padding-box;
    box-shadow: 0px 20px 20px #00000021;
    border: 2px solid #ffffff;
    border-radius: 20px;
    padding: 40px 30px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section__package .package__title {
    text-align: center;
    color: var(--color-primary-);
    font-size: 31px;
    line-height: 1.2;
    font-weight: 500;
}

.section__package .package__item--desc {
    padding: 30px 0;
    margin-top: 30px;
    border-top: 2px solid #a2dadd;
    color: #767575;
}

.section__package .package__item--desc span {
    margin-bottom: 0;
    font-weight: 400;
    position: relative;
    padding-left: 30px;
}

.section__package .package__item--desc ul {
    padding-left: 47px;
    list-style-type: disc;
}

.section__package .package__item--desc .img-tick {
    position: absolute;
    top: 4px;
    left: 0;
}

.section__package .package__item--cost {
    display: block;
    text-align: center;
}

.section__package .package__note {
    letter-spacing: 0.38px;
    color: #006991;
    font-size: 16px;
    font-style: italic;
    padding-left: 15px;
    display: block;
    margin-bottom: 30px;
}

.section__package .slick-initialized .slick-slide {
    padding: 0 16px 50px;
}

/* section client */

.section__doctors:lang(en) {
    padding-bottom: 0;
}

/* .client:lang(en) {
    display: none;
} */

.section__client {
    padding: 80px 0 100px;
    background-color: #f5f7f7;
}

.section__client .client__item--infor-img {
    width: 76px;
    height: 76px;
    border-radius: 100%;
    overflow: hidden;
}

.section__client .package__title {
    padding: 32px 0 54px;
}

.section__client .client__item {
    background: #fff;
    box-shadow: 0px 30px 20px #00000015;
    border: 2px solid #ffffff;
    border-radius: 11px;
    padding: 40px 30px 30px 30px;
    /* padding: 12px; */
    height: 100%;
}

.section__client .slick-slider .slick-slide {
    padding: 0 15px 50px;
}

.section__client .slick-slider .slick-slide > div {
    height: 100%;
}

.section__client .client__item--desc {
    padding: 30px 0;
    color: #929497;
    min-height: 230px;
    font-size: 16px;
    line-height: 28px;
}

.section__client .client__item .client__item--img img {
    margin: 0;
    width: 39px;
    height: auto;
}

.section__client .client__item--infor {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #929497;
    font-size: 20px;
    /* flex-direction: column; */
}

.section__client .client__item--infor .client__item--infor-name {
    font-size: 16px;
    min-height: 75px;
    flex: 1 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section__client .slick-track {
    display: flex !important;
}

.section__client .slick-slide {
    height: inherit !important;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slick-dots button {
    display: block;
    width: 14px;
    height: 14px;
    padding: 0;

    border: 1px solid var(--color-second-);
    border-radius: 100%;
    background-color: transparent;

    text-indent: -9999px;
}

.slick-dots li.slick-active button {
    background-color: #0090a1;
}

/* section book */

.section__book {
    background-color: var(--color-primary-);
    padding: 40px 0 50px;
}

.section__book .book__title {
    color: var(--color-white-);
}
.section__book .desc-text {
	font-size: 10px;
    font-weight: 400;
    display: block;
    padding: 16px;
    background-color: #eee;
    border-radius: 8px;
}
.section__book .desc-text a {
	color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
.section__book .book__form input {
    padding: 28px 12px;
    border-radius: 0;
    color: var(--color-second-);
    font-weight: 500;
    outline: none;
}

.section__book .book__form input::placeholder {
    color: var(--color-second-);
}

.section__book .book__form textarea {
    height: 188.8px;
    border-radius: 0;
    width: 100%;
    color: var(--color-second-);
    font-weight: 500;
    outline: none;
}

.section__book .book__form .group-choice-date {
    width: 100%;
    position: relative;
}

.section__book .book__form .group-choice-date label.error {
    position: absolute;
    left: 0;
    top: 100%;
}

.section__book .book__form #allow-error {
    display: none;
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}

.section__book .book__form .input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: transparent;
    border: 0px;
    border-radius: 0.25rem;
    position: absolute;
    z-index: 2;
    height: 100%;
    right: 0;
}

.section__book .book__form p {
    margin-bottom: 0;
}

.section__book .book__form .book__form--title {
    font-size: 16px;
    color: var(--color-white-);
    display: block;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 500;
}

.section__book .book__form--title.title {
    font-size: 34px;
    line-height: 71px;
    font-weight: 500;
    margin-top: 0;
}

.section__book .book__form--title.second {
    margin-top: 45px;
}

.section__book .book__form .book__form--group {
    /* padding-top: 41.5px; */
    padding-bottom: 20px;
}

.section__book .book__form .book__form--checkbox {
    display: flex;
    align-items: self-start;
    gap: 5px;
}

.section__book .book__form .book__form--checkbox p {
    margin-bottom: 0;
    font-size: 10px;
    font-weight: 500;
    color: var(--color-white-);
}

.section__book .book__form .book__form--checkbox p.active {
    color: #ff0f1c;
}

.section__book .book__form .book__form--checkbox input[type='checkbox'] {
    transform: translateY(2px);
    width: 13px;
    height: 13px;
    accent-color: var(--color-primary-);
}

.section__book .book__form .book__form--button {
    
    width: 100%;
    height: 57.6px;
    text-align: center;
    border: 0;
    outline: none;
    background-color: #a2dadd;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    /* margin-top: 61px; */
    transition: all 0.3s linear;
    /* text-transform: uppercase; */
}

.section__book .book__form .book__form--button:hover {
    background-color: var(--color-second-);
    transition: all 0.3s linear;
}

.section__book .book__form .input-group {
    display: flex;
    flex-direction: column;
}

.section__book .book__form .input-group input {
    width: 100%;
}

.section__book .book__form label.error {
    color: #ff0f1c;
    font-weight: 500;
    margin-bottom: 0;
    display: none !important;
}

.section__book .checkbox__container {
    display: block;
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transform: translateY(4px);
    height: 13px;
}

.section__book .checkbox__container input {
    position: absolute;
    opacity: 0;
    top: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    left: 0;
    z-index: 2;
}

.section__book .checkbox__container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 13px;
    width: 13px;
    background-color: #006991;
    border: 1px #fff solid;
}

.section__book .checkbox__container:hover ~ .checkmark {
    background-color: #ccc;
}

.section__book .checkbox__container input:checked ~ .checkmark {
    background-color: #006991;
}

.section__book .checkbox__container .checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

.section__book .checkbox__container input:checked ~ .checkmark:after {
    display: block;
}

.section__book .checkbox__container .checkmark:after {
    left: 33%;
    top: 50%;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg) translate(-50%, -50%);
}

/* section video */

.section__video {
    padding: 80px 0 100px;
}

.section__video .video__content--desc {
    padding-top: 20px;
    font-weight: 400;
    color: var(--color-grey-);
    margin-bottom: 0;
    white-space: break-spaces;
}

.section__video .video__content {
    padding-right: 40px;
}

.section__video .video__group {
    position: relative;
    width: 100%;
    padding-top: 20px;
}

.play-btn-campaign {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    padding: 20px;
    width: 80px;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border-radius: 100%;
    color: white;
    border: 2px solid #fff;
}

.play-btn-campaign img {
    transform: translateX(10px);
}

/* section faq */

.section__faq {
    padding: 120px 0 120px;
}

.section__faq .faq__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section__faq .faq__title-main {
    font-size: 104px;
    color: var(--color-primary-);
    line-height: 1.2;
    font-weight: 500;
}

.section__faq .faq__item {
    padding: 15px 20px;
    border: 2px solid #006991;
    border-radius: 11px;
    margin-bottom: 15px;
    cursor: pointer;
}

.section__faq .faq__item--bottom {
    max-height: 0px;
    overflow: hidden;
    line-height: 30px;
    transition: max-height 0.6s linear;
}

.section__faq .faq__item.active .faq__item--bottom {
    max-height: 2000px;
    transition: max-height 0.6s linear;
}

.section__faq .faq__item--top {
    /*    display: flex;*/
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-right: 25px;
}

.section__faq .faq__item--top .faq__item--img {
    position: absolute;
    top: calc(50% - 7.5px);
    right: 5px;
}

.section__faq .faq__item--top .faq__item--img img {
    margin: 0;
    transition: all 0.3s linear;
}

.section__faq .faq__item.active .faq__item--top .faq__item--img img {
    transform: rotate(180deg);
    transition: all 0.3s linear;
}

.section__faq .faq__item--bottom span {
    color: #929497;
    padding: 20px 20px 0 0;
    display: block;
}

/* section thank you */

.section__thanks {
    position: relative;
}

.section__thanks .thanks__img img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.section__thanks .thanks__img::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-image: linear-gradient(
        to right,
        #a2dadd,
        var(--color-primary-),
        var(--color-primary-),
        var(--color-primary-),
        #a2dadd
    );
    opacity: 0.8;
}

.section__thanks .thanks__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section__thanks .thanks__content--title {
    font-size: 68px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.section__thanks .thanks__content--desc {
    font-size: 38px;
    text-align: center;
    color: #fff;
    max-width: 1150px;
}

.ff-18 {
    font-size: 18px;
}
.ff-14 {
    font-size: 14px;
}
.fs-justify {
    text-align: justify;
}
.table td,
.table th {
    vertical-align: middle;
}
.doctor_list_item ul {
    list-style: disc;
}
.doctor_list_item .title-campaign--second {
    height: 45px;
    text-align: center;
}
.doctor_list_item ul li {
    margin-bottom: 5px;
}

a.btn {
    background-color: #009bab;
    font-size: 16px;
    line-height: 1;
    height: unset;
    padding: 8px 25px;
    font-weight: 400;
    text-transform: unset;
    border-radius: 24px;
}

/* value */

.values .nav-item {
    width: 50%;
}

.values table {
    font-size: 20px;
    line-height: 30px;
}

.values .table-type-1 tr:nth-child(2),
.values .table-type-1 tr:nth-child(6) {
    background-color: #c6c6c6;
    color: #fff;
}

.values .table-type-1 th,
.values .table-type-4 th {
    padding: 24px;
    font-weight: 500;
    border: 1px solid #e1e1e1;
}

.values .table-type-4 th {
    text-align: center;
}

.values .table-type-4 thead th {
    width: 25%;
}

.values .table-type-4 thead th:nth-child(2) {
    width: 25%;
}

.values .table-type-4 thead th:nth-child(3),
.values .table-type-4 thead th:nth-child(5) {
    width: 12.5%;
}

.values .table-type-4 tbody th {
    color: #006991;
    text-align: left;
}

.values .table-type-4 tbody td {
    font-size: 16px;
    padding: 12px 24px;
    text-align: center;
    border: 1px solid #e1e1e1;
}

.values .table-type-4 tbody tr:nth-last-child(-n + 5) td {
    text-align: left;
}

.values .table-type-4 tbody tr:nth-child(odd) {
    background-color: #fff;
}

.values .table-type-1 th:first-child {
    text-align: center;
}

.values .table-type-1 td {
    border: 1px solid #e1e1e1;
}

.values .table-type-1 td:first-child {
    padding: 36px 24px 24px;
    text-align: center;
}

.values .table-type-1 td:not(:first-child) {
    font-size: 14px;
    line-height: 20px;
    padding: 36px 24px 24px;
}

.values .table-type-1 td:first-child {
    color: #00749b;
    text-align: center;
    font-weight: 500;
    /* padding: 36px 24px 24px; */
}

.values .table-type-1 td ul {
    list-style: disc;
    list-style-position: inside;
}

.values .table-type-1 td ul li {
    margin-bottom: 6px;
}

.values .table-type-2 {
    font-size: 16px;
    line-height: 20px;
    width: 100%;
}

.values .table-type-2 thead th,
.values .table-type-3 thead th {
    width: auto;
    text-align: center;
    color: #00749b;
    font-size: 20px;
    line-height: 24px;
    padding: 24px;
    background-color: #fff;
    border: 1px solid #e1e1e1;
}

.values .table-type-2 tbody tr:nth-child(even),
.values .table-type-3 tbody tr:nth-child(even) {
    background-color: #fff;
}

.values .table-type-2 tbody td,
.values .table-type-3 tbody td {
    font-size: 16px;
    padding: 12px 24px;
    text-align: center;
    border: 1px solid #e1e1e1;
}

.values .table-type-2 thead th span,
.values .table-type-3 thead th span {
    font-weight: 300;
}

.values .nav-link {
    text-align: center;
    padding: 33px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 15px 15px 0px 0px;
    background-color: #00749b;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    border: 0;
    transition: all 0.3s linear;
}

.values .nav-link.active {
    background-color: #009bab;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    transform: scale(1.04) translateY(-2px);
    transition: all 0.3s linear;
}

.values .nav-item:first-child .nav-link.active {
    transform: scale(1.04) translateY(-1px) translateX(11px);
}

.values .nav-item:last-child .nav-link.active {
    transform: scale(1.04) translateY(-1px) translateX(-11px);
}

.values .tab-content > .tab-pane {
    background-color: #f5f7f7;
    color: #5d5d5d;
    padding: 0 16px;
    padding: 36px;
    font-size: 16px;
    line-height: 32px;
}

.values .tab-content > .tab-pane ol {
    padding-left: 20px;
}

.values .tab-content > .tab-pane ol li {
    margin-bottom: 2px;
}

.values .tab-content > .tab-pane dl dt {
    font-weight: 400;
    margin-bottom: 4px;
}

.values .tab-content > .tab-pane ul {
    list-style: disc;
    list-style-position: outside;
    padding-left: 16px;
}

/* 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: 30px;
    justify-content: center;
    /* align-items: center; */
    height: 100%;
    max-width: 556px;
    padding: 106px 0;
    padding-left: 40px;
}

.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;
}

.section__information h3 {
    font-size: 32px;
    line-height: 40px;
    color: #00749b;
    font-weight: 600;
    /* max-width: 90%; */
    margin-bottom: 0;
}

.section__information .content {
    color: #5d5d5d;
    font-weight: 400;
    text-align: justify;
    font-size: 16px;
    line-height: 32px;
}

.section__information .content ul {
    list-style: disc;
    list-style-position: outside;
    padding-left: 20px;
}

/* section doctors */

.section__doctors {
    padding: 120px 0 120px;
}

.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: 60px;
}

.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%;
    width: 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: 5px 15px;
    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;
    max-height: 200px;
    overflow-y: auto;
}

/* width */
.section__doctors .doctors__item--desc::-webkit-scrollbar {
    width: 3px;
}

/* Track */
.section__doctors .doctors__item--desc::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #00749b;
}

.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;
    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);
}

.section__doctors .desc,
.values .desc,
.dropdown .desc {
    font-size: 20px;
    line-height: 30px;
    color: #5d5d5d;
    text-align: center;
    max-width: 80%;
    margin: 30px auto 0;
}

.dropdown .desc {
    max-width: 100%;
}

.desc em {
    color: #006991;
}

.values.bottom .desc,
.dropdown .desc {
    margin-bottom: 50px;
}

.values.bottom .tab-pane {
    padding: 40px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    box-shadow: 0px 20px 20px #00000021;
    /* border: 2px solid #FFFFFF;
    border-radius: 20px; */
}

.values {
    padding: 120px 0;
}

.values.bottom .nav-item:first-child .nav-link.active {
    transform: scale(1.04) translateY(-1px) translateX(11px);
}

.values.bottom .nav-item:last-child .nav-link.active {
    transform: scale(1.04) translateY(-1px) translateX(-11px);
}

footer .footer__item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    height: 100%;
    justify-content: space-between;
}

footer .footer__item-right .text-copyright {
    margin-bottom: 15px;
}

.faq__item--top .title-campaign--second {
    font-size: 18px;
    line-height: 28px;
}

.section__book .book__form .input-group {
    /* margin-bottom: 26px !important; */
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent;
}

.table-striped tbody tr:nth-child(2),
.table-striped tbody tr:nth-child(3),
.table-striped tbody tr:nth-child(4),
.table-striped tbody tr:nth-child(5),
.table-striped tbody tr:last-child {
    background: #f5f7f7;
}

.table-responsive > .table-bordered {
    background-color: #fff;
}

.table-responsive > .table-bordered a {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: #fff;
    background-color: #009bab;
    padding: 8px 40px;
    border-radius: 24px;
    width: fit-content;
    cursor: pointer;
    display: block;
    white-space: nowrap;
    margin: 0 auto;
    transition: all 0.3s linear;
}

.table-responsive > .table-bordered a:hover {
    transform: scale(1.04);
    background-color: #00749b;
    transition: all 0.3s linear;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #bcbcbc87;
    max-width: 300px;
    padding: 20px 30px;
}

.table-bordered tr {
    text-align: center;
}

.table-bordered td {
    font-size: 16px;
    font-weight: 400;
    color: #5d5d5d;
}

.table-bordered th {
    color: #00749b;
    white-space: nowrap;
}

@media screen and (max-width: 1200px) {
    /* header */

    header .header__book--group-left {
        gap: 30px;
    }

    header .header__menu--list {
        gap: 28px;
    }

    header .header__menu--list .header__menu--item {
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
    }

    /* section banner */

    .section__banner .banner__container .col-content-custom {
        flex: 0 0 45%;
        max-width: 50%;
        width: 50%;
        padding-left: 16px;
    }

    .section__banner .banner__content--heading {
        font-size: 36px;
    }

    .section__banner .banner__content--desc {
        line-height: 22px;
        font-size: 14px;
    }

    .section__banner .banner__content--heading br {
        content: '';
    }

    .section__banner .banner__content--heading br::after {
        content: ' ';
    }

    .section__banner .banner__content--button {
        font-size: 16px;
    }

    /* section news */

    /* section thanks */

    .section__thanks .thanks__content--desc {
        max-width: 670px;
    }

    .section__video .video__content.d-flex .title-campaign {
        font-size: 44px;
    }

    /* 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: 991px) {
    footer .footer__item-right {
        align-items: center;
    }
    /* ------------------------- */

    .dropdown__header {
        font-size: 22px;
        line-height: 28px;
        padding: 30px 0;
        background-color: #009bab;
        color: #fff;
        font-weight: 500;
        position: relative;
    }

    .dropdown__header span::after {
        position: absolute;
        content: '';
        width: 14px;
        height: 14px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        right: 40px;
        top: 33%;
        transform: rotate(135deg) translateY(-50%);
        transition: all 0.3s ease;
    }

    .dropdown__header.active span::after {
        top: 55%;
        transform: rotate(-45deg) translateY(-50%);
        transition: all 0.3s linear;
    }

    .dropdown .dropdown__content {
        display: none;
    }

    .dropdown .dropdown__content--cate {
        font-size: 22px;
        line-height: 28px;
        color: #fff;
        background-color: #c6c6c6;
        padding: 20px 0;
    }

    .dropdown .dropdown__content--group {
        padding: 60px 0 40px;
        background-color: #f5f7f7;
    }

    .dropdown .dropdown__content--sec .title {
        font-size: 22px;
        line-height: 28px;
        color: #00749b;
        font-weight: 500;
        margin-bottom: 24px;
    }

    .dropdown .dropdown__content--sec .heading {
        font-size: 20px;
        line-height: 28px;
        color: #5d5d5d;
        font-weight: 500;
    }

    .dropdown .dropdown__content--sec ul {
        list-style: disc;
        list-style-position: inside;
        font-size: 18px;
        margin-top: 8px;
        margin-bottom: 36px;
    }

    .dropdown
        .dropdown__content--sec
        .dropdown__content--group:nth-child(even) {
        background-color: #f2f2f2;
    }

    .section__information {
        padding: 0px 0 40px;
    }

    .section__information h3 {
        text-align: center;
    }

    .section__information .content {
        text-align: justify;
    }

    .dropdown.bottom {
        padding-top: 60px;
    }

    .dropdown .dropdown__item-mb {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .dropdown .dropdown__item-mb:not(:last-child) {
        padding-bottom: 24px;
        margin-bottom: 24px;
        border-bottom: 3px solid #e1e1e1;
    }

    .dropdown .dropdown__item-mb span {
        font-size: 20px;
        line-height: 28px;
        color: #5d5d5d;
        font-weight: 500;
    }

    .dropdown .dropdown__item-mb .title {
        color: #00749b;
    }

    .dropdown .dropdown__list-mb {
        padding: 48px 0 84px;
    }

    .section__client .container {
        max-width: 100%;
        padding: 0;
    }

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

    html {
        overflow-x: hidden;
    }

    .section__banner {
        background-color: #f5f7f7;
    }

    .section__information .information__content {
        padding-top: 40px;
        padding-bottom: 40px;
        margin: auto;
        padding: 40px 0;
        align-items: center;
    }

    .section__information
        .information__item:nth-child(even)
        .row
        .information__content {
        margin-left: 20px;
        margin: auto;
    }

    .global-heading,
    .section__information h3 {
        font-size: 26px;
        line-height: 40px;
    }

    .title-campaign--second {
        font-size: 22px;
    }

    .title-campaign {
        font-size: 42px;
        text-align: center;
    }

    header .header__menu--list {
        display: none;
    }

    /* section banner */

    .section__banner .banner__content--heading {
        font-size: 32px;
        text-align: center;
        margin-bottom: 12px;
    }

    .section__banner .banner__content--heading br {
        /* display: none; */
    }

    .section__banner .banner__content--button {
        font-size: 16px;
    }

    .section__banner .banner__content--button img {
        width: 16px;
    }

    /* section infor */

    .section__infor {
        padding: 52px 0 48px;
    }

    .section__infor .infor__img {
        padding-right: 0;
        padding-top: 32px;
    }

    .section__infor .infor__content--title {
        font-size: 28px;
        text-align: center;
        margin: 30px 0;
    }

    .section__infor .infor__content--desc {
        padding-top: 0;
        margin-bottom: 32px;
    }

    .section__infor .infor__content ul li {
        margin-bottom: 0;
    }

    .section__infor .infor__content {
        padding-left: 0;
    }

    /* section book */

    .section__book .book__form .book__form--group {
        padding-bottom: 0;
        padding-top: 10px;
    }

    /* section video */

    .section__video .video__content {
        padding-right: 0;
    }

    /* section faq */

    .section__faq .faq__content {
        text-align: center;
        margin-bottom: 30px;
    }

    .section__faq .faq__title-main {
        font-size: 55px;
    }

    .section__banner .banner__container {
        position: relative;
        top: unset;
        transform: unset;
    }

    .section__banner .banner__container .col-content-custom {
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%;
        padding: 0 16px;
        padding-top: 60px;
    }

    .banner__group--button {
        justify-content: center;
    }

    .banner__content {
        margin-bottom: 60px;
    }

    .section__banner .banner__content--desc {
        text-align: center;
        line-height: 24px;
    }

    .values .nav-link {
        padding: 12px 24px;
        font-size: 16px;
        line-height: 20px;
    }

    .values .nav-link.active {
        font-size: 16px;
    }

    .values .nav-item:first-child .nav-link.active {
        transform: scale(1.04) translateY(-1px) translateX(4px);
    }

    .values .nav-item:last-child .nav-link.active {
        transform: scale(1.04) translateY(-1px) translateX(-4px);
    }

    .values .table-type-1 th,
    .values .table-type-4 th {
        padding: 12px;
        font-size: 16px;
    }

    .values .table-type-1 td:not(:first-child) {
        padding: 24px 12px;
        font-size: 12px;
    }

    .values .table-type-1 td:first-child {
        font-size: 16px;
        padding: 12px;
    }

    .values .table-type-4 thead th:nth-child(2) {
        width: auto;
    }

    .values .table-type-4 th,
    .values .table-type-4 tbody td {
        font-size: 12px;
    }

    .values.bottom .tab-pane {
        padding: 0px;
    }

    .values .table-type-2 tbody td,
    .values .table-type-3 tbody td {
        font-size: 12px;
    }

    .values .table-type-2 thead th,
    .values .table-type-3 thead th {
        font-size: 14px;
    }

    .values.bottom .nav-item:first-child .nav-link.active {
        transform: scale(1.04) translateY(0px) translateX(4px);
    }

    .values.bottom .nav-item:last-child .nav-link.active {
        transform: scale(1.04) translateY(0px) translateX(-4px);
    }
}

@media screen and (max-width: 768px) {
    /* section package */

    .section__package .package__title {
        padding: 0 0 50px;
    }

    .section__package .package__title {
        padding: 16px 0 32px;
    }

    /* section client */

    .section__client {
        padding: 32px 0 48px;
    }

    .section__client .package__title {
        padding: 16px 0 48px;
    }

    /* section video */

    .section__video {
        padding: 16px 0 32px;
    }

    .section__video .video__content.d-flex .title-campaign {
        padding-top: 20px;
        font-size: 42px;
    }

    /* section faq */

    .section__faq {
        padding: 16px 0 48px;
    }

    /* section thanks */

    .section__thanks .thanks__img img {
        height: 40vh;
    }

    .section__thanks .thanks__content--img img {
        width: 100px;
    }

    .section__thanks .thanks__content--title {
        font-size: 55px;
    }

    .section__thanks .thanks__content--desc {
        font-size: 22px;
    }

    /* 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;
    }

    .section__doctors .doctors__item .doctors__item--content {
        transform: translateY(74%);
    }
}

@media screen and (max-width: 576px) {

.values.bottom .desc p { display: none; }

    .values .tab-content > .tab-pane,
    .dropdown__content--sec {
        padding: 16px;
    }

    .values.bottom .tab-content > .tab-pane {
        padding: 0;
    }
    /*main {
        margin-top: 50px;
    }*/

    .title-campaign {
        font-size: 22px;
    }

    .title-campaign--second {
        font-size: 20px;
    }

    .banner__group--button {
        justify-content: center;
        align-items: center;
    }

    /* section banner */
    .section__infor .infor__content {
        /* padding-left: 15px; */
    }

    .section__banner .banner__container {
        width: 100%;
        position: relative;
        margin-top: 20px;
        transform: unset;
    }

    .section__banner .banner__container .col-content-custom {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 30px;
    }

    .section__banner .banner__content--heading {
        font-size: 22px;
        margin-bottom: 5px;
        transform: unset;
    }

    .section__banner .banner__content--desc {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 10px;
        overflow: hidden;
        text-align: justify;
        margin-top: 20px;
        /*text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
                line-clamp: 2; 
        -webkit-box-orient: vertical;*/
    }

    .section__banner .banner__content--desc > p:first-child {
        text-align: center;
    }

    .dropdown__header {
        padding-right: 70px;
    }

    .section__banner .banner__content--button {
        font-size: 15px;
        white-space: nowrap;
    }

    .section__banner .banner__content--button img {
        width: 16px;
    }

    .section__banner .banner__content--button {
        gap: 5px;
        padding: 12px 24px;
    }

    /* section infor */

    .section__infor {
        padding: 48px 0;
    }

    .section__infor .infor__content--title {
        font-size: 22px;
    }

    /* section news */

    .section__news {
        padding: 32px 0;
    }

    .section__news .news__group--title h3 {
        padding: 0;
    }

    .section__news .news__group--title h3 .news__dropdown {
        width: 20px;
    }

    /* section package */

    .section__package {
        padding: 16px 0 32px;
    }

    .section__package .slick-initialized .slick-slide {
        padding: 0 16px 38px;
    }

    .section__package .package__note {
        font-size: 10px;
        margin-top: 32px;
    }

    /* section book */

    .section__book .book__form input {
        padding: 20px 12px;
    }

    .section__book .book__form textarea {
        height: 118.8px;
    }

    .section__book .book__form .book__form--button {
        height: 41.6px;
        font-size: 20px;
    }

    /* section client */

    .section__client,
    .section__client .package__title {
        padding: 16px 0 32px;
    }

    /* section video */

    .section__video {
        padding-bottom: 16px;
    }

    /* section faq */

    .section__faq {
        padding-top: 0;
    }

    .section__faq .faq__title-main {
        font-size: 22px;
    }

    h3.faq__item--title.title-campaign--second {
        width: 90%;
    }

    .faq .faq__content .title-campaign--second {
        display: none;
    }

    /* section thanks */

    .section__thanks .thanks__img img {
        height: 30vh;
    }

    .section__thanks .thanks__content--title {
        font-size: 42px;
    }

    .section__thanks .thanks__content--desc {
        font-size: 16px;
        padding: 0 32px;
    }

    .section__thanks .thanks__content {
        gap: 5px;
    }

    .section__video .video__content.d-flex .title-campaign {
        font-size: 22px;
    }

    .section__thanks .thanks__content--img img {
        width: 60px;
    }

    /* doctor */

    .section__doctors {
        padding: 48px 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: 50px;
    }

    .section__doctors .doctors__item--desc span {
        /* -webkit-line-clamp: 4;
        line-clamp: 4;
        display: unset;
        overflow: unset; */
    }

    /* .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;
    }

    .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;
    }

    .values .tab-pane {
        max-width: 100%;
        overflow-x: auto;
    }

    .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;
    }

    .global-heading,
    .section__information h3 {
        font-size: 22px;
        line-height: 32px;
    }

    .popup-booking {
        width: 100%;
    }

    .section__client .client__item {
        padding: 24px;
    }

    .section__client {
        padding: 48px 0 48px;
    }

    .section__doctors .desc,
    .values .desc,
    .dropdown .desc {
        font-size: 16px;
    }

    .dropdown__header span {
        font-size: 18px;
    }

    .dropdown .dropdown__item-mb span {
        font-size: 16px;
    }

    .dropdown .dropdown__item-mb {
        gap: 6px;
    }

    .dropdown .dropdown__content--sec ul {
        font-size: 16px;
        text-align: justify;
    }

    .section__client .client__item--desc {
        font-size: 14px;
        line-height: 20px;
    }

    .section__information .information__img {
        padding: 0;
    }

    .section__client .client__item--infor .client__item--infor-name {
        font-size: 14px;
        line-height: 20px;
    }

    .values .nav-tabs {
        margin: -15px;

    }

    .values .tab-content {
        margin: -15px;
	    margin-top: 15px;
    }

    .section__infor .infor__img {
        padding-top: 0;
    }

    .information {
        padding-top: 48px;
    }

    .values {
        padding: 48px 0;
    }

    .faq {
        padding-top: 48px;
    }
}
