body {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #e5e5e5;
}

h1 {
    font-size: 32px;
    font-family: 'Roboto', sans-serif;
    color: #445c74;
}

h2 {
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    color: #445c74;
}

h3 {
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    color: #445c74;
}

h4 {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: #445c74;
}

p {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

p.small {
    font-size: 12px;
}

p.top1 {
    color: #eee;
}

#footer p {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

#footer h5 {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

/* Nav Meu Styling */
#header a {
    color: #191919;
    font-size: 16px;
}

#header a:hover {
    color: #ffffff;
}

.dropdown-menu {
    background-color: #dddddd;
}

.active {
    background-color: #bba34a;
}

.dropdown:hover>.dropdown-menu {
    display: block;
    margin: 0.000rem 0 0;
}

.dropdown:hover .active {
    background-color: #a69c9c;
}

.nav-link {
    margin: 0 10px;
}

/* Carousel */
p.caption {
    font-size: 14px;
    background-color: #586366;
    border: 1px;
    border-style: solid;
    border-color: #ffffff;
}

Forces image to be 100% width and not max width of 100%
*/
.carousel-item .img-fluid {
    width: 100%;
}

.carousel {
    color: #ffffff;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%70000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%70000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

/* anchors are inline so you need ot make them block to go full width */
.carousel-item a {
    display: block;
    width: 100%;
}

/* Thumb nail scroller */
@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-160px * 14));
        transform: translateX(calc(-160px * 14));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-160px * 14));
        transform: translateX(calc(-160px * 14));
    }
}

.slider {
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider::before,
.slider::after {
    background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, black 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 160px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: -webkit-box;
    display: flex;
    width: calc(160px * 14);
}

.slider .slide {
    height: 100px;
    width: 160px;
}

/* End Thumb nail scroller */
/* ============================
11. Forms
============================= */
/* --- contact form  ---- */
.contactForm input[type="text"],
.contactForm input[type="email"] {
    width: 100%;
    min-height: 40px;
    padding-left: 20px;
    font-size: 13px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.contactForm textarea {
    width: 100%;
    padding-left: 20px;
    padding-top: 10px;
    font-size: 13px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#sendmessage {
    color: green;
    border: 1px solid green;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#sendmessage.show,
#errormessage.show,
.show {
    display: block;
}

/* Images */
.fleximage {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* End Images */
/* Responsive breakpoints */
@media (max-width: 576px) {
    #header img {
        height: 55px;
    }

    #footer p {
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        margin-bottom: 0px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    #header .pad {
        margin-top: 15px;
    }

    p.top1 {
        font-size: 18px;
        text-align: center;
    }

    p.top2 {
        font-size: 12px;
        text-align: center;
    }

    h5 {
        font-size: 18px;
    }

    .logo {
        text-align: center;
    }
}

@media (max-width: 992px) {
    h4 {
        font-size: 20px;
    }

    h1.top2 {
        font-size: 26px;
        text-align: center;
    }
}

@media (max-width: 1200px) {
}

/* End Responsive breakpoints */}}