@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;700;900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

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

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* bootstrap style */

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

/* section colors */

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

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

/* headings */

.big-heading {
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.5;
}

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

/* title bar */

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

#iphone-img {
    width: 60%;
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
    position: absolute;
    right: 30%;
}

/* navigation bar */

.navbar {
    padding: 0 0 4.5rem;
}

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

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

.nav-link {
    font-size: 1.2rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
}

/* Download buttons */

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

/* features */

#features {
    position: relative;
    z-index: 1; /* No need actually coz Stacking order */
}

.h3-features {
    font-size: 1.5rem;
}

.div-features {
    padding: 5%;
}

.p-features {
    color: #8f8f8f;
    font-size: 0.8rem;
}

.icons-features {
    color: #ef8172;
    padding-bottom: 1rem;
}

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

/* testimonial section */

#testimonials {
    background-color: #ef8172;
}

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

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

/* press */

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

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

/* pricing section */

#pricing {
    padding: 100px;
}

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

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

/* cta */



/* footer */

#footer {
    background-color: #fff;
    color: #8f8f8f;
}

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

/* media query */

@media (max-width:1024px) {
    #iphone-img {
        position: static;
        transform: rotate(0);
    }
    #title .container-fluid {
        text-align: center;
    }
}

