@media only screen and (min-width: 600px) and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: start;
        height: auto;
        top: 20px;
        margin: 0 25px;
        padding: 10px 16px;
    }

    .logo__title {
        font-size: 15px;
    }

    .logo__divider {
        margin: 0 10px;
    }

    .logo__product {
        font-size: 15px;
    }

    .nav {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }

    .banner {
        height: auto;
        padding: 40px 20px 20px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .banner__section {
        height: auto;
    }

    .banner__title {
        font-size: 40px;
    }

    .banner__subtitle {
        font-size: 18px;
    }

    .banner__btn--main {
        margin-top: 10px;
    }

    .banner__btn {
        font-size: 12px;
        padding: 8px 12px 8px 14px;
    }

    .banner__btn .store-icon {
        margin-right: 10px;
    }

    .banner__mockup-section {
        margin-top: 25px;
        height: auto;
    }

    .content {
        padding: 25px;
    }

    .content__title {
        font-size: 25px;
        margin-bottom: 25px;
    }

    .content__info {
        font-size: 15px;
        line-height: 20px;
        margin: 25px 0;
    }

    .features {
        row-gap: 20px;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .feature {
        /*display: flex;*/
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        column-gap: 20px;
        max-width: 70%;
        padding: 20px 15px;
    }

    .feature__section {
        margin-right: 0;
    }

    .feature__title {
        font-size: 20px;
    }

    .feature__description {
        font-size: 14px;
        line-height: 16px;
    }

    .feature__image {
        width: 100%;
        height: auto;
    }

    .pricing__title {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .pricing__subtitle {
        margin-bottom: 25px;
    }

    .pricing__plans {
        column-gap: 25px;
    }

    .pricing-plan__header {
        padding: 15px;
    }

    .pricing-plan__section {
        padding: 15px;
    }

    .pricing-plan__price {
        font-size: 25px;
    }

    .pricing-plan__button {
        margin: 15px 0 15px 0;
    }

    .pricing-plan__button {
        font-size: 13px;
    }

    .pricing-plan-features__item p {
        font-size: 13px;
    }

    footer {
        padding: 25px 50px;
    }

    .footer-about__title {
        font-size: 14px;
    }

    .footer-links {
        margin-left: 0;
    }

    .footer__section {
        flex-direction: column;
    }

    .footer-links-group {
        margin-top: 20px;
        margin-left: 50px;
    }

    .footer-links-group:first-child {
        margin-left: 0;
    }

    .footer__copyright {
        margin-top: 20px;
    }
}