/* Header */
.header {
    position: fixed;
    height: 70px;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    padding: 10px 0;
    background: transparent;
    transition: .3s all;
}

.container-header {
    max-width: 1900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-main {
    position: absolute;
    left: 20px;
    top: 50%;
    width: 163px;
    height: 70px;
    text-indent: -999999px;
    z-index: 20001;
    transform: translateY(-50%);
    background-image: url(../img/logo-main-white.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.navmain {
    pointer-events: all;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.navmain>ul {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.navmain li {
    list-style: none;
}

.navlink {
    position: relative;
    color: var(--ui-white-color);
    font-family: "FC Vision";
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.navlink:hover {
    color: var(--ui-white-color);
}

.navmain li.has-mega .navlink:after {
    content: "";
    width: 9px !important;
    height: 9px;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid #FFF;
    position: absolute;
    top: 8px;
    opacity: 1;
    transform: rotate(45deg);
    right: -18px;
    left: inherit;
    -webkit-transition: var(--ui-transition-links);
    transition: var(--ui-transition-links);
    background-color: transparent !important;
}

.navmain li.has-mega:hover .navlink:after {
    top: 12px;
    border-color: var(--primary-color);
    transform: rotate(-135deg);
    -webkit-transition: var(--ui-transition-links);
    transition: var(--ui-transition-links);
}

.pushy a {
    padding: 0;
}

.navtop {
    position: absolute;
    z-index: 20001;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navtop .btn-outline {
    display: none;
}

.top-btn {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ui-primary-color);
    font-family: "FC Vision";
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border-radius: 100px;
    background: var(--ui-bg-white-color);
    padding: 0 12px;
    ;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.20);
    transition: all .3s;
}

.top-btn:hover {
    color: var(--ui-white-color);
    background: var(--ui-bg-primary-color);
}

.top-btn:hover svg path {
    stroke: #FFF;
}

.nav-mobile {
    display: none;
}

.navmain-dropdown ul li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.navmain-dropdown ul li a {
    display: block;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.70);
    font-family: "FC Vision";
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.navmain-dropdown ul li a:hover {
    color: #FFF !important;
}

.pushy-bottom {
    display: none;
}

.navmain-dropdown-service-grid h3 {
    text-align: left;
    color: var(--ui-white-color);
}

.navmain-dropdown-cardservice {
    display: none;
}

.navmain-dropdown.service h2 {
    display: none;
}

/* Header Custom */
.header.is-fixed {
    background: var(--ui-bg-primary-color);
}

.header.is-fixed .navlink {
    color: var(--ui-white-color);
}

.header.is-fixed .navmain li.has-mega .navlink:after {
    border-bottom: 2px solid #FFF;
    border-right: 2px solid #FFF;
}

.header-static {
    position: absolute;
    background: var(--ui-bg-white-color);
}

.header-static.is-fixed {
    position: fixed;
}

.header-static .logo-main {
    background-image: url(../img/logo-main.svg);
}

.header.is-fixed .logo-main {
    background-image: url(../img/logo-main-white.svg);
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--ui-bg-primary-color);
}

.footer .box-appointment {
    display: grid;
    grid-gap: 24px;
    max-width: 280px;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: var(--ui-bg-white-color);
    box-shadow: 0 7px 22px 0 rgba(33, 34, 38, 0.40);
}

.footer .box-appointment .btn {
    text-align: center;
    justify-content: center;
    width: 100%;
    color: var(--ui-white-color);
    border-radius: 100px;
    background: var(--ui-bg-primary-color);
    box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.10);
}

.footer .box-appointment h2 {
    color: var(--ui-primary-color);
    font-family: "FC Vision";
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
}

.footer h3 {
    color: #FFF;
    font-family: "FC Vision";
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
}

.footer-block {
    display: grid;
    grid-gap: 30px;
    align-items: flex-start;
}

.footer-block:first-of-type .group {
    display: grid;
    grid-gap: 40px;
}

.footer-bottom {
    display: grid;
    grid-gap: 12px;
    color: rgba(255, 255, 255, 0.70);
    font-family: "FC Vision";
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    align-items: center;
    justify-content: flex-start;
}

.footer-nav {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
}

.footer-nav h3 {
    margin-bottom: 16px;
    color: var(--ui-white-color);
    font-family: "FC Vision";
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
}

.footer-nav li {
    list-style: none;
}

.footer-nav ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.footer-nav ul li {
    position: relative;
    padding: 16px 0;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.80);
    font-family: "FC Vision";
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    transition: all .3s;
}

.footer-nav ul li a:hover {
    color: var(--ui-white-color);
}

.footer-nav ul li a:hover svg circle {
    fill: #FFF;
}

.footer-nav ul li a:hover svg g path {
    fill: #041B39;
    stroke: #041B39;
}

.footer-nav ul li:after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    border-bottom: 1px solid #FFF;
    bottom: 0;
    transition: all 0.4s;
}

.footer-nav ul li:hover:after {
    right: 0;
    left: 0;
}



.footer-nav.two-col {
    width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: .7fr 1fr;
    column-gap: 0;
    row-gap: 10px;
}

.footer-nav .two-col-policy {
    width: 100%;
    display: grid;
    font-size: 16px;
    grid-template-columns: 1fr 1fr;
}

.footer-nav.two-col li {
    padding: 5px 0;
    border-bottom: 0;
}

.footer-nav.two-col li::after {
    display: none;
}

.footer-nav.two-col li a {
    position: relative;
    display: inline-flex;
    font-size: 16px;
}

.footer-nav.two-col li a:after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    border-bottom: 1px solid #FFF;
    bottom: -1px;
    transition: all 0.4s;
}

.footer-nav.two-col li a:hover:after {
    right: 0;
    left: 0;
}

@media (min-width: 1600px) {
    .navmain>ul {
        gap: 55px;
    }
}

@media (min-width: 1400px) {
    .container-header {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .header {
        height: 90px;
    }

    .header-static.is-nofixed {
        position: relative !important;
        top: 0;
    }

    .logo-main {
        left: 4rem;
    }

    .navtop {
        gap: 8px;
        right: 4rem;
    }

    .top-btn {
        min-width: 180px;
        height: 42px;
        padding: 0 12px;
        font-size: 16px;
    }

    .navtop .btn-outline {
        display: flex;
        min-width: 150px;
        height: 42px;
        color: var(--ui-white-color);
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.50);
        background: transparent;
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.20);
    }

    .header.is-fixed .navtop .btn-outline {
        border-color: var(--ui-white-color);
    }

    .header.is-fixed {
        background: var(--ui-bg-primary-color);
    }

    .navtop .btn-outline:hover {
        background: var(--ui-bg-primary-color);
        border-color: var(--ui-primary-color);
    }

    .navmain {
        height: 100%;
        text-align: center;
        pointer-events: none;
    }

    .navmain li {
        position: static;
        height: 100%;
        display: flex;
        align-items: center;
        pointer-events: all;
    }

    .navmain>ul {
        margin: 0;
        padding: 0;
        display: flex;
        gap: 50px;
        height: 100%;
        align-items: center;
        justify-content: center;
    }

    .navmain>ul li a {
        position: relative;
    }

    .navmain li.has-mega a {
        position: relative;
    }

    .navlink:before {
        content: '';
        position: absolute;
        left: 50%;
        right: 50%;
        border-bottom: 2px solid #FFF;
        bottom: -1px;
        transition: all 0.4s;
    }

    .navlink:hover:before {
        right: 0;
        left: 0;
    }

    /* pushy */
    .pushy-wrap {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        overflow: visible;
        background: transparent;
    }

    .pushy {
        will-change: transform;
        backface-visibility: hidden;
    }

    .pushy,
    .pushy-open-right .pushy,
    .pushy-open-left .pushy {
        transform: none;
        transition: none;
    }

    .pushy a {
        padding: 0;
    }

    .pushy ul:first-child {
        margin-top: 0;
    }

    .navmain-dropdown {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 450px;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        padding-top: 135px;
        padding-bottom: 80px;
        z-index: -1;
        pointer-events: none;
        background: rgba(4, 27, 57, 0.80);
        backdrop-filter: blur(20px);
    }

    .navmain-dropdown.service {
        height: auto;
    }

    .navmain-dropdown ul {
        text-align: left;
    }

    .navmain-dropdown ul.width-md {
        max-width: 400px;
        margin: 0 auto;
    }

    .navmain-dropdown ul li {
        height: auto;
    }

    .has-mega:hover .navmain-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .has-mega.is-active>.navlink {
        color: var(--ui-white-color);
    }

    .has-mega.is-active>.navlink::before {
        border-color: var(--ui-white-color);
        right: 0;
        left: 0;
    }

    .has-mega:hover:after {
        border-bottom: 2px solid #FFF !important;
        border-right: 2px solid #FFF !important;
    }

    .navmain-dropdown .ic-menu {
        position: relative;
        top: 2px;
        width: 30px;
        height: 30px;
        padding: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        background: var(--ui-bg-white-color);
        margin-right: 15px;
        box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.05);
    }

    .navmain-dropdown-service-grid {
        display: grid;
        align-items: flex-start;
        grid-gap: 30px;
        grid-template-columns: 2fr 4fr;
    }

    .navmain-dropdown-cardservice {
        position: relative;
        width: 195px;
        display: block;
        margin-top: 20px;
    }

    .navmain-dropdown-cardservice a {
        display: grid;
        grid-gap: 20px;
    }

    .navmain-dropdown-cardservice .box-img {
        position: relative;
        border-radius: 20px;
        overflow: hidden;

    }

    .navmain-dropdown-cardservice .box-img:after {
        content: '';
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
    }

    .navmain-dropdown-cardservice.card-item .box-caption h3 {
        color: var(--ui-white-color);
        font-family: "FC Vision";
        font-size: 16px;
        font-weight: 500;
        line-height: 1.4;
    }

    .navmain-dropdown-cardservice svg {
        position: absolute;
        right: 10px;
        bottom: 10px;
        z-index: 100;
    }

    .navmain-dropdown-service-right {
        display: grid;
        align-items: flex-start;
        grid-gap: 50px 100px;
        grid-template-columns: 1fr 1fr;
    }

    .navmain-dropdown-service-right h3 {
        color: var(--ui-white-color);
        text-align: left;
    }

    .navmain-dropdown-service-right .navmain-dropdown ul {
        max-width: 100% !important;
    }

    .navmain-dropdown-service-right .group:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .navmain-dropdown-service-right .group:last-of-type {
        grid-column: 2;
        grid-row: span 2;
    }

    .header-static .top-btn {
        color: var(--ui-white-color);
        border-radius: 100px;
        border: 1px solid #041B39;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
        background: var(--ui-bg-primary-color);
    }

    .header.is-fixed.header-static .top-btn {
        color: var(--ui-primary-color);
        background: var(--ui-bg-white-color);
    }

    .header.is-fixed.header-static .top-btn:hover {
        color: var(--ui-white-color);
        background: transparent;
    }

    .header.is-fixed.header-static .top-btn:hover svg path {
        stroke: #FFF;
    }

    .header.is-fixed .top-btn:hover {
        background: transparent;
        border: 1px solid #FFF;
    }

    .header.is-fixed.header-static .top-btn svg path {
        stroke: #041B39;
    }

    .header-static .top-btn svg path {
        stroke: #FFF;
    }

    .header-static .top-btn:hover svg path {
        fill: transparent;
    }

    .mega-open .navlink:after {
        border-bottom: 2px solid #FFF !important;
        border-right: 2px solid #FFF !important;
    }

    .header.mega-open .logo-main {
        background-image: url(../img/logo-main-white.svg);
    }

    .header-static .navlink {
        color: var(--ui-primary-color);
    }

    .header-static .navmain li.has-mega .navlink:after {
        border-bottom: 2px solid #041B39;
        border-right: 2px solid #041B39;
    }

    .header-static .navlink::before {
        border-color: var(--ui-primary-color);
    }

    .header-static.mega-open .navlink {
        color: var(--ui-white-color);
    }

    .header.is-fixed.header-static .navlink:before {
        border-color: var(--ui-white-color);
    }

    .header.is-fixed.mega-open .navlink::before,
    .header-static.mega-open .navlink::before {
        border-color: var(--ui-white-color);
    }

    .navmain li.has-mega .navlink:hover {
        color: #FFF !important;
    }

    .mega-open .top-btn {
        color: var(--ui-primary-color);
        border-radius: 100px;
        background: var(--ui-bg-white-color);
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.20);
    }

    .mega-open .top-btn svg path {
        stroke: #041B39;
    }

    .header-static .navtop .btn-outline {
        color: var(--ui-primary-color);
        border-radius: 100px;
        border: 1px solid #041B39;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
        background: var(--ui-bg-white-color);
    }

    .header-static .navtop .btn-outline:hover {
        color: var(--ui-white-color);
    }

    .header.is-fixed.header-static .navtop .btn-outline {
        color: var(--ui-white-color);
        border: 1px solid #FFF;
        background: transparent;
    }

    .header-static.mega-open .btn.btn-outline {
        color: #FFF !important;
        border-color: var(--ui-white-color);
        background: transparent !important;
    }

    .header-static .navtop .btn-outline:hover {
        color: var(--ui-white-color);
        background: var(--ui-bg-primary-color);
        border-color: var(--ui-primary-color);
    }

    .header.is-fixed .navtop .btn-outline:hover {
        color: var(--ui-primary-color);
        background: #FFFF;
        border-color: #FFFF;
    }

    @keyframes fade {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }
}

@media (min-width: 992px) {

    /* Footer */
    .footer {
        padding: 0;
    }

    .footer-top {
        display: grid;
        grid-gap: 40px 100px;
        align-items: flex-start;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-block {
        padding: 80px 0;
        grid-gap: 60px;
        height: 100%;
        align-content: flex-start;
        align-items: flex-start;
        position: relative;
    }

    .footer-block:after {
        content: '';
        width: 1px;
        height: 100%;
        position: absolute;
        right: -50px;
        top: 0;
        background: rgba(255, 255, 255, 0.10);
    }

    .footer-block:first-of-type {
        grid-gap: 40px;
        padding: 50px 0;
        align-items: flex-start;
        align-content: space-between;
    }

    .footer-bottom {
        margin-top: 80px;
    }

    .footer-block:nth-child(3):after {
        display: none;
    }

    .footer-nav h3 {
        margin-bottom: 0;
    }

}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .footer-nav ul li a {
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .navtop {
        gap: 18px;
    }

}

@media (max-width: 1399.98px) {

    .header {
        height: 80px;
        padding: 15px 0;
    }

    .header.is-fixed {
        height: 80px;
        padding: 15px 0;
    }

    .menu-btn {
        position: relative;
        width: 45px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .menu-btn span {
        display: block;
        text-indent: -9999px;
        width: 28px;
        height: 2px;
        border-radius: 2px;
        background: var(--ui-bg-white-color);
        -webkit-transition: var(--ui-transition-links);
        transition: var(--ui-transition-links);
    }

    .menu-btn:before,
    .menu-btn:after {
        content: '';
        position: absolute;
        width: 28px;
        height: 2px;
        border-radius: 2px;
        background: var(--ui-bg-white-color);
        -webkit-transition: var(--ui-transition-links);
        transition: var(--ui-transition-links);
    }

    .menu-btn:before {
        margin-top: -18px;
    }

    .menu-btn:after {
        margin-top: 18px;
    }

    .pushy {
        position: fixed;
        width: 100%;
        height: 100svh;
        left: 0;
        padding: 90px 20px 40px 20px;
        background: var(--ui-bg-primary-color);
        transform: translateY(-100%);
        pointer-events: none;
        z-index: 3000;
        transition: none !important;
    }

    /* ตอนเปิด */
    .pushy-open-right .pushy {
        transform: translateY(0);
        pointer-events: all;
        transition: transform .6s cubic-bezier(0.16, 0.68, 0.43, 0.99) !important;
    }

    .pushy a {
        padding: 0;
        display: inline;
    }

    .pushy li {
        list-style: none;
    }

    .pushy-open-right {
        height: 100vh;
        overflow: hidden;
    }

    .pushy-open-right .menu-btn {
        width: 45px;
        height: 45px;
        z-index: 100000;
        padding: 0 0 0 12px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .pushy-open-right .menu-btn span,
    .pushy-open-right .menu-btn:before,
    .pushy-open-right .menu-btn:after {
        background: #FFF !important;
    }

    .pushy-open-right .menu-btn span {
        opacity: 0;
    }

    .pushy-open-right .menu-btn:before {
        margin-top: -1px;
        transform: rotate(45deg);
        margin-left: -12px;
    }

    .pushy-open-right .menu-btn:after {
        margin-top: -1px;
        transform: rotate(-45deg);
        margin-left: -12px;
    }

    .pushy-open-right .header .top-btn {
        opacity: 0;
    }

    .pushy-open-right .header-static .navlink {
        color: #FFF !important;
    }

    .pushy-open-right .header-static .navmain li.has-mega .navlink:after {
        border-bottom: 2px solid #FFF;
        border-right: 2px solid #FFF;
    }

    .navmain,
    .pushy-bottom {
        display: none !important;
    }

    .pushy-open-right .navmain {
        display: flex !important;
    }

    .pushy-open-right .pushy-bottom {
        display: flex !important;
    }

    .pushy-open-right .logo-main {
        background-image: url(../img/logo-main-white.svg) !important;
    }

    .navtop {
        grid-gap: 8px;
    }

    .navmain-dropdown {
        display: block;
        animation: fade .6s ease-in-out;
    }

    .navmain {
        overflow-y: scroll;
        height: calc(100% - 80px);
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    .navmain>ul {
        width: 100%;
        gap: 0 !important;
        flex-direction: column;
    }

    .navmain>ul li {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .navlink {
        display: block !important;
        font-size: 18px;
        color: #FFF !important;
    }

    .navmain li.has-mega .navlink:after {
        display: none;
    }

    .pushy-bottom {
        position: fixed;
        width: 100%;
        left: 0;
        padding: 0 20px;
        bottom: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .pushy-bottom .top-btn {
        opacity: 100% !important;
        display: flex !important;
        padding: 0 16px;
        background: var(--ui-bg-white-color);
    }

    .pushy-bottom .social-list ul {
        gap: 12px;
    }

    .has-mega.is-open .navmain-dropdown {
        display: block;
    }

    .has-mega.is-open .navlink:after {
        top: 12px !important;
        transform: rotate(-136deg) !important;
    }

    .navmain-dropdown ul {
        margin: 14px 0;
    }

    .navmain-dropdown li {
        padding: 8px 0 !important;
        border-bottom: 0 !important;
    }

    .navmain-dropdown ul li a {
        font-size: 16px;
    }

    .navmain-dropdown ul li .ic-menu {
        display: none;
    }

    .navmain-dropdown.service .container {
        padding: 0;
    }

    .navmain-dropdown.service h2 {
        display: block;
        color: #FFF;
        font-size: 16px;
        font-weight: 400;
        line-height: 200%;
    }

    .navmain-dropdown-service-grid .navmain-dropdown-service-right {
        padding-top: 20px;
        display: grid;
        grid-gap: 20px;
    }

    .navmain-dropdown-service-grid h3 {
        font-weight: 400;
        font-size: 16px;
    }

    .header.is-fixed .menu-btn span,
    .header.is-fixed .menu-btn:before,
    .header.is-fixed .menu-btn:after {
        background: var(--ui-bg-white-color);
    }

    .header-static .menu-btn span,
    .header-static .menu-btn:before,
    .header-static .menu-btn:after {
        background: var(--ui-bg-primary-color);
    }
}

@media (max-width: 1024px) {
    .footer .box-appointment h2 {
        font-size: 24px;
    }
}

@media (max-width: 991.98px) {
    .not-found {
        height: 80vh;
    }

    .not-found h1 {
        font-size: 120px;
    }

    .logo-main {
        width: 140px;
    }

    /* Footer */
    .footer {
        padding: 40px 0;
    }

    .footer-logo {
        width: 250px;
        display: block;
        margin: 0 auto;
    }

    .footer-block:first-of-type .group {
        grid-gap: 28px;
    }

    .footer-block {
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-top {
        display: grid;
        grid-gap: 40px;
    }

    .footer-nav.two-col li a {
        font-size: 14px;
    }

    .footer-nav.nav-service li a {
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 14px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .footer-block {
        width: 100%;
        max-width: 100%;
    }

    .footer-block:first-of-type {
        width: 300px;
        margin: 0 auto;
    }

    .footer-bottom {
        display: grid !important;
        margin-top: 0;
        padding-top: 20px;
    }

    .footer-bottom.isDesktop {
        display: none !important;
    }

    .footer-nav.two-col {
        margin-top: 40px;
    }

    .footer-nav h3 {
        margin-bottom: 0;
    }

    .footer .box-appointment {
        margin: 0 auto;
    }

}

@media (max-width: 390px) {
    .pushy-bottom .social-list ul {
        gap: 8px;
    }

    .pushy-bottom .top-btn {
        min-width: inherit;
        padding: 0 12px;
        font-size: 14px;
    }
}

@media (max-width: 390px) {
    .logo-main {
        width: 135px;
    }
}

@media (max-width: 375px) {
    .logo-main {
        width: 125px;
        height: 55px;
    }
}