
.dl-btn {
    display: flex;
    position: relative;
    box-sizing: border-box; 
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 180px;
    margin-top: 3.5em;
    margin-bottom: 1.35em;
    transition: all 0.3s ease;
    border: 0px solid transparent;
    border-radius: 5px;
    background-image: url(../img/star-background.png), linear-gradient(-19deg, #383664, var(--accent-color), #18042c, var(--subaccent-color));
    background-position: 0, top left;
    background-size: 400px, 300%;
    box-shadow: 0 0 12px rgba(var(--rgb-subaccent-color), 0.7), inset 0 0 15px #ffffff60;
}

.dl-btn-wrap {
    display: flex;
    align-items: center;
    width: 670px;
    height: 180px;
}

.dl-character {
    margin-top: -60px;
}

.dl-arrow {
    position: absolute;
    width: 68px;
    margin-right: 10px;
    margin-left: 165px;
    opacity: 0.7;
}

.dl-text {
    margin-left: 57px;
}

.dl-title {
    margin: 0;
    transition: all 0.3s ease;
    background: linear-gradient(rgba(255,255,255,1) 30%,rgba(0,0,0,0.03) 120%);
    color: transparent;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.05;
    -webkit-background-clip: text;
}

.dl-desc {
    margin: 0;
    opacity: 0.7;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.dl-symbol {display:none;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    opacity: 0.8;
}

.dl-btn:hover {
    background-position: 0, bottom right;
    box-shadow: 0 0 15px rgba(var(--rgb-accent-color),0.7), inset 0 0 15px #ffffff60;
}

.dl-step {
    box-sizing: border-box;
    margin-bottom: 1.3em;
    padding: 1.8em;
    border-radius: 5px;
    background-color: #fff;
    background-image: linear-gradient(347deg, rgba(0, 0, 0, 0.05) 0%, rgba(255, 255, 255, 1) 90%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.dl-step h4 {
    display: flex;
    align-items: center;
    margin: 0 0 0.5em 0;
    font-weight: 700;
}

.number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 0.5em;
    padding: 5px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
}

.dl-step img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid #eee;
}

.dl-step p {
    margin: 0 0 1em 45px;
    font-size: 0.98rem;
    line-height: 1.7;
}

@media only screen and (max-width: 770px) {
    
    .dl-btn {
        padding: 20px;
    }

    .dl-btn-wrap {
        width: 470px;
    }

    .dl-arrow {
        margin-left: 0;
    }

    .dl-character {
        display: none;
    }

    .dl-text {
        margin-left: 75px;
    }
    
}

@media only screen and (max-width: 555px) {
    
    .dl-btn,
    .dl-step {
        width: 90%;
        margin-left: 5%;
    }

    .dl-btn {
        height: 150px;
    }

    .dl-title {
        font-size: 2rem;
    }

    .dl-desc {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

}