@font-face{
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf')format('truetype');
	font-style: normal
}
@font-face{
	font-family: 'Montserrat Italic';
	src: url('../fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf')format('truetype');
	font-style: italic
}

html {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}


:root {
	--main-bg-color: #6B5847;
	--main-bg-color-grad-1: #5F4E3E;
	--main-bg-color-grad-2: #7E6956;
	--main-bg-color-title: #ffffff;
	--main-bg-color-title-a: #ffffff;
	--main-color-text: #463C44;
	--main-color-checkbox: #695846;
	--main-color-border: #fff;
	--main-color-white: #ffffff;
	--main-color-legend: #6B5847;
	--main-color-legend-1: #6B5847;
	--main-color-legend-2: #c4b4a6;
	--main-color-deco: #463C44;
	--main-color-a: #b0967d;
	--main-color-hover: #b0967d;
	--main-color-svg: #b0967d;
	--main-color-blink-1: #715942;
	--main-color-blink-2: #c9b7a5;
	--main-color-blinkSvg: #c9b7a5;
	--main-color-blinkSvg2: #c9b7a5;
	--main-color-grad-1: rgba(95,78,62,0.95);
	--main-color-grad-2: rgba(107,88,71,0.95);
	--main-color-grad-3: rgba(126,105,86,0.95);
	--main-color-border-top: #c9b7a5;
	--main-color-border-bottom: #c9b7a5;
	--main-color-border-horiz: rgb(201 183 165 / 24%);
	--main-color-border-shadow: rgb(174 150 124 / 34%);
	--main-color-filedset: rgb(95 78 62 / 45%);
	--main-color-filedset-border: #5F4E3E;

}

/***************************
General Body
*/
body {
	opacity: 0;
	animation: fade-in 1s forwards;
	animation-delay: 0.5s;
	padding: 0;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	background-color:var(--main-bg-color);
	color: var(--main-color-text);
    overflow-x: hidden;
	position: relative;
    -webkit-font-smoothing: antialiased;
}
@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}




/***************************
Content
*/
.bandeau_grid {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
	/*min-height:750px;*/
}
form{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: start;
	margin: 0 0 60px 0;
}
.message_box.black{
	line-height:26px;
}
hr {
	width: 100%;
	margin: 20px auto 20px auto;
	color: var(--main-color-deco);
	height: 2px;
	border: 0;
	background-color: var(--main-color-text);
}


/***************************
Header Logo
*/
header {
	width: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	align-self: center;
	align-content: center;
	justify-items: center;
	position: relative;
	z-index: 40;
}
header .header_wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 200px;
}
header .logo {
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: center;
	border-radius: 100%;
}
header .logo_wrapper {
	width: 220px;
	height: auto;
	display: flex;
	align-items: center;
	border-radius: 100%;
	flex-direction: row;
	justify-content: center;
	margin: 30px 0 0 0;
}
header .logo a {
	display: inline-block;
	width: 100%;
	height: auto;
}
header .logo a {
	display: inline-block;
	width: 100%;
	height: auto;
}
header .logo_wrapper img {
	max-width: 100%;
	max-height: 100%;
}

header .logo  a:hover svg polygon  {
  animation: blinkSvg 0.25s linear 1;
}
header .logo a:hover svg polygon {
    fill:var(--main-color-svg);
}
header .logo a:hover svg polygon  {
  animation: blinkSvg 0.25s linear 1;
}
header .logo svg:hover path{
  fill: var(--main-color-svg);
  animation: blinkSvg 0.25s linear 1;
}
header .logo svg:hover circle{
  fill: var(--main-color-svg);
  animation: blinkSvg 0.25s linear 1;
}
header .logo a:not(:has(img)):hover {
    animation: blinkSvg 0.25s linear 1;
    color: var(--main-color-blinkSvg);
}
.view {
	position: relative;
	z-index: 40;
}

/***************************
Footer
*/
footer {
	background-color:#1B1B1B;
	background-color:rgb(27 27 27 / 95%);
	position: relative;
	z-index: 40;
    border-top: 1px solid #070707;
	
	background: linear-gradient(90deg, var(--main-color-grad-1) 0%, var(--main-color-grad-2)  50%, var(--main-color-grad-3)  100%);
}

.footer-content {
	padding: 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #ffffff;
	font-size: 13px;
}
.fblock {
	margin: 30px 0 30px 0;
}
.fblock:first-child {
	margin: 30px 0 0 0;
}
a {
	color: #ffffff;
	text-decoration: none;
}
.title2 {
    margin: 0 0 10px 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 26px;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--main-color-title);
}
.title2 a {
	color: var(--main-color-title-a);
    margin: 0 0 20px 0;
    display: inline-block;
}

.address p {
	margin: 5px 0;
}

.bottom_bar {
    width: 100%;
    background: #756350;
    text-align: center;
    color: white;
    padding: 30px 0 30px 0;
    font-size: 10px;
    z-index: 90;
    position: relative;
}

/***************************
Hover animation
*/
a:hover {
-webkit-animation: blink 0.25s linear 1;
-moz-animation: blink 0.25s linear 1;
-ms-animation: blink 0.25s linear 1;
-o-animation: blink 0.25s linear 1;
  animation: blink 0.25s linear 1;
  color: var(--main-color-a);
}

a:not(:has(img)):hover  {
-webkit-animation: blink 0.25s linear 1;
-moz-animation: blink 0.25s linear 1;
-ms-animation: blink 0.25s linear 1;
-o-animation: blink 0.25s linear 1;
  animation: blink 0.25s linear 1;
  color: var(--main-color-blinkSvg);
}

@keyframes blink {
  50% {
   color: var(--main-color-blinkSvg2);
  }
}
@keyframes blinkSvg {
  50% {
   fill: var(--main-color-blinkSvg2);
  }
}

/***************************
Social network Icon
*/
footer nav {
    background: transparent;
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0;
    flex-direction: row;
}
.st0{fill:#fff;}
.social_network {
    margin: 0 5px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.social_network svg {
    /* transform: scale3d(1.5, 1.5, 1.5); */
}
.social_network-disabled:last-child {
    margin: 0 0 0 7px;
    top: 3px;
    position: relative;
}
.social_network-disabled:last-child svg {
    transform: scale3d(1.6,1.6,1.6)
}
.social_network_fb {
	margin-right:5px;
}
.social_network_lnk {
	margin-left:5px;
}
footer svg:hover polygon{
  fill: var(--main-color-svg);
  animation: blinkSvg 0.25s linear 1;
}
footer svg:hover path{
  fill: var(--main-color-svg);
  animation: blinkSvg 0.25s linear 1;
}
footer svg:hover rect{
  fill: var(--main-color-svg);
  animation: blinkSvg 0.25s linear 1;
}
footer svg:hover circle{
  fill: var(--main-color-svg);
  animation: blinkSvg 0.25s linear 1;
}

/***************************
Official website link
*/
	
.HYT_LINK {
    transform: translateX(0) ;
    animation: slide-in 1s forwards;
    animation-delay: 0.5s;
	opacity: 0;
    position: relative;
    z-index: 60;
}
.HYT_LINK a{
    transform: rotate(270deg);
    background-color: var(--main-color-a);
    position: fixed;
    right: -57px;
    top: 52px;
    padding: 5px 10px 5px 10px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    font-weight: 600;
}
body .HYT_LINK a:hover {
    background-color: var(--main-color-svg);
    color: #000 !important;
}
@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/*Decoration*/
.image-bottom-lg {
    height: 50vh;
    width: auto;
}
	.image_bottom {
		width: 50vw;
		position: fixed;
		bottom: 0;
		right: 0;
		z-index: 0;
	}
.image_top {
    width: 50vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}
.image_top,
.image_bottom {
	display: none;
}
@media only screen and (min-width: 992px){
	.image-top-lg {
		height: 50vh;
		width: auto;
		z-index: 0;
	}
}
@media (max-width: 768px){
	.image_top {
		width: 50vh;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 0;
	}
	header .logo_wrapper {
		width: 200px;
	}
	header {
		padding-top: 0;
		padding-bottom: 0;
	}
}