.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    position: relative;
    padding-right: 40px;
    margin-right: 40px;
}

.brand-logo::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(85, 85, 85, 0) 0%,
            #555555 50%,
            rgba(85, 85, 85, 0) 100%);
    right: 0;
    top: 0;
}

#footer {
    padding: 30px 0;
    background-color: #fff;
}

.footer-title span {
    color: #555555;
    font-size: 14px;
    font-weight: 500;
}

.footer-title p {
    font-size: 16px;
    font-weight: 500;
}

.desclaimer p {
    font-size: 12px;
    color: #555555;
    font-weight: 500;
}

.desclaimer span {
    font-weight: 700;
}

.footer-content {
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}

.footer-content::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #555555;
    bottom: 0;
    left: 0;
}

.mb-50 {
    margin-bottom: 50px;
}

.footer-element {
    position: absolute;
    bottom: 0;
    left: -10px;
    max-width: fit-content;
    pointer-events: none;
}

.walkthrough-content .small-title,
.about-developer-content .small-title {
    margin: 0 auto;
}

.counter {
    align-items: start;
    justify-content: start;
    gap: 4px;
}

.white-bg.theme-bg-img {
    background-position: center;
}

.white-bg {
    padding: 20px;
}

.counter-block p {
    margin-top: 0;
}

.about-developer-content {
    max-width: 1420px;
    margin: 0 auto 50px;
}

.counter-icon {
    max-width: fit-content;
    margin-left: auto;
    margin-bottom: 15px;
}

.counter-block h3 {
    font-size: 50px;
    font-weight: 700;
    line-height: normal;
    font-family: 'Playfair Display';
    font-variant: lining-nums;
}

.walkthrough-img {
    max-width: fit-content;
    margin: 0 auto;
    position: relative;
}

.walkthrough-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #00000080;
    top: 0;
    left: 0;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.columns.is-variable.is-9 {
    --columnGap: 40px;
}

.specifications-points .list-point li {
    background-color: #fff;
    color: #000;
    padding: 10px 40px;
}

.list-point li.specifications::before {
    width: 26px;
    height: 32px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-header {
    position: relative;
    border-bottom: unset !important;
}

.accordion .accordion-header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(270deg, rgba(85, 85, 85, 0) 0%, #555555 50%);
    bottom: 0;
    left: 0;
}

.list-point li:not(:last-child) {
    margin-bottom: 6px;
}