/* font */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:ital,wght@0,300;0,400;0,500;0,700;0,800;1,300;1,400;1,600&family=Poppins:ital,wght@0,100;0,200;0,300;0,500;0,600;0,800;1,100;1,300;1,400;1,600&display=swap');
@font-face {
    font-family: 'Centrasone';
    src: url('fonts/centrasone-font-1690103397-0/centrasone.ttf') format('truetype'); /* Substitua pelo caminho correto do arquivo .ttf ou .otf */
    /* Se houver outros formatos da fonte (eot, woff, svg), você pode adicioná-los aqui para compatibilidade com navegadores mais antigos */
}

/*---------------------VARIAVEIS CSS ---------------------- */

:root {

    /*------------ CORES --------------- */

    --main-color: #EAE1D5;
    --primeira-cor: #405a40;
    --segunda-cor: #e3edef;
    --terceira-cor:#974A3B;
    --white-cor: #ffffff;
    --black-cor: #151515;


    /*--------------------- TYPOGRAFIA -----------------*/
    
    --font-cursive: 'Centrasone';
    --body-font: 'Montserrat', sans-serif;
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.813rem;

}

/* base */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
    font-size: 62.5%;

}

body {
    background-color: var(--white-cor);
    font-size: var(--normal-font-size);
    font-family:var(--body-font) ;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.container {
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* nav */

.header-1 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999999;
    transition: all 0.5s ease;

}

.navbar-container {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--body-font);
    margin: 0 auto;
}

.nav-hamburguer {
    font-size: 4rem;
    padding: 5px 5px 0;
    border: 1px solid transparent;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;

}

.nav-hamburguer:hover {
    color: var(--primeira-cor);
    border: 1px solid var(--primeira-cor);
}

.nav-hamburguer {
    display: none;
    margin-right: 30px;
}

.brand {
    overflow: hidden;
    margin-top: 10px;
    margin-left: 30px;
}
.brand img {
    width: 50%;
    padding-right: 100px;
}

.whatsapp {
    position: fixed;
    bottom: 30px; 
    right: 30px; 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; /* Para deixar o ícone com formato circular */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra do ícone */
    z-index: 999; /* Certifique-se de que o ícone fique acima dos outros elementos */
    transition: transform 0.3s; 
}

.doctoralia

.whatsapp:hover {
    transform: scale(1.2);
}

.whatsapp img {
    width: 100%;
}


/*MEDIA QUERY NAVBAR RESPONSIVO*/

@media screen and (min-width:911px) {
    .nav_menu {
        display: flex;
    }

    .nav_item {
        margin-right: 20px;
        font-size: 2rem;
        text-transform: capitalize;
    }

    .nav_item:last-child {
        margin-right: 0;
    }
}


.nav_link {
    /* font-weight:600; */
    font-family: var(--body-font);
    color: var(--black-cor);
    position: relative;
    transition: all 0.4s ease;
}

.nav_link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: var(--terceira-cor);
    transition: all 0.4s ease-in-out;
}

.nav_link:hover::before {
    width: 100%;
}

.nav_link:hover {
    color: var(--primeira-cor);
}

/* hero */

.hero {
    width: 100%;
    background-color: var(--main-color);
    border-radius: 0 0 300px 0;
}

.hero_img img {
    width: 500px;
    filter: drop-shadow(10px 10px 10px rgba(0,0,0,0.4));
    border-radius: 10px;
    margin-bottom: 20px;
}

.hero_texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero_texto h1 {
    font-family: var(--font-cursive);
    font-size: 5.2rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.2rem;
    color: var(--primeira-cor);
    margin-bottom: 20px;
    margin-left: 50px;
}

.hero_texto p {
    pointer-events: none;
}

.tipo-sessao {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.tipo-sessao img {
    width: 40px; 
    height: 40px;
    margin-right: 10px;
    margin-top: 30px;
}

.tipo-sessao p {
    font-size: 1.6rem; 
    padding-left: 50px;
}

.hero_texto h1 span {
    color:  var(--terceira-cor);
}

.hero_texto p {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 20px;
    max-width: 80%;
    line-height: 30px;
    letter-spacing: 0.2rem;
    color: var(--primeira-cor);
}


.btn-outline {
    width: 250px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: var(--primeira-cor);
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    padding: 8px 3px;
}

.btn-outline:hover {
    background-color: var(--terceira-cor);
    transition: all 0.5s;
}


.btn-outline  span {
    display: inline;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white-cor);
    margin-left: 8px;
    
}

.btn-outline i {
    font-size: 2.4rem;
    color: white;
}

/* SOBRE MIM */

.sobre-mim {
    margin-top: 30px;
    width: 100%;
    background-image: url(/img/sobremim/fundosobremim.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: -1;
}

.sobre-mim-flex {
    flex-direction: column;
}
.titulo-sobre-mim {
    font-family: var(--font-cursive);
    margin: 0 auto;
    font-size: 6rem;
}

.conteudo-sobre-mim {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
}
.titulo-sobre-mim h1 {
    font-size: 7rem;
    font-weight: 100;
    color: var(--primeira-cor);
}

.img-sobre-mim {
    /* width: 400px; */
    min-width: 300px;
    flex-grow: 2;
    flex-basis: 500px;
    max-width: 500px;
}

.img-sobre-mim img {
    width: 100%;
    filter: drop-shadow(10px 10px 10px rgba(0,0,0,0.4));
    border-radius: 10px;
}

.texto-sobre-mim {
    margin-left: 20px;
    display: flex;
    justify-content: center;
    max-width: 600px;
    flex-grow: 1;
}

.texto-sobre-mim p {
    font-family: var(--body-font);
    font-size: 2rem;
    text-align: left;
    line-height: 2.9rem;
    color: var(--black-cor);
}


/* servicos */
.servicos {
    padding: 1rem;
    background-color: var(--main-color);
    border-radius: 0 180px 180px 0;
}

.servico-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;

}
.titulo-servicos h1 {
    font-family: var(--font-cursive);
    margin: 0 auto;
    font-size: 7rem;
    font-weight: 100;
    color: var(--primeira-cor);
    margin-bottom: 35px;
}

.grid-servicos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto; /* Centralize os elementos na página */
}

.box {
    flex-basis: calc(25% - 40px); /* Calcule a largura para que 4 itens se encaixem em cada linha, com margem entre eles */
    margin: 20px; /* Adicione uma margem entre os elementos */
    text-align: center; /* Centralize o conteúdo dos elementos */
    position: relative;
    height: 180px;
    width: 100px;
    margin: 20px;
    padding: 10px;
}

.box p {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #405A40;
    font-weight: 600;
}
.box img {
    width: 30%;
    height: 50%;
    object-fit: contain;
    padding-top: 20px;
}

.box::before, .box::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0px;
    transition: all 0.5s ease;
    
}

.box::before {
    bottom: 0;
    left: 0;
    border-bottom: 3px solid transparent;
    border-left: 3px solid transparent;
}

.box::after {
    top: 0;
    right: 0;
    border-top: 3px solid transparent;
    border-right: 3px solid transparent;
}

.box:hover::before {
    border-bottom: 3px solid var(--terceira-cor);
    border-left: 3px solid var(--terceira-cor);
    width: 98%;
    height: 98%;

}
.box:hover::after {
    border-top: 3px solid var(--terceira-cor);
    border-right: 3px solid var(--terceira-cor);
    width: 98%;
    height: 98%;
}

/* 
DUVIDAS */

.duvidas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container-duvidas {
    margin-bottom: 30px;
}

.titulo h1 {
    font-family: var(--font-cursive);
    font-size: 7rem;
    font-weight: 400;
    line-height: 80px;
    letter-spacing: 0.2rem;
    color: var(--primeira-cor);
    margin-bottom: 20px;
    margin-top: 55px;
    text-align: center;
}

.conteudo {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.img-duvidas-container {
    width: 600px;
    margin-left: 30px;

}
.img-duvidas-container img {
    width: 100%;
}

.accordeon {
    margin-left: 10px;
    width: 500px;
    outline: none;
}

.accordeon button {
    border: none;
    padding: 0;
    margin: 0;
}

.item-accordeon {
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    margin-bottom: 1px !important;
}

.titulo-acordeon {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 15px;
    background-color: var(--main-color);
}

.titulo-acordeon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}

.titulo-acordeon h3 {
    font-size: 1.7rem;
    color: var(--primeira-cor)
}

.titulo-acordeon i {
    font-size: 2rem;
    color: var(--primeira-cor);
}

.titulo-acordeon:hover{
    opacity: 0.9;
}

.texto-conteudo {
    padding: 0 18px;
    background-color: rgba(247, 230, 223,0.3);
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.selecionado {
    opacity: 0.9;
    max-height: 500px;
}

.texto-conteudo p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.6rem;
    text-align: left;
    line-height: 2rem;

}

/* 
AGENDAMENTO  */
.agendamento-conteudo, .agendamento-texto{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.agendamento-conteudo {
    background-color: #405A40;
    border-radius: 20px;
    /* margin: 40px; */
    height: 250px;
}

.agendamento {
    background-color: var(--main-color);
    border-radius: 400px 0 0 400px;
    padding: 50px;
}

.agendamento-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.agendamento-texto h2 {
    margin: 10px;
    color: var(--main-color);
    font-size: 2rem;
    /* text-align: center; */
}

.img-consultorio {
    width: 70%;
    border-radius: 10%;
    box-shadow: 5px 3px 3px rgba(0,0,0,0.1);
    
}

.titulo-agendamento h1{
    font-family: var(--font-cursive);
    font-size: 7rem;
    font-weight: 400;
    line-height: 80px;
    letter-spacing: 0.2rem;
    color: var(--primeira-cor);
    margin-bottom: 20px;
    text-align: center;
}

.duvidas-flor {
    margin-top: 30px;
    width: 100%;
    background-image: url(/img/sobremim/fundosobremiminverso.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: -1;
}


#swiper-agendamento {
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 2rem;
    color: var(--primeira-cor);
    cursor: pointer;
}

.swiper-container img {
    width: 50%;
    overflow: hidden;
}

.swiper-button-next {
    /* right: 30%; */
}

.swiper-button-prev {
    /* left */
}

/* foooter */
footer {
    background-color: var(--primeira-cor);
    color: var(--main-color);
    font-family: var(--body-font);
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer hr {
    border-color: var(--main-color);
    margin: 10px 0;
}


.titulo-onde-encontrar h1 {
    font-size: 2.6rem;
    color: var(--main-color);
    margin-bottom: 15px;
}

.endereco {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contato {
    text-align: center;
    margin: 15px;
    pointer-events: none;
}

.contato h2 {
    font-size: 2rem;
    color: var(--main-color);
    margin-bottom: 10px;
}

.contato p {
    font-size: 1.6rem;
    line-height: 1.8rem;
}

.redes-sociais {
    margin-top: 20px;
}

.icone-instagram i {
    font-size: 4.5rem;
    color: var(--main-color);
    margin-right: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.icone-instagram a {
    color: var(--main-color);
    font-size: 1.2rem;
    text-decoration: none;
}

.icone-instagram a:hover {
    color: #fff;
}

/* Estilos adicionais para os ícones das redes sociais */
.redes-sociais i {
    font-size: 3.5rem;
    margin-right: 10px;
}

/* Estilos para o link das redes sociais */
.redes-sociais a {
    color: var(--main-color);
    font-size: 1.7rem;
    text-decoration: none;
}

/* Estilos para o link das redes sociais quando estiver em hover (mouseover) */
.redes-sociais a:hover {
    color: #fff;
}

.psicologo-resp {
    font-size: 1.8rem;
    padding-top: 20px;
    pointer-events: none;
}

form {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}


/* MEDIA QUERY */

@media screen and (min-width:1025px) {
    .container {
        max-width: 1200px;
        overflow-x: hidden;
    }

    .hero-conteudo {
        padding-top: 217px
    }

    .swiper-container img {
        width: 60%;
        overflow: hidden;
        margin-left: 20%;
    }
}
/* MEDIA QUERY NAVBAR RESPONSIVO for screen widths up to 910px*/
@media screen and (max-width: 1024px) {
    .nav-hamburguer {
        display: block;
        position: absolute;
        top: 20px; /* Adjust the top position as needed to move the icon up or down */
        right: 20px; /* Adjust the right position as needed to move the icon left or right */
        font-size: 4rem;
        padding: 5px 5px 0;
        border: 1px solid transparent;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }

    .nav-hamburguer:hover {
        color: var(--primeira-cor);
        border: 1px solid var(--primeira-cor);
    }

    .nav {
        position: absolute;
        top: 0;
        right: 0;
        width: 0%;
        height: 100vh;
        background-color: var(--main-color);
        font-size: 0rem;
        text-align: center;
        text-transform: capitalize;
        padding-top: 10rem;
        transition: all 0.3s ease-in-out;
    }

    .show-menu .nav_menu {
        display: block;
    }

    .nav_menu {
        display: none;
    }

    .nav_item {
        padding: 15px 0;
    }

    .show-menu {
        width: 60%;
        font-size: 2.5rem;
    }
}

/* CSS for screens with minimum width 481px and maximum width 1024px */
@media screen and (min-width: 481px) and (max-width: 1024px) {

    .navbar-container {
        display: flex;
        flex-direction: row;
        /* align-items: center; */
        justify-content: space-between;
        /* align-items: center;  */
        /* text-align: center;  */
        margin: 0 20px;
    }

    .hero_img img {
        padding-top: 40px;
        max-width: 50%; /* Adjust the size of the image for small devices and make it occupy the full width */
    }

    .brand {
        width: 60%;
    }

    .hero-conteudo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; 
        text-align: center; 
        /* padding: 5%; */
        /* gap: 60px; */
    }

    .hero_texto p {
        margin: 1rem;
    }

    .hero-conteudo h1 {
        font-size: 3.3rem;
        line-height: 100%;
    }

    .tipo-sessao {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tipo-sessao .sessao-online,
    .tipo-sessao .sessao-presencial {
        flex: 1 0 50%; /* This makes the divs occupy 50% of the container width, so they will be side by side */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tipo-sessao img {
        padding: 0;
        margin: 0;
    }

    .tipo-sessao p {
        padding: 0;
        margin: 0;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .conteudo-sobre-mim {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .img-sobre-mim img {
        max-width: 100%; /* Make sure the image doesn't overflow its container */
    }

    .sobre-mim {
        background-image: none;
    }

    .titulo-sobre-mim {
        font-size: 5rem;
    }

    .texto-sobre-mim {
        margin: 10px 0;
    }

    .texto-sobre-mim p {
        padding: 5px 0; /* Add some padding to the paragraphs for better spacing */
        margin: 0;
        font-size: 1.7rem;
    }

    .titulo-servicos h1 {
        padding-left: 20px;
        /* padding-top: 10%; */
        font-size: 6rem
    }

    .grid-servicos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* Center the boxes horizontally */
    }

    .box {
        flex: 0 0 calc(50% - 40px); /* Adjust the size of the boxes to fit two in a row */
        max-width: calc(50% - 40px); /* Adjust the max-width to fit two in a row */
        margin: 0; /* Add some spacing around the boxes */
        text-align: center;
        padding: 0;
    }

    .box p{
        padding: 10px 0; /* Add some padding to the paragraphs for better spacing */
        margin: 0;
        font-size: 1.7rem;
    }

    .conteudo {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 90%;
        align-items: center;
        gap: 0;
    }

    .duvidas {
        margin: 0;
        margin-bottom: 30px;
        padding: 0;
    }

    .container-duvidas {
        max-width: 500px ;
        display: flex; /* Tornar o container flexível */
        flex-direction: column; /* Alinhar os elementos verticalmente */
        align-items: center; /* Centralizar os elementos horizontalmente */
    }

    .img-duvidas-container {
        max-width: 80%; /* Ajustar a largura da imagem */
    }

    .accordeon { 
        max-width: 80vw; 
        margin: 0;
    }

    
    .agendamento {
        background-color: var(--main-color);
        border-radius: 300px 0 0 300px;
        padding-bottom: 50px;
        overflow-x: hidden;
    }

    .titulo-agendamento h1 {
        font-size: 4rem;
        line-height: 5rem;
    }

    .swiper-container {
        min-width: 700px;
        overflow-x: hidden;
        padding-bottom: 50px;
        margin: 0;
    } 
    
    .swiper-button-next,
    .swiper-button-prev {
        top: 50%;
        transform: translateY(-50%);
        font-size: 3rem;
        margin: 0;
        font-weight: 700;
    }
    
    .swiper-button-next {
        right: 40%;
    }
    
    .swiper-button-prev {
        /* left: 0%; */
    }

    
}


/* Add the following CSS to your existing styles */
@media screen and (max-width: 480px) {
    .section {
        height: auto;
    }

    .hero {
        border-radius: 0 0 180px 0;
    }

    .brand img {
        width: 50%;
        padding-left: 20px;
    }

    .hero_img img {
        max-width: 40%; /* Adjust the size of the image for small devices and make it occupy the full width */
        display: block; /* Remove any default margin and align the image in the center */
        margin: 0 auto;
    }

    .hero-conteudo {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center the content horizontally */
        text-align: center; /* Center the text inside the container */
        padding: 10%;
    }

    .hero_texto p {
        margin: 1rem;
    }

    .hero-conteudo h1 {
        font-size: 3.3rem;
        /* margin:  */
        line-height: 100%;
    }

    .tipo-sessao {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tipo-sessao .sessao-online,
    .tipo-sessao .sessao-presencial {
        flex: 1 0 50%; /* This makes the divs occupy 50% of the container width, so they will be side by side */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tipo-sessao img {
        padding: 0;
        margin: 0;
    }

    .tipo-sessao p {
        padding: 0;
        margin: 0;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .conteudo-sobre-mim {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .img-sobre-mim img {
        max-width: 100%; /* Make sure the image doesn't overflow its container */
    }

    .sobre-mim {
        background-image: none;
    }

    .titulo-sobre-mim {
        font-size: 4rem;
    }

    .texto-sobre-mim {
        margin: 10px 0;
    }

    .texto-sobre-mim p {
        padding: 5px 0;
        margin: 0;
        font-size: 1.7rem;
    }

    .titulo-servicos h1 {
        padding-top: 10%;
        font-size: 4rem
    }

    .grid-servicos {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start; /* Center the boxes horizontally */
    }

    .box {
        flex: 0 0 calc(50%); /* Adjust the size of the boxes to fit two in a row */
        max-width: calc(50%); /* Adjust the max-width to fit two in a row */
        margin: 0; /* Add some spacing around the boxes */
        text-align: center;
        padding: 0;
    }

    .box p{
        padding: 10px 0; /* Add some padding to the paragraphs for better spacing */
        margin: 0;
        font-size: 1.3rem;
    }

    .conteudo {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        max-width: 480px;
        align-items: center;
        gap: 0;
    }

    .duvidas {
    margin: 0;
    margin-bottom: 30px;
    padding: 0;
    }

    .container-duvidas {
        display: flex; /* Tornar o container flexível */
        flex-direction: column; /* Alinhar os elementos verticalmente */
        align-items: center; /* Centralizar os elementos horizontalmente */
    }

    .img-duvidas-container {
        max-width: 60%;
    }
    .accordeon {
        width: 90vw;
        max-width: 480px;
        margin: 0 auto; 
        overflow-x: hidden;
    }

    
    .agendamento {
        background-color: var(--main-color);
        border-radius: 300px 0 0 300px;
        padding: 0;
    }

    .titulo-agendamento h1 {
        margin-top: 20px;
        font-size: 4rem;
        line-height: 5rem;
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
    }

    
    .swiper-container {
        max-width: 700px;
        padding: 0;
        overflow-x: hidden;
        margin-left: 90vw;
        padding-bottom: 50px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        top: 50%;
        transform: translateY(-50%);
        font-size: 3rem;
        margin: 0;
        font-weight: 700;
    }
    
    .swiper-button-next {
        right: 50%;
    }
    
    .swiper-button-prev {
        left: 5%;
    }
}
