*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.fill-facebook {
    fill: #1877F2;
}

.fill-twitter {
    fill: #000000;
}

.fill-instagram {
    fill: #FD1D1D
}

.break-word {
    word-break: break-all;
}

.motion-jump {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.motion-jump:hover {
    transform: translateY(-10px);
}

header {
    position: sticky;
    display: flex;
    align-items: center;
    height: 150px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
    top: 0;
    z-index: 10;
}

header #button_mobile {
    display: none;
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
}

header #button_mobile svg {
    width: 20px;
    fill: #000;
}

header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

header .header-logo {
    width: 260px;
    text-align: center;
}

header .header-logo img {
    width: 200px;
    height: auto;
}

header .header-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

header .header-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header .header-navigation ul li {
    display: inline-block;
}

header .header-navigation ul li a {
    display: block;
    color: #000;
    font-size: 18px;
}

header .header-navigation ul.menu li a {
    position: relative;
    padding: 0 20px;
    line-height: 150px;
}

header .header-navigation ul.menu li a::after {
    content: "";
    position: absolute;
    width: calc(100% - 40px);
    height: 5px;
    background-color: #fff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all ease-in-out 0.3s;
}

header .header-navigation ul.menu li.current-menu-item a {
    font-weight: 700;
}

header .header-navigation ul.menu li a:hover::after,
header .header-navigation ul.menu li.current-menu-item a::after {
    background-color: #E69DB8;
}

header .header-navigation ul.woo-menu li a,
header .header-navigation ul.social-menu li a {
    padding: 0 5px;
}

header .header-navigation ul.woo-menu li a svg {
    height: 25px;
}

header .header-navigation ul li a svg {
    height: 30px;
}

header .header-navigation .btn-appointment {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 50px;
    background-color: #000;
    color: #fff;
    fill: #fff;
    height: 100%;
    border-radius: 0 0 0 30px;
    transition: all ease-in-out 0.3s;
}

header .header-navigation .btn-appointment:hover {
    background-color: #2C2525;
}

header .header-navigation .btn-appointment svg {
    height: 20px;
}

#mobile_menu {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    height: calc(100% - 100px);
    background-color: #FFD0C7;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    z-index: 99;
}

#mobile_menu.show {
    visibility: visible;
    opacity: 1;
}

#mobile_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile_menu .main-menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

#mobile_menu .main-menu ul li a {
    color: #731D1D;
    font-size: 20px;
    font-weight: 700;
}

#mobile_menu .woo-menu ul {
    display: flex;
    align-items: center;
    gap: 15px
}

#mobile_menu .woo-menu ul li a svg {
    height: 25px;
}

#mobile_menu .social-menu ul li a svg {
    height: 30px;
}

#mobile_menu .social-menu ul {
    display: flex;
    align-items: center;
    gap: 15px
}

.testimonial-item {
    display: flex;
    align-items: center;
    gap: 50px;
}

.testimonial-image {
    position: relative;
    max-width: 100%;
    width: 450px;
    height: 500px;
    padding-bottom: 20px;
}

.testimonial-image img {
    position: relative;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.testimonial-image::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: #FFD0C7;
    right: -20px;
    bottom: 0;
}

.testimonial-text {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: calc(100% - 450px);
}

.testimonial-text span {
    color: #E69DB8;
    font-weight: 700;
}

.testimonial-text svg {
    width: 50px;
    fill: #E69DB8
}

.testimonial-arrows {
    display: flex;
    align-items: center;
    gap: 30px;
}

.testimonial-arrows .swiper-button-next, .testimonial-arrows .swiper-button-prev {
    position: unset;
    color: #000
}

footer {
    display: flex;
    flex-wrap: wrap;
    background-color: #f4f4f4;
}

footer .footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    width: 30%;
    background-color: #FFD0C7;
    text-align: center;
    padding: 90px 30px;
}

footer .footer-logo img {
    width: 220px;
    height: auto;
}

footer .footer-logo .site-description {
    color: #731D1D;
    font-size: 15px;
    font-weight: bold;
}

footer .footer-navigation {
    position: relative;
    width: 70%;
}

footer .footer-navigation::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 50px;
    height: 100%;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    background-color: #FFD0C7;
}

footer .footer-navigation-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    padding: 50px 100px 50px 150px;
}

footer .footer-navigation-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .footer-navigation-column h5 {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
}

footer .footer-navigation-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-navigation-column ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #000;
    font-size: 20px;
    word-break: break-all;
}

footer .footer-navigation-column ul li a span {
    width: calc(100% - 20px);
}

footer .footer-navigation-column ul li a svg {
    fill: #E69DB8;
    width: 20px;
}

footer .footer-navigation-column ul.social-menu {
    flex-direction: row;
}

footer .footer-navigation-column ul.social-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #FFD0C7;
}

footer .footer-navigation-column ul.social-menu li a svg {
    fill: #731D1D;
    height: 20px;
}

@media (max-width: 1600px) {
    header .header-navigation {
        gap: 20px;
    }

    header .header-navigation ul li a {
        font-size: 16px;
    }

    header .header-navigation ul.woo-menu li a svg {
        height: 20px;
    }

    header .header-navigation ul li a svg {
        height: 25px;
    }

    header .header-navigation .btn-appointment {
        font-size: 18px;
        padding: 20px 45px;
    }
}

@media (max-width: 1400px) {
    header .header-navigation ul.menu li a {
        padding: 0 15px;
    }

    header .header-navigation .btn-appointment {
        font-size: 16px;
        padding: 20px 30px;
    }

    footer .footer-navigation-container {
        padding: 50px 50px 50px 100px;
    }
}

@media (max-width: 1300px) {
    header {
        height: 100px;
    }

    header #button_mobile {
        display: flex;
        align-items: center;
    }

    header .header-logo {
        width: auto;
        text-align: left;
        padding: 0 0 0 30px;
    }

    header .header-logo img {
        width: 120px;
    }

    header .header-navigation ul {
        display: none;
    }

    header .header-navigation .btn-appointment {
        font-size: 14px;
        padding: 15px 20px;
        height: auto;
        border-radius: 20px 0 0 20px;
    }
}

@media (max-width: 1200px) {
    footer .footer-logo,
    footer .footer-navigation {
        width: 100%;
    }

    footer .footer-navigation::before {
        top: -1px;
        left: 0;
        width: 100%;
        height: 50px;
        clip-path: polygon(50% 100%, 100% 0, 0 0);
    }

    footer .footer-navigation-container {
        padding: 100px 50px 50px 50px;
    }
}

@media (max-width: 991px) {
    .testimonial-item {
        flex-wrap: wrap;
    }

    .testimonial-image {
        width: calc(100% - 20px);
    }

    .testimonial-text {
        width: 100%;
    }

    footer .footer-navigation-container {
        padding: 100px 30px 50px 30px;
    }
}

@media (max-width: 480px) {
    header .header-navigation .btn-appointment {
        width: 120px
    }
}