@import url('style.css');

.presentacion{
    box-sizing: border-box;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
    align-items: center;
    background-color: #000;
}
.presentacion__descripcion{
    max-width:700px;
    min-width: 300px;
    margin: auto;
    margin: 20px 15px;
}

.presentacion__img{
    width: 150px;
    border-radius: 50%;
    float: right;
    position: relative;
    top: -10px;
    margin-left: 10px;
    border: solid 2px yellow;
}

.presentacion__titulo{
    font-size: 35px;
}
.presentacion__texto{
    line-height: 25px;
}
.description__objetive,
.presentacion__texto{
    text-align: justify;
}
.text--white{
    color: #fff;
    font-size: 14px;
}

.about-do{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.c-video-about{
    margin: 0 auto;
    width: 400px ;
}
.c-video-about__video{
    display: inline-block;
    border-radius: 20px;
    width: 97%;
    height: 500px;
    /*max-width: 500px;*/
    object-fit: cover;
}


.list-about--column{
    flex-direction: column;
}

.list__item--w100{
    width: 95%;
    max-width: none;
}
.item-about{
    border-radius: 10px;
    background: none;
}

.item-about--green{
    background-color: #12cc12;
}
.item-about--blue{
    background-color: rgb(43, 128, 255);
}
.item-about--pink{
    background-color: rgb(255, 43, 174);
}
.item-about--red{
    background-color: rgb(255, 43, 43);
}

.block-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    border-radius: 5px;
    background-color: #ec0b0b;
    margin-bottom: 40px;
}
.block-about{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 10px;
    background-color: #0005;
    border-radius: 10px;
}
.block__description{
    box-sizing: border-box;
    max-width: 300px;
    min-width: 150px;
    padding: 10px;
    }
.block__paragraph{
    font-size: 14px;
    text-align: justify;

}
.block__image-div{
    max-width: 170px;
    min-width: 100px;
    border-radius: 8px;
}
.block__img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (min-width:999px) {
    .list--w50{
        width: 50%;
    }
}
@media (max-width:600px) {
    .container{
        width: 98%;
    }
    .block-about{
        width: 100%;
    }
}