@import url("fonts/stylesheet.css");

*,*:after,*:before{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
body{
	width: 100%;
	max-width: 800px;
	min-height: 100vh;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
@media(max-width: 780px){
	body{
		max-width: 100%;
	}	
}
h1, h2, h3,
h4, h5, h6,
p, a, button, 
small, figcaption{
	font-family: 'Century Gothic';
    font-weight: normal;
    font-style: normal;
}
.header{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center; 
}
.line__orange{
	width: 100%;
	margin: 0 auto;
	border: .5px solid #f38001;
}
.header__logo{
	height: 40px;
	margin:5px 0;
	text-decoration: none;
}
.header__logo img{
	height: 100%;
}
.header__menuMobile{
	margin-right:3%; 
	background: transparent;
	color:#f38001;
	border: none;
	font-size: 40px;
	display: none;
}
.header__menu{
	width: 250px;
	max-width: 40%;
	min-height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;

}
.headerMenu__item{
	text-align: center;
	text-decoration: none;
	color:#666;
}
@media(max-width: 780px){
	.header__logo{
		margin-left: 3%;
	}
	.header__menuMobile{
		display: block;
	}
	.header__menuMobile:focus{
		outline: none;
	}
	.header__menu{
		min-width: 40%;
		/* padding-bottom: 20px; */
		background: #f38001;
		position: absolute;
		right: 0;
		z-index: 1;
		flex-direction: column;
		align-items: flex-end;
	}
	.headerMenu__item{
		width: 100%;
		min-height: 20px;
		padding: 20px;
		border-bottom: 1px solid #fff;
		/* margin:20px 0; */
		font-size:25px;
		color:#fff;
		text-align: right;
		/* position: relative; */
	}	
}
.headerMenu__item:hover{
	font-weight: bold;
	color:#797979;	
}
.container{
	width: 100%;
	margin-bottom: auto;
}
.container--home{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.container__title{
	min-width: 10px; 
	margin:20px 0;
	font-size: 36px;
	color: #a9abad;
}
.container__logo{
	width: 80%;
}
@media(max-width: 780px){
	.container__title{
		padding: 0 10px;
		font-size: 32px;
	}
	.container__logo{
		width: 90%;
	}
}
.container__box{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
}
.container__box a{
	margin: 0 auto;
	margin-bottom: 50px;
}
.box__image{
	width: 300px;
	margin-bottom: 10%;
	-webkit-filter: grayscale(100%);
			filter: grayscale(100%);
	-webkit-box-reflect: below 0.25em linear-gradient(transparent 70%, white);
}
.box__image:hover{
	-webkit-filter: grayscale(0%);
			filter: grayscale(0%);
}
.box__reflect{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.boxReflect__image{
}
@media(max-width: 780px){
	.container__box{
		flex-direction: column;
		align-items: center;

	}
	.box__image{
		-webkit-box-reflect: below 0.25em linear-gradient(transparent 100%, white);
	}
}
.container--partners{
	margin-bottom: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.container--partners hr{
	width: 50%;	
	border:.5px solid #a9abad;	
}
.partners__item{
	width: 100%;
	padding: 30px 0;
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
}
.partnersItem__content{
	min-height: 250px;
}
.partners__name{
	margin-bottom:2px; 
	color: #f38000;
	line-height: 1.5em;
}
.partners__text{
	margin-right:2%;
	color: #a9abad;
	text-align: justify;
	line-height: 1.6em;
}
.partners__info{
	min-width: 30%; 
	margin-top:50px;
}
.partnersInfo__item{
	font-size: 12px;
	color: #f38000;
	line-height: 1.6em;
	text-decoration: none;
}
.partner_photo{
	margin-bottom: 40px;
	-webkit-box-reflect: below 0.15em linear-gradient(transparent 80%, white);
}
@media(max-width: 780px){
	.container--partners{
		width: 96%;
		margin: 0 2%;
		margin-bottom: 70px;
	}
}
@media(max-width: 576px){
	.container--partners hr{
		margin: 20px 0;
	}
	.partners__item{
		padding: 10px;
		flex-direction: column;
		align-items: center;
	}
	.partners__text{
		margin:0;
	}
	.partner_photo{
		-webkit-box-reflect: below 0.15em linear-gradient(transparent 100%, white);
	}
}
.container--contact{
	min-height: 80vh; 
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;
	text-align: center;
}
.container__title--contact{
	width: 100%;
}
@media(max-width: 780px){
	.container__title--contact{
		/*width: 90%;
		margin: 0 auto;*/
		padding:0 20px;

	}	
}
.contact__section{
	max-width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
@media(max-width: 780px){
	.contact__section{
		max-width: 90%;
		width: 90%;
		margin: 0 auto;
		margin-bottom: 50px;
	}
}
.socialBox{
	min-height: 60px;
	margin:2px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	text-decoration: none;
}
@media(max-width: 576px){
	.container--contact{
		flex-direction: column;
	}
	.contact__section--image{
		width: 100%;
		max-height:200px; 
		background-position: center -200px;
	}
	.socialBox{

	}
}
.fa{
	margin:5px;
	font-size: 50px;
	color:#f38000;
}
.fa-instagram{
	padding: 1.5px 3.5px;
	border-radius: 8px;
	background: #f38000;
	font-size: 43px;
	color:#fff;
}
.fa-mail{
	/*font-size: 44px;*/
}
.contact__text{
	padding-left: 5px;
	color:#f38000;
}
.contactForm__legend{ 
	margin-bottom:20px;
	/*font-weight: bold;*/
	font-size: 20px;
	color: #a9abad;	
}
.contact__form{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.contactForm__input{
	width: 48%;
	height: 45px;
	padding: 3%;
	margin-bottom: 10px;
	border:none;
	background: #eee;
	color:#666;
}
.contactForm__input::-webkit-input-placeholder {
   color: #a9abad;
}
.contactForm__input:-moz-placeholder { /* Firefox 18- */
   color: #a9abad;
}
.contactForm__input::-moz-placeholder {  /* Firefox 19+ */
	color: #a9abad;
}
.contactForm__input:-ms-input-placeholder {  
	color: #a9abad;
}
.contactForm__input--textarea{
	width: 100%;
	height: 20vh;
}
.contactForm__btn{
	width: 100px;
	height: 30px;
	margin-left: auto;
	border: none;
	border-radius: 8px;
	background: #f38000;
	font-size: 15px;
	color:#fff;
}

.container--job{
	margin-bottom: 100px;
	display: flex;
    flex-direction: column;
    align-items: center;
}
.container__title{}
.job__item{
	margin-top: 30px;
}
.job__text{
	color: #a9abad;
	text-align: justify;
	line-height: 1.6em;
}
.job__text--info{
	/*margin:0;*/
	margin-bottom: 5px;
	line-height: 1em;
}
@media(max-width: 780px){
	.container--job{
		width: 96%;
		margin:0 2%;
		margin-bottom: 50px;
	}
	.job__item{
		padding: 10px;
	}
}
.job__item--images{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

	/*background: red;*/
}
.job__configImages{
	width: 100%;
	padding: 15px;
	display: flex;
	justify-content: center;
}
.job-configImages__btn{
	margin:0 10px;
	font-size: 40px;
	color:#a9abad;
	background: none;
	border:none;
	cursor: pointer;
	text-decoration: none;
}
#btn__slider--off{
	display: none;
}
#btn__slider--on{
	display: block;	
}
@media(max-width: 576px){
	.job__configImages{
		display: none;
	}
}
.job__arrow{
	display: none;
	border:none;
	border-radius:5px;
	background: #a9abad;
	color:#fff;
	position: absolute;
	top:49%;
}
.job__arrow:focus{
	outline: none;
}
.job__arrow--back{
	left:1px;
}
.job__arrow--next{
	right: 1px;
}

.job__containerImages{
	width: 30%;
	margin:10px auto;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.linkTop{
	width: 100%;
}
.jog__picture{
	width: 100%;
}
.job__item--images figcaption{
	color:#a9abad;
}
@media(max-width: 576px){
	.job__arrow{
		display: block;
	}
	.job__item--images{}
	.job__item--images figure{
		width: 90%;
	}
	.job__item--images img{
		-webkit-filter: grayscale(0%);
				filter: grayscale(0%);	
	}
}
.footer{
	width: 100%;
	align-self: flex-end;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.footer__section{
	width: 30%;
}
@media(max-width: 576px){
	.footer{
		flex-direction: column;
		align-items: center;
	}
	.footer__section{
		width: 100%;
		text-align: center;
	}
}
.footer__section--icon{
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer__logo{
	width: 90%;
}
.footerBox__text{}
.footer__icon{
	font-size: 40px;
	text-decoration: none;
}
.footer .fa-instagram{
	font-size: 35px;
}
.allReserved{
	width: 100%;
	margin: 5px 0;
	margin-top: 10px;
	text-align: center;
	color:#666;
}
.allReserved a{
	color:#666;
	/*text-decoration: none;*/
}
.allReserved a:hover{
	font-weight: bold;
}