@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    overflow: hidden;
}

:root {
    --text-xl: 32px;
    --text-lg: 20px
}

.bg-green {
    background-color: #1B7B33;
}

.container {
    max-width: 1320px;
    padding: 0 16px;
    margin: 0 auto;
    width: 100%;
}

.text-xl {
    font-size: var(--text-xl);
}

.text-lg {
    font-size: var(--text-lg);
}

.lh-121 {
    line-height: 121%;
}

.fw-800 {
    font-weight: 800;
}

.tracking-7 {
    letter-spacing: 1.12px;
}

.text-white {
    color: white;
}

.min-h-100 {
    min-height: 100vh;
}

.ellipse-1 {
    right: 34px;
    top: 45px;
    pointer-events: none;
}

.ellipse-2 {
    left: 34px;
    bottom: -25px;
    pointer-events: none;
}
        .ellipse {
        max-width: 130px;
        max-height: 150px;
    }
            .logo{
        max-width: 210px;
        max-height: 56px;
    }

@media (min-width:576px) {

    :root {
        --text-xl: 56px;
        --text-lg: 24px
    }
        .logo{
        max-width: 250px;
        max-height: 70px;
    }
         .ellipse {
        max-width: 160px;
        max-height: 180px;
    }
}

@media (min-width:768px) {

    :root {
        --text-xl: 76px;
        --text-lg: 32px
    }
        .ellipse {
        max-width: 180px;
        max-height: 200px;
    }
    .logo{
        max-width: 311px;
        max-height: 87px;
    }
}

@media (min-width:992px) {

    :root {
        --text-xl: 96px;
    }

    .ellipse {
        max-width: 200px;
        max-height: 228px;
    }
}

@media (min-width:1200px) {

    :root {
        --text-xl: 115.66px;
    }

    .ellipse {
        max-width: 230px;
        max-height: 258px;
    }
}