/* HTML Elements */
* {
    font-family: 'Montserrat', sans-serif;
    text-align: center
}

h2 {
    font-size: 3rem;
    line-height: 1.5;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight:550;
}

/* Navigation Bar */
.navbar {
    padding-bottom: 4.5rem;
}

.navbar-brand {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
}

.nav-item {
    padding: 0 18px;

}

.nav-link {
    font-size: 1.2rem;
    font-weight: 200;
}

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

/* Title */
#title {
    background-color: #40513B;
    color: white;
}

.title-h1 {
    font-size: 3.5rem;
    line-height: 1.5;
    font-weight: 900;
    text-align: left;
}

.title-image {
    width: 37%;
    rotate: 25deg;
    position: absolute;
    right: 18%;
}

.download-button {
    margin: 5% 3% 5% 0;
}

/* Features */
.features-icon {
    color: #609966;
    padding-bottom: 2rem;
}

.features-icon:hover {
    color :#40513B;
}

.features-subtext {
    color: grey;
}

#features {
    padding: 7% 15%;
    background-color: #EDF1D6;
    position: relative;
    z-index: 1;
}

/* Testimonial */
#testimonials {
    background-color: #609966;
    color: white;
}

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

#press {
    background-color: #609966;
    padding-bottom: 3%;
}

.press-logo {
    width: 15%;
    margin: 20px 20px 50px;
}

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

/* Pricing */

#pricing {
    padding: 100px;
    background-color: #EDF1D6;
}

.pricing-column {
    padding: 3% 2%;
}

/* Call To Action */

#cta {
    background-color: #40513B;
    padding: 7rem;
}

.cta-h3 {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    padding-bottom: 2rem;
}

.cta-btn {
    margin: 1rem;
}

/* Footer */

#footer {
    background-color: #EDF1D6;
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.footer-icons {
    padding: 0 0.5rem 0 0.5rem;
}

.footer-p {
    color: grey;
    background-color: #EDF1D6;
}

/* Media Queries */

@media (max-width:1028px) {

    #title {
        text-align: center;
    }

    .title-image {
        position: static;
        rotate: 0deg;
        width: 90%;
    }
}