@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap");
body {
    padding: 0;
    scroll-behavior: smooth;
    max-width: 2560px;
    min-width: 340px;
    margin: auto;
    background-color: rgb(255, 255, 255);
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    overscroll-behavior: none;
    position: relative;
}
a {
    color: black;
}
a:hover {
    color: #FF971D;
}
p {
    margin-bottom: 0;
}
.text-weight {
    font-weight: 600;
    color: #FF971D;
}
.slide {
    position: relative;
    animation: slide-in 0.5s ease-out;
}
@keyframes slide-in {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.color-change {
    color: #FF971D;
    animation: color-change 30s ease-in-out infinite;
}

@keyframes color-change {
    0% {
        color: black;
    }
    10% {
        color: #FF971D;
    }
    15% {
        color: black;
    }
    18% {
        color: #FF971D;
    }
    50% {
        color: #FF971D;
    }
    95% {
        color: #FF971D;
    }
    100% {
        color: black;
    }
}

.color-change-green {
    color: #027D07;
    animation: color-change-green 30s ease-in-out infinite;
}

.color-change-pink {
    color: #E4006E;
    animation: color-change-pink 30s ease-in-out infinite;
}

.color-change-blue {
    color: #003EDD;
    animation: color-change-blue 30s ease-in-out infinite;
}

@keyframes color-change-green {
    0%,
    15%,
    100% {
        color: black;
    }
    10%,
    18%,
    50%,
    95% {
        color: #027D07;
    }
}

@keyframes color-change-pink {
    0%,
    15%,
    100% {
        color: black;
    }
    10%,
    18%,
    50%,
    95% {
        color: #E4006E;
    }
}

@keyframes color-change-blue {
    0%,
    15%,
    100% {
        color: black;
    }
    10%,
    18%,
    50%,
    95% {
        color: #003EDD;
    }
}
@media only screen and (min-width: 1191px) {
    .hidden-pc {
        display: none;
    }
}
@media only screen and (max-width: 991px) {
    .hidden {
        display: none;
    }
}
.gdpr {
    margin-top: 80px;
    width: 95%;
}
.title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
}
.picture {
    padding: 20px;
}
.item {
    width: 100%;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey;
    transition: 0.3s;
}
::-webkit-scrollbar-thumb {
    background: rgb(136, 136, 136);
    border-radius: 20px;
    transition: 0.3s;
}
::-webkit-scrollbar-thumb:hover {
    background: #434343;
}
::-webkit-scrollbar {
    width: 12px;
}
