.flex-div {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.a-logo {
    width: 13%;
    margin: 3vw auto;
}

.logo {
    width: 100%;
}

.banner-container {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100vw;
    height: 100%;
    text-align: center;
}

.banner-content {
    text-align: center;
    padding: 5vw;
}

.banner-title {
    font-size: 3.5vw;
    margin: 1.5vw 0 3vw;
    display: block;
}

.banner-subtitle {
    font-size: 1.8vw;
    letter-spacing: 0.3vw;
}

.banner-line {
    width: 5vw;
    border: 0.3vw solid var(--primary-color);
}

.subsection-container {
    width: 100vw;
    background-color: var(--secondary-background-color);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5vw 0;
}

.subsection-title {
    font-size: 2.5vw;
    line-height: 4vw;
}

.subsection-p {
    font-size: 1.5vw;
    line-height: 2.2vw;
}

.subsection-line {
    width: 5vw;
    border: 0.35vw solid var(--primary-color);
    margin: 3vw 0;
}

.section-container {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    margin: 5vw 0;
}

.section-img {
    width: 50vw;
}

.section-content {
    display: flex;
    width: 50vw;
    flex-direction: column;
    justify-content: center;
    padding: 0 7.5vw;
}

.section-title {
    font-size: 2.8vw;
}

.section-subtitle {
    font-size: 1.75vw;
    margin-top: 0.5vw;
}

.section-line {
    width: 10vw;
    border: 0.15vw solid var(--primary-color);
    margin: 3vw 0;
}

.section-p {
    font-size: 1.45vw;
    line-height: 2vw;
    text-align: justify;
    margin: 0;
}

.black-bg {
    background-color: var(--secondary-background-color);
    color: white;
}

.vuela-container {
    width: 80vw;
    text-align: center;
    padding-bottom: 20vw;
}

.vuela-title {
    font-size: 3.5vw;
    letter-spacing: 0.5vw;
    margin-bottom: 5vw;
    display: block;
}

.vuela-content {
    width: 80vw;
    position: relative;
}

.vuela-img {
    position: absolute;
    width: 40vw;
    top: 7.5vw;
    left: 0;
}

.gray-bg {
    width: 60vw;
    margin-left: 20vw;
    padding: 7.5vw 3vw 7.5vw 23vw;
    text-align: justify;
    background-color: #f3f3f3;
}

.vuela-p {
    font-size: 1.13vw;
    line-height: 1.8vw;
    margin: 0 0 2vw 0;
}

.experiencia-container {
    width: 80vw;
    margin: 5vw 0;
}

.experiencia-line {
    width: 5vw;
    border: 0.3vw solid var(--primary-color);
    margin: 3vw 0;
}

.card-container {
    display: flex;
    width: 80vw;
    gap: 2vw;
    margin-bottom: 5vw;
}

.card {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 39vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-img {
    width: 100%;
}

.card-p {
    font-size: 1.5vw;
    line-height: 2vw;
    margin: 3vw 5vw;
}

.contact {
    margin: 5vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100vw;
}

.contact-title {
    font-size: 2.5vw;
}

.contact-p {
    font-size: 1.6vw;
    line-height: 2.2vw;
    width: 70vw;
}

.contact-a {
    display: inline-block;
    margin-top: 1vw;
    font-size: 1.8vw;
    padding: 1.4vw 2.6vw;
    letter-spacing: 0.2vw;
    border: solid 0.1vw black;
    border-radius: 3vw;
}

.footer {
    background-color: var(--secondary-background-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.isotipo {
    margin: 3vw;
    width: 3vw;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: 0 12.5vw;
    padding-bottom: 7vw;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    width: 25%;
}

.footer-title {
    font-size: 1.5vw;
    color: var(--primary-color);
}

.footer-subtitle {
    font-size: 1.2vw;
    color: white;
}

.footer-a {
    font-size: 1.4vw;
    color: white !important;
    font-family: var(--bold-font);
}

.social {
    width: 3vw;
    margin: 1vw 0.5vw;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
}

.form>input {
    font-size: 1.2vw;
    padding: 0.6vw 1vw;
    background-color: var(--secondary-background-color);
    color: white;
    border: solid 0.1vw white;
    border-radius: 1.5vw;
}

.form>button {
    font-size: 1.2vw;
    padding: 0.6vw 1vw;
    color: var(--input-color);
    background-color: white;
    border: solid 0.1vw white;
    border-radius: 1.5vw;
}

/* .form > button:hover{
    background-color: grey;
    border: solid 0.1vw grey;
    cursor: not-allowed;
} */

.pc{
    display: block;
}

.mb{
    display: none;
}

@media (width<=425px) {
    .a-logo{
        width: 10rem;
        margin: 2rem auto 0;
    }

    .banner-content{
        z-index: 9;
        margin-top: -5rem;
        padding: 2rem 0 1rem;
        width: 100%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 1) 100%);
    }

    .banner-subtitle{
        font-size: 1rem;
        margin-bottom: 1rem;
        letter-spacing: 0.2rem;
        display: block;
    }

    .banner-title{
        font-size: 1.5rem;
    }

    .banner-line{
        width: 3rem;
        border: 0.2rem solid var(--primary-color);
    }

    .section-container {
        flex-direction: column;
        margin: 0;
    }

    .section-content {
        margin: 3rem 5%;
        width: 90%;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.2rem;
    }

    .section-p {
        font-size: 0.9rem;
        line-height: 1.4rem;
        text-align: left;
    }

    .section-line{
        width: 3rem;
        border: 0.2rem solid var(--primary-color);
        margin: 1.25rem 0;
    }

    .section-img {
        width: 100%;
    }

    .mb-reverse{
        flex-flow: column-reverse;
    }

    .vuela-container{
        width: 100%;
        padding: 0;
        margin: 3rem 0;
    }

    .vuela-title {
        font-size: 1.4rem;
    }

    /* .vuela-content {
        
    } */

    .vuela-img {
        position: absolute;
        top: unset;
        left: 10%;
        bottom: -9rem;
        width: 70%;
    }

    .gray-bg {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 3rem;
        padding-bottom: 8rem;
        width: 100%;
        margin-right: auto;
        margin-bottom: 9rem;
    }

    .gray-bg * {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .experiencia-container{
        width: 80%;
        margin: 3rem 0;
    }

    .experiencia-line{
        width: 3rem;
        border: 0.2rem solid var(--primary-color);
        margin: 1.25rem 0;
    }

    .card-container {
        flex-direction: column;
        width: 90%;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .card{
        width: 100%;
    }

    .card-p{
        font-size: 0.9rem;
        line-height: 1.4rem;
        margin: 1.5rem 0 2rem;
        width: 80%;
    }

    .subsection-container{
        width: 100%;
        padding: 3rem 0;
    }

    .subsection-title{
        font-size: 1.25rem;
        line-height: 1.8rem;
        width: 80%;
    }

    .contact{
        margin: 3rem 0;
    }

    .contact-title {
        font-size: 1.5rem;
        width: 60%;
        line-height: 2rem;
    }

    .subsection-line{
        width: 3rem;
        border: 0.2rem solid var(--primary-color);
    }

    .contact-p {
        font-size: 0.9rem;
        line-height: 1.4rem;
        width: 80%;
    }

    .contact-a {
        font-size: 1rem;
        margin: 2rem 0 1rem;
        border-radius: 2rem;
        padding: 0.5rem 2rem;
    }

    /* FOOTER */

    .isotipo{
        margin: 3rem;
        width: 2rem;
    }

    .footer-content {
		flex-direction: column;
	}

	.footer-column {
		gap: 1rem;
		width: 100%;
	}

    .footer-title{
        font-size: 1.2rem;
        margin: 1.5rem 0 0.5rem;
    }

    .footer-a{
        font-size: 1rem;
    }

    .social{
        width: 2.5rem;
    }

    .footer-subtitle{
        text-align: center;
        font-size: 1.1rem;
        line-height: 1.4rem;
    }

	.form>input,
	.form>button {
		font-size: 1.2rem;
        border-radius: 2rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
	}

    .mb{
        display: block;
    }
    
    .pc{
        display: none;
    }
}