* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

:root{
    --colorBlanco: rgb(255,255,255);
    --colorLogo1: rgb(88,41,29);
    --colorLogo2: rgb(215,202,116);
    --colorLogo3: rgb(245,135,108);
    --colorComplementario: rgb(213,152,74);
    --colorGris: rgb(85,85,85);
    --borderBtn: 20px;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Back */
.contBack{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/backinsumos.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.filterBack{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0,0,0, .6);
}

.back{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.textBack{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.iconBack{
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.iconBack img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.textBack h1{
    width: 70%;
    font-size: 55px;
    color: var(--colorBlanco);
    margin-bottom: 25px;
}

.textBack a{
    text-decoration: none;
}

.textBack a button{
    width: 200px;
    height: 55px;
    border-top: 4px solid var(--colorBlanco);
    border-bottom: 4px solid var(--colorBlanco);
    border-left: none;
    border-right: none;
    cursor: pointer;
    background-color: transparent;
    color: var(--colorBlanco);
    font-size: 18px;
    font-weight: 550;
    overflow: hidden;
    transition: .6s;
}

.textBack a button:hover{
    border: none;
    background-color: var(--colorBlanco);
    color: var(--colorComplementario);
}

.textBack a button i{
    font-size: 17px;
    margin-left: 5px;
    color: var(--colorBlanco);
    transition: .6s transform .6s;
}

.textBack a button:hover i{
    color: var(--colorComplementario);
    transform: translate(50px);
}

@media screen and (max-width: 1550px){
    .textBack h1{
        width: 80%;
        font-size: 45px;
    }
}

@media screen and (max-width: 1280px){
    .iconBack{
        width: 110px;
        height: 110px;
    }
    .textBack h1{
        width: 85%;
        font-size: 40px;
    }
}

@media screen and (max-width: 1000px){
    .textBack h1{
        font-size: 37px;
    }
}

@media screen and (max-width: 950px){
    .iconBack{
        width: 105px;
        height: 105px;
    }
    .textBack h1{
        font-size: 31px;
    }
}

@media screen and (max-width: 650px){
    .textBack h1{
        font-size: 29px;
    }
}

@media screen and (max-width: 600px){
    .iconBack{
        width: 95px;
        height: 95px;
    }
    .textBack h1{
        font-size: 28px;
    }
    .textBack a button{
        width: 190px;
        height: 50px;
        border-top: 3.5px solid var(--colorBlanco);
        border-bottom: 3.5px solid var(--colorBlanco);
        font-size: 17px;
    }
    .textBack a button i{
        font-size: 16px;
    }
}

@media screen and (max-width: 550px){
    .iconBack{
        width: 90px;
        height: 90px;
    }
    .textBack h1{
        width: 95%;
        font-size: 26px;
    }
}

@media screen and (max-width: 500px){
    .iconBack{
        width: 88px;
        height: 88px;
    }
    .textBack h1{
        font-size: 25px;
    }
    .textBack a button{
        width: 190px;
        height: 47px;
    }
}

@media screen and (max-width: 450px){
    .iconBack{
        width: 85px;
        height: 85px;
    }
    .textBack h1{
        font-size: 22px;
    }
    .textBack a button{
        width: 180px;
        height: 45px;
        border-top: 3px solid var(--colorBlanco);
        border-bottom: 3px solid var(--colorBlanco);
        font-size: 16px;
    }
    .textBack a button i{
        font-size: 15px;
    }
}

@media screen and (max-width: 414px){
    .iconBack{
        width: 80px;
        height: 80px;
    }
    .textBack h1{
        font-size: 21px;
    }
    .textBack a button{
        width: 180px;
        height: 45px;
        border-top: 3px solid var(--colorBlanco);
        border-bottom: 3px solid var(--colorBlanco);
        font-size: 16px;
    }
    .textBack a button i{
        font-size: 15px;
    }
}

@media screen and (max-width: 375px){
    .iconBack{
        width: 75px;
        height: 75px;
    }
    .textBack h1{
        font-size: 19px;
    }
    .textBack a button{
        width: 170px;
        height: 40px;
        font-size: 15px;
    }
    .textBack a button i{
        font-size: 14px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Nosotros */
.contWe {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.contWe::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/insumos.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    z-index: 1;
}

.we {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 20px;
    z-index: 2;
}

.textWe{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contTittleWe{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titleWe{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.titleWe h2{
    font-size: 35px;
    color: var(--colorComplementario);
}

.formWe{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.formWe hr{
    width: 30%;
    height: 5px;
    border-radius: 50%;
    background-color: var(--colorComplementario);
}

.cuadradoWe{
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    position: absolute;
    border: 2.5px solid var(--colorComplementario);
}

.cuadradoWe:first-child{
    margin-left: 17px;
}

.cuadradoWe:nth-child(3){
    margin-right: 17px;
}

.descWe{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 25px;
}

.descWe p{
    width: 60%;
    font-size: 19px;
    font-weight: 400;
    color: var(--colorGris);
}

.descWe a{
    text-decoration: none;
    margin-top: 20px;
}

.descWe a button{
    width: 175px;
    height: 40px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--colorComplementario);
    color: var(--colorBlanco);
    border-radius: var(--borderBtn);
    transition: .6s;
}

.descWe a button:hover{
    transform: translateY(-10px);
}

.descWe a button i{
    font-size: 15px;
    margin-left: 5px;
    color: var(--colorBlanco);
    transition: .6s;
}

.descWe a button:hover i{
    transform: rotate(90deg);
}

@media screen and (max-width: 1280px){
    .descWe{
        margin-top: 20px;
    }
    .titleWe h2{
        font-size: 31px;
    }
    .descWe p{
        width: 70%;
        font-size: 18px;
    }
    .formWe hr{
        width: 27%;
        height: 5px;
    }
    .cuadradoWe{
        width: 15px;
        height: 15px;
    }
    .descWe a button{
        width: 170px;
        height: 35px;
        font-size: 15.5px;
    }
    .descWe a button i{
        font-size: 14.5px;
    }
}

@media screen and (max-width: 1100px){
    .titleWe h2{
        font-size: 29px;
    }
    .descWe p{
        width: 85%;
        font-size: 17px;
    }
}

@media screen and (max-width: 850px){
    .contTittleWe{
        width: 109%;
    }
    .titleWe h2{
        font-size: 27px;
    }
    .descWe p{
        width: 95%;
        font-size: 16px;
    }
    .formWe hr{
        width: 40%;
    }
}

@media screen and (max-width: 768px){
    .descWe p{
        width: 100%;
    }
    .formWe hr{
        width: 45%;
    }
}


@media screen and (max-width: 650px){
    .titleWe h2{
        font-size: 25px;
    }
    .descWe p{
        font-size: 15.5px;
    }
    .formWe hr{
        width: 40%;
        height: 4.5px;
    }
    .cuadradoWe{
        width: 15px;
        height: 15px;
    }
}

@media screen and (max-width: 625px){
    .titleWe h2{
        font-size: 23px;
    }
}

@media screen and (max-width: 600px){
    .titleWe h2{
        font-size: 22px;
    }
    .descWe p{
        font-size: 15px;
    }
}

@media screen and (max-width: 550px){
    .titleWe h2{
        font-size: 21px;
    }
    .descWe p{
        font-size: 14px;
    }
    .cuadradoWe{
        width: 13px;
        height: 13px;
    }
    .cuadradoWe:first-child{
        margin-left: 15px;
    }
    .cuadradoWe:nth-child(3){
        margin-right: 15px;
    }
}

@media screen and (max-width: 500px){
    .titleWe h2{
        font-size: 20px;
    }
    .descWe p{
        font-size: 13px;
    }
    .cuadradoWe{
        width: 12.5px;
        height: 12.5px;
    }
    .cuadradoWe:first-child{
        margin-left: 13px;
    }
    .cuadradoWe:nth-child(3){
        margin-right: 13px;
    }
    .descWe a button{
        width: 160px;
        height: 32px;
        font-size: 14px;
    }
    .descWe a button i{
        font-size: 13px;
    }
}

@media screen and (max-width: 450px){
    .titleWe h2{
        font-size: 18px;
    }
    .descWe p{
        font-size: 12.5px;
    }
    .cuadradoWe{
        width: 12px;
        height: 12px;
    }
    .cuadradoWe:first-child{
        margin-left: 13px;
    }
    .cuadradoWe:nth-child(3){
        margin-right: 13px;
    }
    .descWe a button{
        width: 150px;
        height: 30px;
        font-size: 13px;
    }
    .descWe a button i{
        font-size: 12px;
    }
}

@media screen and (max-width: 414px){
    .titleWe h2{
        font-size: 17.5px;
    }
    .descWe p{
        font-size: 12px;
        font-weight: 500;
    }
    .descWe a button{
        width: 148px;
        height: 27px;
        font-size: 13px;
    }
    .descWe a button i{
        font-size: 12px;
    }
}

@media screen and (max-width: 375px){
    .titleWe h2{
        font-size: 15px;
    }
    .descWe p{
        font-size: 11.5px;
        font-weight: 500;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Servicios */
.contServ{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(240, 240, 240);
}

.serv{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.textSev{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.textSev h3{
    font-size: 35px;
    color: var(--colorComplementario);
    margin-bottom: 5px;
}

.textSev p{
    width: 65%;
    font-size: 18px;
    color: var(--colorGris);
}

.imgServ{
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgServ img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servScroll{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.textScrollServ{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: end;
    margin: 90px 10px 80px 10px;
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
}

.textScrollServ h3{
    font-size: 35px;
    color: var(--colorComplementario);
    margin-bottom: 5px;
}

.textScrollServ p{
    width: 80%;
    font-size: 18px;
    color: var(--colorGris);
}

.textScrollServ a{
    text-decoration: none;
    margin-top: 15px;
}

.textScrollServ a button{
    width: 195px;
    height: 37px;
    border: none;
    cursor: pointer;
    font-size: 16.5px;
    font-weight: 500;
    color: var(--colorBlanco);
    border-radius: var(--borderBtn);
    background-color: var(--colorComplementario);
    transition: .6s;
}

.textScrollServ a button:hover{
    transform: translateY(-10px);
}

.textScrollServ a button i{
    font-size: 15.5px;
    margin-left: 5px;
    color: var(--colorBlanco);
    transition: .6s;
}

.textScrollServ a button:hover i{
    transform: rotate(360deg);
}

.contServInfo{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin: 10px;
}

.servicesCont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
    padding: 10px 0;
    box-shadow: 2.8px 2.8px 2.2px rgba(0, 0, 0, 0.02),
    6.7px 6.7px 5.3px rgba(0, 0, 0, 0.028),
    12.5px 12.5px 10px rgba(0, 0, 0, 0.035),
    22.3px 22.3px 17.9px rgba(0, 0, 0, 0.042),
    41.8px 41.8px 33.4px rgba(0, 0, 0, 0.05),
    100px 100px 80px rgba(0, 0, 0, 0.07);
}

.rectServ{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.iconRectServ{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.iconRectServ:hover button{
    background-color: rgb(0,0,0, .6);
    opacity: 1;
}

.iconRectServ img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.iconRectServ button{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    z-index: 2;
    transition: .6s;
}

.iconRectServ button i{
    font-size: 30px;
    color: var(--colorBlanco);
}

.textRectServ{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.textRectServ h3{
    font-size: 25px;
    color: var(--colorComplementario);
    margin: 10px 0;
}

.tableServ{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contP1,
.contP2{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin: 15px; */
}

.p1,
.p2{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p1 i,
.p2 i{
    font-size: 16px;
    color: var(--colorGris);
    margin-right: 5px;
}

.p1 p,
.p2 p{
    margin: 3px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--colorGris);
}

.imgInfoServ0,
.imgInfoServ1,
.imgInfoServ2,
.imgInfoServ3{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0; 
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 8;
    display: none;
}

.itemInfoServ{
    width: 85vh;
    height: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: relative;
    border-radius: 10px;
    padding: 40px 70px;
}

.btnServ{
    top: 20px;
    right: 20px;
    position: absolute;
    font-size: 15px;
    font-weight: 600;
    color: var(--colorBlanco);
    background-color: var(--colorComplementario);
    border-radius: 50%;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    transition: 0.6s;
}

.btnServ:hover{
    background-color: var(--colorLogo3);
}

.itemInfoServ img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.itemInfoServ a{
    text-decoration: none;
    margin-top: 10px;
    color: var(--colorComplementario);
    font-size: 17px;
    font-weight: 600;
    transition: .6s;
}

.itemInfoServ a i{
    font-size: 16px;
    margin-left: 5px;
    color: var(--colorComplementario);
    transition: .6s;
}

.itemInfoServ a:hover{
    transform: translate(10px);
}

.itemInfoServ a:hover i{
    transform: rotate(360deg);
}

.itemInfoServ p{
    width: 80%;
    text-align: center;
    margin-bottom: 10px;
    font-size: 21px;
    color: black;
}


@media screen and (max-width: 1550px){
    .textScrollServ h3{
        font-size: 32px;
    }
    .textScrollServ p{
        width: 90%;
        font-size: 18px;
    }
}

@media screen and (max-width: 1280px){
    .textSev h3{
        font-size: 31px;
    }
    .textSev p{
        width: 70%;
        font-size: 17px;
    }
    .imgServ{
        height: 35vh;
    }
    .textScrollServ h3{
        font-size: 30px;
    }
    .textScrollServ p{
        width: 95%;
        font-size: 18px;
    }
}

@media screen and (max-width: 1150px){
    .textSev h3{
        font-size: 29px;
    }
    .textSev p{
        font-size: 16px;
    }
    .textRectServ h3{
        font-size: 23px;
    }
    .textScrollServ h3{
        font-size: 28px;
    }
    .textScrollServ p{
        font-size: 17px;
    }
    .textScrollServ a button{
        width: 175px;
        height: 35px;
        font-size: 16px;
    }
    .textScrollServ a button i{
        font-size: 15px;
    }
    .p1 i,
    .p2 i{
        font-size: 15px;
    }
    .p1 p,
    .p2 p{
        font-size: 16px;
    }
}

@media screen and (max-width: 1100px){
    .textSev h3{
        font-size: 27px;
    }
    .textSev p{
        font-size: 15.5px;
    }
    .imgServ{
        height: 30vh;
    }
    .textRectServ h3{
        font-size: 23px;
    }
    .textScrollServ h3{
        font-size: 26px;
    }
    .textScrollServ p{
        font-size: 16px;
    }
    .p1 i,
    .p2 i{
        font-size: 15px;
    }
    .p1 p,
    .p2 p{
        font-size: 15px;
    }
}

@media screen and (max-width: 1050px){
    .p1 i,
    .p2 i{
        font-size: 14px;
    }
    .p1 p,
    .p2 p{
        font-size: 14px;
    }
}

@media screen and (max-width: 950px){
    .textSev h3{
        font-size: 25px;
    }
    .textSev p{
        width: 85%;
        font-size: 15px;
    }
    .imgServ{
        height: 25vh;
    }
    .textScrollServ a button{
        width: 170px;
        height: 33px;
        font-size: 15.5px;
    }
    .textScrollServ a button i{
        font-size: 14.5px;
    }
    .textScrollServ h3{
        font-size: 24px;
    }
    .textScrollServ p{
        font-size: 15px;
    }
    .textRectServ h3{
        font-size: 21px;
    }
    .p1 i,
    .p2 i{
        font-size: 11px;
    }
    .p1 p,
    .p2 p{
        font-size: 13px;
    }
}

@media screen and (max-width: 850px){
    .servScroll{
        flex-direction: column;
        align-items: center;
    }
    .textScrollServ{
        width: 95%;
        margin: 20px 0;
        top: 0px;
        align-items: center;
        text-align: center;
        position: static;
    }
    .contServInfo{
        width: 85%;
        margin-top: -30px;
    }
    .textScrollServ h3{
        font-size: 25px;
    }
    .textScrollServ p{
        font-size: 16px;
        width: 80%;
    }
    .textRectServ h3{
        font-size: 22px;
    }
    .p1 i,
    .p2 i{
        font-size: 14px;
    }
    .p1 p,
    .p2 p{
        font-size: 15px;
        font-weight: 450;
    }
}

@media screen and (max-width: 700px){
    .itemInfoServ{
        width: 95vh;
        height: 70vh;
    }
    .textSev h3{
        font-size: 24px;
    }
    .textSev p{
        width: 90%;
        font-size: 15px;
    }
    .imgServ{
        height: 25vh;
    }
    .textScrollServ h3{
        font-size: 24px;
    }
    .textScrollServ p{
        width: 85%;
        font-size: 15px;
    }
    .contServInfo{
        width: 90%;
    }
}

@media screen and (max-width: 600px){
    .contServInfo{
        width: 95%;
    }
    .iconRectServ{
        height: 170px;
    }
    .textScrollServ h3{
        font-size: 22px;
    }
    .textScrollServ p{
        width: 90%;
        font-size: 14px;
    }
    .contServInfo{
        width: 95%;
    }
    .textScrollServ a button{
        width: 170px;
        height: 30px;
        font-size: 15px;
    }
    .textScrollServ a button i{
        font-size: 14px;
    }
    .textRectServ h3{
        font-size: 20px;
    }
}

@media screen and (max-width: 650px){
    .textSev h3{
        font-size: 23px;
    }
    .textSev p{
        width: 95%;
        font-size: 14px;
    }
    .imgServ{
        height: 25vh;
    }
}

@media screen and (max-width: 550px){
    .iconRectServ{
        height: 160px;
    }
    .textSev h3{
        font-size: 22px;
    }
    .textSev p{
        font-size: 13px;
    }
    .imgServ{
        height: 23vh;
    }
    .textScrollServ h3{
        font-size: 21px;
    }
    .textScrollServ p{
        width: 95%;
        font-size: 13px;
    }
    .textScrollServ a button{
        width: 170px;
        height: 26px;
    }
    .textRectServ h3{
        font-size: 19px;
    }
    .p1 i,
    .p2 i{
        font-size: 12px;
    }
    .p1 p,
    .p2 p{
        font-size: 13px;
    }
}

@media screen and (max-width: 450px){
    .itemInfoServ{
        width: 100vh;
        height: 60vh;
    }
    .contServInfo{
        width: 100%;
    }
    .textSev h3{
        font-size: 21px;
    }
    .textSev p{
        font-size: 12.5px;
    }
    .imgServ{
        height: 21vh;
    }
    .iconRectServ{
        height: 150px;
    }
    .textScrollServ h3{
        font-size: 20px;
    }
    .textScrollServ p{
        width: 95%;
        font-size: 12.5px;
    }
    .textScrollServ a button{
        width: 165px;
        height: 28px;
        font-size: 14px;
    }
    .textScrollServ a button i{
        font-size: 13px;
    }
    .textRectServ h3{
        font-size: 18px;
    }
    .p1 i,
    .p2 i{
        font-size: 11px;
    }
    .p1 p,
    .p2 p{
        font-size: 12px;
    }
}

@media screen and (max-width: 414px){
    .textSev h3{
        font-size: 20px;
    }
    .textSev p{
        font-size: 12px;
    }
    .imgServ{
        height: 25vh;
    }
    .textScrollServ h3{
        font-size: 20px;
    }
    .textScrollServ p{
        width: 100%;
        font-size: 12px;
        font-weight: 550;
    }
    .contServInfo{
        padding: 10px;
    }
}