@font-face {
	font-family: 'Montserrat Regular';
	font-style: normal;
	font-display: block;
	src: url("../fonts/Montserrat-Regular.ttf") format("truetype"); 
  }
  
  @font-face {
	font-family: 'Montserrat Extra Bold';
	font-style: normal;
	font-display: block;
	src: url("../fonts/Montserrat-ExtraBold.ttf") format("truetype"); 
  }
  
  @font-face {
	font-family: 'Montserrat Semi Bold';
	font-style: normal;
	font-display: block;
	src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype"); 
  }
  
  @font-face {
	font-family: 'Montserrat Bold';
	font-style: normal;
	font-display: block;
	src: url("../fonts/Montserrat-Bold.ttf") format("truetype"); 
  }
  
  @font-face {
	font-family: 'Montserrat Light';
	font-style: normal;
	font-display: block;
	src: url("../fonts/Montserrat-Light.ttf") format("truetype"); 
  }
  
  @font-face {
	font-family: 'Montserrat Black';
	font-style: normal;
	font-display: block;
	src: url("../fonts/Montserrat-Black.ttf") format("truetype"); 
  }
  
  @font-face {
	font-family: 'Montserrat Medium';
	font-style: normal;
	font-display: block;
	src: url("../fonts/Montserrat-Medium.ttf") format("truetype"); 
  }
  
  @font-face {
	font-family: 'Montserrat Light';
	font-style: normal;
	font-display: block;
	src: url("../fonts/Montserrat-Light.ttf") format("truetype"); 
  }
  

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
}


.wrapper-page{
	display: flex;
	flex-direction: column;
}

.wrapper-firstsection{
	display: flex;
	flex-direction: column;
	position: relative;
}

.topbanner-first{
	display: flex;
	position: relative;
	flex-direction: column;
	width: 100%;
	height: 70px;
	background-color: #16253A;
    justify-content: center;
    align-items: center;
}

.topbanner-second{
	display: flex;
	position: relative;
	flex-direction: column;
	width: 100%;
	height: 60px;
	background-image: linear-gradient(0deg, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../images/banner.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 46%;
    align-items: center;
    justify-content: center;
}


.topbanner-socialmedia{
	display: flex;
	position: absolute;
	flex-direction: row;
	top: 10px;
	right: 64px;
}

.topbanner-firstline{
    width: 100%;
    height: 1px;
    background-color: #ED3237;
}

.topbanner-secondline{
    width: 100%;
    height: 10px;
    background-color: #ED3237;
}

.page-title{
    display: flex;
	font-family: 'Montserrat Semi Bold';
	font-size: 36px;
    text-align: center;
	color: white;
}

.socialmedia-item{
	display: flex;
	margin: 5px;
}

.topbanner-logo{
	display: flex;
    position: absolute;
	width: 125px;
	height: 50px;
	top: 12px;
	left: 48px;
}

.topbanner-logo a img{
	width: 125px;
	height: 50px;
}


.topbanner-menu{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-end;
	width: auto;
}

.topbanner-mobilemenu{
	display: none;
	position: absolute;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-end;
	width: auto;
	top: 8px;
	left: 0px;
	background-color: #16253A;
	z-index: 10;
}

.navbar-container{
	display: flex;
	flex-direction: row;
	padding: 5px;
	color: #fff;
}

.navbarmobile-container{
	display: flex;
	flex-direction: column;
	padding: 16px;
	color: #fff;
}

.navbar-links{
	display: flex;
	flex-direction: row;
	width: 100%;
}

.navbarmobile-links{
	display: flex;
	flex-direction: row;
	width: 100%;
}

.navbar-links a {
	color: #fff;
	text-decoration: none;
}

.navbarmobile-links a {
	color: #fff;
	text-decoration: none;
}

.navbar-menu-item-selected{
	background-color: white;
	height: 1px;
	width: 60%;
	margin-top: 5px;
}

.navbar-menu-item-spacer{
	background-color: transparent;
	height: 1px;
	width: 60%;
	margin-top: 5px;
}

/* Underline From Left */
.hvr-underline-from-left {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	overflow: hidden;
  }
  .hvr-underline-from-left:before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 0;
	right: 100%;
	bottom: 0px;
	background: white;
	height: 1px;
	-webkit-transition-property: right;
	transition-property: right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
  }
  .hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
	right: 0;
  }


.navbar-menu{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-end;
	width: 100%;
}

.navbar-menu-item{
	display: flex;
	margin: 0.5rem;
	font-family: 'Montserrat Regular';
	font-size: 16px;
	color: white;
    margin-left: 32px;
}

/* CHECKBOX HACK */
input[type=checkbox]{
	display: none;
}

.hamburger {
	display: none;
	font-size: 24px;
	user-select: none;
}


.wrapper-secondsection{
	display: flex;
	flex-direction: column;
	position: relative;
}


.product-list-container{
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	margin-top: 1rem;
	margin-bottom: 1rem;
	padding-left: 2rem;
	padding-right: 2rem;
}

.product-list-item{
	display: flex;
	position: relative;
	height: 270px;
	width: 270px;
	margin: 1rem;
	border-style: solid;
	border-width: 5px;
	border-color: #29589A;
}

.product-list-product{
	display: flex;
	position: relative;
	height: 240px;
	width: 240px;
	margin: 1rem;
	border-style: none;
}

.product-list-product img{
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.product-horizontal-spacer{
	width: 100%;
	height: 8rem;
	background-color: white;
}

.product-list-banner{
	position: absolute;
	display: flex;
	top: 70%;
	left: 0px;
	height: 50px;
	width: 100%;
	background-color: rgba(48,48,48,0.8);
	color: white;
	font-family: 'Montserrat SemiBold';
	font-size: 16px;
	justify-content: center;
	align-items: center;
}

/* RODAPÉ */
.footer-wrapper{
    display: flex;
    flex-direction: column;
    background-color: #303030;
    width: 100%;
	margin-top: 164px;
}

.footer-container{
    display: flex;
    flex-direction: column;
    background-color: #303030;
    width: 100%;
    padding-top: 2rem;
    padding-left: 5rem;
    padding-right: 5rem;
}

.footer-logo{
    display: flex;
}

.footer-title{
    display: flex;
    font-family: Montserrat, sans-serif !important;
    font-weight: 800;
    font-size: 22px;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    margin-top: 1rem;
}

.footer-contato-line{
    display: flex;
    height: 1px;
    width: 70px;
    background-color: #ED3237;
    margin-bottom: 1rem;
}

.footer-text{
    display: flex;
    font-family: Montserrat, sans-serif !important;
    font-weight: normal;
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

.footer-text-copyrights{
    display: flex;
    font-family: Montserrat, sans-serif !important;
    font-weight: normal;
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    padding-left: 5rem;
    padding-right: 5rem;
    margin-top: 10px;;
}

.footer-spacer-height{
    display: flex;
    width: 100%;
    height: 1rem;
}

.footer-line{
    display: flex;
    height: 1px;
    width: 100%;
    background-color: #ED3237;
	margin-top: 5px;
}

.footer-developer-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-developer-container{
    display: flex;
    flex-direction: row;
}

.footer-developer-text{
    display: flex;
    font-family: Montserrat, sans-serif !important;
    font-weight: normal;
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    margin-right: 5px;
}

.footer-developer-logo{
    display: flex;
}










@media (max-width: 1500px) {

}

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

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


@media (max-width: 767px) {

	.topbanner-mobilemenu{
		display: flex;
	}

	.navbar-menu{
		display: none;
	}

	.navbarmobile-menu{
		display: none;
	}

	/* .navbarmobile-menu li:hover {
		display: inline-block;
		background-color:#4c9e9e;
		transition: 0.3s ease;
	} */

	.navbarmobile-menu li + li {
		margin-top: 12px;
	}

	input[type=checkbox]:checked ~ .navbarmobile-menu{
		display: block;
	}

	.hamburger {
		display: block;
	}

	.topbanner-socialmedia{
		right: 24px;
	}

    .footer-container{
        align-items: center;
    }
    .footer-developer-wrapper{
        align-items: center;
    }
    .footer-developer-container{
        margin-top: 2rem;
    }

	.topbanner-logo{
		left: calc( ( 100% - 200px ) / 2 );
	}

}




@media (max-width: 575px) {

	.topbanner-mobilemenu{
		display: flex;
	}

	.navbar-menu{
		display: none;
	}

	.navbarmobile-menu{
		display: none;
	}

	/* .navbarmobile-menu li:hover {
		display: inline-block;
		background-color:#4c9e9e;
		transition: 0.3s ease;
	} */

	.navbarmobile-menu li + li {
		margin-top: 12px;
	}

	input[type=checkbox]:checked ~ .navbarmobile-menu{
		display: block;
	}

	.hamburger {
		display: block;
	}

	.topbanner-socialmedia{
		right: 16px;
	}

    .footer-container{
        align-items: center;
    }
    .footer-developer-wrapper{
        align-items: center;
    }
    .footer-developer-container{
        margin-top: 2rem;
    }

}