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

h1,
h2,
h3,
h4,
h5 {
    font-family: "Montserrat";
    font-weight: 700;
    font-size: 3.5rem;
}

h6 {
    font-family: "Montserrat";
    font-weight: 700;
    font-size: 2rem;
}

p {
    font-family: "Montserrat";
    color: #454242;
    font-size: medium;
}

hr {
    border: none;
    border-top: 3px double #6e0212;
    color: #333;
    overflow: visible;
    text-align: center;
    height: 5px;
}

hr:after {
    background: #fff;
    content: '§';
    padding: 0 4px;
    position: relative;
    top: -13px;
}


/* appearance of any <a> element */

a {
    color: #fab005;
    /* background-color: powderblue; */
    /* transition: background-color .5s; */
}


/* Selects any <a> element when "hovered" */

a:hover {
    color: orange;
}


/* Signature Font */

.signature {
    font-size: 2.5rem;
    font-family: 'Dancing Script', cursive;
    color: #6e0212;
}


/* Headings */

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

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

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


/* 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";
    font-weight: 300;
    /* font-style: italic; give it italic appearance*/
}


/* Download Buttons Title */

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


/* Title Section */

#title {
    color: #FFF;
    text-align: left;
}


/* Combine the original container-fluid inside ID title DIV  but change values*/

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


/* Title Background gradient */

.grad1 {
    background-color: #6e0212;
    /* For browsers that do not support gradients */
    background-image: linear-gradient(#4a010b, #bd0d25, #4a010b);
}


/* Title Image */

.title-image {
    width: 85%;
    transform: rotate(25deg);
    left: 10%;
    position: absolute;
    /* iphone image is cut off by feature div below. We cannot use z-index here but only positon:absolute; */
}


/* Feature section Bullets */

#features {
    background-color: #FFF;
    /* The code below will partially hide our image because it is z-index:1 with position: relative */
    /* position: relative; */
    /* z-index: 1; */
    vertical-align: bottom;
}

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

.feature-box {
    padding: 4%;
}


/* Feature box icons with hover state */

.features-icon {
    color: #055685;
    /* margin-bottom: 1rem; */
}

.features-icon:hover {
    color: #6e0212;
}


/* end Feature Section Buillets */


/* MainBody Text */

#main-body {
    font-size: medium;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-align: left;
    padding-top: 2px;
}


/* Testimonial Section */

#testimonials {
    background-color: #6e0212;
    color: #FFF;
    padding: 3% 2%;
}

#testimonial-carousel {
    text-align: center;
}

.testimonial-text {
    /* font-size: 3rem; */
    color: #fff;
    line-height: 1.5;
}

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


/* Carousel Items are our arrows for the carousel - having padding only here not in tetimonials */

.carousel-item {
    padding: 7% 14%;
    color: #ffffff;
}


#about {
    background-color: #fff;
    padding-bottom: 3%;
}

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


/* Pricing Section */

#pricing {
    background-color: #fff;
    padding: 100px;
    background-image: url('../img/rooftop-features2.png');
    background-repeat: no-repeat;
    background-position: bottom 1px right 1px;
}

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

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


/* CTA Section Cards-Gallery Find Service Meet Your Needs*/

#cta {
    text-align: center;
    padding-bottom: 3%;
    
}

#cta2 {
    text-align: center;
    padding-bottom: 3%;
    
}


#lightbox {
    background-color:#000000;
}

/* Contact Form Section */

#contactMe {
    background-color: #6e0212;
    padding-bottom: 0%;
    text-align: center;
}

/* #survey {
    background-color: #fff;
    padding-bottom: 0%;
    text-align: center;
    width: auto;
} */

#reviews {
    background-color: #fff;
    padding-bottom: 0%;
    text-align: center;
    /* width: auto; */
}

form {
    display: inline-block;
    padding-bottom: 0%;
}


/* Footer Section */

#footer {
    background-color: #6e0212;
    text-align: center;
    padding-top: 0%;
}

.social-footer {
    margin: 0px 10px;
    /* color: Dodgerblue; */
}


/* 
.social-footer .fa-twitter:hover {
    color: #055685;
}

.social-footer .fa-facebook:hover {
    color: #055685;
}

.social-footer .fa-instagram:hover {
    color: #055685;
} */

.social-footer .fa-envelope:hover {
    color: #fab005;
}


/* Media Query to make responsive */

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