/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
* {
    margin: 0;
}

/* Improve text rendering */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Body defaults */
body {
    min-height: 100vh;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
	
}

/* Media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Remove built-in form typography */
input,
button,
textarea,
select {
    font: inherit;
}

/* Button reset */
button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Anchor reset */
a {
    color: inherit;
    text-decoration: none;
}

/* List reset */
ul,
ol {
    list-style: none;
    padding: 0;
}

/* Table reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Headings reset */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

/* Prevent text overflow */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* Remove animations for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.main-wrapper{
    min-height: 960px;
    position: relative;
    display: flex;
}

.banner-wrapper{
    flex: 0 0 834px;
    max-height: 960px;
    position: sticky;
    top: 0;
    background-color: #020202;
}

.banner-wrapper .media{
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.banner-wrapper .media img{
    width: 100%;
    height: auto;
}

.banner-wrapper .banner-text{
    position: absolute;
    left: 0;
    top: 0;
    padding: 80px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 710px;
    z-index: 2;
}

.banner-wrapper .banner-text .title{
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

.form-wrapper{
    flex: 1 1 auto;
    position: relative;
    padding: 40px;
}

@media (max-width: 1024px) {
    .banner-wrapper{
        flex: 0 0 400px;
        max-height: 100vh;
    }

    .banner-wrapper .banner-text{
        padding: 40px;
    }

    .banner-wrapper .banner-text .title{
        font-size: 26px;
        line-height: 1.4;
    }

    .form-wrapper{
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .main-wrapper{
        min-height: 500px;
        flex-direction: column;
    }

    .banner-wrapper{
        position: relative;
        flex: 0;
    }

    .banner-wrapper .media{
        display: none;
    }

    .banner-wrapper .banner-text{
        position: static;
        gap: 60px;
    }

    .banner-wrapper .banner-text .title{
        display: none;
    }

    .form-wrapper iframe{
        height: 800px;
    }
}

@media (min-height: 960px) {
    .main-wrapper{
        height: 100vh;
    }

    .banner-wrapper{
        max-height: 100vh;
    }
}