*{
	top: 0;
	margin: 0;
	box-sizing: border-box;
}

/***************************
FONTS
***************************/
body{
	font-family: 'Roboto', sans-serif;
	color: #555;
	/*margin-top: 112px;*/
}

/***************************
GRID LAYOUT
***************************/
main .row{
	display: flex;
	align-items: center;
}

.row-produto{
	margin-bottom: 4rem;
	flex-wrap: wrap;
	display: flex;
	align-items: initial;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

[class*="col-"] {
    float: left;
    padding: 15px;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

/***************************
ALIGN TEXT
***************************/
.center{text-align: center;}
.left{text-align: left;}
.right{text-align: right;}

/***************************
HEADING
***************************/
[class*="display-"]{
	font-family: 'Rubik', sans-serif;
	margin-bottom: 1.7rem;
}

.display-1{font-size: 4rem;}
.display-2{font-size: 3rem;}
.display-3{font-size: 2.3rem;}
.display-4{font-size: 1.7rem;}
.display-5{font-size: 1.3rem;}

a{
	font-family: 'Roboto', sans-serif;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6{
	font-weight: 400;
	text-decoration: none;
}

main p{
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
}

.bold{font-weight: 700;}
.italic{font-style: italic;}
.laranja{
	color: #f07c00;
	text-transform: uppercase;
}

.corpo-noticia p{
	text-align: left !important;
	color: #555 !important;
}

/***************************
BUTTONS
***************************/
[class*="btn-"]{
	padding: 10px 30px;
	text-decoration: none;
	text-transform: uppercase;
	
	border-radius: 50px;
	margin-right: 1rem;
	display: inline-block;
	margin-bottom: 1rem;
}

[class*="btn-"]:hover{
	filter: brightness(0.8);
}

.btn-dark{
	background-color: #f07c00 !important;
	color: #fff !important;
	cursor: pointer;
}

.btn-light{
	background-color: #fff;
	color: #222 !important;
}

/***************************
HEADER
***************************/
header{
	width: 100%;
	display: flex;
	align-items: center;
	/*position: fixed;*/
	background: #fff;
	z-index: 9;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	box-shadow: 0 3px 5px #00000020;
}

#navbar-desktop{
	height: 112px;
}

#navbar-mobile{
	height: 70px;
}

#navbar-desktop nav{
	width: 95%;
	max-width: 1140px;
	height: 112px;
	display: flex;
	align-items: center;
	margin: auto;
}

.logo img{
	height: 37.656px;
	
}

#navbar-desktop .menu{
	margin-left: 45px;
}

#navbar-desktop .nav-link{
	color: #7a7a7a;
	text-decoration: none;
	height: 70px;
	display: inline-flex;
	align-items: center;
	padding: 0 10px;
}

#navbar-desktop .nav-link:hover{
	color: #f07c00;
}

#navbar-mobile{display: none;}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  margin-top: 50px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 0 20px 20px 20px;
}

.dropdown-content a {
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  
}

.dropdown-content a:hover {
	color: #f07c00;
}

.dropdown:hover .dropdown-content {display: block;}

.dropdown-content:hover ~ .nav-link{color: #f07c00;}

.search-widget form {
    position: relative;
}

.search-widget form input[type=text] {
    min-width: inherit;
    width: 100%;
    border-radius: 50px;
}

.search-widget form input[type=text] {
    padding: 12px;
    min-width: 200px;
    color: #989898;
    border: 1px solid rgba(0, 0, 0, .25);
}

.search-widget form button[type=submit] {
    position: absolute;
    background: none;
    border: none;
    bottom: 0;
    right: .125rem;
    color: #7a7a7a;
}

.material-icons {
    font-family: Material Icons;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga";
}

.hidden-xl-down, .visible-print-block {
    display: none!important;
}

input.ui-autocomplete-input:focus {
    outline: none;
}

/***************************
ELEMENTS
***************************/
.container{
	width: 90%;
	max-width: 1390px;
	margin: auto;
	padding: 50px 0;
}

.content{
	width: 90%;
	max-width: 700px;
	margin: auto;
	padding: 50px 0;
}

.full-height{
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.overlay-dark{
	background: rgba(0,0,0,.4);
	color: #f9f9f9 !important;
}

.overlay-light{
	background: rgba(255, 255, 255, .6);
	color: #222 !important;
}

.img{
	width: 100%;
	height: auto;
}

.card-noticia{
	background-color: #fff;
	box-shadow: 3px 3px 15px #00000040;
	
	padding: 0;
	border-radius: 20px;
}

.card-noticia img{
	border-radius: 20px 20px 0 0;
}

.card-content{
	padding: 30px;
}

.card-noticia a{
	text-decoration: none;
	color: #333;
}

.card-noticia:hover{
	box-shadow: 3px 3px 5px #00000040;
}

.card-produto{
	background-color: #fff;
	box-shadow: 3px 3px 15px #00000040;
	
	padding: 30px;
	border-radius: 20px;
}

.card-produto:hover{
	box-shadow: 3px 3px 5px #00000040;
}

.card-produto p{
	font-size: .8rem;
	color: #333;
}

.card-produto img{
	margin-bottom: 1rem;
}

.page-title{
	font-size: 4rem;
	font-weight: 700;
	padding: 20px 0 20px 0;
	font-family: 'Rubik', sans-serif;
}

.produtos-marca-logo{
	width: 350px;
}

.myImg {
 	cursor: pointer;
  	transition: 0.3s;
	box-shadow: 3px 3px 15px #00000080;
	
}

.myImg:hover {
	box-shadow: 3px 3px 5px #00000080;
}

#myModal .content{
	padding: 0;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  align-items: center;
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  width: 100%;
  height: auto;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

/***************************
BANNERS
***************************/
.bg-cor-1{
	background: #f1f1f1;
}

.bg-img-1{
	background: url(../img/img-1.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-img-2{
	background: url(../img/img-4.jpg) 
	fixed 
	center;
	background-size: cover;
}

.bg-img-3{
	background: url(../img/bicicletas-passeio.jpg) 
	fixed 
	center;
	background-size: cover;
}

.bg-img-4{
	background: url(../img/img-3-1280x853.jpg) 
	fixed 
	center;
	background-size: cover;
}

.bg-img-5{
	background: url(../img/mbr.jpg) 
	fixed 
	center;
	background-size: cover;
}

/***************************
CONTACT FORM
***************************/
.formulario-contato{
	width: 100%;
	max-width: 500px;
	margin: auto;
}

.formulario-contato input,
.formulario-contato textarea{
	padding: 10px 20px;
	background: #ddd;
	border: none;
	width: 100%;
	border-radius: 25px;
	margin: 10px;
}

.formulario-contato input:focus,
.formulario-contato textarea:focus{
	outline: none;
	background-color: #ccc;
}

/***************************
FOOTER
***************************/
footer{
	width: 100%;
	background: #fff;
	color: #7a7a7a;
}

footer a{
	color: #7a7a7a;
	text-decoration: none;
	display: block;
	
}

footer a:hover{
	color: #f07c00;
}

footer h3{
	margin-bottom: 10px;
	color: #232323;
	font-weight: bold;
}

footer .social-rodape{
	display: inline-block;
	margin: 7px;
	font-size: 1.5rem;
	
}

footer .social-rodape:hover{
	color: #f07c00;
}

/******************************
NEW BANNERS
******************************/
#banners{
	position: relative;
}

#banner-prev,
#banner-next{
	position: absolute;
	height: 100vh;
	color: #ddd;
	width: 8%;
	
	display: flex;
	align-items: center;
	text-align: center;
	cursor: pointer;
}

#banner-prev i,
#banner-next i{
	margin: auto;
	font-size: 3rem;
}

#banner-prev:hover,
#banner-next:hover{
	background-color: #00000070;
	color: #fff;
}

#banner-next{
	right: 0;
}

.banner{
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	display: none;
	animation-name: bannerAnimation;
	animation-duration: .7s;
}

@keyframes bannerAnimation{
	0%{opacity: .3;}
	100%{opacity: 1;}
}

.banner-overlay{
	min-height: 100vh;
	display: flex;
	align-items: center;
	color: #fff;
	background-color: #00000070;
}

.banner-content{
	width: 80%;
	max-width: 700px;
	margin: auto;
	text-align: center;
}

/***************************
LIGHTBOX
***************************/

.row > .column {
  padding: 0 8px;
}

/* Create four equal columns that floats next to eachother */
.column {
  float: left;
  width: 25%;
  padding: 15px;
  position: relative;
}

/* The Modal (background) */
.lightbox {
  display: none;
  position: fixed;
  z-index: 20;
  padding-top: 3vh;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000dd;
}

/* Modal Content */
.lightbox-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 95%;
  max-width: 700px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.lightbox-slides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  filter: brightness(.5);
  width: 100%;
  height: auto;
  
  position: absolute;
  clip: rect(0px, 150px, 100px, 0px);
}

.active,
.demo:hover {
  filter: brightness(1) !important;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/***************************
LOGOS CAROUSEL
***************************/
#clients {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#clients .clients-wrap {
	display: block;
	width: 95%;
	margin: 0 auto;
	overflow: hidden;
}

#clients .clients-wrap ul {
	display: block;
	list-style: none;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

#clients .clients-wrap ul li {
  display: block;
  float: left;
  position: relative;
  width: 400px;
  height: 100px;
  line-height: 100px;
  text-align: center;
}

#clients .clients-wrap ul li img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: 0 linear left;
  -moz-transition: 0 linear left;
  transition: 0 linear left;
}