* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif,Arial, Helvetica, sans-serif;
}
*::selection {
    background-color: #000;
    color: #fff;
}

html,body {
    height: 100%;
    width: 100%;
    background-color: #f7f7f7;
}

.nav {
    height: 100px;
    width: 100%;
    position: fixed;
    z-index: 99;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.nav-part1 {
    height: 82px;
    overflow: hidden;
}

.nav-part1 svg {
    display: block;
}

.nav .nav-part2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0.8;
}

.nav-part2 .links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    margin: 0px 20px;
}

.links {
    padding: 10px;
}

.nav-part2 .icons i {
    font-size: 18px;
    margin: 0px 20px;
    font-weight: 100;
}

.icons {
    padding: 10px;
    background-color: #f7f7f7;
    border-radius: 50px;
    cursor: pointer;
}

.cursor {
    height: 250px;
    width: 250px;
    background-color: blanchedalmond;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%,-50%) scale(0);
}

.page1 {
    min-height: 70vh;
    width: 100%;
    position: relative;
    padding: 0 1.5vw;
    padding-top: 35vh;
}

.page1 h1 {
    font-size: 15vw;
    font-family: futura;
    line-height: 14vw;
    letter-spacing: -5px;
    text-align: center;
}
.video-container {
    width: 100%;
    height: 100vh;
    background-color: beige;
    margin-top: 1vw;
    position: relative;
}

.video-container video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.video-container .play {
    padding: 3vw 2.5vw;
    background-color: black;
    color: #fff;
    font-size: 1.5vw;
    position: fixed;
    font-family: futura;
    border-radius: 50%;
    opacity: 0;
    scale: 0;
}

hr {
    margin-top: 80px;
}
/*page2 starts*/

.page2 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3vw 1vw;
}

.page2 .elem {
    height: 100%;
    width: 31%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page2 .elem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    scale: 1.1;
}

.page2 .elem .dets {
    position: absolute;
    height: 50px;
    width: 80%;
    border-radius: 50px;
    z-index: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
}

.page2 .elem .dets .shop {
    opacity: 0.5;
}
.page2 .elem .dets .new {
    opacity: 0.8;
}

.dets .dot {
    font-size: 9px;
}

.page2 .elem .green {
    background-color: rgb(152, 189, 152);
}
.page2 .elem .pink {
    background-color: rgb(255, 240, 243);
}
.page2 .elem .white {
    background-color: rgb(255, 255, 255);
}

/* page3 starts */

.page3 {
    min-height: 120vh;
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 80px;
    margin-left: 6vw;
    align-items: center;
    justify-content: space-evenly;
}

.child {
    height: 80vh;
    width: 38vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.child img {
    height: 80%;
    width: 100%;
}

.price p {
    opacity: 0.4;
}

/* Page4 start */
.page4 {
    height: 100vh;
    width: 100%;
    border-top: 1px solid black;
    padding: 60px 10px;
    opacity: 0.8;
}
.page4-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h6 {
    opacity: 0.5;
    margin-bottom: 40px;
}

.ackno {
    text-align: center;
    padding: 2.5em;
}

.ackno h6 {
    margin-bottom: 30px;
    text-align: start;
    margin-left: 10px;
    display: none;
}

.footer {
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: absolute;
    bottom: 10px;
    margin: 48px 0px 12px;
}

.footer p {
    margin: 0  10vw;
    cursor: pointer;
    font-size: 0.6em;
    text-align: center;
    word-spacing: 2px;
}


@media (max-width: 650px) {
    /* page1 */
    .page1 {
        width: 100%;
        padding: 0 2vw;
        padding-top: 25vh;
    }

    .page1 h1 {
        font-size: 15.5vw;
        font-family: futura;
        line-height: 14vw;
    }

    .video-container {
        width: 100%;
        height: 25vh;
        margin-top: 3vw;
    }

    .video-container .play {
        padding: 9.5vw 7.5vw;
        font-size: 4.5vw;
        position: absolute;
        font-weight: 900;
        top: 50%;
        left: 50%;
        opacity: 1;
        scale: 1;
        transform: translate(-50%,-50%);
    }
    /* page2 */
    .page2 {
        min-height: 100vh;
        width: 100vw;
        position: relative;
        flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6vw 3vw;
    }
    
    .page2 .elem {
        height: 100vh;
        width: 100%;
        overflow: hidden;
        margin-bottom: 3vw;
    }
    .page2 .elem img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        scale: 1.1;
    }
    /* page3 */
    .child {
        height: 40vh;
        width: 35vw;
    }
    
    /* nav bar */
    .nav {
        height: 100px;
        width: 100%;
        position: fixed;
        z-index: 99;
        padding: 15px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .nav-part1 {
        height: 65px;
        overflow: hidden;
    }
    
    .nav-part1 svg {
        display: block;
        height: 65px;
        width: 80px;
    }
    
    .nav .twogoodlogo {
        width: 40px;
        height: 40px;
    }
    
    .links {
        padding: 10px;
        display: none;
    }
    
    .nav-part2 .icons i {
        font-size: 15px;
        margin: 0px 20px;
        font-weight: 100;
    }
    
    .icons {
        padding: 7px;
        background-color: #f7f7f7;
        border-radius: 50px;
    }
    /* page 4*/
    .logo svg {
        width: 30vw;
    }

    .ackno {
        text-align: start;
    }

    .ackno h6 {
        display: block;
    }

    .ackno {
        text-align: center;
        padding: 0px;
    }
}
