body {
	font-family: 'Libre Baskerville', serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Rokkitt', serif;
}

section {
	height: 100%;
}

a {
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

section.bg-pic {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

@font-face {
    font-family: Gotham-Book;
    src: url("/media/layout/css/gotham-book.otf") format("opentype");
}

@font-face {
    font-family: Gotham-Bold;
    src: url("/media/layout/css/gotham-bold.otf") format("opentype");
}

.uppercase {
	text-transform: uppercase;
}

.py-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.py-150 {
	padding-top: 150px;
	padding-bottom: 150px;
}

.height600 {
	height: 600px;
}

h2.white, p.white {
	color: #FFF!important;
}

/*  Form
// ============================================================================*/

.form {
	padding: 50px;
	width: 600px;
	margin: auto;
	border: 2px solid #BD9A17;
	text-align: center;
}

.field {
	color: #FFF;
	margin-bottom: 15px;
}

.field input, .field select {
	width: 100%;
	color: #000;
	padding: 10px 0 10px 15px;
	font-family: 'Raleway', sans-serif;
	border: none;
	height: 45px;
}

.intl-tel-input {
	height: 45px;
	width: 100%;
}

.country-name, .dial-code {
	color: #000
}

.formSubmit {
	width: 100%;
	background-color: #BD9A17;
	padding: 10px;
	color: #FFF;
	font-family: 'Libre Baskerville', serif;
	font-style: italic;
	border: none;
}

p.form-t {
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-size: 11px;
    font-family: 'Raleway', sans-serif;}

@media (max-width: 767px) {
	.form {
		padding: 30px;
		width: 100%;
		border: 0;
	}
}

/*  Text + pic element
// ============================================================================*/

.pic-container {
	display: table-cell;
	width: 50%;
	height: 100%;
	background-size: cover;
}

.text-container {
	display: table-cell;
	width: 50%;
	height: 100%;
	background: #E9E7E7;
	text-align: center;
	padding: 50px;
	vertical-align: middle;
}

.text-container.gold {
	color: #FFF;
	background-color: #BD9A17;
}

.text-container.gold h3 {
	color: #FFF;
}

.button {
	padding: 15px 25px;
	border: 1px solid #000;
	min-width: 200px;
	max-width: 100%;
	margin: 25px auto 0 auto;
	display: inline-block;
	font-family: 'Libre Baskerville', serif;
	font-style: italic;
	color: #000;
	font-size: 1.1em;
}

.button:hover {
	background-color: #FFF;
	color: #000;
	text-decoration: none;
	border: 1px solid #FFF;
}

.table {
	display: table;
	margin: 0;
	width: 100%;
}

.gold-button {
	background-color: #BD9A17;
	padding: 10px 35px;
	color: #FFF;
	font-family: 'Libre Baskerville', serif;
	font-style: italic;
	border: none;
	border: 1px solid #BD9A17;
}

.gold-button:hover {
	color: #000;
	text-decoration: none;
	background-color: #FFF;
}

.align-center {
	text-align: center;
}

.some-link {
    background-color: #BD9A17;
    color: #FFF;
    font-size: 1.5em;
    margin-right: 10px;
    border-radius: 50%;
    display: inline-block;
    height: 38px;
    width: 38px;
    text-align: center;
    line-height: 38px;
}

.some-link:last-of-type {
	margin-right: 0px;
}

.some-link:hover {
	background: #FFF;
	color: #BD9A17;
}

@media (max-width: 1024px) {
	.height600 {
		height: auto;
	}
	.text-container, .pic-container {
		width: 100%;
		display: block;
		height: auto;
		padding: 25px;
	}
	.pic-container {
		height: 400px;
	}
	.flex-onmobile {
		display: flex;
		flex-direction: column;
	}
	.flex-onmobile.reverse-column {
		flex-direction: column-reverse;
	}
	.py-150 {
		padding: 50px 0;
	}
}

@media (max-width: 767px) {
	.text-container, .pic-container {
		padding: 25px;
	}
}

/* Social Wall
// ============================================================================*/

#grid {
	width: 90%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start
}

.grid-sizer, .grid-item {
	width: 19%;
}

.grid-item--width2 { width: 33.2%; }

.grid-item {
	flex: 0 0 20%;
	height: 230px; /* Or whatever */
	position: relative;
	padding: 20px 0 0 20px;

}
.grid-item a{
	display: block;
	position: relative;
	height: 100%;
	/*background-size: cover;
	background-position: center;
	background-repeat: no-repeat;*/
}
.grid-item a > img {
	object-fit: cover;
	width: 100%;
	object-position: 50% 50%;
	height:100%;
}

.some-overlay {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.60s ease;
	transition: all 0.60s ease;
}

.some-overlay i {
	position: absolute;
	top: 45%;
	left: 45%;
	font-size: 4em;
	color: #BD9A17;
}

.some-info {
	position: absolute;
	bottom: 15%;
	right: 15%;
	color: #FFF;
}

.some-info p {
	color: #FFF;
	margin: 5px 0 0 0;
}

.grid-item:hover .some-overlay {
	opacity: 1;
}
@media (max-width: 1200px) {
	.grid-item {
		flex: 0 0 33%;
	}
}
@media (max-width: 767px) {
	#grid {
		width:100%;
	}
	.grid-sizer, .grid-item {
		width: 48%;
	}
	.grid-item:nth-child(1n+9) {
		display: none;
	}
	.grid-item {
		flex: 0 0 50%;
		padding:0;
	}
}

/* Footer
// ============================================================================*/

footer {
	padding: 50px 0;
	/*background: #000 url(/media/layout/img/worldmap.png)center no-repeat;*/
	background-color:#000;
	color: #fff;
	font-size: 11px;
	font-family: 'Gotham-Book';
}
footer p {
	margin-bottom:5px;
}
footer a {
	color: #FFF;
}

footer a:hover {
	color: #FFF;
}

footer table {
	margin-bottom: 25px;
}
footer table td:before {
    content: '';
    height: 30%;
    width: 1px;
    display: block;
    background: #FFF;
    position: absolute;
    top: 50px;
    left: 0;

}
footer table td {
	position:relative;
	padding-left: 20px;
}
footer strong {
font-weight:700;
font-size:1.2em;}

footer .title {
font-family:'Gotham-Bold';
font-size: 13px;
}

footer table td:nth-child(2):before { display:none;}
footer table td:first-child:before {
	display:none;
}
footer table td:last-child:before {
	display:none;
}

.flexbox {
	display: flex;
	flex-direction: row;
	width: 100%;
	text-align: center;
	justify-content: center;
}

a.flex-item img {
	width: 80%;
	margin: auto;
}

.lang-select-col{position:relative;
display:inline-block;
}
.lang-select-col:hover .lang-select{
    height: 100%;
    opacity: 1;
}
.lang-select-wrap {
    position: absolute;
	right: 45px;
	bottom: 5px;
    overflow: hidden;
}
.lang-select {
    width: 100px;
    height: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 9999;
    display: block;
    opacity: 0;
    transition: .5s;
}
.lang-select-item {
    padding: 5px;
    border: 1px solid #fff;
    background: #000;
    position: relative;
    text-transform: uppercase;
	cursor:pointer;
}
.lang-select-toggle{
    border: 1px solid #fff;
    background: #000;
    text-transform: uppercase;
	padding: 5px;
    display: block;
    margin: 0 auto;
    width: 100px;
}
.adresse {
line-height:11px;
}
@media (max-width: 1200px) {
footer table td:nth-child(1n+2):before {
	left:3%
}
}
@media (max-width: 1024px) {
footer table td:nth-child(1n+2):before {
display:none;}
	.flexbox {
		flex-wrap: wrap;
	}
	a.flex-item {
		margin-bottom: 15px;
	}
	footer table {
		width: 100%;
		text-align: center;
	}
	footer table td {
		display: block;
		width: 100%;
		text-align: center;
		border: 0;
		padding: 0;
	}
	footer table td:nth-child(1n+2) {
		padding: 0;
		border: 0;
	}

}

.logo-top img {
	max-width: 240px;
}

@media (max-width: 767px) {
	.logo-top img {
		width: auto;
	}
}

@media (max-width: 375px) {
	.logo-top img {
		width: 185px;
	}
}