#introduction {}
#introduction > .content-wrapper {
    display: flex;
    align-items: center;
}
#introduction > .content-wrapper > .image {}
#introduction > .content-wrapper > .content {
    flex: 1;
    line-height: 170%;
}
#introduction > .content-wrapper > .content > .title {
    margin-bottom: 20px;
    font-weight: 700;
}
#introduction > .content-wrapper > .content > .description {
    font-weight: 300;
}

@media (min-width: 1100px) {
	#introduction { margin-top: 100px !important; }
    #introduction > .content-wrapper {
        flex-direction: row;
        column-gap: 100px;
    }
    #introduction > .content-wrapper > .image {
        height: 450px; flex: 0 0 450px;
    }
    #introduction > .content-wrapper > .image > img {
        display: block; height: 100%; width: 100%;

        object-fit: contain;
        object-position: center;
    }
    #introduction > .content-wrapper > .content {
        flex: 1;
    }
}
@media (max-width: 1099.99px) {
	#introduction { margin-top: 50px !important; }
    #introduction > .content-wrapper {
        flex-direction: column-reverse;
        row-gap: 50px;
    }
    #introduction > .content-wrapper > .content {
        text-align: center;
    }
}