#blue-background {
    position: fixed;
    top: 70px;
    left: 0;
    height: calc(100vh - 70px);
    width: 35vw;
    object-fit: cover;
    object-position: bottom right;
    z-index: 1;
}

#handball-player {
    position: fixed;
    top: 70px;
    bottom: 0;
    margin: auto 0;
    left: 200px;
    height: calc(100vh - 120px);
    max-height: 730px;
    border-radius: 40px;
    object-fit: contain;
    object-position: 20% 0%;
    z-index: 2;
}

#list {
    position: absolute;
    right: 15vw;
    width: 650px;
    padding-bottom: 80px;
    box-sizing: border-box;
    z-index: 2;
}

#logo {
    display: block;
    margin: 50px auto 15px auto;
}

#oem {
    margin-bottom: 15px;
}

#our-suppliers-catalogs {
    background-color: #3183C2;
    padding: 10px 20px;
    border-radius: 12px;
    color: white;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 16px;
}

.title {
    position: relative;
    font-weight: 600;
    color: #3C3B3B;
    font-size: 16px;
    margin-top: 30px;
    text-align: center;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 40px;
    height: 4px;
    border-radius: 4px;
}

.title.red::after {
    background-color: #F23E55;
}

.title.green::after {
    background-color: #2BA638;
}

.title.yellow::after {
    background-color: #f4b700;
}

.title.blue::after {
    background-color: #3183C2;
}

.catalogs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 22px;
    margin-b: 22px;
    width: 100%;
    gap: 15px;
}

.catalogs-list div {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: 0.15s ease;
}

.catalogs-list.red div {
    background-color: #E73450;
}

.catalogs-list.green div {
    background-color: #2BA638;
}

.catalogs-list.yellow div {
    background-color: #F4C000;
}

.catalogs-list.blue div {
    background-color: #3183C2;
}

.catalogs-list a:hover div {
    transform: translateX(3px);
}

.catalogs-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #3C3B3B;
    padding: 12px 15px;
    box-shadow: 0 2px 4px rgba(0, 10, 20, 0.2);
    border-radius: 12px;
    font-size: 13px;
    line-height: 16px;
    background-color: white;
}

.catalogs-list a img {
    max-width: 100px;
    height: 50px;
    object-fit: contain;
}

.catalogs-list a svg {
    width: 14px;
    height: 14px;
    fill: white;
}

#paper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

#page-title {
    color: #3284c8;
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    margin-top: 50px;
}

#page-explanation {
    color: rgb(80, 90, 100);
    text-align: center;
    margin: 6px 0 40px 0;
    font-weight: 300;
    font-size: 13px;
    padding-top: 20px;
}

#blue-background-mobile {
    display: none;
    position: fixed;
    z-index: 2;
    top: 12vh;
    left: 0;
    width: 100vw;
    height: 88vh;
    object-fit: fill;
}

#mobile-logo {
    display: none;
    margin: 30px auto;
    position: relative;
    z-index: 2;
    width: 380px;
}

#mobile-title-part {
    display: none;
    justify-content: center;
    position: relative;
    z-index: 3;
    margin-bottom: 30px;
    gap: 40px;
}

#page-title-mobile {
    color: #3284c8;
    font-weight: 700;
    font-size: 35px;
    margin-top: 30px;
    margin-bottom: 4px;
}

#page-explanation-mobile {
    color: rgb(80, 90, 100);
    font-weight: 300;
    line-height: 18px;
    padding-top: 20px;
}

#handball-player-mobile {
    width: 180px;
}

@media screen and (max-width: 1800px) {

    #list {
        right: 13vw;
    }

}

@media screen and (max-width: 1750px) {

    #handball-player {
        top: 90px;
    }

    #list {
        right: 12vw;
    }

}

@media screen and (max-width: 1700px) {

    #handball-player {
        left: 150px;
    }

    #blue-background {
        width: 33vw;
    }

}

@media screen and (max-width: 1650px) {

    #list {
        right: 11vw;
    }

    #handball-player {
        left: 130px;
    }

    #blue-background {
        width: 32vw;
    }

}

@media screen and (max-width: 1600px) {

    #list {
        right: 10vw;
    }

    #handball-player {
        left: 120px;
    }

    #blue-background {
        width: 31vw;
    }

}

@media screen and (max-width: 1550px) {

    #list {
        right: 9vw;
    }

    #handball-player {
        left: 100px;
    }

    #blue-background {
        width: 30vw;
    }

}

@media screen and (max-width: 1500px) {

    #list {
        right: 8vw;
    }

    #handball-player {
        left: 70px;
    }

    #blue-background {
        width: 29vw;
    }

}

@media screen and (max-width: 1450px) {

    #list {
        right: 7vw;
    }

    #handball-player {
        left: 50px;
    }

}

@media screen and (max-width: 1400px) {

    #list {
        right: 6vw;
    }

    #handball-player {
        left: 30px;
        max-height: 620px;
    }

}

@media screen and (max-width: 1350px) {

    #list {
        right: 5vw;
    }

    #handball-player {
        left: 20px;
        max-height: 600px;
    }

}

@media screen and (max-width: 1300px) {

    #list {
        right: 50px;
        width: 630px;
    }

    #handball-player {
        max-height: 580px;
    }

}

@media screen and (max-width: 1250px) {

    #list {
        width: 600px;
    }

    #handball-player {
        max-height: 560px;
    }

}

@media screen and (max-width: 1200px) {

    #list {
        right: 40px;
        width: 570px;
    }

    #handball-player {
        max-height: 550px;
    }

}

@media screen and (max-width: 1150px) {

    #list {
        width: 550px;
    }

    #handball-player {
        max-height: 530px;
    }

}

@media screen and (max-width: 1100px) {

    body {
        overflow-y: auto;
        height: auto;
    }

    body::-webkit-scrollbar, #products-filters::-webkit-scrollbar, #blue-background, #page-title, #page-explanation, #handball-player {
        display: none;
    }

    #brands-page {
        height: auto;
    }

    #list {
        background-color: white;
        padding: 30px;
        border-radius: 30px;
        box-shadow: 0 2px 8px rgba(0, 10, 20, 0.08);
        grid-template-columns: repeat(4, 1fr);
        position: relative;
        right: 0;
        margin: 0 auto 50px auto;
        width: auto;
        max-width: 660px;
    }

    #blue-background-mobile, #mobile-logo {
        display: block;
    }

    #mobile-title-part {
        display: flex;
    }

    .no-margin-on-mobile {
        margin-top: 0;
    }

}

@media screen and (max-width: 900px) {

    #mobile-logo {
        width: 350px;
    }

}

@media screen and (max-width: 750px) {

    #list {
        max-width: initial;
        width: calc(100vw - 50px);
    }

    #page-explanation-mobile {
        width: 260px;
    }

}

@media screen and (max-width: 700px) {

    .catalogs-list {
        grid-template-columns: repeat(2, 1fr);
    }

    #mobile-logo {
        width: 320px;
    }

    #mobile-title-part {
        gap: 30px;
        margin-bottom: 20px;
    }

}

@media screen and (max-width: 600px) {

    #mobile-logo {
        width: 300px;
    }

}

@media screen and (max-width: 550px) {

    #mobile-logo {
        width: 280px;
    }

    #page-explanation-mobile {
        width: 210px;
    }

    #page-title-mobile {
        font-size: 32px;
    }

    #handball-player-mobile {
        width: 160px;
    }

    #mobile-title-part {
        gap: 25px;
    }

    #blue-background-mobile {
        top: 6vh;
        height: 94vh;
    }

}

@media screen and (max-width: 500px) {

    #mobile-logo {
        width: 260px;
    }

    #page-title-mobile {
        font-size: 28px;
    }

    #handball-player-mobile {
        width: 150px;
    }

    #page-explanation-mobile {
        font-size: 13px;
        line-height: 16px;
        width: 190px;
    }

    #mobile-title-part {
        gap: 20px;
    }

    #blue-background-mobile {
        top: 4vh;
        height: 96vh;
    }

    #list {
        width: calc(100vw - 40px);
        padding: 30px 20px;
    }

    .catalogs-list a img {
        max-width: calc(100% - 60px);
    }

}

@media screen and (max-width: 450px) {

    #mobile-logo {
        margin-top: 20px;
        width: 250px;
    }

    #handball-player-mobile {
        width: 140px;
    }

    .catalogs-list a img {
        max-width: calc(100% - 45px);
    }

    .catalogs-list {
        gap: 10px;
    }

}

@media screen and (max-width: 420px) {

    #mobile-logo {
        width: 230px;
    }

}

@media screen and (max-width: 400px) {

    #mobile-logo {
        width: 220px;
    }

    #page-title-mobile {
        font-size: 26px;
    }

    #page-explanation-mobile {
        font-size: 12px;
        width: 180px;
    }

    #list {
        width: calc(100vw - 30px);
        padding: 30px 15px;
    }

    .catalogs-list a {
        padding: 12px;
    }

}

@media screen and (max-width: 380px) {

    #mobile-logo {
        width: 210px;
    }

    #handball-player-mobile {
        width: 130px;
    }

}

@media screen and (max-width: 360px) {

    #handball-player-mobile {
        width: 120px;
    }

}