.marquee {
    padding: 48px 0 0;
    overflow: hidden;
}

.marquee_second {
    padding: 28px 0 44px;
    overflow: hidden;
}

.ticker {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
}

.two_lines {
    background: url(../assets/back.jpg);
    position: relative;
}

body.dark .two_lines {
    background: url(../assets/back_dark.jpg);
}

.two_lines_border {
    width: 100%;
    height: 100%;
    position: relative;
}

.two_lines:before {
    content: "";
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
    height: 2px;
    background: linear-gradient(270deg, #4D4336 0.05%, #714A27 63.49%, #8B6849 78.97%, #5E5548 98.45%);
}

.two_lines:after {
    content: "";
    position: absolute;
    top: 19px;
    width: 100%;
    left: 0;
    height: 2px;
    background: linear-gradient(270deg, #4D4336 0.05%, #714A27 63.49%, #8B6849 78.97%, #5E5548 98.45%);
}

.two_lines_border:before {
    content: "";
    position: absolute;
    bottom: 11px;
    width: 100%;
    left: 0;
    height: 6px;
    background: linear-gradient(270deg, #4D4336 0.05%, #714A27 63.49%, #8B6849 78.97%, #5E5548 98.45%);
}

.two_lines_border:after {
    content: "";
    position: absolute;
    top: 9px;
    width: 100%;
    left: 0;
    height: 6px;
    background: linear-gradient(270deg, #4D4336 0.05%, #714A27 63.49%, #8B6849 78.97%, #5E5548 98.45%);
}

body.dark .two_lines:before,
body.dark .two_lines:after,
body.dark .two_lines_border:before,
body.dark .two_lines_border:after {
    background: #877751;
}

.marquees_box {
    position: relative;
    padding: 187px 0;
}

.black_romb {
    width: 12px;
    height: 12px;
    transform: rotate(-45deg);
    background: #080808;
    box-shadow: 0 2px 3px 0 #00000047;
}

body.dark .black_romb {
    background: #877751;
}

@media (max-width: 950px) {
    .marquees_box {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 565px) {
    .marquees_box {
        position: relative;
        padding: 250px 0 0;
    }
}