/*=====================================
YOU CAN WRIGHT CUSTOME CSS
======================================*/
*{scroll-behavior:smooth;}

.text-10 {
    font-size: 10px !important;
}

.text-13 {
    font-size: 13px !important;
}

.text-14 {
    font-size: 14px !important;
}

.text-15 {
    font-size: 15px !important;
}

.text-20 {
    font-size: 20px !important;
}

.text-25 {
    font-size: 25px !important;
}

.text-30 {
    font-size: 30px !important;
}

.text-35 {
    font-size: 35px !important;
}

.text-40 {
    font-size: 40px !important;
}

.text-45 {
    font-size: 45px !important;
}

.text-50 {
    font-size: 50px !important;
}

.text-55 {
    font-size: 55px !important;
}

.text-60 {
    font-size: 60px !important;
}

.text-65 {
    font-size: 65px !important;
}

.text-70 {
    font-size: 70px !important;
}

.text-75 {
    font-size: 75px !important;
}

.text-80 {
    font-size: 80px !important;
}

.text-85 {
    font-size: 85px !important;
}

.text-90 {
    font-size: 90px !important;
}

.text-95 {
    font-size: 95px !important;
}

.text-100 {
    font-size: 100px !important;
}

.text-dark{
    color: #212529;
}

/* Pop Up */
.modal {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    animation: modal 2s 2s forwards;
    visibility: hidden;
    opacity: 0;
}

.contenido {
    margin: auto;
    width: 35%;
    height: 35%;
    background: white;
    border-radius: 10px;
}

#cerrar {
    display: none;
}

#cerrar+label {
    position: fixed;
    color: #fff;
    font-size: 25px;
    z-index: 9999;
    background: #ff0000;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    right: 350px;
    top: 150px;
    cursor: pointer;
    animation: modal 2s 2s forwards;
    visibility: hidden;
    opacity: 0;
}

#cerrar+label::before{
    border: 0px;
    background-color: transparent;
}

#cerrar:checked+label,
#cerrar:checked~.modal {
    display: none;
}

@keyframes modal {
    100% {
        visibility: visible;
        opacity: 1;
    }
}
/* Pop Up */