body {
    background-color: black;
    background-image: url(/assets/images/daring-peak-back.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Press Start 2P';
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

html,
body {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

.layout {
    display: none;
}

.mobile-layout {
    display: grid;
    grid-template-rows: 15% 1fr;
    grid-template-columns: 1fr;
    height: 100%;
}

#eclipse {
    display: none;
}

.mobile-logo-wrapper {
    width: 100%;
    display: flex;
    margin-top: 5%;
}

.mobile-logo {
    height: 35%;
    width: 100%;
    margin: 1rem 1rem 0 1rem;
    fill: white;
}

.mobile-link-wrapper {

    background-image: url(/assets/images/eclipse3d.gif);
    background-repeat: no-repeat;
    background-size: cover;

    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

#mservices {
    height: 3rem;
}

#mgallery {
    height: 3rem;
}

#mshop {
    height: 3.5rem;
}

#mcontact {
    height: 2.75rem;
}

#mtwitter {
    height: 3rem;
}

#minstagram {
    height: 3rem;
}

#mcomingsoon {
    display: none;
}


.solid {
    fill: #EEEEEE;
    height: 3.5rem;
}

.outline {
    fill: transparent;
    stroke-width: 2px;
    stroke: #EEEEEE !important;
    height: 3.5rem;

}


.ipadFooter {
    display: none;
}

@media (min-width: 1024px) and (max-width: 1500px) {


    #banner4a,
    #banner4b,
    #banner5a,
    #banner5b,
    #banner6a,
    #banner6b {
        display: none;
    }
}

@media (min-width: 1501px) and (max-width: 2000px) {

    #banner4a,
    #banner4b {
        display: block;
    }

    #banner5a,
    #banner5b,
    #banner6a,
    #banner6b {
        display: none;
    }
}

@media (min-width: 2001px) and (min-width: 2500px) {

    #banner4a,
    #banner4b,
    #banner5a,
    #banner5b {
        display: block;
    }

    #banner6a,
    #banner6b {
        display: none;
    }

}

@media screen and (min-width: 2501px) {

    #banner4a,
    #banner4b,
    #banner5a,
    #banner5b,
    #banner6a,
    #banner6b {
        display: block;
    }
}

@media screen and (min-width: 1024px) {
    .mobile-layout {
        display: none;
    }

    .layout {
        display: grid;
        grid-template-rows: 20% 1fr;
        height: 100%;
    }

    .heading {
        /* width: 100%; */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #eclipse {
        align-self: flex-start;
        height: 100%;
        display: block;
    }

    .logo {
        fill: white;
        flex-grow: 1;
        margin: 0 auto;
        height: 100px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .link-wrapper {
        display: grid;
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
        padding: 1%;
    }

    .solid {
        fill: #EEEEEE;
        height: 3.5rem;
    }

    .outline {
        fill: transparent;
        stroke-width: 2px;
        stroke: #EEEEEE !important;
        height: 3.5rem;

    }

    .box {
        padding: 2%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .shop {
        height: 4rem !important;
    }

    #comingsoon {
        display: none;

    }

    #cscomingsoon {
        display: none;
    }

    #services {
        margin-left: 25%;
    }

    #contacto {
        margin-left: 5%;
    }

    #serviceso {
        float: right;
        margin-right: 5%;
    }

    #contact {
        margin-left: 10%;
    }

    #galleryo1 {
        margin-left: 25%;
    }

    #gallery1 {
        float: right;
        margin-right: 15%;
    }

    #galleryo2 {
        float: right;
        margin-right: 10%;
    }

    #gallery2 {
        margin-left: 20%;
    }

    #shopo1 {
        float: right;
        margin-right: 10%;
    }

    #shop1 {
        margin-left: 15%;
    }

    #shop2 {
        margin-left: 35%;
    }

    #shop3 {
        margin-left: 25%;
    }

    #shopo2 {
        float: right;
        margin-right: 15%;
    }

    #twittero1 {
        float: right;
        margin-right: 45%;
        height: 3rem !important;
    }

    #twitter1 {
        margin-left: 5%;
        height: 3rem !important;
    }

    #instagram1 {
        float: right;
        margin-right: 5%;
    }

    #instagramo1 {
        float: right;
        margin-right: 35%;
    }

    #twitter2 {
        margin-left: 10%;
        height: 3rem !important;
    }

    #instagram2 {
        margin-right: 10%;
        float: right;
    }


    .footer {
        position: relative;
        bottom: 0;
        z-index: 69;
        --gap: 1rem;
        display: flex;
        overflow: hidden;
        user-select: none;
        gap: var(--gap);
        fill: white;
        width: 100%;
        height: 50px;
    }

    .footer-track {
        flex-shrink: 1;
        display: flex;
        justify-content: space-around;
        min-width: 100%;

        gap: var(--gap);
        animation: scroll 5.5s linear infinite;
    }

    @keyframes scroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-100% - var(--gap)));
        }
    }

    .banner {
        height: 45px;
    }

}

@media (min-width:524px) and (max-width:1023px) {
    .layout {
        display: none;
    }

    #eclipse {
        display: block;
    }

    .mobile-layout {
        display: grid;
        grid-template-rows: 15% 1fr;
        grid-template-columns: 1fr;
        height: 85%;
        gap: 2rem;
    }

    .mobile-logo-wrapper {
        display: flex;
    }

    .mobile-link-wrapper {
        background-image: url(/assets/images/eclipse3d.gif);
        background-repeat: no-repeat;
        background-size: cover;
        gap: 3rem;
    }

    .mobile-logo {
        height: 60%;
        width: 100%;
        margin: 1rem 1rem 0 1rem;
        fill: white;
    }

    .linkRow1 {
        margin-top: 5%;
        margin-right: 15%;

    }

    .linkRow2 {
        margin-left: 45%;
    }

    .linkRow3 {
        margin-right: 25%;
    }

    .linkRow4 {
        margin-left: 10%;
    }

    .linkRow5 {
        margin-right: 35%;
    }

    .linkRow6 {
        margin-left: 35%;

    }


    #mservices {
        height: 4rem;
    }



    #mgallery {
        height: 4rem;

    }

    #mshop {
        height: 4.5rem;
    }

    #mcontact {
        height: 3.75rem;
    }

    #mtwitter {
        height: 4rem;
    }

    #minstagram {
        height: 4rem;
    }

    #mcomingsoon {
        display: none;
    }


    .mobile-footer {
        position: fixed;
        bottom: 0;
        z-index: 69;
        --gap: 1rem;
        display: flex;
        overflow: hidden;
        user-select: none;
        gap: var(--gap);
        fill: white;
        width: 100%;

    }

    .rotate {
        flex-shrink: 1;
        display: flex;
        justify-content: space-around;
        min-width: 100%;
        gap: var(--gap);
        animation: scroll 5.5s linear infinite;
    }

    @keyframes scroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-100% - var(--gap)));
        }
    }

    .ipadFooter {
        display: block;
    }

    .solid {
        fill: #EEEEEE;
        height: 3.5rem;
    }

    .outline {
        fill: transparent;
        stroke-width: 2px;
        stroke: #EEEEEE !important;
        height: 3.5rem;

    }
}