.feature-circle {
    width: 60px;
    height: 60px;
    border: 1px white solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.features-row {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    border-bottom: 1px var(--black-medium-bg) solid;
    padding: 33px 0;
    font-size: 20px;
}

.features-row.small {
    font-size: 18px;
    grid-template-columns: 100px 1fr 100px;
    text-align: center;
}

.features-row .title-left {
    text-align: left;
}

.features-row .title-right {
    text-align: right;
}

.product-card {
    padding: 30px 30px 50px;
    max-width: 100%;
    width: 490px;
    position: relative;
    overflow: hidden;
    display: block;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid transparent;
    background-image: linear-gradient(#1c1c1c, #1c1c1c), linear-gradient(135deg, var(--blue) 0%, rgba(189, 229, 46, 0) 50%, var(--blue) 100%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    transition: transform 300ms ease-in-out;
    transform: scale(1);
}

.product-card:hover {
    transform: scale(0.98);
}

.product-card::before {
    content: '';
    background-color: rgba(150, 150, 150, 0.2);
    position: absolute;
    inset: 0;
}

.product-card.green {
    background-image: linear-gradient(#1c1c1c, #1c1c1c), linear-gradient(135deg, var(--green) 0%, rgba(189, 229, 46, 0) 50%, var(--green) 100%);
}

.product-card .card-image-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.product-card .card-image-wrapper img {
    max-width: 100%;
    height: auto;
    -webkit-box-reflect: below -5px linear-gradient(transparent 60%, rgba(255, 255, 255, 0.1));
}

.product-card .card-title {
    color: #ffffff;
    font-size: var(--custom-title-3-default);
    font-weight: 500;
    margin: 0 0 15px 0;
	display: flex;
	justify-content: space-between;
}

.product-card .card-title .price {
	font-size: 20px;
	display: flex;
	align-items: baseline;
	gap: 5px;
}

.product-card .card-title .price span {
	font-size: 32px;
	color: var(--green);
	font-weight: bold;
}

@media screen and (max-width: 1365px) {
    .product-card .card-title {
        font-size: var(--custom-title-3-1365-max);
    }
}

@media screen and (max-width: 1024px) {
    .product-card .card-title {
        font-size: var(--custom-title-3-1024-max);
    }
}

@media screen and (max-width: 767px) {
    .product-card .card-title {
        font-size: var(--custom-title-3-767-max);
    }
}

.product-card .card-description {
    margin-bottom: 30px;
    color: #ffffff;
}

.product-card .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.product-card .card-features li {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.product-card .card-features li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--blue);
    border-radius: 50%;
    margin-right: 15px;
}

.product-card.green .card-features li::before {
    background-color: var(--green);
}

.product-card .eec-btn {
    display: table;
    margin: 0 auto;
}

.product-card:hover .eec-btn .btn-wrap::before {
    transform: translateY(0);
}

.product-card:hover .eec-btn .btn-wrap {
    color: var(--blue);
    outline: 1px var(--black-dark-bg) solid;
}

.product-card.green:hover .btn-wrap {
    color: var(--green);
}

@media screen and (max-width: 1365px) {

    .features-wrapper {
        order: 1;
    }

    #eec-31 {
        order: 2;
    }

    #eec-41 {
        order: 3;
    }
}

@media screen and (max-width: 767px) {
    .product-card {
        padding: 25px 20px 30px;
    }

    .features-row {
        padding: 25px 0;
    }

    .product-card .card-image-wrapper {
        margin: 0;
    }

    .product-card .card-features {
        margin: 0 0 20px 0;
    }
}

@media screen and (max-width: 1500px) {
    .product-card .card-title {
        margin-top: -100px;
    }
}

@media screen and (max-width: 767px) {
    .product-card .card-title {
        margin-top: -50px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1365px) {
    .cards-wrapper {
        flex-wrap: wrap;
    }

    #eec-31,
    #eec-41 {
        width: calc(50% - 10px);
        display: flex;
        justify-content: center;
    }

    .features-wrapper {
        width: 100%;
        padding: 0 20%;
    }
}