/* Element Selectors */

body {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.5;
}

p {
    color: #8f8f8f;
}


/* Headings */

.big-heading {
    font-size: 3.5rem;
}

.section-heading {
    font-size: 3rem;
}


/* Containers */

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


/* Sections */

.colored-section {
    background-color: #ff4c68;
    color: white;
}

.white-section {
    background-color: white;
}


/* Navigation Bar */

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

.navbar {
    padding: 0 0 4.5rem;
}

.nav-item {
    padding: 0 18px;
}

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


/* Title Section */

#title .container-fluid {
    padding: 3% 15% 7%;
    text-align: left;
}


/* Download Buttons */

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

.title-image {
    width: 50%;
    transform: rotate(25deg);
    position: absolute;
    right: 30%;
}


/* Feature Section */

.feature-section {
    padding: 3rem 5rem;
}

.feature-icons {
    color: #ef8172;
}

.feature-icons:hover {
    color: #ff4c68;
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 1rem 0 1rem;
}

#features {
    position: relative;
}


/* Press Section */

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

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


/* Pricing Section */

#pricing {
    padding: 100px;
}

.pricing-text {
    font-size: 3rem;
}

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

.card-title {
    font-size: 1.5rem;
}


/* Testimonial Section */

#testimonials {
    background-color: #ef8172;
}

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

.testimonial-text {
    font-size: 3rem;
}


/* Footer Section */

.footer-icon {
    padding: 3% 2%;
    font-size: 1.5rem;
}


/* Media query breakpoints */

@media (max-width: 992px) {
    .title-image {
        width: 50%;
        transform: rotate(0deg);
        position: static;
    }
    #title {
        text-align: center;
    }
}