*{
    margin: 0;padding: 0;box-sizing: border-box;
}

:root{
    --color-green-l:#cad745;
    --color-brown: #7c5a32;
    --color-green-d: #8d8d25;

    
    --font-h1: clamp( 38px, 5.7vw, 5.7vh);
    --font-h2: clamp( 38px, 5.3vw, 5.3vh);
    --font-h3: clamp( 28px, 4.8vw, 4.8vh);
    --font-h4: clamp( 25px, 4.3vw, 4.3vh);
    
    --font-a: clamp( 20px, 2.5vw, 2.5vh);
    /* 
        font family
    */
    --font-Ghotan: 'Gothan';
    --font-Bodoni: 'Bodoni';
}

@font-face {
    font-family: 'Bodoni';
    src: url(../fonts/BODONI_B.otf);
    font-display: swap;
}

@font-face {
    font-family: 'Gothan';
    src: url(../fonts/Gotham\ Rounded\ Light.otf);
    font-display: swap;
}

html{
    scroll-behavior: smooth;
}
body{
    height: 100%;
    width: 100%;
}


/* 
General
*/

ul{
    list-style-type: none;
}
h1{
    font-size: var(--font-h1);
    font-family: 'Bodoni';
}
h2{
    font-size: var(--font-h2);
    font-family: 'Bodoni';
}
h3{
    font-size: var(--font-h3);
    font-family: 'Bodoni';
}
h4{
    font-size: var(--font-h4);

}
p{
    text-align: justify;
    font-family: 'Gothan';
}
a{
    font-size: var(--font-a);
    text-decoration: none;
    font-family: 'Gothan';
}

svg,
img{
    width: 100%;
    height: 100%;
}


/* 
==============================
============= Sub - Header
==============================
*/
path{
    fill: #fff;
}
.sub-img{
    width: 30px;
}
.sub-img svg{
    vertical-align: middle;
}

.sub-header{
    background: var(--color-brown);
    display: flex;
    justify-content: right;
    padding: .5rem 1.5rem;
    gap: 15px;
}
.sub-header article{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.sub-header a{
    color: #fff;
}

@media screen and (max-width: 700px) {
    .sub-header{
        flex-direction: column;
        gap: 0;
        padding: .5rem 0;
    }
    .sub-header a{
        font-size: clamp(17px, 1.5vw, 1.5vh);
    }
}


@media screen and (max-width: 400px) {
    .sub-header article{
        flex-direction: column;
        gap: 5px;
    }
}




/* 
==============================
============= Header
==============================
*/


.header{
    height: 100px;
    width: 100%;
    padding: 0;
    display: grid;
}
.logo{
    width: 290px;
    height: 84px;
}

.desktop-nav{
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-list{
    display: flex;
    gap: 20px;
}
.menu-list a{
    color: var(--color-green-d);
    font-weight: 700;
}

/* 
==============================
============= Header Mobile
==============================
*/

.mobile-nav{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.menu-mobile{
    display: none;
}
.open-menu{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.mobile-nav .menu-list{
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hamburger-menu{
    width: 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger-menu > div{
    width: 100%;
    border-top: 1.7px solid #000;
}


@media screen and (max-width: 1050px) {
    .desktop-nav{
        display: none;
    }
    .mobile-nav{
        display: flex;
    }
    .logo{
        width: 173px;
        height: 50px;
    }
    .header{
        min-height: 84px;
        height: auto;
        padding: 1rem 0;
    }
}

@media screen and (max-width: 500px) {
    .sub-header{
        display: none;
    }
}





/* 
==============================
============= Home
==============================
*/

.home{
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 5rem ;
    background: url(../img/cabecera.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.home-text{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 60%;
    color: #fff;
}
.home-text h1{
    text-transform: uppercase;
}
.home-text p{
    width: 50%;
}
.home-text .home-btn{
    background: var(--color-green-l);
    min-width: 200px;
    max-width: 220px;
    text-align: center;
    height: auto;
    padding: .3rem 1rem;
    border-radius: 1.5rem;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
}
@media screen and (max-width: 1100px) {
    .home-text{
        width: 90%;
    }
    .home-text p{
        width: 90%;
    }
    .home{
        padding: 0 3rem ;
    }
}
@media screen and (max-width: 500px) {
    .home{
        padding: 0 1rem ;
    }
    .home-text{
        width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .home-text p{
        width: 100%;
        text-align: center;
    }
    .home-text h1{
        font-size: 30px;
    }
}



/* 
==============================
============= About
==============================
*/

.about-us{
    width: 100%;
    height: 100%;
    padding: 3rem 0;
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
}

.about-grid{
    width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-items img{
    object-fit: cover;
}
@media screen and (max-width: 1440px) {
    .about-container{
        width: 50%;
    }
}

@media screen and (min-width: 1920px), (max-width: 1920px) {
    .about-container{
        width: 30%;
    }
}


.about-text{
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-container .about-header{
    width: 90%;
    border-bottom: 3px solid var(--color-brown);
    display: flex;
    flex-direction: column;
    padding-bottom: .5rem;
}
.about-container .about-header h4{
    color: var(--color-green-l);
    font-weight: 100;
}
.about-container .about-header h2{
    color: var(--color-brown);
    font-weight: 100;
}

.about-container .about-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.about-container .about-btn a{
    background: var(--color-brown);
    text-align: center;
    padding: .5rem 1rem;
    border-radius: 1.5rem;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}

@media screen and (max-width: 1225px) {
    .about-grid{
        width: 400px;
        justify-content: center;
    }
    .about-container{
        width: 40%;
    }
}
@media screen and (max-width: 1100px) {
    .about-grid{
        width: 500px;
        justify-content: center;
    }
    .about-container{
        width: 100%;
        text-align: center;
    }
    .about-us{
        flex-direction: column-reverse;
        padding: 1rem;
        row-gap: 20px;
    }
    .about-container .about-btn{
        justify-content: center;
        flex-direction: column;
    }
    .about-header{
        width: 100%;
        margin: 0 auto;
    }
    .about-text{
        padding-left: 0px;
    }
    .about-container .about-btn a{
        margin: 0 auto;
    }
}
@media screen and (max-width: 510px) {
    .about-grid{
        width: 370px;
    }
}
@media screen and (max-width: 400px) {
    .about-grid{
        width: 270px;
    }
}

/* 
==============================
============= Protocolos
==============================
*/
.last-projects,
.protocolos{
    height: auto;
    width: 100%;
    padding: 3rem 5rem;
    background: var(--color-brown);
}
.protocolos .about-header{
    color: #fff;
    margin: 0 auto;
}
.protocolo-text{
    margin-top: 20px;
    color: #fff;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}
.protocolo-text section{
    width: 50%;
}
.protocolo-content h4,
.protocolo-content p{
    color: rgb(255, 255, 255, .7);
    font-weight: 100;
}



@media screen and (min-width: 1920px), (max-width: 1920px) {
    .protocolo-text{
        width: 70%;
    }
    .protocolos .about-header{
        width: 70%;
    }
}

@media screen and (max-width: 1440px) {
    .protocolo-text{
        width: 85%;
    }
    .protocolos .about-header{
        width: 85%;
    }

}
/* 
==============================
============= Protocolo GRID
==============================
*/

.protocolo-grid{
    width: 100%;
    padding: 3rem 0;
    display: grid;
    grid-template-columns: repeat(4, 236px);
    justify-items: center;
    justify-content: center;
    gap: 10px;
}

/* .protocolo-grid .p-img{
    width: 260px;
} */
@media screen and (max-width: 1100px) {
    .protocolo-grid{
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    .protocolo-text{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .protocolo-text section{
        width: 100%;
        text-align: center;
    }
    .protocolo-content  .about-header{
        text-align: center;
    }
    .protocolos{
        padding: 1rem;
    }
    .last-projects{
        padding: 1.5rem 1rem;
    }
    /* .protocolo-grid .p-img{
        width: 260px;
    } */
}
@media screen and (max-width: 700px) {
    .protocolo-grid{
        grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    }
}



/* 
==============================
============= Protocolo Steps
==============================
*/

.protocolo-steps{
    padding: 5rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.p-steps:nth-child(2){
    flex-direction: row-reverse;
}
.p-steps{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.step-text{
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.step-img{
    width: 350px;
    height: 350px;
    position: relative;
}
.p-steps h3{
    color: #fff;
}
.step-btn{
    padding-top: 20px;
    margin: 0 auto;
    width: 100%;
}
.step-btn a{
    background: #fff;
    border: none;
    width: auto;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: .5rem 1rem;
    border-radius: 1.5rem;
    text-transform: uppercase;
    color: #7c5a32;
}



.btn-m{
    width: 100%;
    padding: 1rem;
    display: flex;
}
#btn-cerrar-modal{
        margin:  0 auto;
        background: var(--color-brown);
        border: none;
        width: auto;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        padding: .7rem 1.5rem;
        border-radius: 1.5rem;
        text-transform: uppercase;
        color: #fff;
}

@media screen and (max-width: 900px) {
    .p-steps{ 
        flex-direction: column;
        gap: 15px;
        width: 50%;
    }
    .p-steps:nth-child(2){ 
        flex-direction: column;
    }
    .step-text{
        text-align: center;
        width: 90vw;
    }
    .protocolo-steps{
        gap: 20px;
        padding: 3rem 0;
    }
    
}
@media screen and (max-width: 500px) {
    .step-img{
        width: 250px;
        height: 250px;
    }
}

/* 
==============================
============= Last Projects
==============================
*/

.last-projects{
    background: #fff;
}

.projects-content{
    text-align: center;
}
.projects-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.projects-header h2{
    color: var(--color-brown);
}
hr{
    width: 240px;
    height: 5px;
    background: var(--color-brown);
}
.projects-grid{
    grid-template-columns: repeat(3, 350px);
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.projects-grid .protocolo-item .p-img{
    width: 350px;
    height: auto;
}
@media screen and (max-width: 1150px) {
    hr{
        width: 180px;
    }
    .projects-grid{
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    }
    .projects-grid .protocolo-item .p-img{
        width: 270px;
        height: auto;
    }
    
}
@media screen and (max-width: 580px) {
    hr{
        width: 150px;
    }
    .projects-grid .protocolo-item .p-img{
        width: 270px;
        height: auto;
    }
}
@media screen and (max-width: 320px) {
    hr{
        width: 100px;
    }
}








.last-projects{
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.protocolo-grid{
    padding: 1rem;
}
.imgtxt{
    margin: 0 auto;
    width: 130px;
}
.projects-top{
    display: grid;
    grid-template-areas: 
    'top1 top2 top3';
    justify-content: center;
    align-items: flex-start;
    gap: 5%;
    position: relative;
    z-index: 1;
}
.projects-top::before{
    content: '';
    position: absolute;
    left: 0;right: 0;top: 0;bottom: 0;
    background: var(--color-brown);
    height: 150px;
    width: 100%;
    z-index: -1;
}
.top-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.top-item .top-img{
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 50%;
}
.top-text{
    text-align: center;
    display: grid;
    gap: 10px;
    width: 300px;
}

.top-text h4{
    color: #7c5a32;
    font-size: 30px;
}
.top-text p{
    color: rgb(0, 0, 0, .505);
}   




@media screen and (max-width: 1030px) {
    .projects-top{
        grid-template-areas:
        'top1'
        'top2'
        'top3';
        gap: 30px;
    }
}

@media screen and (max-width: 400px) {
   .top-item .top-img{
        width: 270px;
        height:  270px;
    }
}

@media screen and (max-width: 320px) {
    .top-text{
        width: 90%;
    }
 }







.footer{
    background: var(--color-brown);
    color: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-header{
    text-align: center;
}
.footer-header p{
    text-align: center;
}

.icon-footer{
    width: 30px;
}
.contact-footer{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.contact-footer .cf{
    display: flex;
    gap: 25px;
}
.right-box,
.letf-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.letf-box a{
    color: #fff;
}
.footer .contact-footer p{
    font-size: clamp(18px, 2.5vw, 2.5vh);
}

svg{
    fill: #fff;
}

@media screen and (max-width: 950px) {
    .contact-footer{
        flex-direction: column;
    }
}
@media screen and (max-width: 650px) {
    .contact-footer .cf{
        flex-direction: column;
        gap: 10px;
    }
    .footer .contact-footer p{
        text-align: center;
    }
}
@media (max-width: 460px) {
    .letf-box{
        flex-direction: column;
    }
    .footer .contact-footer p{
        font-size: 15px;
    }
}



.form{
    display: flex;
    padding: 2rem 0;
    justify-content: center;
    gap: 150px;
}
.form .form1{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form div input{
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 10px 10px 5px;
    width: 400px;
    height: 40px;
}

.form div input:focus{
    outline: none;
}
.form:nth-child(2) .input-size{
    height: 90px;
}
.form .form2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 10px;
}
.form [type="submit"]{
    background: #fff;
    padding: .3rem 1rem;
    width: 130px;
    color: #7c5a32;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    border-radius: 1.5rem;
}


.input{
    display: flex;
    flex-direction: column;
}



@media screen and (max-width: 950px) {
    .form{  
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .form div input{
        width: 350px;
    }
}

@media screen and (max-width: 400px) {
    .form{  
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .footer{
        padding: 1rem .5rem;
    }
    .letf-box{
        flex-direction: column;
        text-align: center;
        margin-bottom: 10px;
    }
    .form div input{
        width: 250px;
    }
}

.form input::placeholder{
    color: #fff;
}



.btn-whatsapp path{
    fill: #cad745;
}
.btn-whatsapp{
    width: 50px;
    height: auto;
    position: fixed;
    z-index: 9;
    bottom: 0;
    right: 0;
    margin: 3% 2%;
    transition: .5s all;
}
.btn-whatsapp img:hover,
.icons img:hover{
    transform: scale(1.1);
}






.client{
    padding: 2rem 3rem;
    height: auto;
    width: 100%;
    display: grid;
    gap: 30px;
    justify-content: center;
    overflow: hidden;
}
.client-content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.client-item{
    width: 400px;
    min-height: 180px;
    max-height: 400px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    background: #f0ecec;
    padding: 1.5rem 1rem 1rem 1rem;
    border-radius: 1.5rem;
    
}
.client-item header p{
    font-size: 20px;
    color: #000;
    font-weight: 900;
}
.client-item p{
    font-size: 17px;
    font-weight: 600;
}

.user-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #2428a9;
    display: flex;
    justify-content: center;
    align-items: center;
}
.user-icon p{
    color: #fff !important;
    text-align: center;
}
.client-item:first-child > .header-item .user-icon{
    background: #d8b229;
}
.header-item{
    display: flex;
    align-items: center;
    gap: 10px;
}
.star{
    width: 10px;
    height: 10px;
}
.stars{
    display: flex;
    gap: 10px;
}

.text-item p{
    line-height: 23px;
}

.count{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.count > div{
    background: rgb(200, 200, 200);
    height: 15px;
    width: 15px;
    border-radius: 1.5rem;
}
.count .color-div{
    background: var(--color-brown);
}

@media screen and (max-width: 950px) {
    .client-content{
        flex-direction: column;
    }
    .client{
        padding: 1.5rem 0;
    }
}

@media screen and (max-width: 480px) {
    .client-item{
        width: 270px;
        max-height: 300px;
    }
    .client-header{
        text-align: center;
    }
}



.carousel-control-next,
.carousel-control-prev-icon,
.carousel-control-prev,
.carousel-control-next-icon{
    color: #000;
    background: #000;
    z-index: 9;
}













.lightbox {
    /* Default to hidden */
    display: none;
  
    /* Overlay entire screen */
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    /* A bit of padding around image */
    padding: 1em;
  
    /* Translucent background */
    background: rgba(0, 0, 0, 0.8);

    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }
  
  /* Unhide the lightbox when it's the target */
  .lightbox:target {
    display: flex;
  }
  
  .lightbox span {
    /* Full width and height */
    display: block;
    width: 80%;
    height: 80%;
    
    /* Size and position background image */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .lightbox p{
    color: #fff;
    z-index: 1;
  }

  @media screen and (max-width: 400px) {
    .lightbox span {
        width: 260px;
        height: 260px;
      }
  }

.l-b span {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
.l-b span{
    width: 100%;
    height: 100%;
}



.btn-whatsapp img{
    width: 60px;
    height: auto;
    position: fixed;
    z-index: 9;
    bottom: 4.7rem;
    right: 0;
    margin: .5rem;
    transition: .5s all;
}
.btn-whatsapp img:hover,
.icons img:hover{
    transform: scale(1.1);
}



.p-steps{
    display: flex;
    justify-content: center;
    align-items: center;
}

#modal::backdrop {
    background: #7c5a32;
}
#modal{
    transform: translateY(20px);
    margin: 0 auto;
    width: 90%;
    background: #f8f8f8;
}

.modal-content{
    height: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: none;
    padding: 1rem;
}


.modal-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(14, 50px);
    text-align: start;
    gap: 20px;
}

.modal-grid ul{
    list-style: circle;
}

.text-modal{
    width: 80% !important;
    height: 100%;
}

.ref1{
    grid-column: 1;
    grid-row: 1;
}
.ref2{
    grid-column: 2;
    grid-row: 1;
}

.ref3{
    grid-column: 1;
    grid-row: 27;
}
.ref5{
    grid-column: 1;
    grid-row: 46;
}
.ref4{
    grid-column: 2;
    grid-row: 15;
}




@media screen and (max-width: 1920px) {
    .ref3{
        grid-column: 1;
        grid-row: 6;
    }
    .ref5{
        grid-column: 1;
        grid-row: 11;
    }
    .ref4{
        grid-column: 2;
        grid-row: 4;
    }
}
@media screen and (max-width: 1440px) {
    
    .modal-grid{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(16, 50px);
        gap: 15px;
    }

    .ref3{
        grid-column: 1;
        grid-row: 7;
    }
    .ref5{
        grid-column: 1;
        grid-row: 12;
    }
    .ref4{
        grid-column: 2;
        grid-row: 4;
    }
    
} 
@media screen and (max-width: 1360px) {

    .modal-grid{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(18, 50px);
    }

    .ref3{
        grid-column: 1;
        grid-row: 7;
    }
    .ref5{
        grid-column: 1;
        grid-row: 12;
    }
    .ref4{
        grid-column: 2;
        grid-row: 4;
    }
} 
@media screen and (max-width: 1300px) {

    .modal-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 5px;
    }
    .ref3{
        grid-column: 1;
        grid-row: 10;
    }
    .ref5{
        grid-column: 1;
        grid-row: 25;
    }
    .ref4{
        grid-column: 2;
        grid-row: 10;
    }
    
} 
@media screen and (max-width: 1300px) {

    .modal-grid{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 50px;
    }
    .ref1{
        grid-column: 1;
        grid-row: 1;
    }
    .ref2{
        grid-column: 1;
        grid-row: 2;
    }
    
    .ref3{
        grid-column: 1;
        grid-row: 3;
    }
    .ref5{
        grid-column: 1;
        grid-row: 4;
    }
    .ref4{
        grid-column: 1;
        grid-row: 5;
    }
    
    
} 



.text-modal h4{
    font-weight: 700;
    font-size: 11px;
    color: var(--color-brown);

}
.text-modal p{
    font-weight: 700;
    margin-top: 20px;
    font-size: 12px;
    color: #000;
    line-height: 20px;
}
.column-m{
    display: flex;
}
.text-modal{
    width: 90%;
    margin: 0 auto;
}

.third-column-m .text-modal{
    margin: 0;
    margin-left: 50px;
}



@media screen and (max-width: 1000px) {
    .column-m{
        flex-direction: column;
    }
    .text-modal{
        width: 100%;
        text-align: justify;
    }
    .third-column-m .text-modal{
        margin: 0;
        margin-left: 0;
    }
    .text-modal h4{
        font-size: 10px;
        
    }
    .text-modal p{
        font-size: 11px;
    }
    #modal{
        width: 98%;
    }
    
}

@media (max-width: 500px) {
    .ti-widget.ti-goog .ti-reviews-container-wrapper {
        margin-right: 0;
        margin-left: 0;
    }
    .ti-widget.ti-goog .ti-review-item {
        padding: 10px !important;
    }
}