        @media (max-width: 720px) {
            div.image-with-text {
                flex-direction: column !important;
                padding: 10px 20px;
            }

            div.image-with-text > .main-image img {
                width: 88% !important;
            }

            div.image-with-text > .main-text .sub-title {
                margin-bottom: 18px !important;
                margin-top: 26px !important;
            }
            
            div.image-with-text > .main-text ul li {
                line-height: 20px !important;
                margin-bottom: 11px !important;
                background-size: 49px 46px !important;
                padding-left: 68px !important;
            }
        }

        div.image-with-text {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2% 5%;
        }

        div.image-with-text > .main-image {
            flex: 0.5;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        div.image-with-text > .main-image img {
            width: 22vw;
        }

        div.image-with-text > .main-text {
            flex: 1;
        }

        div.image-with-text > .main-text .sub-title {
            font-family: Gilroy-Bold;
            font-size: calc(16px + 1.3vw); /* didnt like 44 */
            margin-bottom: 30px;
        }

        div.image-with-text > .main-text ul {
            list-style-type: none;
        }

        div.image-with-text > .main-text ul li {
            background-image: url(../../images/main/two_coffee_bean.svg);
            background-repeat: no-repeat;
            background-position: 0 center;
            font-family: Gilroy-Light;
            word-break: break-word;
            max-width: 550px;
            background-size: 56px 56px;
            background-size: 4vw;
            padding-left: 5.3vw;
            line-height: 145%;
            font-size: calc(15px + 0.6vw); /* vs 23 */
            margin-bottom: 3%;
        }
