@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap";
* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Montserrat", sans-serif;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}
h1 {
    font-size: 26px;
    font-weight: 600;
}
p {
    font-size: 14px;
    font-weight: 300;
    color: #3d3d3d;
}
.container {
    width: 80%;
}
@media (max-width: 1024px) {
    .container {
        width: 83%;
    }
}
.right, .left{
    cursor: pointer;
}
nav {
    width: 100%;
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 100;
    transition: all 0.3s ease;
    background-color: #fff;
}
nav[data-scrolled="true"] {
    height: 5.5rem;
    background-color: #2c2a28;
}
nav[data-scrolled="true"] .container {
    padding-top: 0;
}
nav[data-scrolled="true"] .container .logo {
    background-image: url(../assets/icones/logo-branca.svg);
}
nav[data-scrolled="true"] .container #nav__btn .line {
    background-color: #f3f3f3;
}
nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}
nav .container .logo {
    transition: all 0.3s ease;
    background: url(../assets/icones/logo.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    width: 90px;
    height: 75px;
    -o-object-fit: fill;
    object-fit: fill;
}
nav .container .socials {
    display: flex;
    flex-direction: row;
    gap: 0 1rem;
}
nav .container .socials a img {
    width: 25px;
    height: 25px;
    transition: all 0.3s ease;
}
nav .container .socials a img:hover {
    transform: scale(1.2);
}
nav .container #nav__btn {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center start;
    gap: 0.3rem 0;
    cursor: pointer;
    position: relative;
    z-index: 9999;
    right: 0;
    transition: all 0.3s ease-in-out;
}
nav .container #nav__btn[data-active="true"] {
    right: 10%;
}
nav .container #nav__btn[data-clicked="true"] .line {
    background-color: #998465;
}
nav .container #nav__btn[data-clicked="true"] .line:nth-child(1) {
    width: 100%;
    transform: rotateZ(45deg) translateY(19px);
}
nav .container #nav__btn[data-clicked="true"] .line:nth-child(2) {
    width: 0%;
}
nav .container #nav__btn[data-clicked="true"] .line:nth-child(3) {
    width: 100%;
    transform: rotateZ(-45deg) translateY(-19px);
}
nav .container #nav__btn[data-clicked="true"]:hover .line:nth-child(1) {
    width: 100%;
}
nav .container #nav__btn[data-clicked="true"]:hover .line:nth-child(2) {
    width: 0%;
}
nav .container #nav__btn[data-clicked="true"]:hover .line:nth-child(3) {
    width: 100%;
}
nav .container #nav__btn:hover .line:nth-child(1) {
    width: 60%;
}
nav .container #nav__btn:hover .line:nth-child(2) {
    width: 80%;
}
nav .container #nav__btn:hover .line:nth-child(3) {
    width: 70%;
}
nav .container #nav__btn .line {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 2rem;
    background-color: #998465;
    transition: all 0.3s ease-in-out;
}
nav .container #nav__btn .line:nth-child(1) {
    width: 80%;
}
nav .container #nav__btn .line:nth-child(2) {
    width: 60%;
}
nav #sidebar__nav {
    position: fixed;
    z-index: 999;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    background: rgba(61, 61, 61, 0.9);
}
nav #sidebar__nav[data-active="true"] {
    visibility: visible;
    opacity: 1;
}
nav #sidebar__nav[data-active="true"] ul {
    right: 0;
}
nav #sidebar__nav ul {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 999;
    gap: 2.65rem 0;
    top: 0;
    bottom: 0;
    right: -25%;
    background-color: #f3f3f3;
    transition: all 0.3s ease-in-out;
}
nav #sidebar__nav ul li a {
    display: block;
    width: 8.75rem;
    font-size: 1.2rem;
    text-align: start;
    color: #998465;
}
@media (max-width: 1024px) {
    nav {
        height: 5.5rem;
    }
    nav .container img {
        width: 91px;
        height: 70px;
    }
    nav .container .socials {
        display: none;
    }
    nav .container #nav__btn[data-active="true"] {
        right: 50%;
    }
    nav #sidebar__nav ul {
        width: 70%;
    }
}
header {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: url(../assets/images/home.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}
@media (max-width: 1024px) {
    header {
        padding: 4.5rem 0;
    }
}
header .langs {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
    right: 40px;
    top: 50%;
}
header .langs button {
    font-size: 14px;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0);
    color: #f3f3f3;
    cursor: pointer;
    transition: all 0.3s ease;
}
header .langs button:hover {
    transform: scale(0.9);
    background-color: #998465;
    padding: 10px;
    border: 2px solid #333;
    border-radius: 9px;
}
header .container {
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .container .mobile {
    display: none;
}
header .container .desktop {
    width: 100%;
    height: 100%;
}
header .container .content {
    position: absolute;
    bottom: 9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem 0;
}
header .container .content h1 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    width: 60%;
    text-align: center;
}
header .container .content a button {
    width: 129px;
    height: 36px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background-color: #998465;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 180px;
    height: 47px;
}
header .container .content a button:hover {
    transform: translateY(-3px);
    color: #998465;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media (max-width: 1024px) {
    header {
        background-image: url(../assets/images/home-mobile.webp);
    }
    header .langs {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        bottom: -35%;
        right: 0%;
        flex-direction: row;
        gap: 0 0.6rem;
        z-index: 99;
    }
    header .langs button {
        font-size: 18px;
    }
    header .container {
        position: relative;
        overflow: visible;
        width: 80%;
    }
    header .container .desktop {
        display: none;
    }
    header .container .mobile {
        display: flex;
        width: 95%;
        height: 492.2px;
        object-fit: cover;
    }
    header .container .content {
        top: 53%;
        bottom: 0;
    }
    header .container .content h1 {
        width: 100%;
        font-size: 24px;
    }
    header .container .content a button {
        position: relative;
        right: 0%;
        bottom: 0px;
    }
}
#after__header {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f3f3f3;
    padding-bottom: 6rem;
}
@media (max-width: 1024px) {
    #after__header {
        padding: 4.5rem 0;
    }
}
#after__header .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    place-items: center start;
    width: 90vw;
}
#after__header .container .text {
    display: flex;
    flex-direction: column;
    gap: 3rem 0;
    padding: 0 4.1rem;
}
#after__header .container .text .text1 {
    display: flex;
    flex-direction: column;
    gap: 1.8rem 0;
    width: 80%;
}
#after__header .container .text .text1 .title h1 {
    width: 100%;
    font-size: 30px;
    font-weight: 600;
    color: #998465;
}
#after__header .container .text .text1 p {
    font-size: 15px;
    width: 108.9%;
    font-weight: 500;
    color: #3d3d3d;
    line-height: 1.8;
}
#after__header .container .text img {
    width: 185px;
    height: 92px;
}
#after__header .container .imagem__swiper {
    width: 40vw;
    height: 400px;
    gap: 0 2rem;
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#after__header .container .imagem__swiper .swiper-button-prev,
#after__header .container .imagem__swiper .swiper-button-next {
    display: none;
}
#after__header .container .imagem__swiper .swiper-pagination {
    display: none;
}
#after__header .container .imagem__swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    border-radius: 18px;
    gap: 1rem 0;
    transition: all 0.3s ease;
    text-align: center;
}
#after__header .container .imagem__swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
}
@media (max-width: 1024px) {
    #after__header {
        padding-bottom: 3rem;
    }
    #after__header .container {
        grid-template-columns: 1fr;
        place-items: center;
        gap: 3rem 0;
        width: 100vw;
    }
    #after__header .container .text {
        padding: 0 !important;
        align-items: center;
        justify-content: center;
        gap: 1rem 0;
    }
    #after__header .container .text .text1 {
        gap: 1.4rem 0;
    }
    #after__header .container .text .text1 .title {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        text-align: center;
        width: 100%;
        gap: 1rem 0;
    }
    #after__header .container .text .text1 .title h2 {
        text-align: center;
    }
    #after__header .container .text .text1 .title h1 {
        width: 100%;
        font-size: 22px;
        text-align: start;
    }
    #after__header .container .text .text1 p {
        width: 100%;
        padding: 0rem;
    }
    #after__header .container .imagem__swiper {
        width: 80%;
        height: 300px;
        gap: 0;
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 0 !important;
    }
    #after__header .container .imagem__swiper .swiper-button-prev,
    #after__header .container .imagem__swiper .swiper-button-next {
        display: none;
    }
    #after__header .container .imagem__swiper .swiper-pagination {
        display: none;
    }
    #after__header .container .imagem__swiper .swiper-wrapper .swiper-slide {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0rem;
        padding-left: 0rem;
        border-radius: 18px;
        gap: 1rem 0;
        transition: all 0.3s ease;
        text-align: center;
    }
    #after__header .container .imagem__swiper .swiper-wrapper .swiper-slide img {
        width: 100%;
        height: 100%;
        border-radius: 28px;
    }
}
#smile {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-image: url(../assets/images/banner32.webp);
    height: 480px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 1024px) {
    #smile {
        padding: 4.5rem 0;
    }
}
#smile .container {
    display: grid;
    place-items: center start;
    position: relative;
    width: 80%;
}
#smile .container .text {
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem 0;
}
#smile .container .text h1 {
    font-size: 28px;
    font-weight: 600;
    width: 25%;
    color: #998465;
}
#smile .container .text p {
    font-size: 18px;
    font-weight: 500;
    color: #998465;
    width: 36%;
}
#smile .container .text img {
    width: 170px;
    height: 40px;
}
@media (max-width: 1024px) {
    #smile {
        background-image: url(../assets/images/banner32-mob.webp);
        background-position-y: bottom;
        place-items: end center;
        height: 780px;
        padding: 0;
    }
    #smile .container {
        width: 90%;
        display: flex;
        align-items: end;
        justify-content: center;
        padding-bottom: 2rem;
    }
    #smile .container .text {
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-self: end;
        align-items: center;
        padding-left: 0;
        gap: 1rem 0;
        padding-bottom: 0%;
    }
    #smile .container .text h1 {
        width: 70%;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        color: #fff;
    }
    #smile .container .text p {
        width: 100%;
        line-height: 1.2;
        text-align: center;
        color: #fff;
        font-size: 16px;
    }
}
#treatments {
    background-color: #f3f3f3;
    padding-bottom: 4rem;
    padding-top: 6rem;
}
#treatments .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    margin-left: 10%;
    gap: 4rem 0;
    position: relative;
}
#treatments .container .title h1 {
    color: #2c2a28;
    font-size: 30px;
    font-weight: 600;
}
#treatments .container .treatments__wrapper {
    width: 100%;
    height: 375px;
    position: static;
}
#treatments .container .treatments__wrapper .imgs {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    text-align: center;
    cursor: pointer;
}
#treatments .container .treatments__wrapper .imgs::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    inset: 0;
    z-index: 2;
    position: absolute;
    opacity: 60%;
    background-color: #333;
}
#treatments .container .treatments__wrapper .imgs::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    display: block;
    opacity: 0;
    bottom: -100%;
    background-color: #998465;
    transition: all 0.3s ease;
}
#treatments .container .treatments__wrapper .imgs[data-active="true"]::before {
    display: none;
}
#treatments .container .treatments__wrapper .imgs[data-active="true"]::after {
    opacity: 100%;
    bottom: 0;
}
#treatments .container .treatments__wrapper .imgs[data-active="true"] .content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem 0;
    transition: all 0.5s ease;
    z-index: 11;
}
#treatments .container .treatments__wrapper .imgs[data-active="true"] .content .treatment__text {
    max-height: 15rem;
}
#treatments .container .treatments__wrapper .imgs[data-active="true"] .content #treatment__btn {
    padding-top: 1.5rem;
    opacity: 0;
}
#treatments .container .treatments__wrapper .imgs[data-active="true"] .content h1 {
    margin-right: 2rem;
    z-index: 99;
    color: #fff;
}
#treatments .container .treatments__wrapper .imgs img {
    width: 100%;
    height: 100%;
    z-index: -2;
    display: flex;
    object-fit: cover;
}
#treatments .container .treatments__wrapper .imgs .content {
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: start;
    align-items: center;
    justify-content: center;
    gap: 0.2rem 0;
    margin-bottom: 2.5rem;
    transition: all 0.5s ease;
    padding: 0 1rem;
    z-index: 10;
}
#treatments .container .treatments__wrapper .imgs .content h1 {
    color: #f3f3f3;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    margin-right: 0rem;
    transition: all 0.5s ease;
}
#treatments .container .treatments__wrapper .imgs .content .treatment__text {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: #fff;
    margin-bottom: -2.5rem;
    transition: all 0.5s ease;
}
#treatments .container .treatments__wrapper .imgs .content p {
    color: #fff;
    transition: all 0.5s ease;
}
#treatments .container .treatments__wrapper .swiper-pagination {
    position: absolute;
    bottom: -50px;
}
#treatments .container .treatments__wrapper .swiper-pagination .swiper-pagination-bullet {
    background-color: #998465;
}
@media (max-width: 1024px) {
    #treatments {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 3rem;
        padding-top: 3rem;
    }
    #treatments .container {
        align-items: center;
        justify-content: center;
        width: 83%;
        margin-left: 0;
    }
    #treatments .container .title {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    #treatments .container .treatments__wrapper {
        width: 100%;
    }
    #treatments .container .treatments__wrapper .imgs .content {
        padding: 0 1.5rem;
    }
    #treatments .container .treatments__wrapper .imgs[data-active="true"] .content {
        display: flex;
        flex-direction: column;
        gap: 0.75rem 0;
        transition: all 0.5s ease;
    }
    #treatments .container .treatments__wrapper .imgs[data-active="true"] .content .treatment__text {
        max-height: 20rem;
    }
    #treatments .container .treatments__wrapper .imgs[data-active="true"] .content #treatment__btn {
        padding-top: 1.5rem;
        opacity: 0;
    }
    #treatments .container .treatments__wrapper .imgs[data-active="true"] .content h1 {
        margin-right: 2rem;
    }
}
#depoiments {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
}
@media (max-width: 1024px) {
    #depoiments {
        padding: 4.5rem 0;
    }
}
#depoiments .container {
    background-color: #fff;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 8rem;
    gap: 5rem 0;
}
#depoiments .container .title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
}
#depoiments .container .title h3 {
    font-size: 16px;
    font-weight: 500;
    color: #998465;
}
#depoiments .container .title h1 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}
#depoiments .container .comments {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    height: 236px;
    top: 30px;
    place-items: center;
    position: static;
}
#depoiments .container .comments .swiper-wrapper .coment {
    background-color: #998465;
    width: 444px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: start;
    gap: 1rem 0;
    position: relative;
}
#depoiments .container .comments .swiper-wrapper .coment h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    left: 0;
}
#depoiments .container .comments .swiper-wrapper .coment p {
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    width: 80%;
    line-height: 1.7;
}
#depoiments .container .comments .swiper-wrapper .coment img {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 60px;
    height: 60px;
}
#depoiments .container .comments .swiper-button-prev,
#depoiments .container .comments .swiper-button-next {
    top: 36%;
}
#depoiments .container .comments .swiper-button-prev::after,
#depoiments .container .comments .swiper-button-next::after {
    font-size: 1.35rem;
    font-weight: 700;
    color: #998465;
}
#depoiments .container .comments .swiper-button-prev {
    right: calc(12% + 8rem);
    left: auto;
}
#depoiments .container .comments .swiper-button-next {
    right: calc(10% + 8rem);
}
#depoiments .container .comments .swiper-pagination {
    position: absolute;
    bottom: 15%;
}
#depoiments .container .comments .swiper-pagination .swiper-pagination-bullet {
    background-color: #998465;
}
@media (max-width: 1024px) {
    #depoiments {
        padding-bottom: 0;
    }
    #depoiments .container {
        width: 83%;
        padding: 4.5rem 1.3rem 1.5rem;
        gap: 3rem 0;
    }
    #depoiments .container .title {
        align-items: center;
    }
    #depoiments .container .title h3 {
        font-size: 16px;
        font-weight: 500;
    }
    #depoiments .container .title h1 {
        font-size: 22px;
        font-weight: 600;
        width: 80%;
    }
    #depoiments .container .comments {
        width: 100%;
        height: 300px;
    }
    #depoiments .container .comments .swiper-wrapper .coment {
        align-items: start;
        padding: 0 2rem;
        height: 100%;
    }
    #depoiments .container .comments .swiper-wrapper .coment h3 {
        font-size: 16px;
        font-weight: 600;
    }
    #depoiments .container .comments .swiper-wrapper .coment p {
        font-size: 12px;
        font-weight: 300;
        width: 100%;
    }
    #depoiments .container .comments .swiper-button-prev,
    #depoiments .container .comments .swiper-button-next {
        display: none;
    }
    #depoiments .container .comments .swiper-pagination {
        bottom: 14%;
    }
    #depoiments .container .comments .swiper-pagination .swiper-pagination-bullet {
        background-color: #998465;
    }
}
#experts {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f3f3f3;
    padding-top: 0;
}
@media (max-width: 1024px) {
    #experts {
        padding: 4.5rem 0;
    }
}
#experts .container {
    display: flex;
    flex-direction: row;
    gap: 0 3%;
    align-items: center;
    justify-content: center;
    width: 80vw;
}
#experts .container .text {
    display: flex;
    flex-direction: column;
    gap: 1.3rem 0;
}
#experts .container .text h1 {
    font-size: 30px;
    font-weight: 600;
    color: #333;
    width: 70%;
}
#experts .container .text p {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    width: 100%;
}
#experts .container .team__wrapper {
    width: 40vw;
    height: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 1rem;
}
#experts .container .team__wrapper .left,
#experts .container .team__wrapper .right {
    width: 45px;
    height: 50px;
}
#experts .container .team__wrapper .left svg,
#experts .container .team__wrapper .right svg {
    width: 100%;
    height: 100%;
}
#experts .container .team__wrapper .team__swiper {
    width: 100%;
    height: 100%;
    position: static;
    overflow: hidden;
}
#experts .container .team__wrapper .team__swiper .swiper-pagination {
    display: none;
}
#experts .container .team__wrapper .team__swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}
#experts .container .team__wrapper .team__swiper .swiper-wrapper .swiper-slide:hover .text {
    bottom: 0;
}
#experts .container .team__wrapper .team__swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#experts .container .team__wrapper .team__swiper .swiper-wrapper .swiper-slide .text {
    position: absolute;
    bottom: -100px;
    background-color: #998465;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem 0;
    width: 100%;
    height: 100px;
    transition: all 0.5s ease;
}
#experts .container .team__wrapper .team__swiper .swiper-wrapper .swiper-slide .text h1 {
    font-size: 14px;
    color: #f3f3f3;
    width: 100%;
    text-align: center;
}
#experts .container .team__wrapper .team__swiper .swiper-wrapper .swiper-slide .text h2 {
    font-size: 12px;
    color: #f3f3f3;
}
#experts .container .team__wrapper .team__swiper .swiper-wrapper .swiper-slide .text h3 {
    font-size: 12px;
    color: #f3f3f3;
    font-weight: 500;
}
#experts .container .team__wrapper .arrows {
    display: none;
}
@media (max-width: 1024px) {
    #experts .container {
        flex-direction: column;
        gap: 3rem 0;
        padding-top: 0 !important;
        padding-bottom: 6rem;
    }
    #experts .container .text {
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    #experts .container .text h1 {
        width: 80%;
        font-size: 26px;
        font-weight: 600;
    }
    #experts .container .text p {
        font-size: 14px;
        font-weight: 500;
    }
    #experts .container .team__wrapper {
        width: 80vw;
        height: 400px;
    }
    #experts .container .team__wrapper .left,
    #experts .container .team__wrapper .right {
        display: none;
    }
    #experts .container .team__wrapper .team__swiper .swiper-wrapper .swiper-slide .text {
        bottom: 0;
    }
    #experts .container .team__wrapper .team__swiper .swiper-wrapper .swiper-slide .text h1 {
        color: #f3f3f3;
    }
    #experts .container .team__wrapper .team__swiper .swiper-wrapper .swiper-slide .text h2 {
        color: #f3f3f3;
    }
    #experts .container .team__wrapper .team__swiper .swiper-wrapper .swiper-slide .text h3 {
        color: #f3f3f3;
    }
    #experts .container .team__wrapper .team__swiper .swiper-pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding-bottom: 6rem;
    }
    #experts .container .team__wrapper .team__swiper .swiper-pagination .swiper-pagination-bullet {
        background-color: #998465;
    }
}
#help {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-image: url("../assets/images/banner3.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 480px;
    padding: 0;
}
@media (max-width: 1024px) {
    #help {
        padding: 4.5rem 0;
    }
}
#help .container {
    display: flex;
    align-items: center;
    justify-content: end;
}
#help .container .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 396px;
    gap: 1.5rem 0;
    margin-right: 5%;
}
#help .container .text h1 {
    font-size: 20px;
    font-weight: 600;
    color: #f3f3f3;
}
#help .container .text p {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    line-height: 1.6;
}
#help .container .text a button {
    width: 129px;
    height: 36px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background-color: #998465;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 145px;
    font-size: 12px;
    font-weight: 500;
}
#help .container .text a button:hover {
    transform: translateY(-3px);
    color: #998465;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media (max-width: 1024px) {
    #help {
        height: 100vh;
        background-image: url("../assets/images/banner3-mobile.webp");
        align-items: center;
        padding: 0;
    }
    #help .container {
        justify-content: center;
        align-items: start;
        padding-bottom: 0%;
        height: 85vh;
    }
    #help .container .text {
        text-align: center;
        margin-right: 0;
        align-items: center;
        width: 318px;
        gap: 2rem 0;
    }
    #help .container .text h1 {
        width: 100%;
    }
    #help .container .text p {
        font-size: 14px;
        font-weight: 300;
    }
}
#results {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    #results {
        padding: 4.5rem 0;
    }
}
#results .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem 0;
    position: relative;
}
#results .container .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#results .container .title h3 {
    font-size: 16px;
    font-weight: 500;
    color: #998465;
}
#results .container .title h1 {
    font-size: 26px;
    font-weight: 600;
}
#results .container .images {
    width: 80%;
    height: 318px;
    position: static;
}
#results .container .images .swiper-wrapper {
    align-items: center;
}
#results .container .images .swiper-wrapper .result__image {
    width: 244px;
    height: 244px;
    display: flex;
    object-fit: cover;
    position: relative;
    transition: all 0.5s ease;
}
#results .container .images .swiper-wrapper .result__image.swiper-slide-next {
    width: 318px;
    height: 318px;
}
#results .container .images .swiper-wrapper .result__image.swiper-slide-next::after {
    opacity: 0;
}
#results .container .images .swiper-wrapper .result__image::after {
    content: "";
    opacity: 1;
    position: absolute;
    inset: 0;
    display: block;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.5s ease;
}
#results .container .images .swiper-wrapper .result__image img {
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
}
#results .container .images .swiper-button-prev,
#results .container .images .swiper-button-next {
    top: 22%;
}
#results .container .images .swiper-button-prev::after,
#results .container .images .swiper-button-next::after {
    font-size: 1.35rem;
    font-weight: 700;
    color: #998465;
}
#results .container .images .swiper-button-prev {
    right: 12%;
    left: auto;
}
#results .container .images .swiper-button-next {
    right: 10%;
}
#results .container .images .swiper-pagination {
    display: none;
}
#results .container figure {
    width: 100%;
    height: 100%;
    padding: 0 15%;
}
#results .container a button {
    width: 129px;
    height: 36px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background-color: #998465;
    cursor: pointer;
    transition: all 0.3s ease;
}
#results .container a button:hover {
    transform: translateY(-3px);
    color: #998465;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media (max-width: 1024px) {
    #results .container {
        gap: 3.25rem 0;
    }
    #results .container .title {
        text-align: center;
        gap: 1rem 0;
    }
    #results .container .title h3 {
        font-size: 16px;
        font-weight: 500;
    }
    #results .container .title h1 {
        font-size: 22px;
        font-weight: 600;
    }
    #results .container .images {
        width: 100%;
        height: auto;
    }
    #results .container .images .swiper-wrapper .result__image {
        width: 100%;
        height: 100%;
    }
    #results .container .images .swiper-wrapper .result__image::after {
        display: none;
    }
    #results .container .images .swiper-wrapper .result__image.swiper-slide-next {
        width: 100%;
        height: 100%;
    }
    #results .container .images .swiper-button-prev,
    #results .container .images .swiper-button-next {
        display: none;
    }
    #results .container .images .swiper-pagination {
        position: absolute;
        display: none;
        bottom: 40px;
    }
    #results .container .images .swiper-pagination .swiper-pagination-bullet {
        background-color: #998465;
    }
    #results .container figure {
        width: 100%;
        height: 100%;
        padding: 0 0%;
    }
}
#contact__wrapper {
    width: 100%;
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
}
#contact__wrapper #contact__banner {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    padding: 0;
    height: 25.75rem;
    background-color: #998465;
}
@media (max-width: 1024px) {
    #contact__wrapper #contact__banner {
        padding: 4.5rem 0;
    }
}
#contact__wrapper #contact__banner .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-left: 7rem;
}
#contact__wrapper #contact__banner .container h1 {
    width: 19.625rem;
    color: #fff;
}
#contact__wrapper #contacts {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    height: 16rem;
    padding: 0 !important;
    background-color: #333;
}
@media (max-width: 1024px) {
    #contact__wrapper #contacts {
        padding: 4.5rem 0;
    }
}
#contact__wrapper #contacts .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 2rem 0;
    padding-left: 7rem;
}
#contact__wrapper #contacts .container .unit {
    width: 18.75rem;
    display: grid;
    place-items: center start;
    gap: 0.8rem 0;
}
#contact__wrapper #contacts .container .unit a {
    font-size: 0.875rem;
    font-weight: 300;
    color: #f3f3f3;
    transition: all 0.3s ease;
}
#contact__wrapper #contacts .container .unit a:hover {
    transform: translateY(-3px);
}
#contact__wrapper #contacts .container .unit a strong {
    font-weight: 600;
}
#contact__wrapper #contacts .socials {
    display: none;
}
#contact__wrapper .form__wrapper {
    width: 21.5rem;
    height: -moz-fit-content;
    height: fit-content;
    position: absolute;
    right: 16%;
    display: grid;
    place-items: center;
    gap: 3.5rem 0;
    margin-bottom: 5rem;
}
#contact__wrapper .form__wrapper form {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2.2rem 0;
    padding: 2.75rem 2.35rem;
    border-radius: 0.813rem;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1607843137);
    background: #f3f3f3;
}
#contact__wrapper .form__wrapper form .title {
    display: grid;
    place-items: center;
    gap: 0.85rem 0;
}
#contact__wrapper .form__wrapper form .title h1 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
}
#contact__wrapper .form__wrapper form .title p {
    width: 90%;
    color: #000;
    font-size: 13px;
    font-weight: 300;
}
#contact__wrapper .form__wrapper form input {
    width: 100%;
    height: 2rem;
    background: rgba(0, 0, 0, 0);
    border-bottom: 1px solid rgba(44, 42, 40, 0.1);
    padding-bottom: 0.95rem;
    color: #2c2a28;
}
#contact__wrapper .form__wrapper form input::-moz-placeholder {
    font-size: 0.75rem;
    color: #3d3d3d;
}
#contact__wrapper .form__wrapper form input::placeholder {
    font-size: 0.75rem;
    color: #3d3d3d;
}
#contact__wrapper .form__wrapper form select {
    width: 100%;
    height: 2rem;
    background: rgba(0, 0, 0, 0);
    border-bottom: 1px solid rgba(44, 42, 40, 0.1);
    padding-bottom: 0.95rem;
    color: #2c2a28;
}
#contact__wrapper .form__wrapper form textarea {
    width: 100%;
    height: 2rem;
    background: rgba(0, 0, 0, 0);
    border-bottom: 1px solid rgba(44, 42, 40, 0.1);
    padding-bottom: 0.95rem;
    color: #2c2a28;
    resize: none;
    outline: none;
}
#contact__wrapper .form__wrapper form button {
    width: 129px;
    height: 36px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background-color: #998465;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 8.125rem;
    height: 2.125rem;
}
#contact__wrapper .form__wrapper form button:hover {
    transform: translateY(-3px);
    color: #998465;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#contact__wrapper .form__wrapper form button:hover {
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.0705882353);
}
#contact__wrapper .form__wrapper .form__socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 1.2rem;
}
#contact__wrapper .form__wrapper .form__socials a {
    transition: all 0.3s ease-in-out;
}
#contact__wrapper .form__wrapper .form__socials a:hover {
    transform: scale(0.97) translateY(0.1rem);
}
#contact__wrapper .form__wrapper .form__socials a img {
    width: 40px;
    height: 40px;
}
@media screen and (min-width: 100rem) {
    #contact__wrapper .form__wrapper {
        right: 28%;
    }
}
@media screen and (max-width: 64rem) {
    #contact__wrapper #contact__banner {
        height: 25.938rem;
        place-items: center;
    }
    #contact__wrapper #contact__banner .container {
        padding-left: 0;
        place-items: center;
        text-align: center;
    }
    #contact__wrapper #contact__banner .container h1 {
        width: 100%;
    }
    #contact__wrapper #contacts {
        height: 42rem;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: center;
        gap: 3rem 0;
    }
    #contact__wrapper #contacts .container {
        padding-left: 0;
        place-items: center;
    }
    #contact__wrapper #contacts .container .unit {
        width: 100%;
        gap: 30px;
    }
    #contact__wrapper #contacts .socials {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0 2rem;
        padding-bottom: 4.8rem;
    }
    #contact__wrapper #contacts .socials a img {
        width: 33.73px;
        height: 33.73px;
    }
    #contact__wrapper .form__wrapper {
        right: auto;
        margin-top: 6rem;
    }
    #contact__wrapper .form__wrapper .form__socials {
        display: none;
    }
}
footer {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    padding: 4rem 0;
}
@media (max-width: 1024px) {
    footer {
        padding: 4.5rem 0;
    }
}
footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .container img {
    width: 100px;
    height: 48px;
}
@media (max-width: 1024px) {
    footer {
        padding: 3.5rem;
    }
}
footer {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0rem 0 0.8rem 0;
    background: #333333;
}

footer .container {
    display: grid;
    place-items: center;
    gap: 3rem 0;
}

footer .container img {
    width: 11%;
    height: auto;
}

footer .container .copyrights {
    display: grid;
    place-items: center;
    text-align: center;
}

footer .container .copyrights .copy {
    display: flex;
    align-items: center;
    gap: 0 0.5rem;
    font-size: 0.45rem;
    opacity: 1;
    color: rgb(255, 255, 255);
}

footer .container .copyrights .copy svg {
    width: 0.75rem;
    height: 0.75rem;
}

@media screen and (max-width: 64rem) {
    footer .container img {
        width: 35%;
    }
}