body {
    font-family: "montserrat, sans-serif";
}

#title {
    background-color: #ff4c68;
    color: #fff;
}

#container-fluid{
    padding: 3% 15% 7%;
}

h1 {
    font-family: 'Montserrat-Black', sans-serif;
    font-size: 3rem;
    line-height: 1.5;
    font-weight: 900;
}

/* Navigation Bar */
.navbar {
    padding: 0 0 4.5rem ;
}

.navbar-brand {
    font-family: "ubuntu";
    font-size: 2.5rem;
    font-weight: bold;
}
.nav-item {
    padding: 0 18px;
}
.nav-link {
    font-size: 1.2rem;
    font-family: "Montserrat-Light";
}

/* download buttons */

.download-button {
    margin: 5% 3% 5% 0;
}
/* Title Image */
.title-image {
    width: 20%;
    transform: rotate(25deg); /* Equal to rotateZ(45deg) */
    position: absolute;
    right: 23%;
}


/* features section */
#features {
    padding: 7% 15%;
    background-color: #fff;
    position: relative;
}

/* feature icons */
.icon {
    color: #ff4c68;
    margin-bottom: 1rem;
}
.icon :hover {
    color: #ff4c68;
}

.feature-box {
    text-align: center;
    padding: 5%;
}

h2 {
    font-family: "Monserrat-Black",sans-serif;
    font-size: 3rem;
    line-height: 1.5;
    font-weight: 900;
}
h3 {
    font-family: "Montserrat-Black",sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
}

p {
    color: #727171;
}

/* Testimonial section */
#testimonials {
    text-align: center;
    background-color: #ff4c68;
    color: #fff;
}

.testimonial-image {
    width: 10%;
    border-radius: 100%;
    margin: 20px;
}

#press {
    background-color: #ff4c68;
    text-align: center;
    padding-bottom: 3%;
}

.press-logo {
    width: 15%;
    margin: 20px 20px 50px;
}

.carousel-item {
    padding: 7% 15%;
}

/* Pricing */

#pricing {
    padding: 100px;
    text-align: center;
}

.pricing-column {
    padding: 3% 2%;
}

/* call to action section */
#cta {
    background-color: #ff4c68;
    color: #fff;
    padding: 7% 15%;
    text-align: center;
}

.cta-heading {
    font-family: "montserrat-Black";
    font-size: 3.5rem;
    line-height: 1.5;
}

/* footer */
#footer {
    background-color: #fff;
    padding: 7% 15%;
    text-align: center;
}
.social-icon {
    margin: 20px 10px;
}
/* media querys */
@media (max-width: 1028px) {
    #title {
        text-align: center;
    }
    .title-image {
        position: static;
        transform: rotate(0);
    }
}