/* --------------------------------------------------- */
/* --------------------- DEFAULT --------------------- */
/* --------------------------------------------------- */

#default-section {
    background-color: #fff;
    height: fit-content;
    padding: 100px 8%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 45px;
}

.default-container,
.default-container-no-space {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 130px;
}

.default-info,
.default-info-reverse {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    gap: 35px;
    width: 100%;
}

.default-image {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.default-image img {
    border-radius: 5px;
    width: 100%;
    max-width: 550px;
}

.default-text {
    height: auto;
    width: 60%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.default-text p {
    text-align: justify;
    font-size: 16px;
    line-height: 1.6;
}

.default-text h3 {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
}


.default-info-reverse {
    flex-direction: row-reverse;
}

/* RESPONSIVITY */

/* TABLETS */

@media (max-width: 1280px) {
    #default-section {
        padding: 100px 5%;
    }
}

@media (max-width: 1024px) {
    .default-container {
        gap: 60px;
    }

    .default-info,
    .default-info-reverse {
        width: 100%;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .default-image {
        width: 100%;
    }

    .default-image img{
        min-width: 100%;
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: center;
    }

    .default-text {
        width: 100%;
        align-items: start;
        justify-content: start;
    }

    .default-info-reverse {
        flex-direction: column-reverse;
    }
}

/* SMARTPHONES */

@media (max-width: 767px) {
    .default-container {
        gap: 40px;
    }

    .default-container-no-space {
        gap: 10px;
    }

    #default-section {
        padding: 30px 8%;
    }

    .default-info,
    .default-info-reverse {
        gap: 10px;
    }

    .default-text h3 {
        margin-top: 30px;
    }
}