@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;900&display=swap');

body {
    font-family: Montserrat;
}

#title {
    background-color: #ff4c68;
    color: white;

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

h1 {
    font-family: "Montserrat";
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.5;
}

h2 {
    font-family: "Montserrat";
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 1.5;
}

h3 {
    font-family: "Montserrat";
    font-weight: bold;
    font-size: 25px;
}

p {
    color: #8f8f8f;
}

body {
    font-family: Montserrat;
}

/*Navigation Bar*/

.container-no-padding {
    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";

}

/*Download Buttons*/

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

/*Tittle Image*/

.tittle-image {
    border-radius: 40px;
    /*width: 50%;*/
    object-fit: contain;
    transform: rotate(35deg) translate(50%, -100px);
    margin: 0 auto;
    position: absolute;
    right: 30%;
}

.hero-container {
    padding-bottom: 50px;
}

/*Features*/
#features {
    padding: 7% 15%;
    background-color: white;
    position: relative;
    z-index: 1;

}

.feature-box {
    text-align: center;
    padding: 10px;
}

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

.icon:hover {
    color: #ff4c68;
}

.feature-boxtitle {
    font-size: 25px;
}

/*Testimonial Section*/

#testimonials {

    text-align: center;
    background-color: #ef8172;
    color: #fff;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 100%;
    margin: 20px;
}
.carousel-item{
    padding: 7% 15%;
}

#press i {
    font-size: 100px;
    color: white;
    padding: 20px;
}

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

/*Pricing Section*/
#pricing{
    padding: 100px;
    text-align: center;
}
.pricing-column{
    padding: 3% 2%;
}

.pricing-column .full-height {
    height: 100%;
}

/*CTA Section*/

#cta{
    background-color: #ff4c68;
    color: #fff;
    padding: 7% 15%;
    text-align: center;
}
.cta-heading{
    font-family: "Montserrat";
    font-size: 3.5rem;
    line-height: 1.5;
}

/*Footer Section*/
 #footer{
     padding: 7% 15%;
     text-align: center;
 }
 .social-icon{
     margin: 5px 5px;
 }


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

    .testimonial-image {
        width: 64px;
        height: 64px;
    }

}