/*
---------------------------------------------
global setting
---------------------------------------------
*/
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

p {
    /* color: #333333; */
    /* font-family: "Poppins", sans-serif; */
}

h3 {
    font-size: 1.5rem;
    color: #003e74;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    color: #003e74;
    font-family: "Poppins", sans-serif;
}

.panel1 {
    padding: 40px 0;
}

.panel2 {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1170px;
}

.card-body span {
    font-style: italic;
}

.card-header {
    color: #333333;
    font-family: "Poppins", sans-serif;
    font-weight: bolder;
}

.btn-primary {
    color: #fff;
    background-color: #20a8d8;
    border-color: #20a8d8;
}

.btn-primary:hover {
    background-color: #1b8eb7;
    border-color: #1b8eb7;
}

strong {
    font-style: italic;
}


/*
---------------------------------------------
navbar
---------------------------------------------
*/

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.6s;
    z-index: 999;
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
    max-height: 66px;
    border-bottom: 1px solid rgb(200 200 200 / 80%)
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

/*.logo {*/
/*    position: relative;*/
/*    display: flex;*/
/*    text-decoration: none;*/
/*    padding: 1rem;*/
/*    font-size: 25px;*/
/*}*/

.nav-menu {
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: space-around;
    line-height: 2;
}

.nav-menu .active {
    color: #003e74;
    border-bottom: 3px solid #003e74;
}

.nav-menu li {
    list-style: none;
}

.nav-menu li a {
    color: #333333;
    text-decoration: none;
    display: block;
    padding: 1rem 1rem;
    letter-spacing: 1px;
}

.nav-menu li a:hover {
    color: #003e74;
    border-bottom: 3px solid #003e74;
}

nav .burger {
    display: none;
}

nav .burger:hover {
    cursor: pointer;
    color: darkgrey;
}

@media only screen and (max-width: 800px) {
    nav .container {
        padding: 1rem;
        max-height: 66px;
    }

    .nav-menu {
        max-height: 0;
        width: 100%;
        position: absolute;
        left: 0;
        top: 60px;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .nav-menu ul {
        border-bottom: 1px solid black;
    }

    .showing {
        max-height: 1000px;
        transition: 1s;
        border-bottom: 1px solid rgb(200 200 200 / 80%)
    }

    nav .burger {
        display: block;
    }
}

/*
---------------------------------------------
home - banner
---------------------------------------------
*/
#banner {
    background: url(../images/intro.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 450px;
    margin-top: 60px;
}

#banner .container {
    text-align: left;
    padding-top: 70px;
}

#banner h1 {
    color: white;
    font-weight: 600;
    font-size: 50px;
    text-transform: uppercase;
}

#banner p {
    color: white;
    /* font-size: 1.2rem; */
    /* width: 75%; */
}

@media only screen and (max-width: 754px) {
    #banner .container {
        padding-top: 70px;
    }
}

.banner-main {
    padding: 8em 0em 0em 0em;
    width: 65%;
  }




/*
---------------------------------------------
scroll to top button
---------------------------------------------
*/
#toTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 30px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #003e74; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 10px 20px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#toTopBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

/*
---------------------------------------------
footer
---------------------------------------------
*/
footer {
    padding: 20px 0 10px;
    background: #FFFFFF;
    border-top: 1px solid rgb(200 200 200 / 80%);
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer span {
    color: #003e74;
}

footer a {
    color: #003e74;
    letter-spacing: 1px;
}

