@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

.main-wrapper {
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .5px;
    color: #fff;
    background-color: #000;
    max-width: 1920px;
    margin: 0 auto;
    text-align: center;
}

.main-wrapper h2 {
    font-family: "Urbanist", sans-serif;
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.main-wrapper p {
    margin-bottom: 60px;
}

.spacing {
    padding: 80px 0;
}

.hero {
    background-image: url(../assets/hero-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 100%;
    height: 900px;
    display: flex;
    align-items: end;
    padding-bottom: 80px;
}

.hero .product {
    margin-bottom: 40px;
}

.hero p {
    margin-bottom: 0;
}

.power {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
}

.power figure {
    display: flex;
    align-items: center;
    margin: 0;
}

.power figure h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 0;
}

.power figure img {
    margin-right: 10px;
}

.vibe {
    padding-bottom: 80px;
}




@media (max-width: 768px) {
    .main-wrapper p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .main-wrapper h2 {
        font-size: 24px;
    }
    
    .offset-1 {
        margin-left: 0;
    }

    .hero {
        background-image: url(../assets/hero-bg-mob.png);
        background-size: contain;
        height: auto;
        padding-bottom: 40px;
    }

    .hero .product {
        max-width: 90%;
        margin-top: 60px;
    }

    .power {
        gap: 40px;
    }

    .power figure {
        display: block;
    }

    .power figure img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .vibe {
        padding-bottom: 40px;
    }
}