@font-face {
    font-family: futura;
    src: url(/Futura-Bold.ttf);
}

@font-face {
    font-family: Helvetica;
    src: url(/HelveticaNowText-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica';
}

*::selection {
    color: white;
    background-color: black;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #F7F7F7;
}

#nav {
    width: 100%;
    /* background-color: burlywood; */
    position: fixed;
    z-index: 99;
    padding: 25px 25px 25px 0px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

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

#nav-part1 svg {
    display: block;
}

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

#links {
    padding: 10px;
}

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

#icons {
    padding: 10px;
    border-radius: 50px;
    background-color: #F7F7F7;
}

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

#cursor {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background-color: transparent;
    position: fixed;
    transform: translate(-50%, -50%) scale(0);
    transition: background-color 0.3s ease;
}

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

#page1 h1 {
    font-size: 15.8vw;
    font-family: futura;
    text-transform: uppercase;
    line-height: 14vw;
    letter-spacing: -8px;
}

#video-container {
    height: 100vh;
    width: 100%;
    /* background-color: gray; */
    margin-top: 1vw;
    position: relative;
}

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

#video-container #play {
    padding: 3vw 2.3vw;
    background-color: black;
    color: white;
    font-size: 1.3vw;
    text-transform: uppercase;
    font-family: futura;
    position: fixed;
    border-radius: 50%;
    opacity: 0;
    scale: 0;
}

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

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

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

#page2 .elem .dets{
    position: absolute;
    /* transform: translate(-50%, -50%) ; */
    will-change: transform;
    opacity: 1;
}

#page2 .elem .dets .dets-info{
    background-color: #f5dfcf;
    padding: 0 32px;
    width: 303px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.dets .container{
    background-color: #f5dfcf;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 303px;
    height: 50px;
    border-radius: 25px;
    overflow: hidden;
    padding-top: 50px;
    z-index: -1;
    transition: height 0.25s cubic-bezier(0.22, 0.57, 0.12, .96);
    will-change: height;
}

#page2 .elem .dets .container .listing{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.container .listing .list-elem img{
    height: 118px;
    margin-top: 20px;
    margin-bottom: 6px;
}

#duobook{
    transform: scale(1.4);
    margin-bottom: 41px;
}

.container .listing .list-elem p{
    font-size: 12px;
    margin: 10px 10px;
    text-align: center;
}

.elem .dets:hover .container{
    height: auto ;
}


#moto {
    display: flex;
    justify-content: space-between;
    margin: 0 24px;
    margin-bottom: 150px;
}

#moto h2 {
    font-size: 56px;
    font-family: futura;
    width: 784px;
}

#moto .para {
    width: 351px;
    margin-right: 100px;
    padding: 10px;
    line-height: 23px;
    letter-spacing: 0.8px;
}

#moto .para p {
    font-size: 16px;
    margin-bottom: 32px;
}

#moto .para a {
    text-decoration: none;
    color: #000;
    font-weight: 100;
    font-size: 14px;
    text-decoration: underline;
}

#page3 {
    min-height: 120vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.child {
    height: 54vh;
    width: 38vw;
    /* background-color: red; */
    /* border: 2px solid black; */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.child img {
    height: 100%;
}

.child .childInfo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.child .childInfo a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 14px;
}

#page4 {
    min-height: 100vh;
    width: 100%;
}

#page4 #thankyou {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 120vh;
    justify-content: flex-start;
}

#page4 #thankyou h2 {
    font-size: 72px;
    text-align: center;
    font-family: 'futura';
    width: 1177px;
    line-height: 70px;
    margin: 115px 0px;
}

#page4 #thankyou button {
    padding: 20px 50px;
    border-radius: 50px;
    border: none;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

#page4 #thankyou p {
    text-align: center;
    margin: 25px 0px;
}

#page4 #impact {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#impact #images {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 60%;
}

#page4 #impact img {
    height: 90%;
    width: 47%;
    object-fit: cover;
}

#page4 #impact #impact-para {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: flex-start;
    margin-top: 40px;
}

#impact-para h2 {
    font-family: 'futura';
    margin-bottom: 35px;
}

#impact-para p {
    width: 75%;
    margin-bottom: 35px;
    line-height: 21px;
}

#impact-para a {
    color: #000;
}

#page5 {
    min-height: 100vh;
}

#page5 #footer{
    margin-top: 150px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#footer #connect{
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 5px;
}

#footer #connect p, #nitty p{
    margin-bottom: 18px;
    font-size: 14px;
    opacity: 0.5;
}

#footer #connect a, #nitty a{
    font-size: 17px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

#footer #logo{
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#footer #logo img {
    height: 270px;
    width: 270px;
    object-fit: cover;
}

#footer #logo #copyright {
    margin-top: 90px;
    display: flex;
    justify-content: space-evenly;
}

#footer #logo #copyright a{
    padding: 0 20px;
    text-decoration: none;
    color: #000;
    opacity: 0.5;
}

#footer #nitty{
    display: flex;
    flex-direction: column;
    padding: 30px;
    align-items: flex-end;
    gap: 5px;
}

#page5 #footer-info{
    width: 70%;
    margin: 0 auto;
    margin-top: 90px;
    text-align: center;
}

#page5 #footer-info p{
    font-size: 18px;
    line-height: 25px;
}

@media (max-width: 600px) {
    #nav {
        width: 100%;
        /* background-color: burlywood; */
        position: fixed;
        z-index: 99;
        padding: 15px 15px 15px 0px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

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

    #nav-part1 svg {
        display: block;
        height: 67px;
        width: 80px;
    }

    #nav #svg2 {
        height: 40px;
        margin-left: -20px;
    }

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

    #links {
        padding: 10px;
        display: none;
    }

    #icons {
        padding: 7px;
        border-radius: 50px;
        background-color: #F7F7F7;
    }

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

    #page1 {
        min-height: 70vh;
        width: 100%;
        padding: 0 3vw;
        padding-top: 25vh;
    }

    #page1 h1 {
        font-size: 15.5vw;
        letter-spacing: -3px;
    }

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

    #video-container #play {
        padding: 9.5vw 7.2vw;
        font-size: 4.5vw;
        position: absolute;
        top: 50%;
        left: 50%;
        opacity: 1;
        scale: 1;
        transform: translate(-50%, -50%);
    }

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

    #page2 .elem {
        height: 100vh;
        width: 100%;
        /* background-color: red; */
        overflow: hidden;
        margin-bottom: 3vw;
    }

    #moto {
        display: flex;
        flex-direction: column;
        margin-bottom: 65px;
        justify-content: center;
        gap: 15px;
        text-align: center;
    }

    #moto h2 {
        font-size: 32px;
        font-family: futura;
        width: 100%;
    }

    #moto .para p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    #moto .para a {
        font-size: 12px;
    }

    #page3 {
        min-height: 66vh;
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .child {
        height: 20vh;
        width: 38vw;
        /* background-color: red; */
        /* border: 2px solid black; */
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .child img {
        height: 100%;
    }

    .child .childInfo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .child .childInfo a {
        text-decoration: none;
        color: black;
        text-transform: uppercase;
        font-weight: 100;
        font-size: 14px;
        text-align: center;
    }

    #page4 #thankyou h2 {
        font-size: 24px;
        width: 100%;
        line-height: inherit;
        margin: 30px;
        padding: 0 20px
    }

    #page4 #thankyou {
        height: 50vh;
    }

    #page4 #impact {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: center;
    }

    #impact #images {
        DISPLAY: flex;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        height: 100%;
    }

    #page4 #impact img {
        HEIGHT: 202PX;
        width: 44%;
    }

    #page4 #impact #impact-para {
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-self: flex-start;
        margin-top: 10px;
        padding: 20px;
    }

    #impact-para h2 {
        margin-bottom: 15px;
    }

    #impact-para p {
        width: 99%;
        margin-bottom: 32px;
        line-height: 21px;
    }

    #page5 #footer{
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #footer #connect{
        display: flex;
        flex-direction: column;
        padding: 30px;
        gap: 5px;
        align-items: center;
    }
    
    #footer #connect p, #nitty p{
        margin-bottom: 15px;
        font-size: 14px;
        opacity: 0.5;
    }
    
    #footer #connect a, #nitty a{
        font-size: 17px;
        color: #000;
        text-decoration: none;
        font-weight: 500;
    }
    
    #footer #logo{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #footer #logo img {
        height: auto;
        width: 40%;
        object-fit: cover;
    }
    
    #footer #logo #copyright {
        margin-top: 15px;
        display: flex;
    }
    
    #footer #logo #copyright a{
        padding: 0 15px;
        text-decoration: none;
        color: #000;
        opacity: 0.5;
        text-align: center;
    }
    
    #footer #nitty{
        display: flex;
        flex-direction: column;
        padding: 30px;
        align-items: center;
        gap: 5px;
    }
    
    #page5 #footer-info{
        width: 100%;
        margin: 0;
        padding: 15px;
        text-align: center;
    }
    
    #page5 #footer-info p{
        font-size: 18px;
        line-height: 25px;
    }
}