:root {
    --primary: #22C55E;
    --secondary: #FEC232;
    --dark: #454545;
    --text: #666666;
    --white: #ffffff;
    --border: #EBEBEB;

    --font-1: 'Inter', sans-serif;
}

/* Button Declaration */

* {
    font-family: var(--font-1);
}


/* Utils */
html,
body {
    scroll-behavior: smooth;
    background: url(/img/bg.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
}

.nav-text {
    color: var(--White, #FFF);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.footer-text {
    color: var(--White, #FFF);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: absolute;
    bottom: 32px;
}

.main-title {
    color: var(--White, #FFF);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 63px; /* 131.25% */
    margin-bottom: 32px;
}

.main-desc {
    color: var(--White, #FFF);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 32px;
}

.btn-main-fill {
    width: 234px;
    padding: 16px 24px;
    border-radius: 10px;
    background: #05599A;
    border: 1px solid white;
    transition: all 200ms ease;
    color: #FFF;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.btn-main-fill:hover {
    filter: brightness(.8);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
    color: #fff;
}

.btn-main-outline {
    width: 234px;
    padding: 16px 24px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid white;
    transition: all 200ms ease;
    color: #FFF;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.btn-main-outline:hover {
    filter: brightness(.8);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
    color: #fff;
    background-color: #05599A;
}

.main-section {
    height: fit-content;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.footer-text.mobile {
    display: none;
}

@media (max-width: 767.98px) {

    /* Utils */
    .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
        padding-left: 16px;
        padding-right: 16px;
    }
    /* End Utils */

    .nav-text {
        font-size: 20px;
    }

    .main-title {
        font-size: 32px;
        line-height: normal;
    }

    .main-desc {
        font-size: 14px;
    }

}

@media (max-width: 997.98px) {
    #layoutDefault,
    #layoutDefault_footer {
        overflow-x: hidden;
    }

    .main-section {
        position: static;
        padding-top: 22vh;
    }

    .footer-text {
        text-align: center;
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        display: none;
    }

    .footer-text.mobile {
        display: block;
        position: static;
        margin-top: 32px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

}

@media (min-width: 992px) and (max-width: 1199.98px) {

}

@media (max-width: 767.98px) {

}



