@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&family=Roboto:wght@100;300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;700&family=Open+Sans&family=Roboto:wght@500&display=swap');

.container{
    max-width: 100%;
    width: 100%;
}

.aboutUs{
    max-width: 100%;
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;

}

.content{
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f0f1f2;
    padding-bottom: 50px;
    padding-top: 150px;
}

.title-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: left;
    align-items: center;
}

.title-aboutUs{
    width: 70%;
    text-align: center;
    font-size: 2.3rem;
    margin-top: 140px;
    margin-bottom: 30px;
    padding-top: 40px;
    padding-bottom: 50px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background-color: #1736b1;
    color: whitesmoke;
    height: 140px;
}

.title-color{
    background-color: #86c7ec;
    width: 50px;
    height: 140px;
    margin-top: 110px;
}

.aboutUs-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    
}

.aboutUs-content{
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
    border: 1px solid black;
    transition: box-shadow 0.3s ease;
    padding:0px 10px 10px 10px;
    background-color: white;
}

.aboutUs-content:hover{
    box-shadow: 0 0 10px black;
    transition: 0.2s;
}

.aboutUs-content:hover .button-text-aboutUs{
    transition: 0.2s;
}

.text-aboutUs{
    width: 40%;
    text-align: justify;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

.text-aboutUs .description-aboutUs:first-of-type{
    margin-bottom: 20px;
}

.text-aboutUs .description-aboutUs:last-of-type{
    margin-bottom: 20px;
}

.sub-title-aboutUs{
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    padding-top: 20px;
    padding-bottom: 30px;
}

.img-responsive-aboutUs{
    display: none;
}

.description-aboutUs{
    font-size: 1.2rem;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.button-text-aboutUs:link, .button-text-aboutUs:active, .button-text-aboutUs:visited, .button-text-aboutUs:focus{
    color: whitesmoke;
}

.button-text-aboutUs{
    width: 260px;
    height: 48px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    transition: 0.3s ease;
    background-color: #1736b1;
}

.img-description-container{
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-description-aboutUs{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.company-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
}

.container-title-company-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.title-company-info{
    width: 70%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    margin-top: 20px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: whitesmoke;
    height: 140px;
    color: black;
}

.info{
    width: 70%;
    height: 100%;
    min-width: 800px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    padding: 20px;
}

.img-info{
    width: 100px;
    height: 80px;

}

.info-mision, .info-vision{
    width: 100%;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    height: 280px;
    background-color: white;
}

.title-objetive{
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.description-objetive{
    width: 80%;
    padding: 10px;
    text-align: justify;
    height: auto;
    font-size: 1.15rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.5;
}


@media screen and (max-width:1600px){
	.aboutUs-content{
		width:80%; 
	}
}

@media screen and (max-width:1350px){
    .aboutUs-content{
		width:90%; 
    }


}

@media screen and (max-width:1200px){
    .aboutUs-content{
        flex-direction: column;
        width: 80%;
        margin-top: 0;
    }

    .img-responsive-aboutUs{
        display: flex;
        object-fit: cover;
        width: 100%;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .img-description-aboutUs{
        display: none;
    }

    .text-aboutUs{
        width: 80%;
        justify-content: center;
        align-items: center;
    }

    .info{
        flex-direction: column;
        min-width: unset;
        width: 70%;
    }
}

@media screen and (max-width:1000px){

    .content{
        padding-top: 50px;
    }

    .text-aboutUs{
        width: 90%;
    }

    .aboutUs-content{
        width:100%;
        margin-top: 80px;
    }

    .info{
        width: 100%;
        height: 650px;
    }
}

@media screen and (max-width:600px){
    .title-aboutUs{
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
    }
    
    .aboutUs-content{
        border: 0;
    }

    .text-aboutUs{
        width: 100%;
    }

    .title-color{
        height: 90px;
    }

    .sub-title-aboutUs{
        font-size: 1.3rem;
    }

    .description-aboutUs{
        font-size: 1rem;
    }

    .title-company-info{
        margin-top: 10px;
        font-size: 1.5rem;
        height: 80px;
    }

    .button-text-aboutUs:link, .button-text-aboutUs:active, .button-text-aboutUs:visited, .button-text-aboutUs:focus{
        color: white;
    }

    .button-text-aboutUs{
        background-color: #1736b1;
        transition: 0.2s;
    }

}

@media screen and (max-width:500px){
	.aboutUs-content{
        margin-top: 20px;
    }
}