@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html, body {
    height: 100%;
    width: 100%;
}


img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

nav{
    height: 80px;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 72px 65px;
    z-index: 999;
    .logo{
        svg{
            height: 28px;
            width: auto;
            fill: #fff;
        }
    }
    .menu{
        .menu-line{
            height: 6px;
            width: 28px;
            background-color: #fff;
            margin: 5px 0;
        }
    }
}
.page1{
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.hero-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.main-hero-image {
    position: absolute;
    top: 5%;
    z-index: 98;
    scale: 1.3;
}

.gta-text {
    position: absolute;
    top: 5%;
    scale: 1.3;
    z-index: 99;
}
.overlay-svg{
    --scale-svg:45;
    --color-svg:#ffffff00;
    --stroke-svg:1px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    background-color: #00000000;
    overflow: hidden;
    display: flex;
    scale: 5;
    justify-content: center;
    svg{
        position: absolute;
        top: 10%;
        height: 20%;
        width: 20%;
        scale: var(--scale-svg);
        .st0{
            fill: var(--color-svg);
            stroke-width: var(--stroke-svg);
            stroke: #000;
        }
    }
}

.page2{
    height: 100vh;
    width: 100%;
    background-color: #ffffff;
}