@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');
@font-face {
    font-family: 'Codec Pro';
    src: local('Codec Pro Ultra'), local('Codec-Pro-Ultra'),
        url('../fonts/CodecPro-Ultra.woff2') format('woff2'),
        url('../fonts/CodecPro-Ultra.woff') format('woff'),
        url('../fonts/CodecPro-Ultra.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    color: #000;
    line-height: 1.5;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: inherit;
}
#page {
    overflow: hidden;
}
#first-screen {
    position: relative;
    width: 100%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}
#first-screen .container {
    padding-bottom: 50px;
}
#first-screen a {
    color: #fff;
}
#first-screen h1 {
    font-family: 'Codec Pro';
    font-size: 140px;
    line-height: 1;
    margin: 0px;
    text-transform: uppercase;
    font-weight: normal;
}
#first-screen .row {
    align-items: center;
}
.fs-text {
    max-width: 440px;
    margin: -120px 70px 0px auto;
}
.site-name > div:first-child {
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    writing-mode: vertical-rl; 
    transform: rotate(180deg);
}
.site-name > div:last-child {
    letter-spacing: 2px;
    font-size: 20px;
    padding-top: 20px;
    text-align: center;
    max-width: 192px;
}
#second-screen {
    width: 100%;
    padding: 30px 0px 30px 0px;
}
#second-screen p {
    margin-bottom: 30px;
}
#second-screen p:last-child {
    margin-bottom: 0px;
}
#second-screen .row > div:last-child {
    padding-left: 60px;
}
.logo-list {
    display: flex;
    overflow: hidden;
    transform: translate3d(0, 0, 0); /* Hey browser, please use my GPU */
    position: relative;
    overflow: hidden;
    animation-name: moveSlideshow;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
   animation-duration: 40s;
   animation-direction: normal;
   animation-delay: 0s;
    display: flex;
    width: max-content;
    min-width: 200%;
   flex-shrink: 0;
}
@keyframes moveSlideshow {
    100% {
     transform: translateX(-50%);
    }
   }
.logo-list div {
    padding: 0px 25px;
}
.logo-list a {
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.down,
.up {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
.down svg,
.up svg {
    max-width: 50px;
    height: auto;
}
.down svg path {
    stroke: #fff;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.up svg {
    transform: rotate(180deg);
    margin-bottom: 20px;
}

.home #partners {
    position: fixed;
    bottom: 0px;
    background: #fff;
    width: 100%;
}
#partners {
    padding: 20px 0px;
}