*{
    margin: 0;
    padding: 0;
}
body{
    background: black;
}
.about-hero-section{
    width: 100%;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
}
.new-nav-container{
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    place-items: center;
    z-index: 101;
}
.new-nav-hyper{
    cursor: pointer;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ah-logo{
    width: 75%;
}
.new-nav-ac{
    width: 90%;
}
.new-nav-ac ul{
    list-style: none;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.new-nav-ac ul li{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.new-nav-ac ul li a{
    text-decoration: none;
    color: white;
    font-family: 'Koulen';
    font-size: 200%;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.links-hyper{
    border: 2px solid white;
    padding: 0px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 10px;;
}
.about-vid{
    width: 100%;
}
.about-header{
    font-size: 4.375vw;
    color: white;
    font-family: 'Impact';
    text-transform: uppercase;
    top: 45%;
    position: absolute;
    left: 2%;
    width: 60%;
    z-index: 1000;
}
.transition-a-container,
.transition-b-container{
    position: absolute;
    width: 100%;
    height: 140px;
    bottom: 0;
    z-index: 101;
}
.transition-b-container{
    top: 0;
    position: relative;
}
.about-transition-one{
    width: 100%;
    height: 100%;
}
.producer-main-container{
    width: 100%;
    height: auto;
    background: #304529;
    padding: 2% 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 0;
}
.image-flex-container{
    width: 96%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4%;
    border-radius: 20px;
}
.prod-img{
    width: 100%;
}
.prod-right{
    width: 95%;
    height: 95%;
    margin-top: 2.5%;
    margin-left: 2.5%;
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 5%;
}
.producer-header{
    font-size: 64px;
    color: white;
    font-family: 'SanFran';
}
.producer-subtext{
    font-family: 'SanFranThin';
    color: white;
    font-size: 24px;
    width: 80%;
    margin-left: 20%;
}
.platforms-container{
    width: 100%;
    height: auto;
    background: black;
    position: relative;
    display: flex;
    flex-direction: column;
}
.platforms-header{
    color: white;
    width: 100%;
    text-align: center;
    font-family: 'SanFran';
    margin-top: -2%;
    font-size: 36px;
}
/* Infinite Platforms Slide Styling */
@keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translate(-100%);
    }
}
.infinite-carousel-logos{
    overflow: hidden;
    padding: 5% 0;
    white-space: nowrap;
    background: #000000;
}
.logos-slide{
    display: inline-block;
    animation: 40s slide infinite;
}
.logos-slide img{
    height: 100px;
    margin: 0 40px;
}
.infinite-carousel-reviews:hover .logos-slide{
    animation-play-state: paused;
}
/* End of Infinite */
.footer-container{
    width: 100%;
    height: auto;
    background: #304529;
    position: relative;
    padding-bottom: 5%;
}
.drip-container{
    width: 100%;
    height: 148px;
}
.drip-svg{
    width: 100%;
    margin-top: -.5%;
}
.footer-body{
    width: 100%;
    height: 378px;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
}
.footer-description-cont{
    width: 100%;
    height: 100%;
}
.footer-header{
    font-family: 'Impact';
    font-size: 2em;
    color: white;
    margin-left: 2%;
}
.footer-description{
    font-family: 'ModernSans';
    margin-left: 2%;
    color: white;
    font-size: 1.8em;
    margin-top: 2%;
}
.footer-links{
    width: 80%;
    height: 100%;
    margin-left: 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5%;
}
.footer-link{
    width: 100%;
    height: 100%;
    text-align: center;
}
.footer-link-header{
    font-family: 'Impact';
    font-size: 2em;
    margin-top: 2%;
    color: white;
}
.nav-link-foot{
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    font-family: 'ModernSans';
}
.social-media-grid-cont{
    width: 100%;
    height: 60%;
    margin-top: 8%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 5%;
}
.social-media{
    display: flex;
    align-items: center;
    justify-content: center;
}
.sm-logo{
    width: 50%;
}
.footer-copyright-sec{
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: 0;
    background: #2c3f26;
    box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
}
.copyright-text-container{
    display: flex;
    align-items: center;
    justify-content: left;
    margin-left: 2%;
}
.hc-signature{
    display: flex;
    align-items: center;
    justify-content: right;
    margin-right: 2%;
}
.copyright-text,
.signature-text{
    font-family: 'Koulen';
    font-size: 1.5em;
    color: white;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.signature-text{
    text-align: right;
}
.hc-blue{
    text-decoration: none;
    color: #79F9FF;
}
@font-face{
    font-family: 'SanFran';
    font-weight: normal;
    src: url('fonts/SFNSDisplay-Regular.otf');
}
@font-face{
    font-family: 'SanFranThin';
    font-weight: normal;
    src: url('fonts/SFNSDisplay-Thin.otf');
}
@font-face{
    font-family: 'Inter';
    font-weight: bold;
    src: url('fonts/Inter-VariableFont_slnt\,wght.ttf');
}
@font-face{
    font-family: 'ModernSans';
    font-weight: normal;
    src: url('fonts/ModernSans-Light.otf');
}
@media screen and (min-width: 0px) and (max-width: 500px)
{
    .new-nav-container{
        place-items: center;
        place-content: center;
        grid-template-columns: 1fr;
        width: 100%;
    }
    .new-vid-hero{
        width: 200%;
    }
    .new-nav-hyper{
        width: 20%;
        margin-left: -5%;
    }
    .ah-logo{
        width: 100%;
    }
    .new-nav-ac{
        display: none;
    }
    .navigation-container,
    .cta-nav{
        display: none;
    }
    .welcome-header-new{
        font-size: 175%;
        width: 90%;
    }
    .nav-container{
        grid-template-columns: 100%;
    }
    .logo-and-name-cont{
        align-items: center;
        justify-content: center;
    }
    .alien-nft{
        max-width: 100px;
        max-height: 100px;
    }
    .video-container{
        height: 50vh;
    }
    .welcome-header{
        font-size: 3em;
        width: 90%;
    }
    .footer-body{
        display: inline-block;
        grid-template-rows: repeat(5, 1fr);
        grid-auto-flow: column;
        gap: 5px;
        height: auto;
        padding-bottom: 12%;
    }
    .footer-links{
        display: inline-block;
        grid-template-rows: repeat(5, 1fr);
        grid-auto-flow: column;
        gap: 5px;
        width: 90%;
        margin-left: 2%;
    }
    .footer-link{
        text-align: left;
    }
    .social-media-grid-cont{
        height: 100%;
        display: inline-flex;
        grid-auto-flow: column;
        gap: 0;
    }
    .copyright-text,
    .signature-text{
        font-size: .8em;
    }
    .about-hero-section{
        height: auto;
        max-height: 50vh;
    }
    .about-vid{
        width: 250%;
    }
    .about-header{
        font-size: 1.2em;
        width: 80%;
    }
    .transition-a-container,
    .transition-b-container{
        height: 50px;
        bottom: 0%;
        overflow: hidden;
    }
    .about-transition-one{
        width: 100%;
    }
    .producer-main-container{
        grid-template-columns: 1fr;
        padding-top: 10%;
        padding-bottom: 10%;
    }
    .prod-right{
        padding-top: 10%;
        gap: 1%;
    }
    .producer-header{
        font-size: 1.75em;
    }
    .producer-subtext{
        font-size: .8em;
        width: 90%;
        margin-left: 10%;
    }
    .image-flex-container{
        margin-left: 2.5%;
        width: 95%;
    }
    .platforms-header{
        font-size: 1em;
        margin-top: 5%;
    }
    .logos-slide{
        animation: 30s slide infinite;
    }
    .logos-slide img{
        height: 60px;
        margin: 0 20px;
    }
    .infinite-carousel-logos{
        padding: 20% 0; 
    }
}
@media screen and (min-width: 501px) and (max-width: 900px)
{
    .about-hero-section{
        height: auto;
        overflow: hidden;
        max-height: 100vh;
    }
    .about-vid{
        width: 180%;
    }
    .about-header{
        font-size: 2.5em;
        width: 90%;
    }
    .new-nav-container{
        place-items: center;
        place-content: center;
        grid-template-columns: 1fr;
        width: 100%;
    }
    .new-vid-hero{
        width: 200%;
    }
    .new-nav-hyper{
        width: 20%;
        margin-left: -5%;
    }
    .ah-logo{
        width: 100%;
    }
    .new-nav-ac{
        display: none;
    }
    .navigation-container,
    .cta-nav{
        display: none;
    }
    .welcome-header-new{
        font-size: 300%;
        width: 90%;
    }
    .nav-container{
        grid-template-columns: 100%;
    }
    .logo-and-name-cont{
        align-items: center;
        justify-content: center;
    }
    .alien-nft{
        margin-left: 0;
        max-width: 200px;
        max-height: 200px;
    }
    .nav-header{
        margin-left: 0;
    }
    .navigation-container,
    .cta-nav{
        display: none;
    }
    .producer-main-container{
        grid-template-columns: 1fr;
    }
    .image-flex-container{
        width: 90%;
        margin-left: 5%;
    }
    .prod-right{
        gap: 2%;
        padding: 4% 0;
    }
    .producer-header{
        font-size: 3em;
    }
    .producer-subtext{
        font-size: 1em;
        width: 100%;
        margin-left: 0%;
    }
    .footer-body{
        display: inline-block;
        grid-template-rows: repeat(5, 1fr);
        grid-auto-flow: column;
        gap: 5px;
        height: auto;
        padding-bottom: 12%;
    }
    .footer-links{
        display: inline-block;
        grid-template-rows: repeat(5, 1fr);
        grid-auto-flow: column;
        gap: 5px;
        width: 90%;
        margin-left: 2%;
    }
    .footer-link{
        text-align: left;
    }
    .social-media-grid-cont{
        height: 100%;
        display: inline-flex;
        grid-auto-flow: column;
        gap: 0;
    }
    .copyright-text,
    .signature-text{
        font-size: 1em;
    }
}
@media screen and (min-width: 901px) and (max-width: 1300px)
{
    .footer-links{
        margin-left: 5%;
    }
}
@media screen and (min-width: 0px) and (max-width: 255px)
{
    .welcome-header{
        font-size: 2.2em;
    }
    .songs-track-text{
        font-size: .8em;
    }
    .footer-body{
        padding-bottom: 100px;
    }
    .copyright-text,
    .signature-text{
        font-size: .5em;
    }
}