@font-face {
    font-family:'Gellix-Regular';
    src: url('./fonts/Gellix-Regular.woff2') format('woff2'),
        url('./fonts/Gellix-Regular.woff') format('woff');
}

@font-face {
    font-family:'Gellix-Bold';
    src: url('./fonts/Gellix-Bold.woff2') format('woff2'),
        url('./fonts/Gellix-Bold.woff') format('woff');
}

@font-face {
    font-family:'Gellix-ExtraBold';
    src: url('./fonts/Gellix-ExtraBold.woff2') format('woff2'),
        url('./fonts/Gellix-ExtraBold.woff') format('woff');
}

@font-face {
    font-family:'Gellix-Medium';
    src: url('./fonts/Gellix-Medium.woff2') format('woff2'),
        url('./fonts/Gellix-Medium.woff') format('woff');
}

html, body {
    margin: 0;
    border: 0;
    padding: 0;
    background-color: #fff;
    font-family: 'Gellix-Regular';
    color: #161C27;
    font-size: 16px;
}

h1, h2 {
    font-family: 'Gellix-ExtraBold';
}

h3, h4 {
    font-family: 'Gellix-Bold';
    margin: 0;
}

h1 {
    font-size: 48px;
    margin: 25px 0;
}

h2 {
    font-size: 34px;
    margin: 15px 0;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 20px;
}

.section-spacing {
    padding: 150px 10vw;
}

.flex-content-row {
    display: flex;
    flex-direction: row;
    gap: 90px;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-section img {
    width: 200px;
    height: 240px;
}

.hero-separator {
    max-width: 350px;
    width: 50%;
    height: 40px;
    border-bottom: 1px solid #1A2234;
}

.hero-subtext {
    font-size: 34px;
    font-family: 'Gellix-Medium';
}

.report-section {
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 50px 10vw;
}

.report-img-container {
    z-index: 2;
    flex-basis: 50%;
    flex-shrink: 2;
    display: flex;
    justify-content: end;
}

.report-img-container img {
    width: 100%;
    max-width: 550px;
}

.report-section-text {
    z-index: 2;
    flex-basis: 50%;
}

.oscar-list {
    list-style-image: url('./img/CheckmarkDark.svg');
    text-align: start;
    line-height: 1.5;
}

.polygon-background {
    background-color: #F6FAFB;
    position: absolute;
    width: 100%;
    left: 0;
    height: 600px;
    clip-path: polygon(0 0, 100% 200px, 100% 100%, 0 400px);
    z-index: 1;
    bottom: -100px;
}

.yellow-box-container {
    flex-shrink: 0;
    flex-basis: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yellow-box {
    height: 330px;
    width: 330px;
    border-radius: 5px;
    background-color: #F6EE9A;
}

.yellow-box img {
    margin: 200px auto 0;
    height: 230px;
    display: block;
}

.instructions-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-size: 18px;
    flex-shrink: 1;
    line-height: 1.5;
    flex-basis: 60%;
}

.section-data {
    display: flex;
    flex-direction: row;
    background-color: #182236;
    color: #DDEAED;
}

.section-data-text-container {
    flex-basis: 50%;
}

.section-data-text {
    line-height: 1.5;
}

.autoshop-image {
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-image: url('./img/AutoShop.jpg');
}

.section-benefits {
    text-align: center;
    background-color: #F6FAFB;
}

.benefits-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 60px;
    gap: 40px;
    flex-wrap: wrap;
}

.section-row-item {
    flex: 1 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.circle-container {
    width: 150px;
    height: 150px;
    margin: 30px auto;
}

.circle-container .circle {
    height: 100%;
    width: 100%;
    background-color: #DDEAED;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-container .circle img {
    height: 50%;
    width: 50%;
}

footer {
    width: 100%;
    height: 100px;
    background-color: #182236;
    color: #DAEAEE;
    display: flex;
    justify-content: center;
    align-items: center;
}

.oscar-footer-logo {
    width: 140px;
    height: 38px;
}


@media (max-width: 991px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    .section-spacing {
        padding: 80px 10vw;
    }

    .flex-content-row {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
    }

    .report-section-text {
        flex-basis: 100%;
        text-align: center;
    }

    .polygon-background {
        height: 300px;
        clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 200px);
        bottom: 50px;
    }

    .yellow-box-container {
        margin-bottom: 150px;
    }

    .section-data {
        flex-wrap: wrap;
    }

    .autoshop-image {
        height: 400px;
        flex-basis: 100%;
    }

    .section-data-text-container {
        flex-basis: 100%;
        text-align: center;
    }
}