* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #111729;
    color: #fff;
}

h1 {
    font-weight: bold;
}

.container {
    width: 100%;
    /*height: 100vh;*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

header {
    position: absolute;
    left: 6%;
}

header .logo {
    max-width: 250px;
    margin-top: 20px;
}

.hero {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero .content {
    flex: 1;
    text-align: left;
    position: absolute;
    width: 25%;
    right: 6%;
}

.hero .content h1 {
    font-size: 1.2vw;
    margin-bottom: 5px;
    font-weight: bold;
}

.hero .content p {
    font-size: 1.2vw;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero .image {
    flex: 1;
}

.hero .image img {
    width: 100%;
    height: auto;
}

@media (min-width: 1280px) {
    .container {
        height: 100vh;
    }
}

@media (max-width: 768px) {
    .hero .content h1,
    .hero .content p {
        font-size: 16px;
    }
    .container {
        flex-direction: column;
    }
    header {
        position: relative;
        left: unset;
    }
    header .logo {
        max-width: 150px;
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero .content {
        position: relative;
        width: 100%;
        right: unset;
        padding: 6%;
        order: 2;
    }

    .hero .image {
        order: 1;
    }
    .hero .image img {
        max-width: 100%;
    }
}
