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

/* Navbar Section */

.navbar {
    background-color: #336c95;
    margin-bottom: 30;
}

.nav-link {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.nav-link:hover {
    color: white;
    background-color: #8f8f8f;
}

.navbar-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    cursor: pointer;
}

.navbar-toggler {
    border: 2px solid white;
    border-radius: 4px;
    padding: 6px 10px;
}

/* Html Main Section */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Ubuntu", sans-serif;
    background-color: #336c95;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.4;
}

#hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #336c95;
}

#title {
    background-color: #336c95;
}

.container-fluid {
    padding: 3% 15%;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 3rem;
    line-height: 1.5;
    color: #ffffff;
}

h2 {
    color: #ffffff;
    font-family: "Montserrat";
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10%;
}

h3 {
    font-family: "Montserrat";
    font-weight: bold;
    align-content: center;
    font-size: 3rem;
    color: #fff;
}

p {
    color: #c3c2c2;
    margin-bottom: 20%;
    font-size: medium;
}

.card-text {
    color: #336c95
}

/* Testimonials Section */

#testimonials {
    padding: 7% 15%;
    text-align: center;
    background-color: #336c95;
}

.carousel-item {
    padding: 7% 15%;
}

.testimonial-image {
    width: 10%;
    border-radius: 50%;
    margin: 20px;
}

#footer {
    padding: 7% 15%;
    text-align: center;
}