/* HTML elements */
:root {
    --primary-color: #ff4c68;
    --secondary-color: #ef8172;
    --white: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-align: center;
}

i {
    margin-right: 4px;
}

/* Containers */

.container-fluid {
    padding: 7% 15%;
}

/* Sections */

.colored-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.white-section {
    background-color: var(--white);
}

/* Navigation Bar  */

.navbar {
    padding: 0 0 4.5rem;
}

.navbar-brand {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
}

.nav-item {
    padding: 0 18px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}

/* Heading Section */

.main-heading {
    font-size: 3.5rem;
    line-height: 1.5;
}

.section-heading {
    font-size: 3rem;
    line-height: 1.5;
}

/* Title section */

#title .container-fluid {
    text-align: left;
    padding-top: 3%;
}

.iphone-dog {
    width: 60%;
    transform: rotate(25deg);
    overflow: hidden;
    position: absolute;
    right: 30%;
}

.iphone-dog-container {
    position: relative;
}

.download-button {
    margin: 5% 3% 5% 0;
}

/* Feature Section */

#features {
    position: relative;
    z-index: 1;
}

#features h3 {
    font-size: 1.5rem;
}

#features p {
    color: #8f8f8f;
}

#features i {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

#features i:hover {
    color: var(--primary-color);
}

.feature-box {
    padding: 5%;
}

/* Testimonials Section */

#testimonials {
    background-color: var(--secondary-color);
}

#testimonials img {
    width: 10%;
    border-radius: 100%;
    margin: 20px;
}

.testimonial-text {
    font-size: 3rem;
    line-height: 1.5;
}

/* Press section */

#press {
    background-color: var(--secondary-color);
    padding-bottom: 3%;
}

#press img {
    width: 15%;
    margin: 20px 20px 50px;
}

/* Pricing Section */

#pricing {
    padding: 5%;
}

.price-amt {
    font-size: 3rem;
    line-height: 1.5;
}

.pricing-col {
    padding: 3% 2%;
}

/* CTA Section */

#cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 3rem;
    line-height: 1.5;
}

/* Footer section */

#footer p {
    color: #8f8f8f;
    font-size: 0.8rem;
}

#footer i {
    color: #8f8f8f;
    margin: 20px 10px;
}

#footer i:hover {
    color: black;
}

@media (max-width: 1080px) {
    #title {
        text-align: center;
    }

    .iphone-dog {
        position: static;
        transform: rotate(0);
    }
}