.prefooter{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    width: 100%;
    font-family: sans-serif;
    min-height: 50vh!important;
    margin-bottom: 50vh;
}

.track{
    display: flex;
    width: fit-content;
    flex-wrap: nowrap;
    animation: marquee 100s linear infinite;
}

.track h2{
    font-size: 400px;
    color: white;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 50px;
    margin-right: 50px;
    user-select: none;
    transform: translateY(50px);
}

.track h2 span {
    display: inline-block;
    transition: all 0.4s ease;
    will-change: transform, color;
}

.track h2 span.active {
  color: var(--primary-clr);
  transform: translateY(-5px);
}

@keyframes marquee{
    from{
        transform: translateX(0);
    }

    to{
        transform: translateX(-50%);
    }
}

footer{
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    bottom: 0;
    left: 0;
    height: 50vh;
    width: 100%;
    background-color: rgb(16, 16, 16);
    z-index: -2;
    font-family: sans-serif;
}

footer ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

footer ul li a{
    color: white;
    white-space: nowrap;
    transition: all 0.2s ease;
}

footer ul li a:hover{
    color: var(--primary-clr);
}

footer .copyright{
    display: flex;
    justify-content: center;
    color: white;
    padding: 20px;
    width: 100%;
    background-color: #202020;
    gap: 5px;
}

.golden{
    color: var(--primary-clr);
}

@media screen and (max-width: 1535px) {}
@media screen and (max-width: 1279px) {}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 767px) {}
@media screen and (max-width: 479px) {
    .prefooter{
        display: none;
    }
    footer{
        position: unset;
        height: 100vh;
        overflow: hidden;
    }
}

@media (max-width: 916px) and (orientation: landscape) {
  .prefooter{
    display: none;
  }
    footer{
    position: unset;
    height: 100vh;
    overflow: hidden;
    }
    #contact{
        padding-bottom: 100px;
    }
    .contact-right{
        display: none!important;
    }
}