.main-content {
    display: block;
}

.hero__inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 40px 15px 40px 15px;
}

@media (min-width: 1400px) {
    .hero__inner-wrap {
        padding-top: 300px;
        padding-bottom: 200px;
    }
}

.hero__image-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.hero__image-wrap::after {
    content: "";
    top: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.588);
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__title {
    max-width: 920px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
    margin: 0 0 34px 0;
    font-weight: 600;
    text-shadow: 1px 26px 52px #000000;
}

.hero__list {
    min-width: 330px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 0 55px 0;
    z-index: 1;
}

@media (min-width: 1200px) {
    .hero__list {
        position: relative;
        margin: 0 0 140px 0;
        z-index: 1;
        gap: 15px;
        font-size: 22px;
    }
}
.hero__item {
    color: var(--white);
}

.hero__item::marker {
    color: #f26dc4;
}

.hero__deskription-list {
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0;
}

.hero__deskription-list dt {
    display: inline-flex;
    color: #f26dc4;
}
@media (min-width: 1200px) {
    .hero__deskription-list dt {
        font-size: 22px;
    }
}

.hero__deskription-list dd {
    width: 100%;
    max-width: 630px;
    color: var(--white);
    margin: 0;
}
@media (min-width: 1200px) {
    .hero__deskription-list dd {
        font-size: 22px;
    }
}

/* problems-section */
.problems {
    background-color: #000000;
}

.problems__inner-wrap {
    padding: 40px 15px 40px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1200px) {
    .problems__inner-wrap {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.problems__title {
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 30px 0;
}

.problems__deskription {
    text-align: center;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffffb4;
    gap: 8px;
    width: 100%;
    max-width: 700px;
}

@media (min-width: 768px) {
    .problems__deskription {
        width: 500px;
    }
}

.problems__list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .problems__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(350px, 400px));
    }
}

@media (min-width: 1200px) {
    .problems__list {
        gap: 40px;
    }
}
.problems__item {
    list-style: none;
    padding: 20px;
    background-color: #292929;
    border-radius: 14px;
}

@media (min-width: 768px) {
    .problems__item {
        min-height: 263px;
    }
}
.problems__title-list {
    color: var(--white);
    font-weight: 600;
}

@media (min-width: 768px) {
    .problems__title-list {
        font-weight: 500;
    }
}
.problems__paragraph-list {
    color: var(--white);
    opacity: 0.6;
}

/* solution-section */
.solution {
    overflow-x: hidden;
}

.solution__inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 15px 40px 15px;
}

@media (min-width: 1200px) {
    .solution__inner-wrap {
        padding-top: 100px;
        padding-bottom: 50px;
    }
}

.solution__title {
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.solution__logo {
    margin: 0px 0 40px 0;
}

.solution__title span {
    color: #f26dc4;
}

.solution__head-title {
    min-width: 200px;
    display: flex;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    color: var(--white);
    padding: 15px 10px;
}

.solution__table-header-title {
    font-weight: 700;
    font-size: 24px;
    margin: 0;
    color: var(--white);
}

.solution__table-col.solution__table-col--bg-black {
    background-color: #000000;
    color: var(--white);
}

.solution__table-col.solution__table-col--bg-pink {
    background-color: #f26dc4;
}

.solution__table-col.solution__table-col--bg-violet {
    background-color: #7651e6;
}

.solution__table-wrap {
    overflow-x: auto;
    width: 100%;
}

.solution__table {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-items: center;
}

.solution__table-col {
    padding: 16px;
    border-left: 1px solid #b3b3b3;
    border-bottom: 1px solid #b3b3b3;
}

.solution__table-col:last-child {
    border-right: 1px solid #b3b3b3;
}
.solution__table-col.solution__table-col--2 {
    background: linear-gradient(270deg, rgba(242, 109, 196, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.solution__table-col.solution__table-col--f-cecter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution__table-col:first-child {
    display: flex;
    align-items: center;
    gap: 16px;
}

.solution__table-row {
    display: grid;
    grid-template-columns: minmax(235px, 400px) 400px 400px;
    grid-column: 1 / -1;
}

.solution__table-title {
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    color: #000000;
}

.solution__table-title.solution__table-title--mrg {
    margin: 0 0 8px 0;
}

.solution__table-heading-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}
.solution__table-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    min-width: 48px;
    height: 48px;
    border-radius: 8px;
}

/* aspect-section */

.aspect__inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px 40px 15px;
}
.aspect__title {
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.aspect__title span {
    color: #f26dc4;
}
.aspect__text-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .aspect__text-wrap {
        max-width: 1200px;
        flex-direction: row;
        align-items: center;
    }
}

.aspect__paragraph-wrap {
    padding: 20px;
}

.aspect__paragraph--bg-color {
    background-color: #7651e6;
}

.aspect__paragraph--color {
    color: var(--white);
}
.aspect__subtitle {
    font-weight: 700;
    font-size: 16px;
    color: #f26dc4;
    margin: 0 0 8px 0;
}

/* comparison-section */
.comparison {
    overflow-x: hidden;
}

.comparison__inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 15px 40px 15px;
}

@media (min-width: 1200px) {
    .comparison__inner-wrap {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.comparison__title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.comparison__deskription {
    text-align: center;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
    gap: 8px;
}

.comparison__table-wrap {
    overflow-x: auto;
    width: 100%;
}

.comparison__table {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-items: center;
}

.comparison__table-col {
    padding: 20px;
    border-left: 1px solid #b3b3b3;
    border-bottom: 1px solid #b3b3b3;
}

.comparison__table-col:last-child {
    border-right: 1px solid #b3b3b3;
}

.comparison__table-col.comparison__table-col--2 {
    background: linear-gradient(270deg, rgba(242, 109, 196, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.comparison__table-col.comparison__table-col--2 .comparison__subtitle {
    font-weight: 700;
}

.comparison__table-col.comparison__table-col--2 .comparison__table-item {
    font-weight: 700;
}

.comparison__table-row--1 .comparison__table-col {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.comparison__table-col.comparison__table-col--bg-black {
    background-color: #000000;
}

.comparison__table-head-title {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    margin: 0;
}

.comparison__subtitle.comparison__subtitle--icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

.comparison__subtitle.comparison__subtitle.comparison__subtitle--icon::before {
    content: "";
    position: relative;
    display: block;
    border-radius: 100%;
    width: 12px;
    height: 12px;
    background: url("../../assets/images/icon/marker-cross.svg") no-repeat center;
}

.comparison__table-row {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    grid-column: 1 / -1;
}

.comparison__table-list {
    padding: 0;
    margin: 0;
}

.comparison__table-item {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison__table-item::before {
    content: "";
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    background: url("../../assets/images/icon/marker.svg") no-repeat center;
}

/*  guarantees-section */
.guarantees {
    background-color: #000000;
}
.guarantees__inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 40px 15px 40px 15px;
}

.guarantees__subtitle {
    text-align: center;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    gap: 20px;
    font-weight: 500;
    width: 100%;
    max-width: 700px;
}

@media (min-width: 1200px) {
    .guarantees__inner-wrap {
        padding-top: 100px;
        padding-bottom: 100px;
        justify-content: center;
    }
}

.guarantees__head-title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 30px 0;
}

.guarantees__list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 30px;
}

@media (min-width: 992px) {
    .guarantees__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .guarantees__list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }
}

.guarantees__item {
    max-width: 390px;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1200px) {
    .guarantees__item {
        align-items: flex-start;
    }
}

.guarantees__title {
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    color: var(--white);
    margin: 0 0 10px 0;
}

@media (min-width: 1200px) {
    .guarantees__title {
        text-align: left;
    }
}

.guarantees__paragraph {
    color: var(--white);
    opacity: 0.8;
    text-align: center;
}

@media (min-width: 1200px) {
    .guarantees__paragraph {
        max-width: 390px;
        text-align: left;
    }
}

.guarantees__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    background-color: #f26dc4;
    border-radius: 30px;
    margin: 0 0 20px 0;
}

/* control-process */
.control-process__inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 15px 40px 15px;
}

@media (min-width: 1200px) {
    .control-process__inner-wrap {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.control-process__title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 30px 0;
}

@media (min-width: 1200px) {
    .control-process__title {
        margin: 0 0 50px 0;
        max-width: 750px;
    }
}

.control-process__title span {
    color: #f26dc4;
}

.control-process__list {
    margin: 0 0 50px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

@media (min-width: 1200px) {
    .control-process__list {
        margin: 0 0 70px;
    }
}

.control-process__list::before {
    content: "";
    width: 4px;
    background-color: #7651e6;
    position: absolute;
    left: 42px;
    top: 23px;
    bottom: 14%;
}

.control-process__item {
    list-style: none;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 40px;
    align-items: start;
    justify-content: start;
}

.control-process__item h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.control-process__item p {
    grid-column: 2 / 3;
}

.control-process__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 8px;
    background-color: #7651e6;
    grid-row: 1 / 3;
}

.control-process__subtitle {
    font-size: 24px;
    line-height: 130%;
    font-weight: 700;
    text-transform: uppercase;
}

/* about-technology-section */
.about-technology__inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 15px 40px 15px;
}

@media (min-width: 1200px) {
    .comparison__inner-wrap {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
.about-technology__title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 30px 0;
}
.about-technology__deskription {
    text-align: center;
    margin: 0 0 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
    max-width: 700px;
    gap: 8px;
}

@media (min-width: 991px) {
    .about-technology__content-wrap {
        display: grid;
        grid-template-columns: repeat(2, minmax(300px, 500px));
        gap: 50px;
    }
}

.about-technology__content {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    min-width: 300px;
    position: relative;
}

@media (min-width: 991px) {
    .about-technology__content::after {
        content: "";
        display: block;
        width: 2px;
        height: 40px;
        background-color: #7651e6;
        position: absolute;
        top: -50px;
    }

    .about-technology__content:first-child::after {
        right: 248px;
    }

    .about-technology__content:last-child::after {
        left: 250px;
    }

    .about-technology__content::before {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 100%;
        background-color: #7651e6;
        position: absolute;
        top: -13px;
    }

    .about-technology__content:first-child::before {
        right: 245px;
    }

    .about-technology__content:last-child::before {
        top: -13px;
        left: 247px;
    }
}

.about-technology__image-wrap {
    margin: 0 0 40px 0;
    position: relative;
}

@media (min-width: 991px) {
    .about-technology__image-wrap {
        margin: 0 0 90px 0;
    }
}

@media (min-width: 991px) {
    .about-technology__image-wrap::after {
        content: "";
        display: block;
        width: 2px;
        height: 40px;
        left: 50%;
        background-color: #7651e6;
        position: absolute;
        top: 40px;
    }
}

@media (min-width: 991px) {
    .about-technology__image-wrap::before {
        content: "";
        display: block;
        width: 552px;
        height: 2px;
        bottom: -40px;
        left: -125px;
        position: absolute;
        background-color: #7651e6;
    }
}

.about-technology__image-wrap img {
    display: block;
}
.about-technology__content-title {
    background-color: #f26dc4;
    color: var(--white);
    text-align: center;
}

.about-technology__subtitle {
    margin: 0 0 10px 0;
}

.about-technology__content-deskription {
    margin: 0;
}

.about-technology-item::marker {
    color: #f26dc4;
}

/* opportunity-map-section */
.opportunity-map__inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 40px 15px 40px 15px;
}

@media (min-width: 1200px) {
    .opportunity-map__inner-wrap {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
.opportunity-map__title {
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    font-weight: 700;
    max-width: 750px;
}

.opportunity-map__title span {
    color: #f26dc4;
}
.opportunity-map__deskription {
    text-align: center;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    width: 100%;
    max-width: 700px;
}

.opportunity-map__table-wrap {
    overflow-x: auto;
    width: 100%;
    margin: 0 0 50px 0;
}
.opportunity-map__table {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}
.opportunity-map__table-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 318px 650px;
    align-items: center;
    border-bottom: 1px solid #b3b3b3;
}
.opportunity-map__table-col:first-child {
    padding: 25px 0 25px 0;
}

.opportunity-map__table-col:last-child {
    padding: 30px 20px;
}

.opportunity-map__table-deskription {
    align-items: baseline;
    position: relative;
    padding-left: 20px;
    margin: 0;
}

.opportunity-map__table-deskription::before {
    content: "";
    position: absolute;
    display: block;
    min-width: 12px;
    height: 12px;
    top: 8px;
    left: 0px;
    background: url("../../assets/images/icon/marker.svg") no-repeat center;
}

.opportunity-map__table-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #7651e6;
    margin: 0 0 10px 0;
}
.opportunity-map__table-title {
    max-width: 318px;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    margin: 0;
}

.opportunity-map__photo-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 20px;
}

.opportunity-map__photo-wrap img {
    display: block;
}

@media (max-width: 585px) {
    .opportunity-map__photo-wrap img {
        display: none;
    }
}

@media (min-width: 998px) {
    .opportunity-map__photo-wrap {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* result-section */

.result__inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 40px 0 40px 0;
}

@media (min-width: 1440px) {
    .result__inner-wrap {
        padding: 200px 0 170px 0;
    }
}

.result__title {
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 30px 0;
    cursor: auto;
    max-width: 700px;
}

.result__deskription {
    text-align: center;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
    gap: 8px;
    width: 100%;
    max-width: 700px;
    cursor: auto;
}

.result__table-wrap {
    overflow-x: auto;
    display: block;
    width: 100%;
    counter-reset: process-list;
}
.result__table {
    display: grid;
    justify-items: center;
    width: max(100%, 1177px);
}
.result__table + .result__table {
    margin-top: 30px;
}

.result__table:first-child {
    background: linear-gradient(
        35deg,
        rgba(204, 100, 207, 1) 0%,
        rgba(118, 81, 230, 1) 50%,
        rgba(113, 48, 194, 1) 100%
    );
    padding: 44px 0 44px 0;
}

.result__table-inner-wrap {
    width: 1177px;
    margin: 0 auto;
    display: grid;
    justify-items: center;
}

.result__table-head {
    display: grid;
    grid-template-columns: 64px auto;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    justify-self: center;
    background-color: #000000;
}

.result__table-head::before {
    counter-increment: process-list;
    content: counter(process-list);
    position: relative;
    width: 64px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f26dc4;
    color: #ffffff;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    text-transform: uppercase;
    grid-row: 1/3;
}
.result__table-title {
    padding: 16px 26px 7px 26px;
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    text-transform: uppercase;
    color: #ffffff;
    cursor: auto;
}
.result__table-subtitle {
    grid-column: 2/ -1;
    padding: 0 0 16px 26px;
    color: var(--white);
}
.result__table-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.result__table-row.result__table-row--grid-col-4 {
    grid-template-columns: 269px 270px 258px 380px;
    background-color: var(--white);
}
.result__table-col {
    padding: 25px;
    border-left: 1px solid #c3c3c3;
    border-bottom: 1px solid #c3c3c3;
}

.result__table-col:last-child {
    border-right: 1px solid #c3c3c3;
}

.result__table-bottom {
    padding: 20px 0 20px 0;
    width: 100%;
    background-color: var(--white);
    text-align: center;
    border-left: 1px solid #c3c3c3;
    border-bottom: 1px solid #c3c3c3;
}

.result__table-bottom:last-child {
    border-right: 1px solid #c3c3c3;
}

.result__table-bottom p {
    color: #f26dc4;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
}
.result__image-wrap {
    margin: 30px 0 0 0;
    display: flex;
    gap: 81px;
}

/* cost-section */
.cost__inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 40px 15px 40px 15px;
}

@media (min-width: 1200px) {
    .cost__inner-wrap {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
.cost__title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 30px 0;
}
.cost__deskription {
    text-align: center;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    width: 100%;
    max-width: 700px;
}
.cost__promo-wrap {
    border-radius: 15px;
    display: grid;
    grid-template-columns: minmax(300px, 1100px);
    background: linear-gradient(
        35deg,
        rgba(204, 100, 207, 1) 0%,
        rgba(118, 81, 230, 1) 50%,
        rgba(113, 48, 194, 1) 100%
    );
}

.cost__promo-inner-wrap {
    padding: 20px;
}

@media (min-width: 998px) {
    .cost__promo-inner-wrap {
        padding: 50px 40px 50px 40px;
    }
}

.cost__promo-main-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cost__promo-image {
    margin: 0 0 20px 0;
}

@media (min-width: 500px) {
    .cost__promo-image {
        margin: 0 0 40px 0;
    }
}

.cost__promo-text-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
}
@media (min-width: 500px) {
    .cost__promo-text-inner-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .cost__promo-paragraph.cost__promo-paragraph--grid-col {
        grid-column: 2 / span 2;
        grid-row: 2 / 3;
    }
}

.cost__promo-text-inner-wrap + .cost__promo-text-inner-wrap {
    margin-top: 10px;
}

@media (min-width: 500px) {
    .cost__promo-text-inner-wrap + .cost__promo-text-inner-wrap {
        margin-top: 0;
    }
}

.cost__promo-text-inner-wrap:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

@media (min-width: 500px) {
    .cost__promo-text-inner-wrap:first-child {
        padding-bottom: 20px;
    }
}

.cost__promo-paragraph {
    color: var(--white);
    align-self: flex-start;
    font-weight: 600;
    line-height: normal;
}

@media (min-width: 500px) {
    .cost__promo-paragraph {
        font-size: 14px;
        grid-row: 1 / 3;
        align-self: center;
    }
}

@media (min-width: 992px) {
    .cost__promo-paragraph {
        font-size: 30px;
        font-weight: 700;
    }
}

.cost__promo-big-paragraph {
    font-weight: 700;
    border-radius: 15px;
    font-size: 30px;
    text-transform: uppercase;
    align-self: flex-start;
    color: var(--white);
    line-height: normal;
}

@media (min-width: 500px) {
    .cost__promo-big-paragraph {
        font-size: 34px;
        grid-column: 2 / span 2;
    }
}
@media (min-width: 992px) {
    .cost__promo-big-paragraph {
        font-size: 65px;
    }
}

.cost__list {
    margin: 0 0 20px 0;
    padding: 0 0 0px 30px;
    font-weight: 200;
}

.cost__list li br {
    display: none;
}

@media (min-width: 500px) {
    .cost__list {
        display: grid;
        grid-template-columns: repeat(3, minmax(auto, 300px));
        padding: 0;
    }

    .cost__list li:last-child {
        margin-right: 0;
    }

    .cost__list li br {
        display: block;
    }
}

@media (min-width: 768px) {
    .cost__list {
        grid-template-columns: repeat(3, minmax(auto, 400px));
    }
}

@media (min-width: 998px) {
    .cost__list {
        grid-template-columns: 330px 403px auto;
    }
}

.cost__list li {
    color: var(--white);
}

@media (min-width: 500px) {
    .cost__list li {
        margin-right: 30px;
        padding-right: 30px;
        font-size: 14px;
        list-style: none;
        border-right: 1px solid #b3b3b3;
    }
}
@media (min-width: 500px) {
    .cost__list li:last-child {
        margin-right: 0;
        border-right: 0;
    }
}

@media (min-width: 768px) {
    .cost__list li {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .cost__list li {
        font-size: 24px;
        font-weight: 400;
    }
}
.cost__promo-bottom-wrap {
    background-color: #000000;
    border-radius: 0 0 15px 15px;
    padding: 15px;
}

.cost__promo-bottom-paragraph {
    color: var(--white);
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
}

@media (min-width: 560px) {
    .cost__promo-bottom-paragraph br {
        display: none;
    }
}

@media (min-width: 992px) {
    .cost__promo-bottom-paragraph {
        font-size: 22px;
    }
}

.cost__promo-addition {
    font-weight: 200;
    font-size: 13px;
    line-height: 130%;
    grid-column: 2 / span 2;
    color: var(--white);
    display: block;
}

@media (min-width: 992px) {
    .cost__promo-addition {
        font-size: 15px;
    }
}

/* action-section */
.action__inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 40px 15px 40px 15px;
}

@media (min-width: 1200px) {
    .action__inner-wrap {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
.action__title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 30px 0;
}
.action__deskription {
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-weight: 500;
}
.action__advice-link {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 15px;
    background-color: #7651e6;
    color: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.action__advice-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

.action__link-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 40px 0;
}

@media (min-width: 585px) {
    .action__link-wrap {
        flex-direction: row;
        gap: 40px;
    }
}
.action__link {
    display: flex;
    align-items: center;
    color: #000000;
    gap: 15px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    font-size: 14px;
    text-transform: uppercase;
}

.action__link::before {
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
    left: -7px;
    top: -7px;
    width: 54px;
    height: 54px;
    background-color: #f26dc4;
    border-radius: 15px;
}
