:root {
    --green-color: #0EAF51;
    --dark-color: #3B3B3C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    border: none;
    text-decoration: none;
}

.banner-text-container {
    padding-left: 98px;
    padding-top: 40px;
    z-index: 100;
    width: 500px;
}

.d-none.d-lg-block a {
    border-bottom: none;
    text-decoration: none;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

html {
    background-color: #f4f4f4;
}

body {
    background-color: white;
}

.outer-div {
    margin: 0 !important;
    padding: 0 !important;
}

/* navbar */
nav.navbar {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1030;
    background-color: transparent !important;
    transition: background-color 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: center !important;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    nav.navbar {
        padding-left: 80px;
        padding-right: 80px;
    }
}

.navbar-expand-md.collapsing,
.navbar-expand-md.show {
    background-color: white !important;
}

.navbar-collapse.collapse.show,
.navbar-collapse.collapsing {
    background-color: white !important;
}

.navbar-brand {
    padding-left: 15px;
}

@media (max-width: 767.98px) {
    .d-none.d-md-block {
        display: none !important;
    }
}

.navbar-collapse {
    flex-grow: 0;
}

@media (min-width: 768px) {
    .navbar-collapse {
        margin-left: 375px;
        position: absolute;
        transform: translateX(-50%);
        width: auto;
    }
}

.navbar-nav {
    justify-content: start;
}

.navbar-toggler {
    border: none !important;
}

/* text */
.title {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    color: var(--dark-color);
}

.subtitle {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    color: var(--dark-color);
}

/* form */
.form-control:focus {
    border-color: var(--green-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* button */
.nav-button {
    padding: 10px !important;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: transform 0.3s ease;
    color: var(--dark-color);
    font-size: 16px;
}

.nav-button:hover {
    transform: translateY(-3px);
    color: var(--green-color);
}

.nav-button-current {
    color: var(--green-color) !important;
}

.nav-button-current:hover {
    opacity: 0.5;
}

/* main */
.container {
    max-width: 960px;
}

.button {
    display: flex;
    justify-content: flex-end;
    max-height: 40px;
}

.button button {
    color: white;
    max-height: 40px;
    background-color: var(--green-color);
}

.button button:hover {
    color: white;
    background-color: var(--dark-color);
}

/* footer */
footer {
    background-color: #272729;
}

.footer {
    justify-content: space-between;
}

.footer-title, .footer-subtitle, .footer-text {
    font-family: "Roboto", sans-serif;
}

.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.footer-line {
    color: rgb(80, 80, 80, 1) !important;
}

.footer-link, .footer-text {
    color: var(--green-color) !important;
    font-weight: 400;
}

.footer-subtitle {
    color: white;
    font-weight: 500;
}

.footer-link:hover {
    color: green !important;
}

.footer-small {
    cursor: pointer;
    margin: 0px;
    display: flex;
    align-items: center;
    height: 40px;
}

.footer-small:hover {
    background-color: rgb(14, 175, 81, 0.3)
}

.footer-small a {
    font-family: "Roboto", sans-serif;
    color: white;
    font-weight: 400;
}

.copyright {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    color: var(--dark-color);
    border-top: 0.5px solid rgb(80, 80, 80, 1) !important;
}

.copyright p {
    padding: 0;
    margin: 0;
}

p {
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

label, input {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.content-image {
    width: 300px;
    height: 300px;
}

.content-subtitle {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
}

.text-justify {
    text-align: justify;
} 

.banner-container {
    position: relative;
    display: inline-block;
}

.banner-image {
    width: 100%;
    height: auto;
}

.banner-text {
    color: var(--dark-color);
    font-size: 25px;
    font-weight: 600;
}

.banner-text-small {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--dark-color);
    color: white;
    opacity: 0.8;
    font-size: 18px;
    font-weight: 500;
    padding: 20px;
}