.historia{
    width: 100%;
    background-color: #fff;
    padding: 100px 100px;
    display: flex;
    justify-content: space-around;
}

/*---------------------------------------------------------*/

.historia_contenedor_texto{
    width: 50%;
}

.historia_contenedor_texto h3{
    font-family: "Lora", sans-serif;
    font-weight: 300;
    color: #111;
    font-size: 35px;
    text-transform: uppercase;
}


.flecha_historia{
    width: 15%;
    margin: 15px 0;
    margin-bottom: 30px;
}

.historia_contenedor_texto p{
    color: #222;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 15px;
}

/*---------------------------------------------------------*/

.historia_contenedor_img{
    width: 40%;
}

.historia_contenedor_img img{
    width: 85%;
    margin-left: 10%;
    border-radius: 5px;
    box-shadow: -30px 30px 0px var(--main-color);
    position: relative;
    z-index: 100;
}

/*////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// RESPONSIVE /////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 700px) {

   .historia{
        padding: 50px 30px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /*---------------------------------------------------------*/

    .historia_contenedor_texto{
        width: 100%;
    }

    .historia_contenedor_texto h3{
        font-size: 25px;
    }


    .flecha_historia{
        width: 20%;
    }

    .historia_contenedor_texto p{
        font-size: 13px;
        margin-bottom: 25px;
    }

    /*---------------------------------------------------------*/

    .historia_contenedor_img{
        width: 80%;
    }

    .historia_contenedor_img img{
        margin-left: 13%;
        box-shadow: -15px 15px 0px var(--main-color);
    }

}
