* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFF;
    color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
    width: 100%;
    z-index: 999;
    justify-content: center;
    
}

.logo-white {
    display: none;
}

.header-container {
    padding: 2.25vh 0 2.25vh 0;
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
}

.header-container > .logo-cont {
    height: auto;
    width: 30%;
    cursor: pointer;
    display: flex;
    position: relative;
    left: 2%;
    transition: all 0.5s ease-in-out;
    scale: 1;
}
.header-container > .logo-cont:hover {
    scale: 1.05;
}

.header-container > .logo-cont > img {
    height: auto;
    width: 14.06vw;
}

.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 40%;
    height: auto;
    padding: 0;
    margin: 0;
}

.header-nav > a {
    color: #FFF;
    font-family: "Clash Grotesk";
    font-size: 1.0625vw !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    scale: 1;
}
.header-nav > a:hover {
    scale: 1.1;
}

.header-btn-cont {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: auto;
    width: 30%;
    margin-right: 2%;
    overflow: hidden;
    border-radius: 100px;
    transition: all 0.5s ease-in-out;
    scale: 1;
}
.header-btn-cont:hover {
    scale: 1.05;
}

.download-btn {
    position: relative;
    z-index: 2;
    height: 3vw !important;
    width: 60%;
    gap: 5%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: none;
    text-decoration: none;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border-radius: 100px;
    overflow: hidden;
}

.download-btn  > video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-btn > div {
    color: #FFF;
    font-family: "Clash Grotesk";
    font-size: 1.2vw !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    
}

.menu-btn {
    display: none;
}

.menu-mobile-content {
    display: none;
}