.symptoms-hero {
    background: #EAE4D4;
    padding: 0px 60px;
    display: flex;
    justify-content: center;
}
.symptoms-hero-container {
    width: 100vw;
    text-align: left;
    padding: 60px 0;
}
.symptoms-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 20px;
    color: #000;
    margin-top: 0;
    text-transform: capitalize;
}
.symptoms-hero-subtext {
    font-size: 20px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 140%;
}
a.symptoms-hero-btn {
    background: #131527;
    color: #fff;
    /* border: none; */
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    /* transition: 0.2s ease; */
    text-decoration: none;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

/* a.symptoms-hero-btn::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -75px;
    width: 50px;
    height: 155px;
    background: #fff;
    opacity: 0.5;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
} */

a.symptoms-hero-btn{
    color: #fff;
}

/* hover state */
/* a.symptoms-hero-btn:hover::after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
} */

a.symptoms-hero-btn:hover {
    text-decoration: none !important;
    color: #0D7C68 !important;
    text-shadow:
    0.5px 0 0 currentColor,
   -0.5px 0 0 currentColor;
}

@media (max-width: 768px) {
    .symptoms-hero-title {
        font-size: 36px;
    }
    .symptoms-hero-subtext {
        font-size: 16px;
    }
    .symptoms-hero-container {
        text-align: left;
    }
}

@media (max-width: 425px) {
    .symptoms-hero {
        padding: 0px 20px;
    }

    .symptoms-hero-container {
        padding: 30px 0;
    }
    
    .symptoms-hero-title {
        font-size: 26px;
    }
}