body {
    font-family: "Montserrat";
    text-align: center;
}

#title {
    background-color: #2bcbba;
    color: #fff;
    text-align: left;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat";
    font-weight: bold;
}

h2 {
    font-size: 3rem;
    line-height: 1.5;
}

p {
    color: #8f8f8f;
}

/*--Heading--*/

.big-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 3.5rem;
    line-height: 1.5;
}

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

/*Navigation Bar*/

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

.navbar-brand {
    width: 297px;
    height: auto;
    margin-bottom: 15px;
}

.navbar-brand:hover {
    width: 315px;
    height: auto;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

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

.nav-link {
    font-size: 1.2rem;
    font-family: "Montserrat";
}

/*--Download-Button--*/

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

.btn {
    background-color: #fff;
    border: 4px solid #108b7f;
    color: #108b7f;
}

.btn:hover {
    background-color: #108b7f;
    border: 4px solid #fff;
    color: #fff;
    transition: 0.3s;
}

/*--Title img--*/

.title-image {
    transform: rotate(25deg);
    position: absolute;
    width: 25%;
    right: 20%;
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
}

.gradient-background {
    background: linear-gradient(300deg, #108b7f, #02665c, #2bcbba);
    background-size: 180% 180%;
    animation: gradient-animation 180s ease infinite;
    -webkit-animation: gradient-animation 180s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/*--Features--*/

#features {
    color: #108b7f;
    background-color: #eef5f4;
    margin: 0;
    padding: 7% 15%;
    position: relative;
}

.feature-title {
    font-size: 1.5rem;
}

.fa-solid {
    color: #4fd6c9;
    font-size: 5rem;
    padding: 30px;
    text-decoration: none;
}

.fa-solid:hover {
    color: #108b7f;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

/*--testimonials--*/

#testimonials {
    background-color: #2bcbba;
    color: #fff;
}

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

.carousel-item {
    padding: 7% 15%;
}

.testimonial-image {
    height: 250px;
    width: 250px;
    border: solid 15px #108b7f;
    border-radius: 100%;
    margin: 20px 15px 20px 0;
}

/*--Press--*/

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

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

/*--Pricing--*/

#pricing {
    color: #108b7f;
    background-color: #eef5f4;
    padding: 5% 10%;
}

.pricing-body {
    margin: 2.5% 0 2.5% 0;
}

.card-title {
    font-size: 2.5rem;
    font-weight: 400;
}

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

.price-btn {
    background-color: #fff;
    border: 4px solid #108b7f;
    color: #108b7f;
}

.price-btn:hover {
    background-color: #108b7f;
    border: 4px solid #108b7f;
    color: #fff;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

/*--call-to-action*/

#cta {
    color: #fff;
    font-size: 5rem;
    background-color: #2bcbba;
    line-height: 1.5;
    padding: 7% 15%;
}

.cta-btn {
    margin: 0 1%;
}

/*--footer--*/

#footer {
    background-color: #eef5f4;
    color: #8f8f8f;
    padding: 50px 0 50px 0;
}

.fa-twitter {
    color: #8f8f8f;
    text-decoration: none;
    padding: 1% 1%;
}

.fa-facebook-f {
    color: #8f8f8f;
    text-decoration: none;
    padding: 1% 1%;
}

.fa-instagram {
    color: #8f8f8f;
    text-decoration: none;
    padding: 1% 1%;
}

.fa-regular {
    color: #8f8f8f;
    text-decoration: none;
    padding: 1% 1%;
}


/*--media-query--*/


@media (max-width: 991px) {

    #title {
        text-align: center;
    }

    .title-image {
        width: 60%;
        position: static;
        transform: rotate(0);
        text-align: center;
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
}
}