html{
    scroll-behavior: smooth;
}

body{
    font-family: "Montserrat";
    text-align: center;
}
h1,h2,h3{
    font-family: "Montserrat-Bold";
}

p{
    color: #8f8f8f;
}

/* headings */
.big-heading{
    font-family: "Montserrat-Black";
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.5;
    color: #fff;
}

.section-heading{
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.5;
}

/* container */

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

/* sections */
.colored-section{
    background-color: #ff4c68;
    color: #fff;
}

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

/* navbar */
.navbar{
    padding:0 0 4.5rem;
}

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

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

.nav-links{
    font-family: "Montserrat-light";
    font-weight: 100;
    font-size: 1.2rem;
}

/* buttons */

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

/* title */

#title{
    text-align: left;
}

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

}

/* hierarchical selectors */
#title .container-fluid{
    padding: 3% 15% 7%;
}

/* features */
#features{
    position: relative;
}

.features-box{
    padding: 5%;
}
.feature-title{
    font-weight: 700;
    font-size: 1.5rem;
}

.icon{
    color: #ef8172;
    margin-bottom: 1rem;
}
.icon:hover{
    color: #ff4c68;
}

/* testimonials */
#testimonials{
    background-color: #ef8172;
}

.testimonial-logo{
    width: 10%;
    border-radius: 60%;
    margin: 20px;
}

.testimonial-text{
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.5;

}

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

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

/* pricing */
#pricing{
    padding: 6.25rem;
}
.section-heading{
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.5;
}

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

.price-text{
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.5;

}
/* Call to Action  */

.cta-heading{
    font-family: "Montserrat-Black";
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.5;
    color: #fff;
}

/* footer */

.footer-icon{
    margin: 20px 20px;
}

/* media query */
@media (max-width:1000px) {
    #title{
        text-align: center;
    }

    .title-image{
        position: static;
        transform: rotate(0);
    }
}