@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}
.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}
.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}
.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}
.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
}
.roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
}
.roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}
.roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
}
.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
}
.roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
}  

header .navbar {
    background-color: #039de3 !important;
}
    header .navbar .nav-item .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    @media(max-width: 992px) {
        header .navbar .nav-item .nav-link {
            flex-direction: row;
        }
    }
        header .navbar .nav-item .nav-link i {
            color: #fff;
            font-size: 24px;
        }
        @media(max-width: 992px) {
            header .navbar .nav-item .nav-link i {
                width: 30px;
                font-size: 18px;
            }
        }
        header .navbar .nav-item .nav-link span {
            color: #fff;
        }
    header .mobile-links {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
        header .mobile-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
        }
            header .mobile-links a i {
                font-size: 18px;
            }

footer {
    padding: 30px 0;
    width: 100%;
    height: auto;
    background-color: #039de3;
}
    footer .columns {
        margin-bottom: 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    @media(max-width: 768px) {
        footer .columns {
            flex-direction: column;
            gap: 20px;
        }
    }
        footer .columns .column {
            flex: 1;
        }
            footer .columns .column .title {
                margin-bottom: 20px;
                font-size: 16px;
                font-weight: bold;
                color:rgb(48, 47, 47);
            }
            @media(max-width: 768px) {
                footer .columns .column .title {
                    margin-bottom: 10px;
                }
            }
            footer .columns .column .links {
                display: flex;
                flex-direction: column;
                gap: 2px;
            }
                footer .columns .column .links .subtitle {
                    font-size: 14px;
                    color: #fff;
                    font-weight: bold;
                }
                footer .columns .column .links a {
                    font-size: 14px;
                    color: #fff;
                }
    footer .copyright {
        color: #FFF;
        font-size: 14px;
    }
        footer .copyright a {
            text-decoration: none;
            color: #FFF;
        }