* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plain Light";
    letter-spacing: 0.5px;
    /* border: 2px solid red; */
}

html,
body {
    height: 100%;
    width: 100%;
}
body {
    max-width: 100%;
    overflow-x: hidden;
}
::selection {
    background-color: #fce8b6;
}

.cursor {
    height: 18px;
    width: 18px;
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    z-index: 999;
    mix-blend-mode: difference;
}

#page01 {
    height: 100%;
    width: 100%;
    background-color: #f8f7f3;
    padding-bottom: 12vw;
}

#page01 .nav {
    height: 10vh;
    width: 100%;
    /* background-color: royalblue; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5vw;
}

#nav-menu-icon{
    display: none;
    font-size: 1.4vw;
}

#page01 .nav .nav-left-items {
    width: 25%;
    display: flex;
    align-items: center;
    gap: 22px;
}

#page01 .nav .nav-left-items h4 {
    font-size: 0.7vw;
    font-weight: 600;
}

#page01 .nav .nav-logo img {
    height: 62px;
}

#page01 .nav .nav-right-items {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#page01 .nav .nav-right-items .btn,
.content .btn {
    padding: .8vw 1.4vw;
    border-radius: 50px;
    background-color: #0e0c22;
    color: #fff;
    font-size: 0.7vw;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

#page01 .nav .nav-right-items #btn1 {
    background-color: transparent;
    border: none;
    color: #000;
    font-weight: 700;
}

#page01 .nav .nav-right-items button:hover {
    background-color: #0000008e;
}

#page01 .content {
    padding-top: 4vw;
    height: calc(100% - 10vh);
    width: 100%;
}

.content-inner {
    cursor: none;
    pointer-events: none;
    /* background-color: red; */
    z-index: 5;
    width: 70%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.content h3 {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8aee9;
    border-radius: 50px;
    width: fit-content;
    padding: 0.5vw 1.2vw;
    font-family: "Source Serif 4";
    font-size: 0.9vw;
    font-weight: 500;
    mix-blend-mode: difference;
    color: snow;
}

.content h2 {
    margin: 2vw 0;
    font-family: "Source Serif 4";
    font-size: 3.8vw;
    font-weight: 500;
    text-align: center;
    letter-spacing: -1px;
    line-height: 4vw;
}

.content h4 {
    font-size: 1vw;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2vw;
}

.content .btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

 .bottom {
    margin-top: -9vw;
    height: 21vw;
    width: 100%;
    /* background-color: red; */
    padding: 10px 30px;
    white-space: nowrap;
    overflow: hidden;
}

.bottom::-webkit-scrollbar {
    display: none;
}

.bottom .elem {
    position: relative;
    display: inline-block;
    border-radius: 28px;
    height: 94%;
    width: 15%;
    margin-right: 30px;
    /* background-color: yellow; */
    animation-name: img-infinite-scrll;
    animation-duration: 22s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.bottom .elem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    border-radius: 28px;
}

.bottom .elem video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    border-radius: 28px;
}

.elem .overlay-text {
    padding: 20px;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    background-color: #00000041;
    color: #fff;
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.elem .overlay-text h6 {
    font-size: 0.7vw;
    font-weight: 500;
    margin-bottom: 5px;
}

.elem .overlay-text .tags {
    margin-top: 10px;
}

.elem .overlay-text .tags span {
    padding: 6px 10px;
    border-radius: 22px;
    border: 1px solid #fff;
    margin-right: 12px;
    font-size: 0.7vw;
}

#page02 {
  
    padding: 120px 75px;
    /* background-color: red; */
}

#page02 h1 {
    text-align: center;
    font-size: 2.8vw;
    font-weight: 100;
    margin-bottom: 2vw;
}

.box {
    height: 350px;
    width: 402px;
    border-radius: 12px;
    overflow: hidden;
    display: inline-block;
    margin: 20px 15px;
    position: relative;
    transition: all ease-in 0.3s;
}

.box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.box video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.box .box-btm {
    position: absolute;
    bottom: -30%;
    height: 30%;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.551));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.1vw;
    transition: all ease 0.3s;
}

.box-btm h5 {
    font-size: 1.1vw;
    font-weight: 400;
    color: #fff;
}

.box-btm .box-icons i {
    background-color: #fff;
    border-radius: 50px;
    padding: 0.7vw;
    font-size: 0.9vw;
    font-weight: 800;
    margin-left: 5px;
}

#page02 button {
    cursor: pointer;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 2vw;
    background-color: transparent;
    color: #000;
    border: 1.5px solid #000;
    font-size: 0.8vw;
    font-weight: 600;
    padding: 1vw 1.4vw;
    border-radius: 32px;
}

#page02 button:hover{
    color: #2b2a2a;
    border: 1.5px solid #2b2a2a;
}

#page03 {
    height: 100vh;
    width: 100%;
    /* background-color: rebeccapurple; */
    position: relative;
}

#page03 .joinDribble {
    padding: 6vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #feda79;
}

#page03 h2 {
    font-family: "Source Serif 4";
    font-size: 3.5vw;
    font-weight: 400;
    line-height: 3.7vw;
}

#page03 h6 {
    margin-top: 1.4vw;
    font-size: 1.1vw;
    font-weight: 400;
    line-height: 1.7vw;
    text-align: center;
}

.callToActionBtns button {
    padding: 1vw 1.4vw;
    border: none;
    border-radius: 28px;
    margin-left: 25px;
    margin-top: 40px;
    font-size: 0.8vw;
    font-weight: 800;
}

.callToActionBtns button:nth-last-child(2) {
    background-color: #000;
    color: #fff;
}

.footerMarque {
    height: 30vh;
    width: 100%;
    /* background-color: red; */
    white-space: nowrap;
    padding: 2vw 0vw;
    overflow: hidden;
}

.elem {
    display: inline-block;
    height: 175px;
    width: 210px;
    background-color: #fff;
    border-radius: 12px;
    margin-left: 1.3vw;
    margin-top: 1.5vw;
    animation-name: img-infinite-scrll;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.elem::-webkit-scrollbar {
    display: none;
}

.elem img {
    overflow: hidden;
    border-radius: 12px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

.elem p {
    padding: 0.4vw 0;
    font-size: 0.8vw;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
}

footer {
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 19vw;
}

footer img {
    height: 60px;
    object-fit: cover;
}

footer .footer-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.8vw;
    font-size: 0.75vw;
    font-weight: 700;
}

footer .social-icons i {
    font-size: 1.2vw;
    margin-right: 10px;
}

.footer-part-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4vw 19vw;
    padding-bottom: 2vw;
}

.footer-part-2 .footer-part2-list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-part-2 .footer-part2-list ul li {
    list-style: none;
}

.footer-part-2 .footer-part2-list ul li a {
    text-decoration: none;
    color: #000000ab;
    font-size: 0.75vw;
}

.box:hover .box-btm {
    bottom: 0;
}

.box:hover {
    box-shadow: 2px 2px 18px 4px #0000003b;
    cursor: pointer;
}

.elem:hover {
    box-shadow: 2px 2px 18px 4px #0000004c;
    cursor: pointer;
}

@keyframes img-infinite-scrll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-500%);
    }
}