.v-tcp-banner {
    width: 100%;
    background: linear-gradient(90deg, #D23349 0%, #B01227 100%);
    position: relative;
    padding: 35px;
    margin-bottom: 50px;
    border-radius: 10px;
}
.v-tcp-banner *:not(a) {
    color: white;
}
.v-tcp-banner .v-content {
    max-width: 65%;
}
.v-tcp-banner .icon {
    width: auto;
    height: calc(100% - 36px);
    position: absolute;
    bottom: 2px;
    right: 52px;
}
.v-tcp-banner .title {
    max-width: 727px;
    font-weight: 700;
    font-size: 45px;
    line-height: 1;
    margin-bottom: 6px;
}
.v-tcp-banner .free {
    background: white;
    color: rgba(195, 37, 58, 1);
    text-transform: uppercase;
    font-size: inherit;
    font-weight: inherit;
    display: inline-block;
    margin-top: 8px;
}
.v-tcp-banner p {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 25px;
    max-width: 562px;
}
.v-tcp-banner .link {
    display: inline-block;
    background: white;
    padding: 23px 64px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
    color: #333333;
    border-radius: 10px;
    cursor: pointer;
}
.v-tcp-page .red-color {
    color: rgba(190, 35, 56, 1);
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.v-tcp-page h2 {
    font-size: 45px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}
.v-tcp-page .text {
    margin-bottom: 30px;
    font-size: 22px;
    color: #333;
    line-height: 1;
}

.v-tcp-page b {
    color: inherit;
    font-size: inherit;
    font-weight: 700;
}

.v-tcp-num-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 30px;
    margin-bottom: 50px;
}
.v-tcp-num-list .item {
    padding: 0 35px;
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    border: 2px solid rgba(198, 198, 198, 1);
    border-radius: 10px;
    min-height: 156px;
    gap: 30px;
}
.v-tcp-num-list .item .num {
    font-weight: 700;
    font-size: 123.986px;
    line-height: 1;
    color: #C92A40;
}
.v-tcp-num-list .item .text {
    margin-bottom: 0;
    font-size: 24px;
}


.v-tcp-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 70px;
    margin-bottom: 53px;
}
.v-tcp-info-item {
    display: grid;
    grid-template-columns: 27px 1fr;
    grid-gap: 16px;
    background: linear-gradient(90deg, #D23349 0%, #B01227 100%);
    border-radius: 10px;
    padding: 16px;
}
.v-tcp-info-item .text {
    color: white;
    margin: 0;
}
.v-tcp-info .text {
    margin: 0;
}

.v-tcp-info-item.first {
    margin-bottom: 20px;
}


.v-six-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 50px;
}
.v-six-steps .item {
    border-radius: 10px;
    border: 2.32px solid rgba(198, 198, 198, 1);
    min-width: 0;
    width: 100%;
    min-height: 397px;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    align-items: center;
    position: relative;
}
.v-six-steps .item img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    object-fit: contain;
    object-position: bottom center;
}
.v-six-steps .item * {
    text-align: center;
}
.v-six-steps .item .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #333333;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
}
.v-six-steps .item .text {
    font-size: 17px;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 13px;
    position: relative;
    z-index: 2;
}



.v-six-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 50px;
}
.v-six-links .item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    height: 300px;
    min-width: 0;
}
.v-six-links .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.v-six-links .item .name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 9px 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    color: #333333;
    position: relative;
    z-index: 2;
    border-radius: 50px;
    width: 100%;
}
@media (max-width: 1200px) {
    .v-tcp-banner .icon {
        height: calc(100% - 134px);
    }
    .v-tcp-num-list {
        grid-gap: 15px;
    }
    .v-tcp-num-list .item {
        gap: 15px;
    }
    .v-tcp-num-list .item .num {
        font-size: 96px;
    }
    .v-tcp-info {
        grid-gap: 24px;
        grid-template-columns: 1fr;
    }
    .v-six-steps,
    .v-six-links{
        grid-gap: 24px;
    }
}

@media (max-width: 1024px) {
    .v-tcp-banner .icon {
        display: none;
    }
    .v-tcp-banner .v-content {
        max-width: initial;
    }
    .v-tcp-num-list {
        grid-template-columns: 1fr;
    }
    .v-tcp-num-list .item {
        flex-direction: column;
        min-height: initial;
        padding-top: 15px;
        padding-bottom: 15px;
        justify-content: center;
    }
    .v-six-steps,
    .v-six-links{
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }
}
@media (max-width: 640px) {
    .v-tcp-banner {
        padding: 20px;
        margin-bottom: 30px;
    }
    .v-tcp-banner .title {
        font-size: 20px;
    }
    .v-tcp-banner p {
        font-size: 17px;
        margin-bottom: 30px;
    }
    .v-tcp-banner .text {
        font-size: 17px;
        margin-bottom: 15px;
    }
    .v-tcp-banner a {
        font-size: 20px;
        width: 100%;
        padding-top: 21px;
        padding-bottom: 21px;
        text-align: center;
    }
    .v-tcp-page h2 {
        font-size: 25px;
        margin-bottom: 24px;
    }

    .v-tcp-num-list {
        grid-gap: 15px;
        margin-bottom: 30px;
    }
    .v-tcp-num-list .item {
        flex-direction: column;
        gap: 5px;
    }
    .v-tcp-num-list .item .num {
        font-size: 45px;
    }
    .v-tcp-num-list .item .text {
        text-align: center;
        font-size: 17px;
    }

    .v-tcp-info {
        margin-bottom: 30px;
    }
    .v-tcp-info-item {
        padding: 10px 16px;
    }
    .v-tcp-info-item.first {
        margin-bottom: 15px;
    }
    .v-tcp-page .text {
        font-size: 17px;
    }
    .v-six-steps,
    .v-six-links {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }
    .v-six-steps .item {
        padding-top: 24px;
        min-height: 311px;
        height: 311px;
    }
    .v-six-steps .item .title {
        font-size: 15px;
        padding: 0 8px;
    }
    .v-six-steps .item .text {
        font-size: 13px;
        padding: 0 8px;
    }


    .v-six-links .item {
        height: 235px;
    }

    .v-six-links .item .name {
        font-size: 17px;
        padding: 7px 15px;
        border-radius: 40px;
    }
}

.v-tcp-page .product-item {
    margin-top: 0!important;
}