body {
    font-family: 'Nunito', sans-serif;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
}

p {
    color: #f0ebd8;
    font-size: 2.2rem;
    font-weight: 400;
}

/* Headings */

.big-heading {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.5;
    text-align: left;
    margin: 4rem auto 2rem;
    color: #f0ebd8;
}

.big-sub-heading {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    text-align: left;
    color: #748cab;
}

.name-heading {
    font-family: 'Dancing Script', cursive;
    font-size: 8rem;
    font-weight: bold;
    text-align: left;
    color: #f0ebd8;
}

.section-heading {
    font-size: 3rem;
    line-height: 1.5;
}

/* Title section */

#title {
    background-color: #19283b;
    color: #f0ebd8;
    text-align: left;
}

#title .container-fluid {
    padding: 2% 10% 10%;
}

.container-fluid {
    padding: 5% 10%;
}

/* Navigation Bar */

.navbar {
    padding: 0 0 0rem;
    margin: 0px 20px 0px 20px;
    color: #f0ebd8;
}

.nav-item {
    padding: 0 18px;
}

.nav-link {
    font-size: 1.6rem;
    font-weight: 400;
}

/* Title image */

.title-image {
    width: 25%;
    position: absolute;
    margin: 0 auto;
    right: 11%;
    top: 12%;
    border-radius: 5%;
    border: 5px solid #f0ebd8;
}

/* Features */

#features {
    /* background-color: #748cab; */
    background-color: #3e5c76;
}

#features .container-fluid {
    padding: 5% 3% 5%;
}

.feature-title {
    font-size: 3.8rem;
    margin: 20px auto 30px;
    font-family: 'Dancing Script', cursive;
    word-wrap: break-word;
    color: #f0ebd8;
}

.feature-box {
    padding: 1%;
    margin: 0;
    border-right: 1px solid #19283b;
}

.feature-box:last-child {
    border-right: none;
}

.icon {
    color: #19283b;
    margin-bottom: 2rem;
}

/* Fotos*/

#fotos {
    background-color: #748cab;
    padding-bottom: 3%;
}

/* Testimonial section */

#testimonials {
    background-color: #3e5c76;
    color: #f0ebd8;
}

.testimonial-text {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0px 50px;
}

.testimonial-person {
    font-size: 3.5rem;
    padding-top: 20px;
    font-family: 'Dancing Script', cursive;
    color: #f0ebd8;
}

.testimonial-image {
    /* width: 30%; */
    height: 500px;
    border-radius: 5%;
    margin: 10px;
    border: 5px solid #f0ebd8;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 4vw;
    height: 4vw;
}

/* footer */

#footer {
    background-color: #19283b;
    color: #f0ebd8;
}

.email-button {
    border: 5px solid #3e5c76;
    border-radius: 15px;
    color: #748cab;
    display: inline-block;
    padding: 20px 40px;
    text-decoration: none;
    margin: 25px 0 50px;
    transition: background-color 200ms ease-in-out;
    font-family: 'Nunito', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: #f0ebd8;
}

.email-button.is-featured {
    background-color: #748cab;
    color: #f0ebd8;
}

.email-button.is-featured:hover, .email-button.is-featured:focus {
    background-color: #3e5c76;
    color: #f0ebd8;
    border: 5px solid #0d1321;
}

.footer-text {
    font-family: 'Nunito', sans-serif;
    padding: 0px 50px;
    margin: 20px auto 50px;
    font-size: 2.2rem;
    font-weight: 400;
    color: #748cab;
}

.email-adress {
    color: #f0ebd8;
}

.footer-p {
    color: #3e5c76;
    font-size: 1.2rem;
}

.version-p {
    color: #3e5c76;
    padding-top: 20px;
    font-size: 0.8rem;
}

@media (max-width: 1200px) {
    #title {
        text-align: center;
    }

    .big-heading {
        text-align: center;
    }
    
    .big-sub-heading {
        text-align: center;
    }
    
    .name-heading {
        text-align: center;
    }

    .title-image {
        position: static;
        transform: rotate(0);
        width: 50%;
    }
    .feature-box {
        padding: 30px auto 50px;
        margin: 30px auto 30px;
        border-bottom: 1px solid #19283b;
        border-right: none;
    }
    
    .feature-box:last-child {
        border-bottom: none;
        border-right: none;
        margin: 30px auto 0px;
    }
}