.hero-card {
    margin-top: 10px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    max-width: 600px;
    background: linear-gradient(104.4deg, rgba(18, 18, 18, 0.8) 77.23%, rgba(0, 61, 31, 0.496) 99.12%);
}

@media screen and (min-width: 425px) {
    .hero-card {
        margin-top: 40px;
    }
}


@media screen and (min-width: 1025px) {
    .hero-card {
        padding: 30px;
    }
}

@media screen and (min-width: 1150px) {
    .hero-card {
        padding: 30px;
        margin-top: 280px;
    }
}

.hero-card .hero-card-title {
    font-size: 1rem;
    line-height: 1;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 15px;
}

@media screen and (min-width: 375px) {
    .hero-card .hero-card-title {
        font-size: 1.3rem;
    }
}

@media screen and (min-width: 768px) {
    .hero-card .hero-card-title {
        font-size: 24px;
        line-height: 24px;
    }
}

.hero-card .hero-card-title .text-accent {
    color: #068C6E;
    font-weight: 700;
}

.hero-card .hero-card-description {
    font-size: 0.86rem;
    line-height: 1.25;
    color: #B7C6C3;
    margin-bottom: 1rem;
}

@media screen and (min-width: 375px) {
    .hero-card .hero-card-description {
        font-size: 0.6;
    }
}

@media screen and (min-width: 768px) {
    .hero-card .hero-card-description {
        font-size: 16px;
        line-height: 20px;
    }
}

.hero-card .hero-card-buttons {
    display: grid;
    gap: 1rem;
    flex-wrap: wrap;
}

@media screen and (min-width: 376px) {
    .hero-card .hero-card-buttons {
        display: flex;
    }
}

.hero-card .hero-card-buttons .btn {
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
    .hero-card .hero-card-buttons .btn {
        padding: 12px 32px;
        font-size: 15px;
    }
}

.hero-card .hero-card-buttons .btn.btn-primary {
    background: #00e1b4;
    color: #ffffff;
    border: 2px solid #00e1b4;
}

.hero-card .hero-card-buttons .btn.btn-primary:hover {
    background: #00b891;
    border-color: #00b891;
    transform: translateX(5px);
}

.hero-card .hero-card-buttons .btn.btn-primary .btn-arrow {
    transition: transform 0.3s ease;
}

.hero-card .hero-card-buttons .btn.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-card .hero-card-buttons .btn.btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-card .hero-card-buttons .btn.btn-outline:hover {
    /* background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5); */
}

.hero-btn-services {
    box-shadow: 0px 0px 2.5px 1px #046A53;

    background: radial-gradient(28.12% 78.97% at 50% 50%, rgba(5, 123, 97, 0.31) 50%, rgba(4, 106, 83, 0.31) 100%) linear-gradient(270deg, rgba(4, 106, 83, 0) 29%, rgba(4, 106, 83, 0) 70.5%);
    border-image-source: conic-gradient(from 36.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
}