.presentation {
    max-width: 1200px;
    position: relative;
}
.presentation__text {
    z-index: 1;
    max-width: 300px;

    p {
        font-size: 32px;
        margin: 0;
    }
    h2 {
        margin: 0;
    }
}

.presentation__citation {
    position:relative;
    padding: 16px;
    border-radius: 20px;
    background-color: #FFF;
    box-shadow: 0px 4px 38px 0px rgba(0, 0, 0, 0.10);
    margin-top: 90px;
    margin-bottom: 32px;
    z-index: 2;

    p {
        margin:0;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px; /* 200% */
    }

    svg {
        position: absolute;
        right: 20px;
        top: -35px;
    }
}
.presentation__image {
    img{
        border-radius: 20px;
        width: fit-content;
    }
}
@media all and (max-width: 999px) {
    .presentation__image {
        img{
            position: relative;
            left:50%;
            transform: translateX(-50%);
        }
    }
}
@media all and (min-width: 1000px) {
    .presentation__citation {
        margin-left: 120px;
        padding-top: 32px;
        padding-bottom: 32px;
        padding-right: 91px;
        padding-left: 48px;
        width:580px;

        p {
            font-size: 18px;
            line-height: 35px; /* 200% */
        }

        svg {
            left: -88px;
            top: 17px;
            right: auto;
            width: 112px;
            height: 96px;
        }
    }

    .presentation__image{
        position: absolute;
        top: 0;
        right: 0;
    }

    .presentation__text {
        padding-top: 44px;
    }
}
@media all and (min-width: 1200px) {
    .presentation__text {
        padding-top: 44px;
        max-width: 475px;
    }
}