html,
body {
    width: 100%;
    -webkit-font-smoothing: antialiased;
    font-family: "Lato", Helvetica, Arial, sans-serif;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1620px;
        padding: 0 50px;
    }
}

/* ===================================
                SCROLLBAR
   =================================== */

* {
    scrollbar-width: thin;
    scrollbar-color: #12194b #2e386d;
}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: #2e386d;
}

*::-webkit-scrollbar-thumb {
    background: #12194b;
}

#header {
    width: 100%;
    position: absolute;
    z-index: 9900;
}


/* ===================================
                MENU
   =================================== */

#header #menu {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    height: 70px;
    padding: 0 10px;
    position: relative;
    display: grid;
    justify-items: center;
}

#header #menu #nav-menu {
    width: 100%;
    margin: 0 auto;
    max-width: 1440px;
}

#header #menu #logo {
    color: #FFF;
    text-align: left;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-size: 32px;
    border-style: none;
    border-radius: 0px;
    display: none;
}

#header #menu #nav-menu .menu {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    list-style: none;
    justify-content: space-evenly;
}

#header #menu #nav-menu .menu li a {
    padding: 30px 15px;
    display: block;
    font-size: 20px;
    color: #FFF;
    text-decoration: none;
}

#header #menu #nav-menu .menu li a:hover {
    color: rgb(95, 213, 140);
}


/* ===================================
            BUTTON MOBILE
   =================================== */

#btn-mobile {
    display: none;
    position: absolute;
    top: 3px;
    right: 0;
    width: 60px;
    height: 45px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    transform: scale(0.55);
}

#btn-mobile span {
    display: block;
    position: absolute;
    height: 9px;
    width: 50%;
    background: rgb(95, 213, 140);
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#btn-mobile span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
}

#btn-mobile span:nth-child(odd) {
    left: 0px;
    border-radius: 9px 0 0 9px;
}

#btn-mobile span:nth-child(1),
#btn-mobile span:nth-child(2) {
    top: 0px;
}

#btn-mobile span:nth-child(3),
#btn-mobile span:nth-child(4) {
    top: 18px;
}

#btn-mobile span:nth-child(5),
#btn-mobile span:nth-child(6) {
    top: 36px;
}

#btn-mobile.open span:nth-child(1),
#btn-mobile.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#btn-mobile.open span:nth-child(2),
#btn-mobile.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#btn-mobile.open span:nth-child(1) {
    left: 5px;
    top: 7px;
}

#btn-mobile.open span:nth-child(2) {
    left: calc(50% - 5px);
    top: 7px;
}

#btn-mobile.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

#btn-mobile.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

#btn-mobile.open span:nth-child(5) {
    left: 5px;
    top: 29px;
}

#btn-mobile.open span:nth-child(6) {
    left: calc(50% - 5px);
    top: 29px;
}


/* ===================================
                MOBILE
   =================================== */

@media (max-width: 1000px) {
    #header {
        position: fixed;
        background-color: #050d42;
    }

    #header #menu {
        height: 50px;
    }

    #header #menu #logo {
        display: block;
    }

    #header #menu #nav-menu .menu {
        height: 0;
        width: 100%;
        left: 0;
        right: 0;
        top: 50px;
        overflow-y: hidden;
        position: absolute;
        align-items: flex-end;
        flex-direction: column;
        background-color: white;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        background-color: #050d42;
    }

    #header #menu #nav-menu .menu.active {
        height: 380px;
        box-shadow: 0 2px 4px rgb(0 0 0 / 5%);
    }

    #btn-mobile {
        display: block;
    }

    #main {
        padding-top: 50px;
    }
}

@media (max-width: 500px) {
    #header #menu #logo {
        display: none;
    }
}

/* ===================================
                BANNER
   =================================== */
#banner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url(../img/banner-bg.png) center center / cover no-repeat rgb(5, 13, 66);
    padding: 100px 0;
    margin: 0px auto;
    overflow: visible;
}

#banner h1 {
    color: #FFF;
    text-align: left;
    line-height: 60px;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-size: 47px;
    border-style: none;
    border-radius: 0px;
    margin-bottom: 50px;
    padding: 0px;
}

#banner h1 span {
    color: rgb(95, 213, 140);
    border-color: rgb(95, 213, 140);
}

#banner p {
    color: #FFF;
    margin-bottom: 50px;
    font-family: Roboto;
}

#banner .login {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

#banner .login a {
    background-color: rgb(95, 213, 140);
    font-family: Lato;
    line-height: 50px;
    font-weight: 700;
    font-size: 20px;
    border-color: rgba(255, 255, 255, 0.35);
    border-style: none;
    margin: 0px;
    border-radius: 27px;
    padding: 15px 50px;
    color: rgb(1, 57, 47);
    text-decoration: none;
    white-space: nowrap;
    width: auto;
    height: auto;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: 50% 50% 0px;
    border-width: 0px;
}

#banner img {
    width: 100%;
}

@media (max-width: 1200px) {
    #banner h1 {
        text-align: center;
    }

    #banner p {
        text-align: center;
    }
}

@media (max-width: 1000px) {
    #banner {
        padding-top: 50px;
    }
}

/* ===================================
                SECTION 1
   =================================== */

#section-1 {
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    background-image: url(../img/section-bg1.png);
    background-repeat: no-repeat;
    background-position: left center;
}

#section-1 .image {
    max-width: 500px;
    margin: 0 auto;
}

#section-1 .image img {
    width: 100%;
}

#section-1 h3 {
    color: #050d42;
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 50px 0px;
}

#section-1 p {
    color: #626262;
    line-height: 1.9rem;
}

@media (max-width: 1200px) {
    #section-1 h3 {
        text-align: center;
    }

    #section-1 p {
        text-align: center;
    }
}

/* ===================================
                SECTION 2
   =================================== */
#section-2 {
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: #f5f6f9;
}

#section-2 h3 {
    font-size: 31px;
    line-height: 45px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #050d42;
    text-align: center;
}

#section-2 h3 span {
    display: block;
    color: #5fd58c;
}

#section-2 .card {
    background: url(../img/home-column-bg1.png) no-repeat center bottom #FFF;
    background-size: contain, cover;
    border: none;
    height: 400px;
    margin: 75px 25px;
    padding: 60px 10% 45px;
    border-radius: 10px;
    box-shadow: 0px 16px 49px 0px rgb(5 13 66 / 8%);
}

#section-2 .card .image {
    display: flex;
    justify-content: center;
}

#section-2 .card h4 {
    text-align: center;
    color: #050d42;
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
    letter-spacing: 0px;
    margin: 75px 0 50px;
}

#section-2 .card.two {
    background-color: #607fe1;
    background-image: url(../img/home-column-bg2.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 60px 10% 45px;
    border-radius: 10px;
    box-shadow: 0px 16px 49px 0px rgb(5 13 66 / 8%);
}

#section-2 .card.two h4 {
    color: #FFF;
}

#section-2 .card.three {
    background-color: #2a336e;
    background-image: url(../img/home-column-bg2.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 60px 10% 45px;
    border-radius: 10px;
    box-shadow: 0px 16px 49px 0px rgb(5 13 66 / 8%);
}

#section-2 .card.three h4 {
    color: #FFF;
}

@media (max-width: 1200px) {
    #section-2 .card {
        margin: 75px auto;
        max-width: 600px;
    }
}

/* ===================================
                SECTION 3
   =================================== */
#section-3 {
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: #192259;
    background-repeat: no-repeat;
    background-position: center;
}

#section-3 h3 {
    color: #FFF;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1px;
}

#section-3 h3 span {
    color: rgb(95, 213, 140);
    border-color: rgb(95, 213, 140);
}

#section-3 p {
    font-size: 16px;
    color: #FFF;
    line-height: 1.9rem;
}

#section-3 .features {
    margin-bottom: 100px;
    text-align: center;
}

#section-3 .features a {
    color: #fff;
    background-color: #5c81f3;
    border-color: transparent;
    font-family: Lato;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 0px;
    border-width: 0px;
    border-radius: 25px;
    text-decoration: none;
    padding: 20px 30px;
}

#section-3 .carousel-indicators {
    bottom: -65px;
}

#section-3 .carousel-indicators .active {
    background-color: #5fd58c;
}

#section-3 .carousel-item img {
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    #section-3 h3 {
        text-align: center;
    }

    #section-3 p {
        text-align: center;
    }

    #section-3 .features {
        text-align: center;
    }

    #section-3 img {
        margin: 0 auto;
    }
}

/* ===================================
                SECTION 4
   =================================== */

#section-4 {
    padding-top: 120px;
    padding-bottom: 10px;
    background-image: url(../img/section-bg3.png);
    background-repeat: no-repeat;
    background-position: center top;
}

#section-4 img {
    width: 100%;
    max-width: 780px;
}

#section-4 h3 {
    text-align: center;
    color: #050d42;
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 100px 0;
}

#section-4 h2 {
    text-align: center;
    color: #050d42;
    font-size: 47px;
    line-height: 59px;
    font-weight: 700;
    letter-spacing: 1px;
}

#section-4 h5 {
    color: #5fd58c;
    font-size: 18px;
    line-height: 20px;
    font-weight: 900;
    letter-spacing: 0px;
    text-align: center;
}

#section-4 p {
    text-align: center;
    margin: 100px auto;
}

#section-4 a {
    background-color: rgb(95, 213, 140);
    font-family: Lato;
    line-height: 50px;
    font-weight: 700;
    font-size: 20px;
    border-color: rgba(255, 255, 255, 0.35);
    border-style: none;
    margin: 0px;
    border-radius: 27px;
    padding: 10px 50px;
    color: #FFF;
    text-decoration: none;
    white-space: nowrap;
    width: auto;
    height: auto;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: 50% 50% 0px;
    border-width: 0px;
}

/* ===================================
                FOOTER
   =================================== */
#footer .image-wrapper {
    margin-top: 50px;
}

#footer .image-wrapper img {
    width: 100%;
}

#footer .footer {
    background-color: #f5f6f9;
    position: relative;
}

#footer .copyright {
    position: relative;
    width: 100%;
    clear: both;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    padding: 0 70px 20px 0;
}

#footer .copyright p {
    color: #050d42;
    padding-right: 5px;
}

#footer .copyright p a {
    color: #050d42;
    text-decoration: none;
}

#footer .copyright p a:hover {
    text-decoration: underline;
}

#footer #back-top {
    position: absolute;
    right: 30px;
    bottom: 35px;
    z-index: 1000;
}

#footer #back-top a {
    font-weight: bolder;
    padding: 12px 8px 14px 8px;
    background-color: #050d42;
    text-decoration: none;
    border-radius: 10px;
}