html {
    margin: 0%;
    padding: 0%;
}

body {
    margin: 0%;
    padding: 0%;
}

.hero-section {
    width: 100%;
    display: flex;
    margin: 0vw;
    margin-top: 1.5vw;
}

.hero-section-info {
    margin-top: 20vw;
    margin-left: 10vw;
    margin-right: 15vw;
    margin-bottom: 8vw;
    width: 30vw;
}

.hero-section-info h1{
    width: 30vw;
}

.hero-section-info p{
    width: 30vw;
}

.hero-section-back {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    width: 50vw;
}

.hero-section-back img{
    top: 7vw;
    left: 17vw;
    position: absolute;
    width: 80vw;
}

.mockup-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 10vw;
}

.mockup-section-two {
    width: 100%;
    height: 45vw;
    overflow: hidden;
    display: flex; /* Enables flexbox */
    justify-content: center; /* Horizontally centers the image */
    align-items: center; /* Vertically centers the image */
    overflow: hidden; /* Ensures no overflow */
    position: relative; /* Optional if you have absolutely positioned children */
}

.mockup-section-two-img {
    width: 120vw;
    transition: transform 0.5s ease;
}

.mockup-section-three {
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0%;
    padding: 0%;
    width: 100%;
    height: 56.25vw;
}

.mockup-section-four {
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0%;
    padding: 0%;
    width: 100%;
    height: 56.25vw;
}

.mockup-section-five {
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0%;
    padding: 0%;
    width: 100%;
    height: 56.25vw;
}

@media only screen and (max-width: 600px) {
    .hero-section {
        flex-direction: column;
        margin-top: 15vw;
    }

    .hero-section-info {
        margin: auto;
        width: 90vw;
    }

    .hero-section-info h1{
        width: 90vw;
    }
    
    .hero-section-info p{
        width: 90vw;
    }

    .hero-section-back {
        background-size: cover;
        background-repeat: no-repeat;
        background-position-x: center;
        margin-top: 5vw;
        width: 100%;
        overflow: hidden;
    }

    .hero-section-back img{
        top: 0vw;
        left: 0vw;
        position: relative;
        margin-left: -30vw;
        width: 100vw;
    }

    .mockup-section {
        margin-bottom: 30vw;
    }
}