.intro__header{
    display: flex;
}

.intro__header .image img{
    object-fit: cover;
    width: 100%;
}

.intro__header .text{
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-left: 20px;
}

.intro__header .text.centered{
    text-align: center;
}

.intro__header .text:not(.centered){
    text-align: left;
}

.intro__header .title{
    font-weight: bold;
    color: #73ABD8;
    font-size: 2.3333rem;
}

.intro__description{
    text-align: center;
    margin-top: 20px;
}

/* MOBILE */
@media screen and (max-width: 743px){
    .intro__header .text{
        margin-bottom: 30px;
    }
    .intro__header .title{
        margin-bottom: 10px;
    }
}

/* TABLET */
@media screen and (min-width: 743px) and (max-width: 1350px){
    .intro__header .text{
        margin-bottom: 40px;
    }

    .intro__header .title{
        margin-bottom: 20px;
    }
}

/* MOBILE + TABLET */
@media screen and (max-width: 1349px) {
    .intro__header{
        flex-direction: column-reverse;
    }

    .intro__header .image{
        width: 100%;
    }

    .intro__header .text>*{
        width: 100%;
    }
}

@media screen and (min-width: 1350px) {
    .intro__header .image{
        width: 750px;
    }

    .intro__header .text>*{
        width: 530px;
    }

    .intro__header .title{
        margin-bottom: 30px;
    }
}