
.products {
    background: #1B1D26;
    padding: 5vh 0 10vh 0;
    margin-bottom: 0;
}

.products__header {
    padding: 2.5vh 0;
}

.products__card {
    position: relative;
    background-image: url("../imgs/mainpage/products/products_card_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;

    width: 770px;
    height: 420px;
    margin-bottom: 185px;
}

.products__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 4px;
    background: linear-gradient(
            120deg,
            rgba(251, 231, 142, 0.2) 0%,
            rgba(46, 43, 35, 1) 22%,
            rgba(11, 12, 16, 1) 75%,
            rgba(251, 231, 142, 0.2) 99%
    );
    border-radius: inherit;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}


.products__card_BG_filter {
    position: absolute;
    z-index: 2;
    background: rgba(0, 0, 0, 0.79);
    border-radius: 15px;
    width: 100%;
    height: 100%;
}

.products__card_content {
    position: relative;
    z-index: 3;
}


.products__card_header {
    display: flex;
    padding: 40px 0 20px 0;
    border-bottom: 1px solid #D9D9D966;
    margin: 0 50px;
}

.cardHeader_icon_wrapper {
    margin-right: 20px;
}

.products__card_header_texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products__card_header_texts p {
    font-size: 14px;
    opacity: 0.8;
}
.products__card_header_texts h3 {
    font-size: 20px;
}

.products__card_body {
    margin: 20px 50px;
}
.products__card_body p {
    font-size: 17px;
}
.finance_card_lists_wrapper li{
    font-size: 17px;
}

.products__card_footer {
    position: absolute;
    top: 355px;
    left: 50px;

    width: 647px;
    height: 204px;

    background-image: url("../imgs/mainpage/products/products_bottom_card_bg_desktop.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.cardFooter_icon_wrapper {
    padding: 10px 40px 2px 40px;
}

.cardFooter_text_block {
    padding: 0 40px;
}
.cardFooter_text_block p {
    font-size: 19px;
    font-weight: 500;
}
.cardFooter_text_block p.example {
    margin-top: 10px;
    font-size: 15px;
}
.cardFooter_text_block b {
    font-weight: 700;
}

@media (max-width: 991px) {
    .products__card {
        width: 460px;
        height: 410px;
        margin-bottom: 185px;
    }
    .products__card_footer {
        top: 335px;
        left: 20px;

        width: 420px;
        height: 201px;

        background-image: url("../imgs/mainpage/products/products_bottom_card_bg_tablet.png");
    }

    .products__card_header {
        margin: 0 20px;
    }
    .products__card_body {
        margin: 15px 20px;
    }

    .cardHeader_icon_wrapper img {
        height: 60px;
        width: 60px;
    }
    .products__card_header_texts p {
        font-size: 10px;
        opacity: 0.8;
    }
    .products__card_header_texts h3 {
        font-size: 16px;
    }

    .products__card_body p {
        font-size: 14px;
    }
    .finance_card_lists_wrapper li{
        font-size: 14px;
    }

    .cardFooter_icon_wrapper {
        padding: 10px 20px 2px 20px;
    }
    .cardFooter_text_block {
        padding: 0 20px;
    }
    .cardFooter_text_block p {
        font-size: 14px;
    }
    .cardFooter_text_block p.example {
        font-size: 12px;
    }
}



@media (max-width: 767px) {
    .products > div {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .products__header{
        font-size: 22px;
    }

    .products__card {
        width: 300px;
        height: 450px;
        margin-bottom: 180px;
    }
    .products__card_footer {
        top: 335px;
        left: 20px;

        width: 260px;
        height: 243px;

        background-image: url("../imgs/mainpage/products/products_bottom_card_bg_mobile.png");
    }

    .cardHeader_icon_wrapper img {
        height: 50px;
        width: 50px;
    }
    .products__card_header_texts p {
        font-size: 8px;
        opacity: 0.8;
    }
    .products__card_header_texts h3 {
        font-size: 10px;
    }

    .products__card_body p {
        font-size: 12px;
    }
    .finance_card_lists_wrapper li{
        font-size: 12px;
    }

    .cardFooter_icon_wrapper {
        padding: 10px 20px 2px 20px;
    }

    .cardFooter_text_block p {
        font-size: 12px;
    }
    .cardFooter_text_block p.example {
        font-size: 9px;
    }
}
