html{
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
}

body, h1, h2, h3, p {
    margin: 0;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.apps {
    display: flex;
    flex-direction: column;
    max-width: 1780px;
    width: 100vw;
    padding-block: 60px;
    color: #FFFFFF;
    margin: 0 auto;
    row-gap: 40px;
}

.apps-promo {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    margin-bottom: 20px;
    margin-inline: 30px;
    column-gap: 90px;
    align-self: center;
}

.apps-promo__title {
    font-size: 60px;
    line-height: 1.4;
    color: #00AA4F;
    margin: 0;
    max-width: 800px;

    span {
        font-weight: 400;
        color: #051F1C;;
    }
}

.apps-promo__links {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    align-items: center;
}

.apps-promo__stores {
    display: flex;
    flex-direction: row;
    column-gap: 12px;
}

.apps-promo__store-icon {
    height: 48px;
    max-width: 48px;
}

.app-info {
    display: flex;
    background: linear-gradient(180deg, #00AA4F 0%, #197946 100%);
    border-radius: 60px;
    padding: 16px 30px;
}

.app-info__wrapper {
    margin-inline: auto;
    display:grid;
    grid-template-columns: 1fr fit-content(400px) 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
            "left-top phones right-top"
            "left-bottom phones right-bottom";
    gap: 40px 30px;
}

.app-info__item_left-top {
    grid-area: left-top;
    margin-top: 45px;
    text-align: right;
}

.app-info__item_left-bottom {
    grid-area: left-bottom;
    margin-bottom: 45px;
    text-align: right;
}

.app-info__item_right-top {
    grid-area: right-top;
    margin-top: 45px;
}

.app-info__item_right-bottom {
    grid-area: right-bottom;
    margin-bottom: 45px;
}

.app-info__phones {
    grid-area: phones;
    height: auto;
    width: 400px;
    align-self: center;
}

.app-info__item {
    display: flex;
    flex-direction: row;
    column-gap: 24px;
}
.app-info__item-text {
    max-width: 280px;
    min-width: 200px;
}

.app-info__title {
    font-size: 22px;
    margin-bottom: 20px;
}

.app-info__subtitle {
    font-size: 16px;
}

.app-info__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0A6F38;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .apps-promo {
        max-width: 970px;
        margin-inline: auto;
    }

    .apps-promo__title {
        font-size: 40px;
    }

    .apps-promo__links {
        display: flex;
        flex-direction: row;
        column-gap: 44px;
    }

    .app-info {
        padding: 30px 0;
    }

    .app-info__item_left-top, .app-info__item_right-top {
        margin-top: 30px;
    }

    .app-info__item_left-bottom, .app-info__item_right-bottom {
        margin-bottom: 30px;
    }

    .app-info__item-text {
        width: 200px;
    }

    .app-info__title {
        font-size: 18px;
    }

    .app-info__subtitle {
        font-size: 14px;
    }

    .app-info__icon {
        width: 40px;
        height: 40px;
    }

    .app-info__phones {
        width: 376px;
    }
}
