@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .header .header-top .header-contact .header-contact_item {
        padding: 12px;
    }

    .header .header-top .header-contact .header-contact_item .header-contact_item__content {
        margin-left: 12px;
    }

    .header .header-sticky .header-social {
        margin-left: 20px;
    }
}

@media screen and (min-width: 992px) {
    .header .header-navigation > ul > li:hover > a > i,
    .header .header-navigation > ul > li:hover > button > i {
        -webkit-transform: rotateX(-180deg);
        -khtml-transform: rotateX(-180deg);
        -moz-transform: rotateX(-180deg);
        -ms-transform: rotateX(-180deg);
        -o-transform: rotateX(-180deg);
        transform: rotateX(-180deg);
    }

    .header .header-navigation > ul > li ul li {
        position: relative;
        padding-left: 20px;
        padding-right: 20px;
        transition: all .2s cubic-bezier(.4, .28, .31, 1.28) 0s;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }

    .header .header-navigation > ul > li ul li:nth-child(2n+1) {
        -webkit-transition-delay: .1s;
        transition-delay: .1s;
    }

    .header .header-navigation > ul > li ul li:nth-child(2n+2) {
        -webkit-transition-delay: .15s;
        transition-delay: .15s;
    }

    .header .header-navigation > ul > li ul li:nth-child(2n+3) {
        -webkit-transition-delay: .2s;
        transition-delay: .2s;
    }

    .header .header-navigation > ul > li ul li:nth-child(2n+4) {
        -webkit-transition-delay: .25s;
        transition-delay: .25s;
    }

    .header .header-navigation > ul > li ul li:nth-child(2n+5) {
        -webkit-transition-delay: .3s;
        transition-delay: .3s;
    }

    .header .header-navigation > ul > li ul li:nth-child(2n+6) {
        -webkit-transition-delay: .35s;
        transition-delay: .35s;
    }

    .header .header-navigation > ul > li ul li:nth-child(2n+7) {
        -webkit-transition-delay: .4s;
        transition-delay: .4s;
    }

    .header .header-navigation > ul > li ul li:nth-child(2n+8) {
        -webkit-transition-delay: .45s;
        transition-delay: .45s;
    }

    .header .header-navigation > ul > li ul li:nth-child(2n+9) {
        -webkit-transition-delay: .5s;
        transition-delay: .5s;
    }

    .header .header-navigation > ul > li:hover > ul > li,
    .header .header-navigation > ul > li:hover > ul > li:hover > ul > li {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .header .header-navigation > ul > li ul {
        position: absolute;
        top: 100%;
        left: 0;
        padding: 0;
        margin-bottom: 0;
        min-width: 230px;
        background-color: var(--bs-white);
        z-index: 99;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: opacity 100ms ease, visibility 100ms ease, transform 200ms ease, -webkit-transform 200ms ease;
        -moz-transition: opacity 100ms ease, visibility 100ms ease, transform 200ms ease, -webkit-transform 200ms ease;
        -ms-transition: opacity 100ms ease, visibility 100ms ease, transform 200ms ease, -webkit-transform 200ms ease;
        -o-transition: opacity 100ms ease, visibility 100ms ease, transform 200ms ease, -webkit-transform 200ms ease;
        transition: opacity 100ms ease, visibility 100ms ease, transform 200ms ease, -webkit-transform 200ms ease;
        transform: scaleY(0);
        transform-origin: 0 0 0;
        -webkit-transform-origin: 0 0 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        box-shadow: 0 5px 83px 0 rgba(13, 14, 67, 0.12);
    }

    .header .header-navigation > ul > li > ul > li > ul {
        top: 0;
        left: 100%;
    }

    .header .header-navigation > ul > li:hover > ul,
    .header .header-navigation > ul > li > ul > li:hover > ul {
        clip: inherit;
        opacity: 1;
        visibility: visible;
        -webkit-transform: scaleY(1) translateZ(0);
        transform: scaleY(1) translateZ(0);
    }

    .col-custom-70 {
        width: 70%;
    }

    .col-custom-30 {
        width: 30%;
    }
}

@media screen and (max-width: 991px) {
    .header {
        -webkit-box-shadow: 0 3px 18px rgba(2, 21, 78, 9%);
        -moz-box-shadow: 0 3px 18px rgba(2, 21, 78, 9%);
        -o-box-shadow: 0 3px 18px rgba(2, 21, 78, 9%);
        box-shadow: 0 3px 18px rgba(2, 21, 78, 9%);
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
    }

    .header .header-hamburger .hamburger-button {
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border: 0;
        background: transparent;
        border-radius: 0;
        width: 30px;
        height: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
    }

    .header .header-hamburger .hamburger-button > span {
        display: block;
        position: absolute;
        height: 2px;
        background: var(--primary-color);
        border-radius: 9px;
        opacity: 1;
        left: 4px;
        right: 4px;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    .header .header-hamburger .hamburger-button > span:nth-child(1) {
        top: 7px;
    }

    .header .header-hamburger .hamburger-button > span:nth-child(2), .header .header-hamburger .hamburger-button > span:nth-child(3) {
        top: 14px;
    }

    .header .header-hamburger .hamburger-button > span:nth-child(4) {
        top: 22px;
    }

    .is-navigation .header .header-hamburger .hamburger-button > span:nth-child(2) {
        -webkit-transform: rotate(45deg) scale(.9);
        -ms-transform: rotate(45deg) scale(.9);
        transform: rotate(45deg) scale(.9);
    }

    .is-navigation .header .header-hamburger .hamburger-button > span:nth-child(3) {
        -webkit-transform: rotate(-45deg) scale(.9);
        -ms-transform: rotate(-45deg) scale(.9);
        transform: rotate(-45deg) scale(.9);
    }

    .is-navigation .header .header-hamburger .hamburger-button > span:nth-child(1), .is-navigation .header .header-hamburger .hamburger-button > span:nth-child(4) {
        top: 17.5px;
        width: 0;
        left: 50%;
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9);
    }

    .header-overlay {
        background: rgba(0, 0, 0, 0.65);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 12;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        -webkit-transition: var(--transition-default);
        -o-transition: var(--transition-default);
        transition: var(--transition-default);
    }

    .is-navigation .header-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header .header-bottom .header-contact,
    .header .header-bottom .header-social {
        display: none;
    }

    .header .header-bottom .header-navigation {
        position: fixed;
        top: 0;
        width: 90%;
        max-width: 320px;
        background-color: var(--bs-white);
        height: 100vh;
        overflow-y: auto;
        z-index: 13;
        -webkit-transition: var(--transition-default);
        -o-transition: var(--transition-default);
        transition: var(--transition-default);
        margin-left: 0;
        left: -150%;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .is-navigation .header .header-bottom .header-navigation {
        left: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .is-overflow {
        overflow: hidden;
    }

    .header .header-navigation > ul {
        flex-direction: column;
        gap: 0;
    }

    .header .header-navigation > ul > li {
        width: 100%;
    }

    .header .header-navigation > ul > li .header-navigation_logo {
        padding: 10px 15px;
    }

    .header .header-navigation > ul > li .header-navigation_logo img {
        height: 50px;
    }

    .header .header-navigation > ul > li > a,
    .header .header-navigation > ul > li > button {
        width: 100%;
        color: var(--secondary-color);
        padding: 10px 15px;
        justify-content: space-between;
        font-size: 1.15em;
    }

    .header .header-navigation > ul > li + li a,
    .header .header-navigation > ul > li + li button {
        border-top: 1px solid rgba(0, 0, 0, .1) !important;
    }

    .header .header-navigation > ul > li > a > i,
    .header .header-navigation > ul > li > button > i,
    .header .header-navigation > ul > li > ul > li > a > i,
    .header .header-navigation > ul > li > ul > li > button > i {
        font-size: 1.15em;
        width: 24px;
        height: 24px;
        background: #f3f6f9;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        line-height: 1;
    }

    .header .header-navigation > ul > li > a > i:before,
    .header .header-navigation > ul > li > button > i:before,
    .header .header-navigation > ul > li > ul > li > a > i:before,
    .header .header-navigation > ul > li > ul > li > button > i:before {
        -webkit-transition: transform 200ms linear 0ms;
        -khtml-transition: transform 200ms linear 0ms;
        -moz-transition: transform 200ms linear 0ms;
        -ms-transition: transform 200ms linear 0ms;
        -o-transition: transform 200ms linear 0ms;
        transition: transform 200ms linear 0ms;
    }

    .header .header-navigation > ul > li > ul > li > a > i:before,
    .header .header-navigation > ul > li > ul > li > button > i:before {
        content: "\f107";
    }

    .header .header-navigation > ul > li > a[aria-expanded=true] > i,
    .header .header-navigation > ul > li > button[aria-expanded=true] > i,
    .header .header-navigation > ul > li > ul > li > a[aria-expanded=true] > i,
    .header .header-navigation > ul > li > ul > li > button[aria-expanded=true] > i {
        background: var(--primary-color);
        color: var(--bs-white);
    }

    .header .header-navigation > ul > li > a[aria-expanded=true] > i:before,
    .header .header-navigation > ul > li > button[aria-expanded=true] > i:before,
    .header .header-navigation > ul > li > ul > li > a[aria-expanded=true] > i:before,
    .header .header-navigation > ul > li > ul > li > button[aria-expanded=true] > i:before {
        -webkit-transform: rotateX(-180deg);
        -khtml-transform: rotateX(-180deg);
        -moz-transform: rotateX(-180deg);
        -ms-transform: rotateX(-180deg);
        -o-transform: rotateX(-180deg);
        transform: rotateX(-180deg);
    }

    .header .header-navigation > ul > li > ul {
        padding-left: 30px;
        padding-right: 15px;
    }

    .header .header-navigation > ul > li > ul > li > ul {
        padding-left: 24px;
        padding-right: 0;
    }

    .header .header-navigation > ul > li ul li a,
    .header .header-navigation > ul > li ul li button {
        font-size: 1.075em;
    }

    .header .header-sticky {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    .section-gap {
        padding: 35px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .article-detail .article-detail_title,
    .section-heading .heading-title,
    .service-detail .service-detail_title {
        font-size: 2.3em;
    }

    .section-heading .heading-sub {
        font-size: 1.225em;
    }

    .section-heading .heading-desc,
    .section-heading .heading-blockquote {
        font-size: 1.075em;
    }

    .section-heading .heading-tabs .nav-pills .nav-link {
        font-size: 1.075em;
        padding: 8px 20px;
    }

    .section-heading .heading-tabs .heading-tabs_content {
        font-size: 1.075em;
    }

    .section-box {
        transform: translateY(-25%) !important;
    }

    .section-box .box-item {
        padding: 24px;
    }

    .section-box .box-item .box-item_title {
        margin-bottom: 12px;
    }

    .section-box .box-item .box-item_title,
    .section-services .service-tabs .nav-link,
    .service-card .service-main .service-main_body .service-main_title,
    .service-card .service-hover .service-hover_title,
    .section-quality .quality-item .quality-item_content .quality-item_content__title {
        font-size: 1.3em;
    }

    .article-card .article-info .article-info_title {
        font-size: 1.15em;
    }

    .section-box .box-item .box-item_desc,
    .service-card .service-main .service-main_body .service-main_desc,
    .service-card .service-hover .service-hover_desc,
    .section-quality .quality-item .quality-item_content .quality-item_content__desc {
        font-size: 1.075em;
        line-height: 20px;
    }

    .button-theme {
        padding: 0.35rem 35px;
        line-height: 32px;
        font-size: 1.075em;
    }

    .slider-theme .slider-navigation .slider-navigation_button {
        width: 46px;
        height: 46px;
        font-size: 1.3em;
    }

    .slider-theme .slider-navigation .slider-navigation_button.slider-navigation_prev {
        left: -12px;
    }

    .slider-theme .slider-navigation .slider-navigation_button.slider-navigation_next {
        right: -12px;
    }

    .section-banner .slider-navigation .slider-navigation_button.slider-navigation_prev {
        left: 20px;
    }

    .section-banner .slider-navigation .slider-navigation_button.slider-navigation_next {
        right: 20px;
    }

    .service-card .service-main .service-main_body {
        padding: 30px 18px 24px
    }

    .service-card .service-main .service-main_body .service-main_meta {
        font-size: 1.15em;
    }

    .section-quality .quality-item .quality-item_icon {
        width: 115px;
        height: 115px;
    }

    .section-quality .quality-item .quality-item_icon .quality-item_icon__image {
        width: 80px;
        height: 80px;
    }

    .section-quality .quality-item .quality-item_icon .quality-item_icon__image img {
        width: 48px;
        height: 48px;
    }

    .section-quality .quality-item:before {
        width: 58px;
        background-size: contain !important;
    }

    .section-subscribe .subscribe-heading .subscribe-heading_icon {
        width: 72px;
        height: 72px;
        margin-right: 10px;
    }

    .section-subscribe .subscribe-heading .subscribe-heading_title {
        font-size: 1.6em;
    }

    .footer {
        padding: 50px 0 30px;
    }

    .footer .footer-item .footer-desc {
        margin-bottom: 16px;
    }

    .footer .footer-links {
        margin-bottom: 30px;
    }

    .footer .footer-contact .footer-contact_inner {
        border-radius: 0;
        margin-bottom: 30px;
    }

    .footer .footer-contact .footer-contact_item {
        justify-content: center;
    }

    .footer .footer-contact .footer-contact_inner > .row > *:last-child {
        border-top: 1px solid #ffffff33;
        border-left: 0;
    }

    .footer .footer-copyright .footer-list .footer-list_item {
        font-size: 1em;
    }

    .footer .footer-copyright .footer-payment {
        justify-content: center;
    }

    .service-detail .service-detail_desc {
        font-size: 1.075em;
    }

    .section-intro_service .service-item {
        padding: 18px 24px 18px 18px;
    }

    .section-intro_service .service-item .service-item_image {
        min-width: 40px;
        max-width: 40px;
    }

    .section-intro_service .service-item .service-item_title {
        font-size: 1.225em;
    }

    .section-intro_service .service-item .service-item_desc {
        font-size: 1.075em;
    }

    .section-intro_research .intro-research_content .intro-research_content__info .research-title {
        font-size: 2.4em;
    }

    .section-intro_research .intro-research_content .research-list_item .research-list_item__inner {
        padding-left: 24px;
    }

    .section-intro_research .intro-research_content .research-list_item .research-list_item__icon {
        font-size: 3.5em;
    }

    .section-intro_research .intro-research_content .research-list_item .research-list_item__number .research-list_item__number__value {
        font-size: 3.5em;
    }

    .section-intro_research .intro-research_content .research-list_item .research-list_item__number .research-list_item__number__type {
        font-size: 1.3em;
        right: -20px;
    }

    .section-intro_research .intro-research_content .research-list_item .research-list_item__title {
        font-size: 1.225em;
    }

    .section-intro_laboratory .intro-laboratory_slide {
        margin-top: -223px;
    }

    .section-intro_laboratory .laboratory-card {
        margin: 0;
    }

    .section-intro_laboratory .laboratory-card .laboratory-card_body {
        padding: 24px;
    }

    .section-intro_laboratory .laboratory-card .laboratory-card_body .laboratory-card_info .laboratory-card_icon {
        min-width: 55px;
        height: 50px;
    }

    .section-intro_laboratory .laboratory-card .laboratory-card_body .laboratory-card_info .laboratory-card_title {
        font-size: 1.15em;
    }

    .section-intro_laboratory .laboratory-card .laboratory-card_body .laboratory-card_desc {
        font-size: 1.075em;
    }
}

@media screen and (max-width: 1199px) {
    .section-breadcrumb {
        padding: 50px 0;
    }

    .section-breadcrumb .breadcrumb .breadcrumb-item {
        font-size: 1em;
    }

    .service-detail .service-detail_desc,
    .service-detail .service-detail_list__desc {
        font-size: 1.075em;
    }

    .service-detail .service-detail_image {
        margin-bottom: 24px;
    }

    .service-detail .service-detail_list__title {
        font-size: 1.45em;
    }

    .service-detail .service-detail_list__process ul {
        gap: 24px;
        flex-direction: column;
        padding: 0;
    }

    .service-detail .service-detail_list__process ul li {
        width: 100%;
    }

    .service-detail .service-detail_list__process ul li .service-detail_list__process___title {
        font-size: 1.15em;
    }

    .service-detail .service-detail_list__process ul li .service-detail_list__process___desc {
        font-size: 1.075em;
    }

    .service-faq .service-faq_title {
        font-size: 1.6em;
    }

    .section-sidebar .sidebar-list .sidebar-list_item {
        font-size: 1.075em;
    }

    .section-sidebar .sidebar-checkup .sidebar-checkup_title {
        font-size: 1.225em;
    }
}

@media screen and (max-width: 991px) {
    .package-team {
        flex-direction: column;
        overflow: hidden;
    }

    .package-team .package-left {
        width: 100%;
    }

    .package-team .section-heading {
        padding: 30px 24px;
    }

    .package-team .section-heading .heading-title {
        font-size: 1.75em;
    }

    .package-team .package-right {
        width: 100%;
    }

    .package-team .package-team_image {
        margin-top: 0;
    }

    .article-detail .article-detail_team {
        flex-direction: column;
        overflow: hidden;
        padding-bottom: 200px;
    }

    .article-detail .article-detail_team .article-detail_team__content {
        width: 100%;
    }

    .article-detail .article-detail_team .section-heading {
        padding: 30px 24px;
    }

    .article-detail .article-detail_team .section-heading .heading-title {
        font-size: 1.75em;
    }

    .article-detail .article-detail_team .article-detail_team__image {
        background: url(../images/article/coats-2.png) bottom right / contain no-repeat;
    }
}

@media screen and (max-width: 768px) {
    .section-gap {
        padding: 30px 0;
    }

    .button-theme {
        padding: 0.35rem 35px;
        line-height: 32px;
        font-size: 1.075em;
    }

    .slider-theme .slider-navigation .slider-navigation_button {
        width: 34px;
        height: 34px;
        font-size: 1.15em;
    }

    .slider-theme .slider-navigation .slider-navigation_button.slider-navigation_prev {
        left: -12px;
    }

    .slider-theme .slider-navigation .slider-navigation_button.slider-navigation_next {
        right: -12px;
    }

    .section-banner .slider-navigation .slider-navigation_button.slider-navigation_prev {
        left: 8px;
    }

    .section-banner .slider-navigation .slider-navigation_button.slider-navigation_next {
        right: 8px;
    }

    .section-banner .banner-item .ratio {
        --bs-aspect-ratio: calc(9 / 21 * 100%);
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .article-detail .article-detail_title,
    .service-detail .service-detail_title,
    .section-heading .heading-title {
        font-size: 1.85em;
    }

    .section-heading .heading-desc,
    .section-heading .heading-blockquote {
        font-size: 1.075em;
    }

    .section-heading .heading-buttons {
        flex-wrap: wrap;
        width: auto;
    }

    .section-heading .heading-tabs .nav-pills {
        border: 0;
        border-radius: 0;
    }

    .section-heading .heading-tabs .nav-pills .nav-link {
        font-size: 1.075em;
        padding: 8px 20px;
    }

    .section-heading .heading-tabs .heading-tabs_content {
        font-size: 1.075em;
    }

    .section-introduction .introduction-featured .introduction-featured_image .introduction-featured_image__inner {
        top: 0;
        bottom: 0;
        transform: none;
    }

    .section-introduction .introduction-featured .introduction-featured_image .introduction-featured_image__inner img {
        height: 100%;
        object-fit: cover;
        clip-path: polygon(50% 0, 100% 13%, 100% 87%, 50% 100%, 0 87%, 0 13%);
    }

    .section-services .service-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-services .service-tabs .nav-link {
        font-size: 1.15em;
        padding: 10px 12px;
        border-radius: 16px;
        line-height: normal;
    }

    .section-services .service-tabs .nav-link:after {
        display: none;
    }

    .section-quality .quality-list {
        margin: 0;
        gap: 30px 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-quality .quality-item {
        width: calc(50% - 10px);
        margin: 0 !important;
        padding: 0;
    }

    .section-quality .quality-item:before {
        display: none;
    }

    .section-quality .quality-item .quality-item_content {
        margin-top: 10px;
    }

    .service-content {
        padding: 16px;
    }

    .sliderServices.slider-theme {
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        border-radius: 16px;
        overflow: hidden;
    }

    .service-card .service-main .service-main_body {
        padding: 24px 18px;
    }

    .service-card .service-main .service-main_body .service-main_meta {
        font-size: 1.15em;
    }

    .section-box {
        transform: translateY(0) !important;
        padding: 30px 0;
        margin-bottom: 0;
    }

    .section-box .box-item {
        padding: 24px;
    }

    .section-box .box-item .box-item_title {
        margin-bottom: 12px;
    }

    .section-box .box-item .box-item_title,
    .service-card .service-main .service-main_body .service-main_title,
    .service-card .service-hover .service-hover_title,
    .section-quality .quality-item .quality-item_content .quality-item_content__title {
        font-size: 1.3em;
    }

    .article-card .article-info .article-info_tags .article-info_tag {
        line-height: 28px;
    }

    .article-card .article-info .article-info_title {
        font-size: 1.15em;
    }

    .article-card.article-card_featured .article-info {
        padding: 20px;
        background: linear-gradient(0deg, var(--primary-color) 0%, rgba(29, 40, 100, 0.15) 65.31%) !important;
    }

    .article-card.article-card_featured .article-info .article-info_title {
        font-size: 1.3em;
    }

    .article-card.article-card_featured .article-info .article-info_link {
        margin-bottom: 0;
        font-size: 1.15em;
    }

    .section-box .box-item .box-item_desc,
    .service-card .service-main .service-main_body .service-main_desc,
    .service-card .service-hover .service-hover_desc,
    .section-quality .quality-item .quality-item_content .quality-item_content__desc {
        font-size: 1.075em;
        line-height: 20px;
    }

    .question-list .accordion-item .accordion-button {
        padding: 16px 60px 16px 12px;
    }

    .question-list .accordion-item .accordion-button:before {
        right: 12px;
    }

    .question-list .accordion-item .accordion-button:after {
        right: 22px;
    }

    .article-card {
        padding: 14px;
    }

    .section-subscribe .subscribe-heading .subscribe-heading_icon {
        width: 60px;
        height: 60px;
    }

    .section-subscribe .subscribe-heading .subscribe-heading_title {
        font-size: 1.45em;
    }

    .section-subscribe .subscribe-form .subscribe-form_inner .form-control {
        height: 52px;
        padding-left: 24px;
        padding-right: 150px;
    }

    .section-subscribe .subscribe-form .subscribe-form_inner .form-button {
        height: 42px;
        line-height: 42px;
        padding-left: 30px;
        padding-right: 30px;
        font-size: 1.075em;
    }

    .footer {
        padding: 50px 0 30px;
    }

    .footer .footer-item .footer-desc {
        line-height: 24px;
        margin-bottom: 16px;
    }

    .footer .footer-item .footer-social .footer-social_item {
        width: 40px;
        height: 40px;
    }

    .footer .footer-item .footer-title {
        font-size: 1.3em;
    }

    .footer .footer-links {
        margin-bottom: 30px;
    }

    .footer .footer-contact .footer-contact_inner {
        border-radius: 0;
        margin-bottom: 30px;
    }

    .footer .footer-contact .footer-contact_item {
        justify-content: center;
        padding: 12px;
    }

    .footer .footer-contact .footer-contact_inner > .row > *:not(:first-child) {
        border-top: 1px solid #ffffff33;
        border-left: 0;
    }

    .footer .footer-contact .footer-contact_item .footer-contact_phone .footer-contact_phone__content .footer-contact_phone__title,
    .footer .footer-contact .footer-contact_item .footer-contact_link {
        font-size: 1.075em;
    }

    .footer .footer-contact .footer-contact_item .footer-contact_phone .footer-contact_phone__content .footer-contact_phone__value {
        font-size: 1.45em;
    }

    .footer .footer-contact .footer-contact_item .footer-contact_phone .footer-contact_phone__icon {
        width: 45px;
        height: 45px;
    }

    .footer .footer-copyright .footer-list .footer-list_item {
        font-size: 1em;
    }

    .footer .footer-copyright .footer-payment {
        justify-content: center;
    }

    .service-card_2 {
        padding: 24px;
    }

    .service-card_2 .service-icon a .icomoon {
        font-size: 48px;
    }

    .service-card_2 .service-title {
        font-size: 1.3em;
    }

    .package-card {
        padding: 24px;
    }

    .package-card .package-icon > a {
        width: 52px;
        height: 54px;
        margin-left: -10px;
    }

    .package-card .package-icon:before {
        left: 0;
    }

    .package-card .package-title {
        font-size: 1.3em;
    }

    .package-card .package-desc {
        font-size: 1.075em;
    }

    .package-cta {
        width: auto;
        font-size: 1em;
    }

    .article-detail .article-detail_list ul li {
        font-size: 1.15em;
    }

    .article-detail .article-detail_share .article-detail_share__list > span {
        font-size: 1.225em;
    }

    .article-detail .article-detail_video .initFancybox {
        width: 64px;
        height: 64px;
    }

    .article-detail .article-detail_video .initFancybox svg {
        width: 32px;
        height: 32px;
    }

    .section-sidebar .sidebar-title {
        font-size: 1.3em;
    }

    .section-intro_service .service-item {
        padding: 18px 24px 18px 18px;
    }

    .section-intro_service .service-item .service-item_image {
        min-width: 40px;
        max-width: 40px;
    }

    .section-intro_service .service-item .service-item_title {
        font-size: 1.225em;
    }

    .section-intro_service .service-item .service-item_desc {
        font-size: 1.075em;
    }

    .section-intro_provider .intro-provider_buttons {
        flex-direction: column;
        gap: 12px;
    }

    .section-intro_research .intro-research_content {
        padding: 150px 0 50px;
    }

    .section-intro_research .intro-research_content .intro-research_content__animation {
        top: -100px;
    }

    .section-intro_research .intro-research_content .intro-research_content__info .research-title {
        font-size: 1.85em;
        padding-left: 0;
    }

    .section-intro_research .intro-research_content .research-list {
        flex-wrap: wrap;
        row-gap: 30px;
        column-gap: 15px;
    }

    .section-intro_research .intro-research_content .research-list_item {
        width: calc(50% - 15px);
        padding-left: 0;
    }

    .section-intro_research .intro-research_content .research-list_item .research-list_item__inner {
        padding-left: 18px;
    }

    .section-intro_research .intro-research_content .research-list_item .research-list_item__inner:before {
        display: none;
    }

    .section-intro_research .intro-research_content .research-list_item .research-list_item__icon {
        font-size: 3em;
    }

    .section-intro_research .intro-research_content .research-list_item .research-list_item__number .research-list_item__number__value {
        font-size: 3.5em;
    }

    .section-intro_research .intro-research_content .research-list_item .research-list_item__number .research-list_item__number__type {
        font-size: 1.3em;
        right: -20px;
    }

    .section-intro_research .intro-research_content .research-list_item .research-list_item__title {
        font-size: 1.225em;
    }

    .section-intro_laboratory .intro-laboratory_banner {
        padding: 50px 0 20px;
    }

    .section-intro_laboratory .intro-laboratory_content {
        padding-bottom: 30px;
    }

    .section-intro_laboratory .intro-laboratory_slide {
        margin-top: 30px;
    }

    .section-intro_laboratory .laboratory-card {
        margin: 0;
    }

    .section-intro_laboratory .laboratory-card .laboratory-card_body {
        padding: 24px;
    }

    .section-intro_laboratory .laboratory-card .laboratory-card_body .laboratory-card_desc {
        font-size: 1.075em;
    }

    .section-intro_laboratory .laboratory-card.laboratory-card_reverse {
        flex-direction: column;
    }

    .section-intro_laboratory .laboratory-card.laboratory-card_reverse .laboratory-card_image {
        border-radius: 12px 12px 0 0;
    }

    .section-intro_laboratory .laboratory-card.laboratory-card_reverse .laboratory-card_body {
        border-radius: 0 0 12px 12px;
    }

    .section-intro_laboratory .intro-laboratory_content .intro-laboratory_cta {
        width: auto;
        font-size: 1em;
    }

    .section-form {
        background: #F5F8FD;
    }

    .section-form .section-form_overlay {
        opacity: 0.5;
    }

    .appointment-form .appointment-form_grid {
        flex-direction: column;
    }

    .appointment-form .appointment-form_item {
        width: 100% !important;
    }
}

@media screen and (max-width: 575px) {
    .section-heading .heading-buttons .button-theme {
        width: 100%;
    }
}
