.advertising {
    margin-top: 120px;
}
.advertising .items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.advertising .item {
    width: 100%;
    flex-direction: column;
    height: 100%;
}
.advertising .item .head {
    display: flex;
    gap: 24px;
}
.advertising .item .head .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    background: linear-gradient(180deg, #003EF5 0%, #002FB9 100%);
    border-radius: 50%;
}
.advertising .item:nth-child(2n + 2) .head .icon {
    background: linear-gradient(180deg, #66DAF4 0%, #19B5D0 100%);
}
.advertising .item .head .name {
    font-size: 25px;
    font-weight: 600;
}
.advertising .item .head .description {
    font-size: 20px;
    margin-top: 6px;
}
.advertising .item .item-block {
    position: relative;
    background: #fff;
    box-shadow: 0px 0px 25px 0px #DBEAFE80;
    border-radius: 35px;
    overflow: hidden;
    margin-top: 18px;
    height: calc(100% - 72px);
}
.advertising .item .info {
    background: linear-gradient(180deg, #003EF5 0%, #002FB9 100%);
    border-radius: 35px;
    padding: 18px 18px 16px 26px;
}
.advertising .item:nth-child(2n + 2) .info {
    background: linear-gradient(180deg, #66DAF4 0%, #19B5D0 100%);
}
.advertising .item .info .price-block {
    border-radius: 25px;
    background: #265BF6;
    padding: 22px 35px 14px 20px;
}
.advertising .item:nth-child(2n + 2) .info .price-block {
    background: #7FDBF7;
}
.advertising .item .info .price-block .price {
    font-size: 19px;
    color: #fff;
}
.advertising .item .info .price-block .price span {
    font-size: 33px;
    font-weight: 700;
    color: #fff;
}
.advertising .item .info .price-block .txt {
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
}
.advertising .item .info .description {
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-top: 16px;
    padding-right: 16px;
}
.advertising .item .list {
    padding: 26px 34px 70px;
}
.advertising .item .list .name {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
}
.advertising .item .list ul {
    list-style: none;
    margin-top: 24px;
}
.advertising .item .list ul li {
    position: relative;
    padding-right: 38px;
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 12px;
}
.advertising .item .list ul li:before {
    content: '';
    width: 23px;
    height: 23px;
    background: #F1F9FF;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: 0;
}
.advertising .item:nth-child(2n + 2) .list ul li:before {
    background: #F1F9FF;
}
.advertising .item .list ul li:after {
    content: '';
    width: 13px;
    height: 10px;
    background-image: url('/assets/img/li-1.svg');
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 11px;
    right: 4px;
}
.advertising .item:nth-child(2n + 2) .list ul li:after {
    background-image: url('/assets/img/li-2.svg');
}
.advertising .item .list .text {
    font-size: 20px;
    font-weight: 500;
    position: absolute;
    bottom: 22px;
}
@media (max-width: 840px) {
    .advertising {
        margin-top: 60px;
        padding: 0 16px;
    }
    .advertising .items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .advertising .item .head {
        gap: 18px;
    }
    .advertising .item .head .icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
        min-height: 40px;
    }
    .advertising .item .head .icon img {
        width: 18px;
    }
    .advertising .item .head .name {
        font-size: 18px;
    }
    .advertising .item .head .description {
        font-size: 15px;
        margin-top: 4px;
    }
    .advertising .item .item-block {
        box-shadow: 0px 0px 18.49px 0px #DBEAFECC;
        border-radius: 25px;
        margin-top: 12px;
        height: auto;
    }
    .advertising .item .info {
        border-radius: 25px;
        padding: 12px 14px;
    }
    .advertising .item .info .price-block {
        border-radius: 18px;
        padding: 16px 20px 12px 14px;
    }
    .advertising .item .info .price-block .price span {
        font-size: 25px;
    }
    .advertising .item .info .price-block .txt {
        font-size: 15px;
    }
    .advertising .item .info .description {
        font-size: 15px;
        margin-top: 10px;
        padding-right: 10px;
    }
    .advertising .item .list .name {
        font-size: 16px;
    }
    .advertising .item .list {
        padding: 20px 24px 20px;
    }
    .advertising .item .list ul {
        margin-top: 18px;
    }
    .advertising .item .list ul li {
        padding-right: 28px;
        font-size: 16px;
        margin-bottom: 10px;
    }
    .advertising .item .list ul li:before {
        width: 17px;
        height: 17px;
    }
    .advertising .item .list ul li:after {
        width: 9px;
        height: 6px;
        background-size: contain;
        top: 9px;
        right: 5px;
    }
    .advertising .item .list .text {
        font-size: 15px;
        margin-top: 19px;
        position: relative;
        bottom: unset;
    }
}