@font-face { font-family: 'Open Sans Semibold'; src: url('../fonts/OpenSans-Semibold.ttf');}
@font-face { font-family: 'Open Sans Regular'; src: url('../fonts/OpenSans-Regular.ttf');}
@font-face { font-family: 'Open Sans Italic'; src: url('../fonts/OpenSans-Italic.ttf');}
@font-face { font-family: 'Open Sans Bold'; src: url('../fonts/OpenSans-Bold.ttf');}
@font-face { font-family: 'Open Sans Light'; src: url('../fonts/OpenSans-Light.ttf');}
@font-face { font-family: 'Open Sans Condenced Light'; src: url('../fonts/OpenSans-CondLight.ttf');}

html,
body {
    margin: 0;
    font-size: 100%;
    background: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    scroll-behavior: smooth;
}

body a {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

a:hover {
    text-decoration: none;
}

input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="search"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    font-family: 'Source Sans Pro', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: 'Source Sans Pro', sans-serif;
}



ul {
    margin: 0;
    padding: 0;
}

/* header */

/* header */

/* CSS Document */

header {
    width: 100%;
}

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */

nav {
    margin: 0;
    padding: 0;
}


#logo a {
    float: left;
    font-size: 0.8em;
    padding: 3px 0px 0px 0px;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    letter-spacing: -1.5px;
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: uppercase;
}

#logo a span {
    color: #ffa801;
    margin-right: 10px;
}


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */

nav ul {
    padding: 0;
    margin: 5px 20px 0px 0px;
    list-style: none;
    position: relative; 
    border: 0px solid #FF0000;
    text-align: center;

}

/* Positioning the navigation items inline */

nav ul li {
/*    margin: 0px 1em;  */
    margin: 20px 1em;
    display: inline-block;
    text-align: center;
    border-top: 2px solid transparent;
}

ul.menu {
  font-family: 'Chunkfive';
  font-weight: 200;
  top: 5px;
}

/* Styling the links */

nav a {
    text-transform: uppercase;
    font-size: 23px;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
    padding: 10px 0;
    color: #4c5358;
    border-top: 2px solid transparent;
    font-weight: 200;
}


nav ul li ul li:hover {
    background: #FCF4DD;
    border-top: 2px solid transparent;
}

/* Background color change on Hover */

nav li:hover {
    color: #ffa801;
    border-top: 2px solid #FFFFFF;


}

.menu li.active {
    color: #ffa801;
    border-top: 2px solid #FFF;

}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */

nav ul ul {
    display: none;
    position: absolute;
    top: 30px;
    background: #fff;
    padding: 10px;
    z-index: 99;
    -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
}

/* Display Dropdowns on Hover */

nav ul li:hover > ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */

nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul li a {
    color: #333;
    padding: 5px 10px;
    display: block;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/

nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}


/* Change ' +' in order to change the Dropdown symbol */

li > a:only-child:after {
    content: '';
}


/* Media Queries
--------------------------------------------- */

/* Media Queries
--------------------------------------------- */

@media all and (max-width:768px) {

    #logo {
        display: block;
        padding: 0px;
        margin: 0px 0px -10px 0px;
        width: 100%;
        text-align: center;
        float: none;
    }
    nav {
        margin: 0;
    }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle + a,
    .menu {
        display: none;
    }

    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        padding: 5px 15px;
        font-size: 17px;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #D10303;
        color: #ffffff;
        text-transform: uppercase;
        cursor: pointer;
        font-weight: 700;
        cursor: pointer !important;
        margin-top: 0.5em;
    }
    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        width: 100%;
        padding: 5px;
        font-weight: normal;
        font-size: 20px;
        letter-spacing: 1px;
    }

    .toggle:hover {
        color: #ffffff;
        background-color: #684E3F;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul {
        display: block;
        /* background: rgba(16, 16, 16, 0.85); */
        padding: 15px 0;
        text-align: center;
        float: none;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        padding: 5px 0;
    }
    nav ul li {
        margin: 0px 0em;
    }
    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: transparent;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 12px;
    }

    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
    }

    /* Hide menus on hover */
    nav ul ul li:hover > ul,
    nav ul li:hover > ul {
        display: none;
    }

    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */
    }
    nav ul ul li a {
        font-size: 0.9em;
    }
}

@media all and (max-width: 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }

}

/* header */

/*-- //header --*/

/*-- //header --*/


.scrollable p {
    padding: 30px;
    text-align: justify;
    line-height: 140%;
    font-size: 120%;
}

#center {
    text-align: center;
    margin-top: 25%;
}

#center a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-variant: small-caps;
}

/*___________________________________ LINK ___________________________________ */

a.nice-link {
    position: relative;
    color: #71ad37;
}

h1 a.nice-link:after {
    border-bottom: 1px solid #a5ff0e;
}

a.nice-link:after {
    text-align: justify;
    display: inline-block;
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #a5ff0e;
    min-height: 100%;
    width: 0;
    max-width: 100%;
    background: #3A3A3A;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a.nice-link:hover {
    color: #71ad37;
}

a.nice-link:hover:after {
    width: 100%;
}

/*___________________________________ SIGN ___________________________________ */

@-webkit-keyframes sign-anim {
    to {
        background-position: 0 -7140px;
    }
}

@-moz-keyframes sign-anim {
    to {
        background-position: 0 -7140px;
    }
}

@keyframes sign-anim {
    to {
        background-position: 0 -7140px;
    }
}



/*-- heading --*/

h2.heading,
h3.heading {
    font-size: 50px;
    text-transform: capitalize;
    letter-spacing: 0px;
    color: #1d1e22;
}

.bg {
    background: #30c39e;
}

/*-- //heading --*/

#about {
    background: url(../images/about2.jpg) no-repeat top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 45em;
}

.ab-info h3 {
    font-size: 2.2em;
    letter-spacing: 1px;
    color: #212529;
}

/*-- popup --*/

.pop-overlay {
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.pop-overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: #fff;
    border-radius: 5px;
    width: 35%;
    position: relative;
    margin: 8em auto;
    padding: 3em 1em;
}

.popup p {
    font-size: 15px;
    color: #666;
    letter-spacing: .5px;
    line-height: 30px;
}

.popup h2 {
    margin-top: 0;
    color: #fff;

}

.popup .close {
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.popup .close:hover {
    color: #30c39e;
}


/*-- //popup --*/

/* //image layers effect */

/*-- //banner --*/

h3.tittle {
    font-size: 2.7em;
    letter-spacing: 1px;
    color: #212529;
    font-weight: 700;
    text-transform: uppercase;
}

.sub-tittle {
    font-size: 0.35em;
    color: #ffa801;
    letter-spacing: 1px;
    display: block;
    text-transform: uppercase;
}

/*--/services--*/

.feature-grids h3 {
    font-size: 1.2em;
    color: #1e272e;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-grids p {
    margin: 0;
}

.feature-grids span {
    font-size: 2em;
    vertical-align: middle;
    background: #ffa801;
    width: 90px;
    height: 90px;
    line-height: 2.7em;
    margin: 0.5em 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
}

.bottom-gd:hover,
.bottom-gd2-active {
    transition: 2s all;
    -webkit-transition: 2s all;
    -moz-transition: 2s all;
    -ms-transition: 2s all;
    -o-transition: 2s all;
    background: #ffa801;
    box-shadow: 7px 7px 10px 0 rgba(76, 110, 245, .1);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
}

.bottom-gd:hover span,
.bottom-gd2-active span {
    background: #1e272e;
    transition: 2s all;
    -webkit-transition: 2s all;
    -moz-transition: 2s all;
    -ms-transition: 2s all;
    -o-transition: 2s all;
    color: #fff;
}

.bottom-gd:hover p,
.bottom-gd2-active p {
    color: #ffffff;
}

.feature-grids span {
    text-align: center;
}


/*--//services--*/

/* partners */

#partners {
    background: #0fbcf9;
}

.parts-w3ls span {
    font-size: 3em;
    color: #ffffff;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}

.parts-w3ls span:hover {
    color: #1e272e;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}

.thumbnail.card {
    background: #f3f5f7;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow: 0 16px 21px -24px rgba(0, 0, 0, .3);
}

/* //partners */

#serve-sec .caption.card-body {
    background: #fff;
    margin: 0;
}

section#serve-sec {
    background: #f5f6f7;
}

/*--/counter--*/

.stats {
    background: #1e272e;
    padding: 4em 0;
}

.counter {
    background: none;
    padding: 20px 0;
    border-radius: 0;
    color: #fff;
}

.count-title {
    font-size: 3em;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    font-weight: 600;
    color: #fff;
}

.count-text {
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #727b82;
    font-weight: 600;
    text-transform: uppercase;
}

.fa-2x {
    margin: 0 auto;
    float: none;
    display: table;
    color: #4ad1e5;
}

/*--//counter--*/

/* blog */

.card-header {
    background: transparent;
}

span.fa.fa-user.post-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 44px;
    text-align: center;
    font-size: 1.2em;
    color: #fff;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: #0fbcf9;
}

.card,
.card-header {
    border: 0;
}

h5.blog-title a {
    font-size: 1.2em;
    color: #333;
    font-weight: 600;
    border-bottom: 1px solid #a5a5a5;
    padding-bottom: 15px;
    display: block;
}

.card-body label {
    color: #696868;
    font-size: 1em;
}

.blog-btn {
    background: #1e272e;
    font-weight: 400;
    padding: 0.5em 2em;
    color: #fff;
    text-transform: uppercase;
    margin-top: 1em;
}

.blog-btn:hover {
    background: #ffa801;
    color: #1e272e;
}

.card-body {
    margin-left: 2em;
    background: transparent;
}

/* //blog */

/* team */

.team-gd {
    padding: 2em 2em;
}

.team-info h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: #262631;
    margin-bottom: 0.8em;
    text-transform: uppercase;
}

.team-info p {
    font-size: 14px;
}

.sub-tittle-team {
    font-size: 0.6em;
    color: #686de0;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.rsvp img {
    background: #eaebec;
    padding: 0.7em;
}

.team-gd {
    padding: 3em 2em;
    background: #f8f9fa;
    transition: 2s all;
    -webkit-transition: 2s all;
    -moz-transition: 2s all;
    -ms-transition: 2s all;
    -o-transition: 2s all;
    box-shadow: 7px 7px 10px 0 rgba(76, 110, 245, .1);
    border: transparent;
}

.team-gd img {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
    border-radius: 50%;
}

/* //team */

section#gallery {
    position: relative;
    background: #f5f6f7;
}

.gal-img {
    padding: 10px;
}

.gal-img img {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    margin-bottom: 15px;
}

.gal-img:hover.gal-img img {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
}

/*--/inner-page-- */

.page-inner {
    background: url(../images/fundo-topo.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 250px;
}

li.breadcrumb-item {
    font-size: 0.9em;
    letter-spacing: 1px;
}

li.breadcrumb-item a {
    color: #ffa801;
}

.breadcrumb-item.active {
    color: #888;
}

ol.breadcrumb {
    background: none;
    margin: 0;
    padding: 1em 2em;
    background: #f7f7f7;
}

/*--//inner-page--*/

/* contact form */

.contact-info p {
    margin: 0 auto;
    width: 84%;
}

.contact-form-inner {
    margin: 0 auto;
    width: 70%;
}

.contact-form .form-control {
    padding: 0.9em;
    color: #495057;
    border: 2px solid #d2d6da;
    border-radius: 0.25rem;
    font-size: 1em;
    letter-spacing: 1px;
}

.contact-form label {
    font-weight: 700;
    letter-spacing: 1px;
    color: #4e4d4d;
    font-size: 1em;
    font-family: 'Source Sans Pro', sans-serif;
}

.contact-form textarea {
    overflow: auto;
    resize: vertical;
    height: 10em;
}

.contact-form button.btn {
    background: #181a1d;
    padding: 15px 30px;
    font-size: 17px;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 5px;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    border: transparent;
    width: 100%;
}

.contact-form button.btn:hover {
    background: #ffa801;
}

.map iframe {
    width: 100%;
    min-height: 300px;
    border: none;
    border: 4px solid #eee;
}

/* //contact form */

/* contact address */

.contact_grid_left ul li span {
    font-size: 16px;
    color: #fff;
}

.contact_grid_left li span {
    background: #ffa801;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 56px;
    border-radius: 50%;
}

.contact_grid_left ul li p,
.contact_grid_left ul li a {
    color: #5a646b;
    letter-spacing: 1px;
}


.contact_grid_left h6 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact_grid_right {
    background: #f7f7f7;
    padding: 5em;
}

.contact_grid_left {
    border-bottom: 1px solid #313c44;
    margin: 0 0 3em 0;
    padding-bottom: 3em;
}

.contact-page button.btn.btn-default {
    width: 20%;
}

/* //contact address */

/* //contact */

/*--events--*/

.events-info h3 {
    font-size: 1.4em;
    font-weight: 700;
    color: #1e272e;
}

.events-info h4 {
    font-size: 0.9em;
    color: #555;
    position: relative;

}

ul.single-info li {
    list-style: none;
    display: inline-block;
    margin-right: 1em;
}

ul.single-info li a span {
    color: #333;
    text-decoration: none;
    font-size: 18px;
}

ul.single-info li a {
    color: #333;
    font-size: 18px;
}

.speak {
    margin: 0 auto;
    width: 70%;
}

.speak img {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
}

.rsvp img {
    background: #eaebec;
    padding: 0.7em;
}

ul.social_section_1info li {
    display: inline-block;
}

ul.social_section_1info {
    margin-top: 20px;
}

ul.social_section_1info a {
    color: #717580;
    margin-right: 10px;
    font-size: 13.5px;
    margin-right: 2px;
    width: 35px;
    height: 35px;
    background: #121215;
    padding: 9px 20px;
    text-align: center;
    line-height: 35px;
    letter-spacing: 1px;
    border-radius: 25px;
}

ul.social_section_1info a:hover {
    color: #fff;
}

li.facebook a {
    color: #fff;
    background: #3b5998;
}

li.twitter a {
    color: #fff;
    background: #1da1f2;
}

li.google a {
    color: #fff;
    background: #dd4b39;
}

li.linkedin a {
    color: #fff;
    background: #0077b5;
}

ul.social_section_1info a:hover {
    opacity: 0.8;
}

/*---------*/

.media-body p {
    color: #777;
    font-size: 0.875em;
    line-height: 1.9em;
    margin-bottom: 3em;
}

.media img {
    margin-right: 15px;
}

.media-body h5 {
    color: #2a353e;
    font-size: 1.1em;
}

/* footer */

.address-grid span {
    font-size: 40px;
    color: #fff;
}

.address-right p,
.address-right p a {
    color: #f8f9fa;
}

footer {
    background: #1e272e;
}

.logo-2 a {
    font-size: 1.3em;
    text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

/* social-icons footer */

.loaction-content {
    text-align: left;
}

.w3ls-footer ul li,
.payment-moblsmk ul li {
    display: inline-block;
    margin: 0 1em;
}

.w3ls-footer ul li a span {
    height: 40px;
    width: 40px;
    line-height: 2.5;
    background: none;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    text-align: center;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.w3ls-footer ul li a span.fa-facebook-f:hover {
    background: #3b5998;
    color: #fff;
    border-color: #3b5998;
}

.w3ls-footer ul li a span.fa-twitter:hover {
    background: #55acee;
    color: #fff;
    border-color: #55acee;
}

.w3ls-footer ul li a span.fa-dribbble:hover {
    background: #f26522;
    color: #fff;
    border-color: #f26522;
}

.w3ls-footer ul li a span.fa-vk:hover {
    background: #45668e;
    color: #fff;
    border-color: #45668e;
}

/* //social-icons footer */

/* copyright */

p.copy-right-grids {
    letter-spacing: 2px;
    font-size: 15px;
}

p.copy-right-grids a {
    color: #7f8a92;
}

p.copy-right-grids a:hover {
    color: #fff;
}

/* //copyright */

/* //footer */

a.move-top span {
    color: #fff;
    width: 36px;
    height: 36px;
    border: transparent;
    line-height: 2em;
    background: #626c733b;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
}

/*-- //footer --*/


 .fone-topo-celular{
   font-family: 'Chunkfive';
   color: #684E3F;
   font-size: 22px;
 }



/*-- Responsive design --*/

@media screen and (max-width: 1440px) {
    h3.tittle {
        font-size: 2.5em;
    }
}

@media screen and (max-width: 1280px) {
    .ab-info h3 {
        font-size: 1.8em;
    }
    h3.tittle {
        font-size: 2.3em;
    }
}

@media screen and (max-width: 1080px) {
    .banner-info-wthree {
        padding: 15em 0 0;
        width: 90%;
        margin: auto;
    }
    .banner-info-wthree h3 {
        font-size: 3.5em;
    }
    #about {
        min-height: 41em;
    }
}

@media screen and (max-width: 1024px) {
    .page-inner {
        min-height: 210px;
    }
    .speak {
        margin: 0 auto;
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    #about {
        min-height: 29em;
    }
    .bottom-gd,
    .bottom-gd2-active {
        margin-bottom: 1em;
    }
    .thumbnail.card {
        margin: 1em 0;
    }
    li.address-content-inf-w3ls:nth-child(2) {
        margin: 2em 0;
    }
    .banner-info-wthree h3 {
        font-size: 3em;
    }
    .banner-info-wthree h6 {
        font-size: 15px;
        letter-spacing: 6px;
    }
    .banner-info-wthree {
        padding: 13em 0 0;
        width: 90%;
    }
    li.nav-item {
        list-style: none;
    }
    .thumbnail.card img {
        width: 100%;
    }
    .parts-w3ls span {
        font-size: 2em;
    }
    .popup {
        width: 60%;
    }
}

@media screen and (max-width: 900px) {
    h3.tittle {
        font-size: 2.2em;
    }
}

@media screen and (max-width: 800px) {
    .banner-info-wthree h3 {
        font-size: 2.8em;
    }
    .banner-info-wthree {
        padding: 13em 0 0;
        width: 90%;
    }
    .count-text {
        font-size: 12px;
        margin-top: 10px;
    }
    .count-title {
        font-size: 2em;
    }
}

@media screen and (max-width:768px) {
    .ab-info h3 {
        font-size: 1.6em;
    }
    h5.blog-title a {
        font-size: 1em;
    }
    .logo-2 a {
        font-size: 1em;
    }
}

@media screen and (max-width:767px) {
    .address-content-inf-w3ls,
    .loaction-content {
        text-align: center;
    }
    .icon-right p {
        text-align: center;
    }
    .icon-right {
        text-align: center;
        margin-top: 1.2em;
    }
    .banner-info-wthree h3 {
        font-size: 2.5em;
    }
}

@media screen and (max-width:736px) {
    .contact_grid_left {
        margin: 0 0 2em 0;
        padding-bottom: 2em;
    }
    .counter-gd-w3ls {
        float: left;
        width: 50%;
    }
}

@media screen and (max-width: 667px) {
    h3.tittle {
        font-size: 2em;
    }
    .ab-info h3 {
        font-size: 1.4em;
    }
}

@media screen and (max-width: 640px) {
    .banner-info-wthree {
        padding: 9em 0 0;
        width: 90%;
    }
}

@media screen and (max-width: 568px) {
    .banner-info-wthree h6 {
        font-size: 14px;
        letter-spacing: 4px;
    }
    .banner-info-wthree h3 {
        font-size: 1.8em;
    }
    .card-body {
        margin-left: 1em;
    }
    .card-img-bottom {
        width: 60%;
    }
    .card.flex-row {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .ab-info h3 {
        font-size: 1.3em;
    }
    .banner-info-wthree {
        padding: 7em 0 0;
        width: 90%;
    }
}

@media screen and (max-width: 384px) {
    .csslider > ul {
        height: 308px;
    }
    h3.tittle {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 320px) {}

/*-- //Responsive design --*/




/* novos */

.icones-1{
	color: #AA846D;
 font-size: 53px;
}

.no-padding{ padding: 0px;}
.chunkfive-36{
	font-family: Chunkfive;
	color: #674D3F;
	font-size: 36px;
	line-height: 30px;
	text-align: center;
}

.chunkfive-30{
	font-family: Chunkfive;
	color: #674D3F;
	font-size: 30px;
	line-height: 30px;
	text-align: center;
}

.chunkfive-25{
	font-family: Chunkfive;
	color: #674D3F;
	font-size: 25px;
	line-height: 30px;
	text-align: center;
}

.chunkfive-24{
	font-family: Chunkfive;
	color: #674D3F;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
}

.chunkfive-20{
	font-family: Chunkfive;
	color: #674D3F;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
}

.chunkfive-18{
	font-family: Chunkfive;
	color: #674D3F;
	font-size: 18px;
	line-height: 20px;
	text-align: center;
}

.chunkfive-17{
	font-family: Chunkfive;
	color: #674D3F;
	font-size: 17px;
	line-height: 20px;
	text-align: center;
}

.chunkfive-16{
	font-family: Chunkfive;
	color: #674D3F;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
}



.museoslab-21{
	font-family: Museo Slab;
	font-size: 21px;
	color: #674D3F;
	line-height: 25px;
	text-align: center;
}
.museoslab-19{
	font-family: Museo Slab;
	font-size: 19px;
	color: #674D3F;
	line-height: 25px;
	text-align: center;
}

.museoslab-18{
	font-family: Museo Slab;
	font-size: 18px;
	color: #674D3F;
	line-height: 25px;
	text-align: center;
}


.museoslab-17{
	font-family: Museo Slab;
	font-size: 17px;
	color: #674D3F;
	line-height: 25px;
	text-align: center;
}

.museoslab-14{
	font-family: Museo Slab;
	font-size: 14px;
	color: #674D3F;
	line-height: 25px;
	text-align: center;
}


     .chunkfive-item{
	font-family: Chunkfive;
	color: #D7A359;
	font-size: 23px;
	line-height: 30px;
	text-align: center;
	border: 0px solid #FF0000;
	margin: 0px;
     }
     .chunkfive-local{
	font-family: Chunkfive;
	color: #EFE0B7;
	font-size: 20px;
	line-height: 20px;
	text-align: center;
	border: 0px solid #FF0000;
	margin: 10px 0px 0px 0px;
     }
     .chunkfive-valor{
	font-family: Chunkfive;
	color: #FFFFFF;
	font-size: 20px;
	line-height: 20px;
	text-align: center;
	border: 0px solid #FF0000;
	margin: 0px;
     }

     .item-seq{
	font-family: Chunkfive;
	color: #D7A359;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	border: 0px solid #FF0000;
	margin: 0px;
     }
     .item-titulo{
	font-family: Chunkfive;
	color: #674D3F;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	border: 0px solid #FF0000;
	margin: 0px;
     }
     .item-descr{
	font-family: Museo Slab;
	color: #674D3F;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	border: 0px solid #FF0000;
	margin: 0px;
     }


.produzido-por{text-align: center;}
.sem-borda-redonda{border-radius:0;}

.form-control{
  background-color: #ffffff; border: 1px solid #ACADAC; padding: 7px
 }

::placeholder {
  font-family: Museo Slab;
}


@media screen and (min-width: 768px) {
  .pontilhado-1{ border-right: 2px dashed #674D3F;}
  .pontilhado-2{ border-left: 1px dashed #ffffff;}

  .produzido-por{text-align: right;}
}

/* botões */
.btn{border-radius:0;font-size: 18px;}


.btn:active,
 .btn:focus,
 .btn.active {
   background-image: none;
   outline: 0;
   -webkit-box-shadow: none;
   box-shadow: none;
 }

.btn-novo{color:#674D3F;border-color:#674D3F}
.btn-novo:hover{color:#fff;background-color:#674D3F;border-color:#674D3F}
.btn-novo.focus,.btn-outline-novo:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}
.btn-novo.disabled,.btn-outline-novo:disabled{color:#dc3545;background-color:transparent}
.btn-novo:not(:disabled):not(.disabled).active,.btn-outline-novo:not(:disabled):not(.disabled):active,.show>.btn-outline-novo.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}
.btn-novo:not(:disabled):not(.disabled).active:focus,.btn-outline-novo:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-novo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}

.btn-novo-2{color:#AF5B39;border-color:#AF5B39}
.btn-novo-2:hover{color:#fff;background-color:#AF5B39;border-color:#AF5B39}
.btn-novo-2.focus,.btn-outline-novo:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}
.btn-novo-2.disabled,.btn-outline-novo:disabled{color:#dc3545;background-color:transparent}
.btn-novo-2:not(:disabled):not(.disabled).active,.btn-outline-novo:not(:disabled):not(.disabled):active,.show>.btn-outline-novo.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}
.btn-novo-2:not(:disabled):not(.disabled).active:focus,.btn-outline-novo:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-novo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}


/* Special Misturas */




.open-sans-Light-25{
    font-family: Open Sans Light;
	color: #464646;
	font-size: 25px;
	line-height: 35px;
	text-align: center;	
}

.open-sans-Bold-15{
	font-family: Open Sans Bold;
	color: #464646;
	font-size: 15px;
	line-height: 20px;
	text-align: center;
}

.open-sans-italic-18{
	font-family: Open Sans Italic;
	color: #464646;
	font-size: 18px;
	line-height: 20px;
	text-align: center;
}

.open-sans-Semibold-25{
	font-family: Open Sans Semibold;
	color: #464646;
	font-size: 25px;
	line-height: 30px;
	text-align: center;
}

.open-sans-Semibold-18{
	font-family: Open Sans Semibold;
	color: #464646;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
}

.open-sans-Semibold-14{
	font-family: Open Sans Semibold;
	color: #464646;
	font-size: 14px;
	line-height: 5px;
	text-align: center;
}

.btn-saiba-maisa{
	font-family: Open Sans Bold;
	color: #3c5f34;
	border: 3px solid #3c5f34;
	border-radius: 100px;
	min-width: 190px;
	padding: 10px 0px 10px 0px;
	margin: 10px 0px 10px 0px;
}

.btn-saiba-maisa:hover{
	font-family: Open Sans Bold;
	color: #fff;
	border: 3px solid #3c5f34;
	background-color: #3c5f34;
	border-radius: 100px;
	min-width: 200px;
	padding: 10px 0px 10px 0px;
	margin: 10px 0px 10px 0px;
}

.btn-saiba-maisb{
	font-family: Open Sans Bold;
	color: #6e472a;
	border: 3px solid #6e472a;
	border-radius: 100px;
	min-width: 190px;
	padding: 10px 0px 10px 0px;
}

.btn-saiba-maisb:hover{
	font-family: Open Sans Bold;
	color: #FFF;
	border: 3px solid #6e472a;
	background-color: #6e472a;
	border-radius: 100px;
	min-width: 190px;
	padding: 10px 0px 10px 0px;
}

.btn-leia-mais{
	font-family: Open Sans Bold;
	color: #45703b;
	border: 2px solid #45703b;
	border-radius: 100px;
	padding: 5px 25px 5px 25px;
}


.btn-leia-mais:hover{
	font-family: Open Sans Bold;
	color: #FFF;
	border: 2px solid #45703b;
	background-color: #45703b;
	border-radius: 100px;
}

.btn-leia-mais33{
	font-family: Open Sans Regular;
	color: #c80202;
	border: 1px solid #c80202;
	border-radius: 100px;
	padding: 5px 15px 5px 15px;
}

.btn-leia-mais33:hover{
	font-family: Open Sans Regular;
	color: #FFF;
	border: 1px solid #c80202;
	background-color: #c80202;
	border-radius: 100px;
}

@media screen and (max-width: 767px) {
 .btn-leia-mais33{margin-top: 20px;}
}

a.link-rodape{color:#464646;font-size:18px;font-family:Open Sans Regular;text-decoration:none}
a.link-rodape:hover{color:#464646;font-size:18px;font-family:Open Sans Regular;text-decoration:underline}

a.vico{font-size:12px;color:#464646;font-family:Open Sans Bold;text-decoration: none}

.texto{
    font-size: 22px;
    color: #464646;
    font-family: Open Sans Light;
	line-height: 25px;	  
}	

.text-submenu{
	color: #FFFFFF;
	font-size: 36px;
	font-family: Open Sans Condenced Light;
	text-align: center;
}

a.link-submenu{color:#FFFFFF;font-size:36px;font-family:Open Sans Condenced Light;text-decoration:none;text-align:center;}
a.link-submenu:hover{color:#FFFFFF;font-size:36px;font-family:Open Sans Condenced Light;text-decoration:none;text-align:center;}

p {
    font-size: 18px;
    color: #464646;
    line-height: 20px;
    letter-spacing: 1px;
	font-family: Open Sans Regular;
}

.btn-produtos-exibir{
	color: #FFFFFF;
	font-size: 18px;
	background-color: #409855;
	border-radius: 4px;
}

.btn-produtos-exibir:hover{
	color: #FFFFFF;
	font-size: 18px;
	background-color: #409855;
	border-radius: 4px;
}



/* Classes para Produtos */

.container-produtos{
	text-align: center; 
	padding-top: 50px;
}

.div-produtos{
	border: 0px solid #E0E0E0;
 box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
 padding: 5px;

}

.categoria{
	padding-top: 40px;
	margin-bottom: 0px;
 font-family: Open Sans Bold;
	color: #464646;
	font-size: 15px;
	line-height: 20px;
	text-align: center;	
}

.produto{
	text-align: center;
	padding-top: 15px;
}

.botao{
	padding: 10px 0px 0px 0px;
	margin-bottom: -10px;
}

.imagem{
	padding: 0px 30px 0px 30px;
}

/* Classes para Produtos */

p{
	font-family: Open Sans Regular;
	color: #464646;
	font-size: 18px;
	line-height: 130%;
}
.titulo-1{
	font-family: Open Sans Semibold;
	color: #464646;
	font-size: 40px;
	line-height: 100%;
	text-align: center;
}

.texto-1{
	font-family: Open Sans Regular;
	color: #505050;
	font-size: 18px;
	line-height: 130%;
}

.texto-2{
	font-family: Open Sans Regular;
	color: #7C7D7C;
	font-size: 18px;
	line-height: 130%;
}


.texto-3{
	font-family: Open Sans Regular;
	color: #464646;
	font-size: 22px;
	line-height: 130%;
}


.titulo-2{
	font-family: Open Sans Semibold;
	color: #6e472a;
	font-size: 32px;
	line-height: 30px;
	text-align: center;
}

.titulo-3{
	font-family: Open Sans Semibold;
	color: #505050;
	font-size: 25px;
	line-height: 110%;
	text-align: center;
}

.titulo-4{
	font-family: Open Sans Semibold;
	color: #000000;
	font-size: 20px;
	line-height: 110%;
	text-align: center;
}

.titulo-5{
 font-family: Open Sans Semibold;
 color: #464646;
 font-size: 16px;
 line-height: 21px;
 margin-bottom: 25px;
}

.dropdown-item{
 font-family: Open Sans Semibold;
 font-size: 16px;
}


.dropdown-item.active,.dropdown-item:active{
    color:#fff;
    text-decoration:none;
    background-color:#D10303
}
