#steps {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 68px 0 112px;
    position: relative;
    background: url(../assets/mramor.jpg);
}

body.dark #steps {
    background: url(../assets/mramor_b.jpg);
}

#steps .all_head {
    padding: 39px 16px 40px;
}

.steps_top,
.steps_bottom {
    position: absolute;
    width: 100%;
    height: 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.00) 100%);
    left: 0;
    pointer-events: none;
}

.steps_top {
    top: 0;
}

.steps_bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.steps_step {
    display: flex;
    width: 270px;
    min-width: 270px;
    height: 242px;
    padding: 8px;
    background: url(../assets/white-paper.jpg);
    box-shadow: 0px 0.915px 1.829px 0px rgba(0, 0, 0, 0.30), 0px 1.829px 5.488px 1.829px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

body.dark .steps_step {
    background: url(../assets/paper_black.jpg);
}

.step_border {
    background: linear-gradient(180deg, #4D4336 0%, #714A27 63.5%, #AA8E75 79%, #5E5548 98.5%);
    width: 100%;
    height: 100%;
    padding: 2px;
}

body.dark .step_border {
    background: #877751;
}

.step_body {
    background: url(../assets/white-paper.jpg);
    width: 100%;
    height: 100%;
    padding: 22px;
}

body.dark .step_body {
    background: url(../assets/paper_black.jpg);
}

.step_title {
    font-family: Colus;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.24px;
}

.step_text {
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.step_text a {
    text-decoration: underline;
}

.steps_scroll {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-X: scroll;
    padding: 10px 16px 30px;
    max-width: 874px;
    margin: 0 auto;
}

.social_links_item {
    background: url(../assets/social.png) center / contain no-repeat;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(1px 1px 2px #0000004d);
    transition: all 0.3s ease;
    cursor: pointer;
}

body.dark .social_links_item {
    background: url(../assets/social_b.png) center / contain no-repeat;
    filter: drop-shadow(1px 1px 2px #afafaf4d);
}

body.dark .social_links_item img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(103deg) brightness(104%) contrast(102%);
}

.social_links_item:hover {
    transform: scale(1.02);
}

#steps .social_links,
#tabs .social_links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 35px 0 0;
    gap: 20px;
}

::-webkit-scrollbar {
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #D6D6D6;
    border-radius: 20px;
    margin-left: 16px;
    margin-right: 16px;
}

body.dark ::-webkit-scrollbar-track {
    background: #2c2c2c;
}

body.dark ::-webkit-scrollbar-thumb {
    background: #877751;
}

::-webkit-scrollbar-thumb {
    background: #ACACAC;
    border-radius: 20px;
}

@media (min-width: 875px) {

    .steps_scroll {
        overflow-X: hidden;
    }
}