body {
    margin: 0;
    background-color: #f2f2f2;
}

main {
    margin: 0;
    padding-top: 5em;
    display: flex;
    flex-direction: row;
    background: linear-gradient(to right, #141E30, #243B55);
    color: #f2f2f2;
}

main .intro {
    margin: 0;
    position: relative;
    padding: 5em;
    padding-bottom: 0;
    border-radius: 10px;
    max-width: 40rem;
}

main .intro img {
    height: auto;
    width: 100%;
}

.intro .title {
    font-size: 8rem;
    color: white;
    mix-blend-mode: difference;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(42%, -55%);
}

main .description {
    padding: 5em;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.why-us,
.our-clients {
    padding: 0em 5em;
}

.why-us h1,
.our-clients h1 {
    text-align: center;
}

.why-us .description {
    padding: 2em;
}

.our-clients {
    background-color: #fff;
    border-radius: 10px;
    margin: 2em 5em;
    padding: 2em 0;
}

.our-clients .clients {
    padding-top: 2em;
    display: flex;
    justify-content: center;
    flex-direction: row;
    justify-content: space-around;
}

.our-clients .clients img {
    width: 200px;
}

@media screen and (max-width: 1026px) {
    main .intro {
        max-width: 25em;
    }

    .intro .title {
        font-size: 5rem;
        transform: translate(33%, -33%);
    }

    main .description {
        padding: 6em 3em;
    }

}

@media screen and (max-width:768px) {
    main {
        flex-direction: column;
    }

    main .intro {
        padding: 2em;
        max-width: 70%;
    }

    .intro .title {
        font-size: 3rem;
        transform: translate(13%, -60%);
    }

    main .description div {
        position: relative;
    }

    main .description {
        padding: 2em;
    }

    .why-us .description {
        padding: 2em 0;
    }

    .why-us,
    .our-clients {
        padding: 2em;
    }

    .our-clients {
        margin: 2em 2em;
    }

    .our-clients .clients {
        flex-direction: column;
        align-items: center;
    }
}