@import url('./global.css');
@import url('./fonts.css');
@import url('./header.css');
@import url('./main.css');
@import url('./container.css');
@import url('./forms.css');

.main {
    padding-top: 60px;
    background-image:
        linear-gradient(to right, rgba(112, 128, 144, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(112, 128, 144, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    background-attachment: fixed;
    color: var(--binglish-blue);
}

.nosotros {
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 0px 0px 10px 0px;
    height: auto;
    overflow: hidden;
}

.container .title-section {
    font-size: Franklin;
    font-size: 25pt;
    color: var(--binglish-red);
    text-shadow: 0px 0px 1px #000;
    text-decoration:underline;
}

.text-desktop {
    display: none;
}

.image-nosotros {
    display: block;
    margin: 1rem auto;
    width: 90%;
    height: 25vh;
    border-radius: 5px;
    object-fit: cover;
}


@media screen and (min-width: 880px) {
    .nosotros {
        width: 90%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .reverse {
        display: flex;
        flex-direction: row-reverse;
    }
    .image-nosotros {
        width: 400px;
        height: auto;
    }
    .text-desktop {
        display: block;
    }
    .text-mobile {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .nosotros {
        width: 80%;
    }

    .image-nosotros {
        width: 40vw;
    }
}

@media screen and (min-width: 1500px) {
    .image-nosotros {
        width: auto;
        height: 30vh;
    }
}
