.mega {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;

    max-width: 1920px;
    padding: 150px 250px;
    margin: 0 auto;

    background-color: var(--black);
}

.mega .mega-left {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 450px;
}

.mega .mega-left hr {
    border-color: var(--white);
}

.mega .mega-left .title {
    color: var(--white);
}

.mega .mega-left .subtitle {
    font-size: 14px;
    font-weight: 300;
    font-style: oblique;
    color: var(--white);

    margin-bottom: 35px;
}

.mega .mega-left .description {
    text-align: justify;
    color: var(--white);
    margin-bottom: 35px;
}

.mega .mega-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mega .mega-right img {
    border-radius: 10px;
    border-right: 10px solid var(--yellow);
    box-shadow: 15px 15px 0 var(--blue);
}

@media only screen and (max-width: 1700px) {
    .mega {
        padding: 150px;
    }
}

@media only screen and (max-width: 1450px) {
    .mega .mega-left {
        width: 350px;
    }

    .mega .mega-right img {
        width: 450px;
    }
}

@media only screen and (max-width: 1225px) {
    .mega {
        justify-content: center;
    }

    .mega .mega-left {
        width: 100%;
    }

    .mega .mega-right {
        display: none;
    }
}

@media only screen and (max-width: 1050px) {
    .mega {
        padding: 150px 100px;
    }
}

@media only screen and (max-width: 768px) {
    .mega {
        padding: 100px 30px;
    }

    .mega .mega-left {
        align-items: center;
        width: 100%;
    }

    .mega .mega-right {
        display: none;
    }
}