@font-face {
    font-family: 'LatoHigimo';
    src: url('./assets/fonts/Lato-Bold.woff2') format('woff2'),
        url('./assets/fonts/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'LatoHigimo';
    src: url('./assets/fonts/Lato-Regular.woff2') format('woff2'),
        url('./assets/fonts/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'LatoHigimo';
    src: url('./assets/fonts/Lato-Light.woff2') format('woff2'),
        url('./assets/fonts/Lato-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'LatoHigimo';
    src: url('./assets/fonts/Lato-Thin.woff2') format('woff2'),
        url('./assets/fonts/Lato-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}



:root {
    --main-background: #111122;
    --main-blue: #06284C;
    --main-color: #F9D7B2;
    --text-width: 960px;

    --font-size-xxs: 10px;
    --font-size-xs: 14px;
    --font-size-regular: 16px;
    --font-size-l: 18px;
    --font-size-regular: 22px;
    --font-size-large: 24px;
    --font-size-l: 36px;
    --font-size-l: 48px;
    --font-size-l: 64px;
    --font-size-very-large: 80px;
    --font-size-button: 18px;

    --padding-mobile: 16px;
    --padding-grid-mobile: 16px;
}

@media (min-width: 780px) {
    body {
        --font-size-button: 24px;
        --font-size-large: 32px;
        --font-size-very-large: 128px;
        --padding-mobile: 0;
        --padding-grid-mobile: 32px;
    }
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--main-background);
    color: var(--main-color);
    line-height: 1.3;
    font-weight: 300;
    font-size: 16px;
    font-family: 'LatoHigimo', 'Segoe UI', Helvetica, sans-serif;
}

a {
    color: var(--main-color);
}

p {
    margin-top: 0;
    margin-bottom: .85em;
    padding: 0;
}

.hero {
    display: flex;
    flex-direction: column;
    max-width: 730px;
    margin: 0 auto;
    padding: 36px 0;
    gap: 36px;
    text-align: center;
}

@media (min-width: 780px) {
    .hero {
        padding: 78px 0;
        flex-direction: row;
        text-align: left;
    }
}

.hero .phone-screen {
    text-align: center;
}

.hero .description {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    font-size: var(--font-size-regular);
    padding: var(--padding-mobile);
}

.hero h1 {
    font-size: var(--font-size-large);
    font-weight: 300;
    line-height: 1.1;
    margin: 0;
}
.hero .product-name {
    font-size: var(--font-size-very-large);
    line-height: 1;
    font-weight: 100;
    margin-left: -10px;
}
.hero .registration-btn {
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px 28px;
    width: fit-content;
    background: var(--main-color);
    color: var(--main-background);
    border: 1px solid var(--main-background);
    border-radius: 12px;
    font-size: var(--font-size-button);
    align-self: center;
    text-decoration: none;
}
@media (min-width: 780px) {
    .hero .registration-btn {
        padding: 18px 36px;
        align-self: flex-start;
    }
}
.problem-description {
    padding: 36px var(--padding-mobile);
    max-width: var(--text-width);
    margin: 0 auto;
    font-size: var(--font-size-large);
}
@media (min-width: 780px) {
    .problem-description {
        padding: 152px var(--padding-mobile);
    }
}

.grid {
    display: grid;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: start;
    padding: var(--padding-grid-mobile);
}

.grid .cell {
    background-color: var(--main-blue);
    border-radius: 24px;
    padding: 24px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 780px) {
    .grid .cell {
        padding: 32px;
        border-radius: 36px;
    }
}
.grid .cell-header {
    font-weight: 400;
}

.grid p+p {
    margin-top: -16px;
}



.grid.assistent {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 170px);
    gap: 16px;
}
@media (min-width: 780px) {
    .grid.assistent {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(5, 125px);
        gap: 36px;
    }
}
.cell.margination {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}
@media (min-width: 780px) {
    .cell.margination {
        grid-row: 1 / 3;
        grid-column: 1 / 2;
    }
}
.cell.proactive {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
    gap: 36px;
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) calc(100% - 36px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (min-width: 780px) {
    .cell.proactive {
        grid-row: 1 / 5;
        grid-column: 2 / 4;
        background-image: url(./assets/telegram.png);
    }
}
.cell.disbalance {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    gap: 16px;
}
@media (min-width: 780px) {
    .cell.disbalance {
        grid-row: 1 / 3;
        grid-column: 4 / 5;
    }
}
.cell.energy {
    grid-row: 4 / 6;
    grid-column: 1 / 3;
    background-image: url('./assets/shadow.png');
    background-repeat: no-repeat;
    background-position: 0 calc(100% - 16px);
    padding-left: 40%;
    background-size: 65%;
}
@media (min-width: 780px) {
    .cell.energy {
        grid-row: 3 / 6;
        grid-column: 1 / 2;
        padding-left: 32px;
    }
}
.cell.network {
    grid-row: 6 / 7;
    grid-column: 1 / 3;
}
@media (min-width: 780px) {
    .cell.network {
        grid-row: 5 / 6;
        grid-column: 2 / 4;
    }
}
.cell.heart {
    grid-row: 7 / 9;
    grid-column: 1 / 3;
    background-color: #ffd5ac;
    background-image: url('./assets/hand-heart.png');
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: contain;
}
@media (min-width: 780px) {
    .cell.heart {
        grid-row: 3 / 6;
        grid-column: 4 / 5;
    }
}

.cell.proactive .title {
    font-size: 36px;
    line-height: 1;
    font-weight: 100;
    text-align: center;
}
@media (min-width: 780px) {
    .cell.proactive .title {
        font-size: 64px;
        margin-top: -20%;
    }
}
.cell.proactive .registration-btn {
    display: none;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    width: fit-content;
    background: var(--main-color);
    color: var(--main-background);
    border: 1px solid var(--main-background);
    border-radius: 12px;
    font-size: 16px;
}
@media (min-width: 780px) {
    .cell.proactive .registration-btn {
        display: inherit;
    }
}
.galleries {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 72px;
    margin-bottom: 72px;
}

.gallery-cards {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 100%;
    overflow: hidden;
}

.person-card {
    background-color: var(--main-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px 24px;
    gap: 24px;
    min-width: 238px;
    max-height: 350px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.person-card .avatar {
    width: 150px;
    height: 150px;
    border-radius: 270px;
}
.person-card .avatar img {
    display: block;
    width: 150px;
    height: 150px;
}
.person-card .name {
    font-size: 16px;
}
.person-card .meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
}
.person-card .effiency {
    display: flex;
    gap: 16px;
}
.person-card .score {
    font-weight: 700;
}
.person-card .score.plus {
    color: #0C9A1D;
}
.person-card .score.minus {
    color: #C03333;
}
.person-card .values {
    display: flex;
    gap: 4px;
    flex-direction: column;
}
.person-card .row {
    display: flex;
    gap: 8px;
}
.person-card .title {
    opacity: .5;
}

.meet {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background-color: var(--main-blue);
    min-width: 300px;
    max-width: 300px;
    min-height: 122px;
    border-radius: 6px;
    box-sizing: border-box;
}
.meet .meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.meet .scores {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.meet .score {
    font-weight: 700;
}
.meet .score.plus {
    color: #0C9A1D;
}
.meet .score.minus {
    color: #C03333;
}

.grid.how-work {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(27, 150px);
    gap: 16px;
    margin-top: 36px;
    margin-bottom: 36px;
}
@media (min-width: 780px) {
    .grid.how-work {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(14, 150px);
        gap: 36px;
        margin-top: 128px;
        margin-bottom: 128px;
    }
}

.cell.write-meet {
    grid-row: 1 / 4;
    grid-column: 1 / 3;
    position: relative;
}
@media (min-width: 780px) {
    .cell.write-meet {
        grid-row: 1 / 4;
        grid-column: 1 / 3;
    }
}
.write-meet-picture {
    max-width: calc(100% + 20px * 2);
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.cell.network-no-card {
    grid-row: 4 / 6;
    grid-column: 1 / 3;
    background-image: url('./assets/notification.png');
    background-repeat: no-repeat;
    background-position: 16px calc(100% - 16px);
    background-size: contain;
}
@media (min-width: 780px) {
    .cell.network-no-card {
        grid-row: 1 / 3;
        grid-column: 3 / 5;
    }
}

.cell.for-everywere {
    grid-row: 6 / 9;
    grid-column: 1 / 3;
    background-image: url('./assets/plugins.png');
    background-repeat: no-repeat;
    background-position: 16px calc(100% / 3 * 2 + 50px);
    background-size: contain;
}
@media (min-width: 780px) {
    .cell.for-everywere {
        grid-row: 1 / 4;
        grid-column: 5 / 7;
    }
}

.cell.focusing {
    grid-row: 9 / 10;
    grid-column: 1 / 3;
    font-size: 22px;
    font-weight: 300;
    justify-content: center;
}
@media (min-width: 780px) {
    .cell.focusing {
        grid-row: 3 / 4;
        grid-column: 3 / 5;
        font-size: 18px;
    }
}
.cell.new-web {
    grid-row: 10 / 13;
    grid-column: 1 / 3;
    background-image: url('./assets/mind-map.png');
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: contain;
}
@media (min-width: 780px) {
    .cell.new-web {
        grid-row: 4 / 6;
        grid-column: 1 / 4;
        padding-right: calc(100% / 3 * 2 - 36px);
    }
}

.cell.response-you {
    grid-row: 13 / 15;
    grid-column: 1 / 3;
    background-color: var(--main-color);
    color: var(--main-blue);
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: 400;
}
@media (min-width: 780px) {
    .cell.response-you {
        grid-row: 4 / 5;
        grid-column: 4 / 7;
    }
}
.cell.rythm {
    grid-row: 15 / 16;
    grid-column: 1 / 3;
    font-size: 22px;
    font-weight: 300;
    justify-content: center;
}
@media (min-width: 780px) {
    .cell.rythm {
        grid-row: 5 / 6;
        grid-column: 4 / 7;
        font-size: 24px;
    }
}
.cell.intuituion {
    grid-row: 16 / 17;
    grid-column: 1 / 3;
    background-color: transparent;
    align-items: center;
    font-size: 36px;
    font-weight: 300;
    justify-content: end;
}
@media (min-width: 780px) {
    .cell.intuituion {
        grid-row: 6 / 7;
        grid-column: 1 / 7;
        font-size: 48px;
        justify-content: center;
    }
}
.cell.graph {
    grid-row: 17 / 19;
    grid-column: 1 / 3;
    background-color: transparent;
    align-items: center;
    overflow: hidden;
}
@media (min-width: 780px) {
    .cell.graph {
        grid-row: 7 / 9;
        grid-column: 1 / 7;
    }
}
.cell.graph img {
    width: stretch;
    max-width: 740px;
    min-width: 620px;
}

.cell.statistic {
    grid-row: 19 / 20;
    grid-column: 1 / 3;
    background-image: url('./assets/mirror.png');
    background-repeat: no-repeat;
    background-position: 25% 50%;
    background-size: auto 100%;
    font-size: 22px;
    font-weight: 300;
    padding-right: calc(100% / 7 * 3);
    align-items: center;
    justify-content: center;
}
@media (min-width: 560px) {
    .cell.statistic {
        background-position: 100% 50%;
    }
}
@media (min-width: 780px) {
    .cell.statistic {
        grid-row: 9 / 10;
        grid-column: 1 / 5;
        padding-right: calc(100% / 3 * 1);
        background-position: 0% 50%;
    }
}
@media (min-width: 1024px) {
    .cell.statistic {
        background-position: 100% 50%;
        font-size: 36px;
    }
}


.cell.month {
    grid-row: 20 / 21;
    grid-column: 1 / 3;
    font-size: 22px;
    font-weight: 300;
}
@media (min-width: 780px) {
    .cell.month {
        grid-row: 9 / 10;
        grid-column: 5 / 7;
    }
}

.cell.index {
    grid-row: 23 / 25;
    grid-column: 1 / 2;
    padding: 24px;
    background-image: url('./assets/emotional.png');
    background-repeat: no-repeat;
    background-size: 100% 65%;
    background-position: 100% 100%;
    font-size: 18px;
}
@media (min-width: 780px) {
    .cell.index {
        grid-row: 10 / 12;
        grid-column: 1 / 2;
        background-size: contain;
    }
}

.cell.portfolio {
    grid-row: 21 / 23;
    grid-column: 1 / 3;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 780px) {
    .cell.portfolio {
        grid-row: 10 / 12;
        grid-column: 2 / 6;
    }
}

.cell.portfolio .cell-header {
    font-size: 24px;
    font-weight: 300;
    text-align: center;
}
@media (min-width: 780px) {
    .cell.portfolio .cell-header {
        font-size: 36px;
    }
}

.portfolio__lists {
    display: flex;
    flex-direction: row;
    gap: 36px;
}
.portfolio__list:nth-child(1) .portfolio__item {
    text-align: right;
}
.portfolio__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cell.money-time {
    grid-row: 23 / 25;
    grid-column: 2 / 3;
    padding: 24px;
    background-image: url('./assets/money-time.png');
    background-repeat: no-repeat;
    background-position: 50% 80%;
    background-size: 50%;
    font-size: 18px;
}
@media (min-width: 780px) {
    .cell.money-time {
        grid-row: 10 / 12;
        grid-column: 6 / 7;
    }
}

.cell.hour {
    grid-row: 25 / 26;
    grid-column: 1 / 3;
    font-size: 18px;
    padding-right: calc(100% / 5 * 1);
    justify-content: center;
}
@media (min-width: 780px) {
    .cell.hour {
        grid-row: 12 / 13;
        grid-column: 1 / 5;
        font-size: 22px;
    }
}

.cell.silent {
    display: none;
    grid-row: 12 / 13;
    grid-column: 5 / 6;
    background-image: url('./assets/silent.png');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
@media (min-width: 780px) {
    .cell.silent {
        display: inherit;
    }
}

.cell.glory {
    display: none;
    grid-row: 12 / 13;
    grid-column: 6 / 7;
    background-image: url('./assets/glory.png');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
@media (min-width: 780px) {
    .cell.glory {
        display: inherit;
    }
}

.cell.security-icon {
    display: none;
    grid-row: 29 / 30;
    grid-column: 1 / 3;
    background-image: url('./assets/security.png');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 50%;
}
@media (min-width: 780px) {
    .cell.security-icon {
        display: inherit;
        grid-row: 13 / 15;
        grid-column: 1 / 3;
    }
}

.cell.security {
    grid-row: 26 / 28;
    grid-column: 1 / 3;
}
@media (min-width: 780px) {
    .cell.security {
        grid-row: 13 / 15;
        grid-column: 3 / 7;
    }
}
.cell.security .cell-header {
    font-size: 24px;
}
@media (min-width: 780px) {
    .cell.security .cell-header {
        font-size: 36px;
    }
}

.grid.bot-assistent {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(11, 140px);
    gap: 16px;
}
@media (min-width: 780px) {
    .grid.bot-assistent {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 140px);
        gap: 36px;
    }
}

.cell.bot-description {
    grid-row: 1 / 5;
    grid-column: 1 / 3;
    gap: 36px;
}
@media (min-width: 780px) {
    .cell.bot-description {
        grid-row: 1 / 4;
        grid-column: 1 / 3;
        gap: 36px;
    }
}

.cell.bot-description p+p {
    margin-top: -36px;
}

.cell.bot-description .buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (min-width: 780px) {
    .cell.bot-description .buttons {
        flex-direction: row;
        gap: 24px;
    }
}

.cell.bot-description .bot-registration {
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    width: fit-content;
    background: var(--main-color);
    color: var(--main-background);
    border: 1px solid var(--main-background);
    border-radius: 12px;
    font-size: 16px;
    text-decoration: none;
}

.cell.bot-description .bot-tg-button {
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    width: fit-content;
    background: var(--main-blue);
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 12px;
    font-size: 16px;
    text-decoration: none;
}

.cell.bot-description .cell-header {
    font-size: 24px;
}
@media (min-width: 780px) {
    .cell.bot-description .cell-header {
        font-size: 36px;
    }
}

.cell.long-story-short {
    grid-row: 10 / 11;
    grid-column: 1 / 3;
}
@media (min-width: 780px) {
    .cell.long-story-short {
        grid-row: 4 / 5;
        grid-column: 1 / 2;
    }
}

.cell.scoring {
    grid-row: 11 / 12;
    grid-column: 1 / 3;
}
@media (min-width: 780px) {
    .cell.scoring {
        grid-row: 4 / 5;
        grid-column: 2 / 3;
    }
}

.cell.phone-example {
    grid-row: 5 / 10;
    grid-column: 1 / 3;
    border: 3px solid var(--main-color);
    padding: 24px;
    gap: 12px;
}
@media (min-width: 780px) {
    .cell.phone-example {
        grid-row: 1 / 5;
        grid-column: 3 / 4;
    }
}

.chat {
    justify-content: flex-end;
}
.chat__message {
    color: var(--main-blue);
    padding: 6px 12px 2px 12px;
    gap: 0;
}
.chat__message--bot {
    background-color: #BBC4B3;
    margin-right: 36px;
    border-radius: 16px 16px 16px 0;
}
.chat__message--self {
    background-color: #F7D5B3;
    margin-left: 36px;
    border-radius: 16px 16px 0 16px;
}

.chat__date {
    max-width: fit-content;
    align-self: center;
    border-radius: 16px;
    padding: 2px 12px;
    font-size: 14px;
    background: #0E3C6A;
    color: #C6D7E8;
}

.chat__text {
    font-size: 14px;
}
.chat__time {
    opacity: .4;
    font-size: 10px;
    text-align: right;
}

.prices {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 96px;
    margin-bottom: 96px;
}
@media (min-width: 780px) {
    .prices {
        margin-top: 164px;
        margin-bottom: 164px;
    }
}
.prices__title {
    font-size: 48px;
    align-self: center;
}
.prices__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.prices__price {
    display: flex;
    justify-content: end;
    flex-direction: column;
    position: relative;
    color: var(--main-blue);
    background-color: var(--main-color);
    gap: 6px;
    padding: 12px;
    border-radius: 16px;
    text-decoration: none;
}
.prices__discount {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--main-blue);
    outline: 1px solid var(--main-color);
    color: #19B42B;
    border-radius: 8px;
    transform: rotate(-15deg) translate(25%, -25%);
    font-weight: 700;
    padding: 2px 5px;
    font-size: 16px;
}
.prices__old-cost {
    opacity: .5;
    line-height: .8;
    text-decoration: line-through;
    font-size: 16px;
}
.prices__cost {
    font-size: 32px;
    line-height: .8;
}
.prices__value {
    font-size: 16px;
    line-height: 1.1;
}
@media (min-width: 780px) {
    .prices__list {
        gap: 36px;
    }
    .prices__price {
        gap: 12px;
        padding: 24px;
        border-radius: 36px;
    }
    .prices__discount {
        padding: 6px 12px;
        font-size: 24px;
    }
    .prices__old-cost {
        font-size: 36px;
    }
    .prices__cost {
        font-size: 64px;
    }
    .prices__value {
        font-size: 32px;
    }
}

.grid.fast-start {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 150px);
    gap: 16px;
}
@media (min-width: 780px) {
    .grid.fast-start {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(1, 406px);
        gap: 36px;
    }
}
.cell.fast-start-description {
    grid-row: 2 / 4;
    grid-column: 1 / 3;
    font-size: 18px;
}
@media (min-width: 780px) {
    .cell.fast-start-description {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }
}
.cell.fast-start-description .cell-header {
    font-size: 36px;
}

.cell.calendar-infography {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    background-color: #f5d1a9;
    background-image: url('./assets/calendar-infography.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
}
@media (min-width: 780px) {
    .cell.calendar-infography {
        grid-row: 1 / 2;
        grid-column: 2 / 4;
        background-size: cover;
    }
}

.grid.final {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 150px);
    gap: 16px;
}
@media (min-width: 780px) {
    .grid.final {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(5, 150px);
        gap: 36px;
    }
}

.cell.big-plans {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    font-size: 24px;
    justify-content: center;
    align-items: center;
}
@media (min-width: 780px) {
    .cell.big-plans {
        grid-row: 1 / 2;
        grid-column: 1 / 5;
        font-size: 48px;
    }
}

.cell.vizualization {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
    background-image: url('./assets/vizualization.png');
    background-repeat: no-repeat;
    background-size: 35%;
    background-position: 90% 50%;
    padding-right: calc(100% / 7 * 3);
}
@media (min-width: 780px) {
    .cell.vizualization {
        grid-row: 2 / 4;
        grid-column: 1 / 2;
        background-size: 75%;
        background-position: 50% calc(100% - 24px);
        padding-right: 32px;
    }
}

.cell.servises {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
    background-image: url('./assets/servises.png');
    background-repeat: no-repeat;
    background-size: 35%;
    background-position: 90% 50%;
    padding-right: calc(100% / 7 * 3);
}
@media (min-width: 780px) {
    .cell.servises {
        grid-row: 2 / 4;
        grid-column: 2 / 3;
        padding-right: 32px;
        background-size: 70%;
        background-position: 50% calc(100% - 66px);
    }
}

.cell.assistent-perfectly {
    grid-row: 4 / 5;
    grid-column: 1 / 3;
    background-image: url('./assets/assistent-perfectly.png');
    background-repeat: no-repeat;
    background-size: 35%;
    background-position: 90% 50%;
    padding-right: calc(100% / 7 * 3);
}
@media (min-width: 780px) {
    .cell.assistent-perfectly {
        grid-row: 2 / 4;
        grid-column: 3 / 4;
        background-size: 70%;
        background-position: 50% calc(100% - 56px);
        padding-right: 32px;
    }
}

.cell.news-chanell {
    grid-row: 5 / 6;
    grid-column: 1 / 3;
    background-image: url('./assets/telegram.png');
    background-repeat: no-repeat;
    background-size: 25%;
    background-position: 90% 50%;
    padding-right: calc(100% / 7 * 3);
}
@media (min-width: 780px) {
    .cell.news-chanell {
        grid-row: 2 / 4;
        grid-column: 4 / 5;
        background-size: 55%;
        background-position: 50% calc(100% - 66px);
        padding-right: 32px;
    }
}

.cell.lets-go {
    grid-row: 6 / 9;
    grid-column: 1 / 3;
    font-size: 16px;
    align-items: center;
    text-align: center;
    justify-content: center;
}
@media (min-width: 780px) {
    .cell.lets-go {
        grid-row: 4 / 6;
        grid-column: 1 / 5;
        font-size: 24px;
    }
}

.cell.lets-go .registration-btn {
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px 28px;
    width: fit-content;
    background: var(--main-color);
    color: var(--main-background);
    border: 1px solid var(--main-background);
    border-radius: 12px;
    font-size: var(--font-size-button);
    margin-top: 24px;
    text-decoration: none;
}

.cell.lets-go .cell-header {
    font-size: 24px;
}
@media (min-width: 780px) {
    .cell.lets-go .cell-header {
        font-size: 48px;
    }
}
footer {
    display: flex;
    justify-content: center;
    padding: 24px 0 54px 0;
    gap: .5em;
    font-size: 24px;
    font-weight: 300;
}
