.circle{
    width: 60%;
}

.hero_estructura { 
    position: relative;
    top: -94px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
    color: white;
    overflow-x: hidden;
}

.hero_estructura::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.hero_estructura img {
    width: 105%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    object-position: bottom;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.9);
    transform: translateX(-3.7%);
}



.hero_texto_estructura {
    padding: 60px 10%;
    color: var(--greyNight);
    text-align: start;
    margin-top: -94px;
}

.hero_texto_estructura::before {
    content: "";
    display: block;
    width: 100%;
    height: 0px;
    margin-bottom: 0px;
}

.hero_texto_estructura h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--greyBlue);
    margin-bottom: 1.5rem;
}

.hero_texto_estructura h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 40px; 
    color: #22205F;
}
.hero_texto_estructura p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.circle_container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle{
    padding-left: 0px!important;
    margin: auto;
}
@media (max-width: 720px) {
    .container_history {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hero_texto2{
        padding: 0 10%;
        margin-top: -60px;
    }
    .hero_texto2 h2{
        margin-top: 0;
    }
    .container_history img{
        margin: 14px 0;
    }

    .hero_texto1{
        padding: 0 10%;
        margin-top: -60px;
    }
    .hero_texto1 p{
        font-size: 1rem;
    }
    .hero_texto1 h2{
        font-size: 1.5rem;
        text-align: start;
    }
    .hero_texto1 h2:nth-child(1){
        margin-top: 0;
    }
}

@media screen and (max-width: 500px) {
    .circle{
        width: 100%;
        padding: 0;
        padding-left:0!important;
    }
}