/* Configurações */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Scrolls Reveals */
.about-container,
.projects-container,
.services-container,
.segments-card,
.requisitos-container,
.redewells-container,
.contatos-container,
.card {
    visibility: hidden;
}

:root {
    --maincolor1: #e3a72f;
    --maincolor2: #bb8633;
    --maincolor3: #ddd98c;
    --secondcolor1: #245091;
    --secondcolor2: #6494de;
    --darkcolor: #222222;
    --whitecolor: #fcfcfc;

    --montserrat: 'Montserrat', sans-serif;
    --opensans: 'Open Sans', sans-serif;
}

#background {
    width: 100vw;
    height: auto;
}

#whatsapp-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
}

#whatsapp-fixed a i {
    font-size: 3.2rem;
    color: #25D366;
    transition: 200ms ease-in-out;
}

#whatsapp-fixed a i:hover {
    color:#128C7E;
}

/* Cabeçalho */

header {
    background-color: var(--darkcolor);
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0% 5%;
    transition: 150ms ease-in-out;
    position: fixed;
    top: 0;
}

header .logo-box {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header img {
    width: 80%;
}

header .menu {
    width: 80%;
    height: 100%;
}

.menu-list {
    list-style-type: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.menu-list-item {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.menu-list-item a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: normal;
    font-family: var(--opensans);
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 2rem;
    transition: 150ms ease-in-out;
}

.menu-list-item a:hover {
    background-color: var(--maincolor1);
}

/* Header Sublists */

.sublist-services {
    display: none;
    position: absolute;
    top: 10vh;
    left: 0;
    padding: 0;
    list-style-type: none;
    background-color: var(--maincolor1);
    width: 100%;
}

.sublist-services li {
    text-align: center;
}

.sublist-services li a {
    padding: 1rem;
    background-color: var(--darkcolor);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sublist-services li a:hover {
    background-color: var(--maincolor1);
    outline: none;
}

header .menu-list-item:hover ul {
    display: block;
}

/* Menu Mobile */

.mobile-menu-list {
    display: none;
}

.mobile-menu-icon {
    display: none;
    position: relative;
    cursor: pointer;
    width: 35px;
    min-height: 25px;
    height: auto;
}

.bar {
    display: block;
    height: 4px;
    width: 100%;
    background-color: #fff;
    transition: 0.25s ease-in-out;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transform: rotate(0deg);
    opacity: 1;
}

/* Pagina Inicio */

#page-inicio {
    width: 100%;
    height: 100vh;
    background-image: url("imagens/bg-inicio.jpg");
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
}

.inicio-sombra {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Cor preta com 50% de transparência */
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.inicio-container {
    position: relative;
    margin-left: 6rem;
    margin-bottom: 1rem;
}

.inicio-container h1 {
    font-family: var(--montserrat);
    font-weight: bold;
    font-size: 6rem;
    color: var(--whitecolor);
    margin: 0;
}

.inicio-container h1 span {
    color: var(--maincolor1);
}

.inicio-container p {
    font-family: var(--montserrat);
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--whitecolor);
    margin-left: 10px;
}

/* Pagina Sobre Nós */

#page-about {
    width: 100%;
    background-color: var(--whitecolor);
    display: flex;
    align-items: center;
    padding: 6rem 4rem;
    position: relative;
}

#page-about::before {
    content: "";
    background-image: url("imagens/elements/element1\ \(1\).png");
    width: 480px;
    height: 480px;
    position: absolute;
    left: 0;
    bottom: -60%;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-container h2 {
    font-family: var(--montserrat);
    font-weight: bold;
    font-size: 3rem;
    color: var(--maincolor1);
}

.about-text-box {
    margin-top: 1rem;
    width: 80%;
    text-align: justify;
}

.about-text-box p {
    font-family: var(--opensans);
    font-weight: 500;
    font-size: 1.2rem;
    color: #000;
    margin-left: 10px;
}

/* Pagina Projetos */

#page-projects {
    width: 100%;
    background-color: var(--darkcolor);
    display: flex;
    align-items: center;
    padding: 4rem;
}

.projects-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.projects-container h2 {
    font-family: var(--montserrat);
    font-weight: bold;
    font-size: 2rem;
    color: var(--whitecolor);
    margin-bottom: 2rem;
}

.projects-container h2 span {
    color: var(--maincolor1);
}

.carousel {
    width: 90%;
}

.carousel-inner {
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
}

.controle-carrossel {
    transition: 150ms ease-in-out;
}

.controle-carrossel:hover {
    background-color: var(--darkcolor);
}

.carrossel-title-5 {
    margin: 0;
}

/* Pagina Servicos */

#page-services {
    width: 100%;
    background-color: var(--whitecolor);
    display: flex;
    align-items: center;
    padding: 6rem 6rem;
}

.services-container {
    width: 100%;
    display: flex;
}

.services-text-box {
    width: 60%;
    padding-right: 2rem;
}

.services-text-box h2 {
    font-size: 3rem;
    color: var(--maincolor1);
    font-weight: bold;
    margin-bottom: 1rem;
}

.services-text-box ul {
    padding: 0 0 0 20px;
    font-family: var(--opensans);
    text-align: justify;
    list-style-image: url(imagens/list-icon.png);
}

.services-img-box {
    width: 40%;
}

.services-img-box img {
    width: 500px;
}

/* Pagina Segmentos */

#page-segments {
    width: 100%;
    background-image: url(imagens/bg-segments.jpg);
    background-size: cover;
}

.bg-page-segments {
    background-color: var(--whitecolor);
    padding: 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#page-segments h2 {
    color: var(--darkcolor);
    margin-bottom: 2rem;
    font-weight: bold;
    font-size: 2rem;
    font-family: var(--montserrat);
    letter-spacing: 0;
}

.segments-container {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.segments-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.segments-img-bg {
    background-color: var(--maincolor1);
    width: 80px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: 100ms ease-in-out;
}

.segments-img-bg:hover {
    transform: scale(1.1, 1.1);
}

.segments-card h3 {
    font-size: 1.4rem;
    font-family: var(--opensans);
    font-weight: bold;
}

/* Pagina Requisitos */

#page-requisitos {
    width: 100%;
    background-color: var(--darkcolor);
    display: flex;
    align-items: center;
    padding: 4rem;
}

.requisitos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.requisitos-container h2 {
    font-family: var(--montserrat);
    font-weight: bold;
    font-size: 2rem;
    color: var(--whitecolor);
}

.cards-box {
    width: 80%;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-around;
    gap: 1.5rem;
}

.card {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    text-align: justify;
    background-color: rgb(51, 51, 51);
    box-shadow: 10px 10px 10px rgba(51, 51, 51, 0.384);
    position: relative;
    font-family: var(--opensans);
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border: 20px solid transparent;
    border-top: 20px solid var(--maincolor1);
    border-right: 20px solid var(--maincolor1);
}

.card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card img {
    width: 250px;
    height: 160px;
}

.content {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.content::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, #333)
}

.content h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--whitecolor);
    position: relative;
    font-size: 1.5rem;
}

.content h3::before {
    content: "";
    position: absolute;
    bottom: -5px;
    height: 2px;
    width: 40px;
    background-color: var(--maincolor1);
}

.content p {
    font-size: 1rem;
    color: var(--whitecolor);
}

.read_button {
    border: none;
    padding: 10px;
    border-radius: 2px;
    margin-top: 10px;
    background-color: var(--maincolor1);
    color: var(--whitecolor);
    font-weight: bolder;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: var(--montserrat);
    transition: all 100ms ease-in-out;
}

.read_button:hover {
    background-color: transparent;
    outline: 1px solid var(--maincolor1);
    color: var(--maincolor1);
}

.card.active .content {
    height: auto;
}

/* Pagina Clientes */

#page-clientes {
    background-color: #fcfcfc;
}

.clientes-container {
    padding: 4rem 4rem 0rem 4rem;
}

#page-clientes h2 {
    font-family: var(--montserrat);
    font-weight: bold;
    font-size: 3rem;
    color: var(--darkcolor);
    text-align: center;
    margin-top: 2rem;
}

.wrapper {
    display: grid;
    align-items: center;
    height: 100%;
    grid-template-columns: 20% 20% 20% 20% 20%;
}

.slide-item {
    margin-top: 2rem;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.slide-image {
    height: 60px;
}

/* Pagina Rede Wells */

#page-rede-wells {
    width: 100%;
    background-color: var(--whitecolor);
    padding: 4rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redewells-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
}

.redewells-text-box {
    width: 50%;
    text-align: justify;
}

.redewells-text-box h2 {
    font-family: var(--montserrat);
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--maincolor1);
}

.redewells-text-box h2 span {
    color: var(--secondcolor1);
}

.redewells-text-box p {
    font-family: var(--opensans);
    font-weight: 500;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 2rem;
}

.redewells-button {
    border: none;
    padding: 15px;
    border-radius: 2px;
    background-color: var(--secondcolor1);
    color: var(--whitecolor);
    font-weight: bolder;
    font-size: 1rem;
    cursor: pointer;
    font-family: var(--montserrat);
    transition: all 100ms ease-in-out;
    text-decoration: none;
}

.redewells-button:hover {
    background-color: transparent;
    outline: 1px solid var(--secondcolor1);
    color: var(--secondcolor1);
}

.redewells-img-box {
    width: 60%;
    padding: 2rem;
}

.redewells-img-box img {
    width: 100%;
}

/* Pagina Contatos */

#page-contatos {
    width: 100%;
    background-color: var(--darkcolor);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--whitecolor);
}

.contatos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    padding: 4rem 2rem;
}

.contatos-content {
    width: 40%;
    text-align: justify;
    color: var(--whitecolor);
    padding-left: 2rem;
}

.contatos-content h2 {
    font-family: var(--montserrat);
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--maincolor1);
}

.contatos-content p {
    font-family: var(--opensans);
    font-weight: 500;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 2rem;
}

.contatos-img-box {
    width: 40%;
    padding: 0rem 2rem;
    margin-right: 1rem;
}

.contatos-img-box img {
    width: 300px;
}

.icon-number, .icon-email {
    margin-right: 10px;
}

.email-box {
    display: flex;
    align-items: center;
}

.email-box a {
    text-decoration: none;
    color: var(--whitecolor);
}

.contatos-box {
    margin-top: 1.5rem;
    background-color: var(--whitecolor);
    border: 2px solid var(--maincolor1);
    border-radius: 50px;
    width: 220px;
    height: auto;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contatos-box img {
    width: 40px;   
}

/* Devices */

@media screen and (max-width: 1264px) {

    header {
        padding: 0rem 8rem;
    }
   
    header .menu-list {
        padding: 0;
    }

    header .menu-list-item a {
        font-size: 0.7rem;
        padding: 1rem;
    }

    .services-img-box {
        display: flex;
    }

    .services-img-box img {
        width: 400px;
    }

    .cards-box {
        width: 100%;
    }

    .redewells-container {
        width: 100%;
    }

    .redewells-text-box {
        width: 50%;
    }

    .redewells-text-box h2 {
        font-size: 2rem;
    }

    .redewells-img-box {
        width: 50%;
    }

    .redewells-img-box img {
        width: 400px;
    }

    #page-about::before {
        content: "";
        background-image: url("imagens/elements/element1\ \(2\).png");
        width: 380px;
        height: 380px;
        position: absolute;
        left: 0;
        bottom: -40%;
    }
}

@media screen and (max-width: 1023px) {
    
    .services-img-box img {
        width: 300px;
    }

    .redewells-img-box img {
        width: 350px;
    }
}

@media screen and (max-width: 948px) {
    header .logo-box {
        height: 100%;
    }

    header .logo-box a img {
        height: 100%;
        width: 100%;
    }

    header .menu-list-item a {
        padding: 0.6rem;
    }

    #page-about {
        padding: 4rem;
    }

    #page-about::before {
        content: "";
        background-image: url("imagens/elements/element1\ \(3\).png");
        width: 280px;
        height: 280px;
        position: absolute;
        left: 0;
        bottom: -40%;
    }

    .about-container {
        width: 100%;
    }

    .about-container h2 {
        font-size: 2.5rem;
    }
    
    .about-text-box {
        margin-top: 0.5rem;
        width: 80%;
        text-align: justify;
    }
    
    .about-text-box p {
        font-size: 1rem;
    }

    .projects-container h2 {
        font-size: 1.6rem;
    }

    #page-services {
        padding: 4rem;
    }
    
    .services-text-box h2 {
        font-size: 2.4rem;
    }
    
    .services-text-box ul {
       font-size: 0.9rem;
    }
    
    .bg-page-segments {
        padding: 2rem;
    }
    
    #page-segments h2 {
        font-size: 2rem;
    }
    
    .segments-img-bg {
        width: 60px;
        height: 60px;
        padding: 1rem;
    }


    .segments-img-bg img {
        width: 100%;
    }
    
    .segments-card h3 {
        font-size: 1.2rem;
    }

    #page-requisitos {
        padding: 2rem;
    }
    
    .requisitos-container h2 {
        font-size: 1.8rem;
    }
    
    .content h3 {
        font-size: 1.2rem;
    }
    
    .content h3::before {
        content: "";
        position: absolute;
        bottom: -5px;
        height: 2px;
        width: 40px;
        background-color: var(--maincolor1);
    }
    
    .content p {
        font-size: 0.9rem;
    }

    .redewells-text-box p {
        font-size: 1rem;
    }

    .redewells-button {
        font-size: 0.8rem;
    }

    .slide-image {
        height: 40px;
    }

    .contatos-container {
        width: 100%;
    }
}

@media screen and (max-width: 836px) {
    header {
        padding: 0rem 4rem;
        height: 8vh;
    }

    #page-inicio {
        margin-top: 8vh;
        padding: 15rem 2rem;
        height: auto;
    }

    .inicio-container {
        margin: 0;
    }

    .cards-box {
        gap: 0.5rem;
    }
   
    .card img {
        width: 200px;
    }

    .content h3 {
        font-size: 1rem;
    }

    .content P {
        font-size: 0.8rem;
    }

    .redewells-text-box h2 {
        font-size: 1.6rem;
    }
}

/* Mobile devices */

@media screen and (max-width: 768px) {
    header {
        justify-content: space-between;
        padding: 0rem 2rem;
        height: 8vh;
        z-index: 10000;
    }

    header .logo-box {
        width: 15%;
    }
    
    .menu {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .bar:nth-child(1) {
        top: 0%;
    }
    .bar:nth-child(2),
    .bar:nth-child(3) {
        top: 50%;
    }
    .bar:nth-child(4) {
        top: 100%;
    }

    .mobile-menu-list {
        display: block;
        position: fixed;
        width: 100vw;
        height: auto;
        margin-top: 8vh;
        top: -100vh;
        left: 0;
        background-color: var(--darkcolor);
        border-top: 1px solid var(--whitecolor);
        padding: 2rem;
        transition: all 0.8s ease-in-out;
        z-index: 1000;
    }

    .mobile-menu-list .menu-list-item  {
        min-height: 3rem;
        height: auto;
        display: flex;
        justify-content: center;
        transition: 150ms ease;
    }

    .mobile-menu-list .menu-list-item a {
        display: flex;
        justify-content: space-between;
        padding: 0;
        padding-left: 1rem;
        font-size: 0.8rem;
        height: 50px;
    }

    .menu-list-drop {
        width: 10%;
        height: 100%;
        display: flex;
    }

    .menu-list-drop i {
        margin: auto;
        font-size: 1rem;
    }

    .sublist-services {
        position: relative;
        top: 0;
        background-color: var(--whitecolor);
        display: block;
        height: 0;
        overflow: hidden;
        transition: all 0.2s;
    }

    .sublist-services-item {
        margin-left: 0.5rem;
    }

    .sublist-services-item:hover {
        background-color: var(--secondcolor1);
    }

    /* Open */

    .mobile-menu-list .menu-list-item:nth-child(3):hover ul {
        height: 250px;
    }

    .mobile-menu-list .menu-list-item:nth-child(4):hover ul {
        height: 50px;
    }

    .mobile-menu-list.open {
        top: 0;
    }
    
    .mobile-menu-icon.open .bar:nth-child(1) {
        top: 50%;
        width: 0px;
        left: 50%;
    }
    .mobile-menu-icon.open .bar:nth-child(2) {
        transform: rotate(45deg);
    }
    .mobile-menu-icon.open .bar:nth-child(3) {
        transform: rotate(-45deg);
    }
    .mobile-menu-icon.open .bar:nth-child(4) {
        top: 50%;
        width: 0px;
        left: 50%;
    }

    /* Fim Open */

    .inicio-container h1 {
        line-height: 5rem;
        margin-bottom: 1rem;
    }

    .services-container {
        flex-direction: column;
    }

    .services-text-box {
        width: 100%;
    }

    .services-img-box {
        display: none;
    }

    #page-rede-wells {
        padding: 4rem;
    }

    .redewells-container {
        flex-direction: column;
    }

    .redewells-text-box {
        width: 100%;
    }

    .redewells-text-box h2 {
        font-size: 2rem;
    }

    .redewells-img-box {
        width: 100%;
        display: flex;
        align-items: start;
        justify-content: end;
        padding: 0;
    }

    .contatos-container {
        width: 100%;
    }

    .contatos-img-box {
        display: none;
    }

    .contatos-content {
        width: auto;
    }

    #page-clientes h2 {
        font-size: 2.5rem;
    }

    .clientes-container {
        padding: 2rem 0rem;
    }

    .wrapper {
        grid-template-columns: 25% 25% 25% 25%;
    }

    #page-about {
        padding: 4rem 0rem;
    }

    .services-text-box {
        padding: 0;
    }
}

@media screen and (max-width: 700px) {
    #page-about::before {
        display: none;
    }
}

@media screen and (max-width: 586px) {
    #page-inicio {
        height: 60vh;
        justify-content: center;
        padding: 15rem 0.5rem;
    }

    .inicio-sombra {
        background: rgba(0, 0, 0, 0.6);
    }
    
    .inicio-container {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .inicio-container h1 {
        font-size: 5rem;
        line-height: 4rem;
        text-align: center;
        width: 80%;
    }

    .inicio-container p {
        font-size: 1.4rem;
        line-height: 1.4rem;
        margin-top: 0rem;
        text-align: center;
        width: 70%;
    }

    #page-about {
        padding: 4rem 1rem;
    }

    #page-projects {
        padding: 2rem 1rem;
    }

    .segments-container {
        width: 100%;
    }

    .requisitos-container h2 {
        text-align: center;
    }

    .cards-box {
        grid-template-columns: 1fr 1fr;
    }

    .wrapper {
        grid-template-columns: 30% 30% 30%;
        justify-content: center;
    }
}

@media screen and (max-width: 460px) {
    header .logo-box {
        width: 25%;
    }

    #page-inicio {
        height: 60vh;
        justify-content: center;
    }

    .inicio-sombra {
        background: rgba(0, 0, 0, 0.6);
    }
    
    .inicio-container {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .inicio-container h1 {
        font-size: 4rem;
        line-height: 4rem;
        text-align: center;
        width: 80%;
    }

    .inicio-container p {
        font-size: 1.2rem;
        margin-top: 0rem;
        text-align: center;
        width: 50%;
    }

    .projects-container h2 {
        text-align: center;
    }

    #page-services {
        padding: 4rem 2rem;
        text-align: left;
    }

    .segments-container {
        grid-template-columns: 1fr 1fr;
    }

    .cards-box {
        grid-template-columns: 1fr;
    }

    .content h3 {
        font-size: 1.5rem;
    }

    #page-segments h2 {
        font-size: 2rem;
    }

    .services-text-box h2 {
        font-size: 2rem;
    }

    .redewells-img-box {
        display: none;
    }

    #direitos {
        font-size: 0.8rem;
    }

    #page-clientes h2 {
        font-size: 1.8rem;
    }

    .clientes-container {
        padding: 1rem;
    }

    .wrapper {
        grid-template-columns: 50% 50%; 
    }

    #page-rede-wells {
        padding: 4rem 2rem;
    }

    .redewells-text-box h2 {
        font-size: 2rem;
    }

    .about-container h2 {
        font-size: 2rem;
    }
    
    .about-text-box {
        width: 90%;
    }

    .about-text-box p {
        margin: 0;
    }
}   

@media screen and (max-width: 394px) {
    .segments-card {
        padding: 10px 0px;
    }

    .segments-card h3 {
        font-size: 1rem;
    }

    
    .inicio-container p {
        width: 70%;
    }

    .about-text-box {
        width: 95%;
    }

    #page-segments h2 {
        font-size: 1.8rem;
    }

    .services-text-box h2 {
        font-size: 1.8rem;
    }

    .redewells-text-box h2 {
        font-size: 1.8rem;
    }

    .about-container h2 {
        font-size: 1.8rem;
    }

    .wrapper {
        grid-template-columns: 1fr;
    }

    .slide-item {
        margin-top: 1rem;
    }

}