.construction {
    background-image: url("../images/svg/Recurso\ 3.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding-left: calc(((100vw - var(--largest)) / 2) + 30px);
    padding-right: calc(((100vw - var(--largest)) / 2) + 30px);
    padding-top: 20px;
    padding-bottom: 100px;
    color: var(--white);
    position: relative;
    gap: 20px;
    width: 100%;
    height: 100%;
    min-height: 90vh;
}

.construction-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.construction-img {
    flex-grow: 1;
    width: 0;
    min-width: 50px;
    max-width: 30%;
    max-height: 150px;
}


.construction-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.construction-header-title {
    font-size: 30px;
    text-align: center;
}

.construction-text {
    font-size: 20px;
    text-align: center;
}

/* Media query for --large screen size */
@media screen and (max-width: 1920px) {

    .construction {
        padding: 20px;
        padding-bottom: 100px;
    }
}

/* Media query for --mobile screen size */
@media screen and (max-width: 768px) {

    .construction-header-title {
        font-size: 25px;
    }

    .construction-form-title {
        font-size: 20px;
    }

    .construction-text {
        font-size: 16px;
    }
    .construction-img {
        width: 25%;
    }

}

/* Media query for --mobile screen size */
@media screen and (max-width: 480px) {
    .construction-container {
        flex-direction: column;
    }

    .container-left,
    .container-right {
        width: 100%;
    }
}