* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

*::selection {
    color: #fff;
    background-color: black;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: #f7f7f7;
}

#nav {
    width: 100%;
    position: fixed;
    z-index: 10;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#nav #nav-part2 {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

#links {
    padding: 8px;
}

#nav-part2 #links a {
    text-transform: uppercase;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    margin: 0px 20px;
}

#nav-part2 #icons i {
    font-size: 18px;
    margin: 0px 20px;
    font-weight: 100;
}

#nav-part1 {
    /* background-color: red; */
    height: 83px;
    overflow: hidden;
}

#nav-part1 svg {
    display: block;
}


#icons {
    padding: 8px;
    border-radius: 50px;
    background-color: #fff;
}


#cursor {
    height: 170px;
    width: 170px;
    background-color: blanchedalmond;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%) scale(0);

}


#page1 {
    min-height: 100vh;
    position: relative;
    width: 100%;
    padding: 0 1vh;
    padding-top: 15.4vh;
}

#page1 h1 {
    font-size: 30vh;
    text-transform: uppercase;
    font-family: futura;
    text-align: center;
    letter-spacing: -7px;
    line-height: 28vh;
}

#video-container {
    height: 100vh;
    width: 100%;
    margin-top: 1vw;
    position: relative;
}

#video-container #video {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

#video-container #play {
    padding: 4vh 2.5vh;
    font-size: 2vh;
    background-color: black;
    color: white;
    font-family: futura;
    position: fixed;
    text-transform: uppercase;
    border-radius: 50px;
    opacity: 0;
    scale: 0;
}

#page2 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 2vw 0vw;
    justify-content: space-evenly;
}

#page2 .elem {
    height: 100%;
    width: 31%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#page2 .elem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    scale: 1.1;
}


#page2 .elem .dets {
    height: 50px;
    width: 80%;
    position: absolute;
    z-index: 9;
    background-color: palegoldenrod;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s linear;
}

#page2 .elem .dets:hover {
    height: 250px;
}

.dets .dets-heading {
    display: flex;
    width: 100%;
    align-items: center;
    position: absolute;
    top: 15px;
    justify-content: space-evenly;
}

.dets .dets-img {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.dets-img-details {
    visibility: hidden;
    scale: 0;
    transition: all 0.2s linear;
}

.dets:hover .dets-img-details {
    visibility: visible;
    scale: 1;

}

.dets .dets-img img {
    margin-top: 2vh;
    width: 30%;
    height: 30px;
    object-fit: cover;
}

.dets .dets-img p {
    margin-top: -10px;
}


#page3 {
    width: 100%;
    min-height: 50vh;
    margin-bottom: 4vh;
}

#heading-item {
    display: flex;
    justify-content: space-between;
    margin-top: 5vw;
    width: 100%;
    padding: 0px 20px;
}

#heading-item h1 {
    width: 70%;
    font-size: 70px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 60px;
}


#heading-item #heading-text {
    width: 30%;
    padding-right: 10vh;
    font-size: 20px;
}

.heading-text-space {
    padding-top: 6vh;
}

#heading-text a {
    font-size: 14px;
    text-decoration: none;
    color: black;
    margin-top: 50px;
    font-weight: 400
}

#shop {
    width: 100%;
    margin-top: 50px;
}

#shop-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-item {
    width: 50%;
    text-align: center;
}

#shop .shop-item img {
    width: 70vh;
    height: 60vh;
}


#footer {
    width: 100%;
    min-height: 40vh;
    background-color: #1C1C1D;
}

#ffirst {
    display: flex;
    padding: 12vh 8vh;
    justify-content: space-between;
}

.fbox p a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
}

.fbox h5 {
    color: #494848;
    font-size: 2.5vh;
    margin-bottom: 2vh;
}


#fsecond {
    display: flex;
    padding: 2vh 9vh;
}

#f2box1 {
    color: #494848;
    width: 40%;
}

#f2box1 h4 {
    margin-bottom: 1vh
}



#f2box1 p a {
    color: #494848;
    text-decoration: none;
}



#f2box-innertext {
    display: flex;
}

#f2box-innertext p {
    margin: 0vh 2vh 0vh 0vh;
}


#f2box2 {
    background-color: white;
    width: 27.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 25px;
    justify-content: center;
}

#f2box-btns {
    display: flex;
    height: 70%;
}

#f2box-btns button {
    background: transparent;
    border-radius: 25px;
    border: none;
    padding: 1vh 3vh;
    margin: 0vh 0.7vh;
    transition: all 0.5s linear;
}

#f2box-btns button a {
    color: black;
    text-decoration: none;
    transition: all 0.1s linear;
}

#f2box-btns button:hover {
    background: black;
}

#f2box-btns button a:hover {
    color: white;
}



.progress-container {
    width: 100%;
    background-color: #f1f1f1;
}

.progress-bar {
    height: 10px;
    background-color: #4caf50;
    width: 0;
}






@media (max-width:600px) {

    #links {
        display: none;
    }

    #page1 {
        min-height: 70vh;
        width: 100%;
        padding: 0 1vh;
        padding-top: 15.4vh;
    }

    #page1 h1 {
        font-size: 7.9vh;
        text-align: left;
        line-height: 8vh;
        letter-spacing: -6px;
    }

    #video-container {
        height: 25vh;
        margin-top: 3vw;
    }

    #video-container #play {
        padding: 4vh 2.5vh;
        font-size: 2vh;
        top: 50%;
        left: 50%;
        position: absolute;
        opacity: 1;
        scale: 1;
        transform: translate(-50%, -50%);
    }

    #page2 {
        min-height: 100vh;
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        padding: 5vw 3vw;
        flex-direction: column;
        justify-content: space-evenly;
    }

    #page2 .elem {
        height: 100vh;
        width: 100%;
        overflow: hidden;
        margin-bottom: 3vw;
        position: relative;
    }

    #heading-item {
        flex-direction: column;
        text-align: center;
    }

    #heading-item h1 {
        width: 100%;
        font-size: 4vh;
        letter-spacing: -2px;
        line-height: 35px;
    }

    #heading-item #heading-text {
        width: 100%;
        padding-right: 0vh;
        margin-top: 5vh;
    }

    .heading-text-space {
        padding-top: 2vh;
    }

    #shop-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .shop-item {
        width: 50%;
        text-align: center;
    }

    #shop .shop-item img {
        width: 150px;
        height: 100px;
    }


    #ffirst {
        display: flex;
        flex-direction: column;
    }

    .fbox {
        margin: 2vh 0vh;
    }

    #f2box1 h4 {
        margin-bottom: 1vh;
        text-align: center;
    }


    #f2box-innertext {
        display: flex;
        text-align: center;
    }

    #f2box-innertext p {
        margin: 0vh 2vh;
    }



    #fsecond {
        display: flex;
        flex-direction: column-reverse;
        padding: 2vh 8vh;
    }

    #f2box1 {
        color: #494848;
        width: 100%;
    }


    #f2box2 {
        background-color: white;
        width: 100%;
        margin-bottom: 3vh;
    }


    #f2box-btns button {
        padding: 1vh 1.2vh;
        margin: 0.5vh 0.7vh;
        transition: all 0.5s linear;
    }
}