@font-face {
font-family: "Caudex";
font-style: normal;
font-weight: 400;
src: url(../fonts/fonts/Caudex-Regular.woff);
font-display: swap;
}

@font-face {
font-family: "Asul";
font-style: normal;
font-weight: 400;
src: url(../fonts/fonts/Asul-Regular.woff);
font-display: swap;
}

@font-face {
font-family: "Asul";
font-style: bold;
font-weight: 700;
src: url(../fonts/fonts/Asul-Bold.woff);
font-display: swap;
}

:root {
  --main-shadow: drop-shadow(1px 1px 1px #555);
}

.animate__animated.animate__fadeInDown,
.animate__animated.animate__fadeInUp,
.animate__animated.animate__fadeInLeft,
.animate__animated.animate__fadeInRight {
  --animate-duration: 2s;
}

.animate__animated.animate__flipInX {
  --animate-duration: 1s;
}

/* Global Attributes
******************************************/
body {
	overflow-x: hidden;
}
body, html {
	font-family: 'Asul', sans-serif;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	color: #555;
	font-weight: 300;
	width: 100%;
	height: 100%;
}
h2 {
	margin: 0 0 20px 0;
	font-weight: 500;
	font-size: 34px;
	color: #333;
	text-transform: uppercase;
}
h3 {
	font-size: 22px;
	font-weight: 500;
	color: #333;
}
h4 {
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 400;
	color: #333;
}
h5 {
	text-transform: uppercase;
	font-weight: 700;
	line-height: 20px;
}
p {
	font-size: 16px;
}
p.intro {
	margin: 12px 0 0;
	line-height: 24px;
}
a {
	color: #8eb640;
}
a:hover, a:focus {
	text-decoration: none;
	color: #222;
}
ul, ol {
	list-style: none;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
ul, ol {
	padding: 0;
	webkit-padding: 0;
	moz-padding: 0;
}
hr {
	height: 2px;
	width: 70px;
	text-align: center;
	position: relative;
	background: #EEAF38;
	margin: 0;
	margin-bottom: 40px;
	border: 0;
}
.btn:active, .btn.active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.btn-custom {
	text-transform: uppercase;
	color: #fff;
	background-color: #226d3b; /*#56834d #B2936D*/
	border: 0;
	padding: 14px 20px;
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.5px;
	border-radius: 0;
	margin-top: 20px;
	transition: all 0.5s;
}
.btn-custom:hover, .btn-custom:focus, .btn-custom.focus, .btn-custom:active, .btn-custom.active {
	color: #fff;
	background-color: #46733d; /*#628d0f*/
}
.section-title {
	margin-bottom: 70px;
}
.section-title .overlay {
	padding: 80px 0;
	background: rgba(0, 0, 0, 0.7);
}
.section-title p {
	font-size: 17px;
	color: rgba(255,255,255,0.8);
}
.section-title hr {
	margin: 0 auto;
	margin-bottom: 40px;
}
[class^="icon-"], [class*=" icon-"] {
	font-size: 24px;
	padding-left: 20px;
}

/* Animation Effects
******************************************/
.fade-in {
	opacity: 0;
	transition: opacity 250ms ease-in;
}
.fade-in.appear {
	opacity: 1;
}
.from-left {
	transform: translateX(-50%);
}
.from-right {
	transform: translateX(50%);
}
.from-top {
	transform: translateY(-50%);
}
.from-bottom {
	transform: translateY(50%);
}
.from-left,
.from-right {
	opacity: 0;
	transition: opacity 250ms ease-in,
	transform 800ms ease-in-out;
}
.from-left.appear,
.from-right.appear {
	opacity: 1;
	transform: translateX(0);
}
.from-top,
.from-bottom {
	opacity: 0;
	transition: opacity 250ms ease-in,
	transform 800ms ease-in-out;
}
.from-top.appear,
.from-bottom.appear {
	opacity: 1;
	transform: translateY(0);
}

/* Header Section
******************************************/
.intro.mobile {
	display: table;
	width: 100%;
	padding: 0;
	background: #e5e5e5 no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}
.intro {
	display: table;
	width: 100%;
	padding: 0;
	background-position-x: center;
    background-position-y: top;
    background-attachment: scroll;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
    min-height: 100%;
}
.intro .overlay {
	background: rgba(0,0,0,0.2);
	min-height: 100vh;
}
.intro h1 {
	font-family: 'Asul', cursive;
	color: #fff;
	font-size: 5.5em;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 0;
	filter: var(--main-shadow);
}
.intro span {
	color: #a7c44c;
	font-weight: 400; /* 600 */
}
.intro p {
	color: #fff;
	font-size: 32px;
	font-weight: 300;
	margin-top: 0;
	margin-bottom: 40px;
}
.intro-text {
	padding-top: 160px; /* 280px 220px */
	padding-bottom: 180px; /* 200px */
	text-align: center;
	max-height: 100vh; /* Supprimer */
}
.intro-text img {
	width: 207px;
	filter: var(--main-shadow);
}
.intro .message {
	display: flex;
	align-items: center;
}
.intro .message h2 {
	color: #FFF;
	font-size: 20px;
	text-transform: none; 
	margin-bottom: 0px;
	padding: 20px 20px 20px 10px;
	filter: var(--main-shadow);
}
.intro #symbole {
	color: #FFF;
	filter: var(--main-shadow);
}
.intro .left-link, .intro .right-link {
	position: absolute;
	top: 50%;
	color: #FFF;
}
.intro .left-link {
	left: 0;
}
.intro .right-link {
	right: 0;
}
.intro .left-link .arrow, .intro .right-link .arrow {
	display: inline-block;
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    width: 32px;
    height: 32px;
    vertical-align: middle ;
}
.intro .left-link .arrow {
    transform: rotate(-225deg);
    margin: 5px 5px 5px 40px;
}
.intro .right-link .arrow {
    transform: rotate(-45deg);
    margin: 5px 40px 5px 5px;
}

/* About Section
******************************************/
#about {
	padding: 120px 0;
	overflow-x: hidden;
}
#about h2 {
	color: #226d3b;
}
#about h5 {
	font-size: 1.15em;
	padding-bottom: 10px;
}
#about .about-text {
	margin-left: 10px;
}
#about .about-img {
	display: inline-block;
	position: relative;
}
#about .about-img:before {
	display: block;
	content: '';
	position: absolute;
	top: 8px;
	right: 8px;
	bottom: 8px;
	left: 8px;
	border: 1px solid rgba(255, 255, 255, 0.5);
}
#about p {
	line-height: 24px;
	text-align: justify;
	font-size: 17px;
}

/* Test Section
******************************************/
#sliding-gallery{
	background:url(../img/bg/nshaka_0027.jpg) no-repeat center bottom;
	/*background-position-x: center;
    background-position-y: center;
    background-attachment: scroll;
    background-attachment: fixed;*/
    background-size: cover;
	position:relative;
	/*background:#F6F6F6;*/
	padding: 120px 0;
}
#sliding-gallery:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* rgba(0, 0, 0, 0.67) */
    position: absolute;
    top: 0;
    left: 0;
}
#sliding-gallery .section-title h2 {
	color: #fff;
}
#sliding-gallery .section-title p {
	color: #fff; /* #000 */
	margin: 20px;
	margin-bottom: 10px;
}
#slider .item{
  margin: 15px;
  position:relative;
}
#slider .item img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.item-type-zoom{
	border:4px solid #fff;
	box-shadow: 0 0 15px rgb(0,0,0,0.15);
}
.item-type-zoom .item-hover {
    z-index: 5;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    /*opacity: 0;*/
    opacity: 1;
    cursor: pointer;
    display: block;
    text-decoration: none;
    text-align: center;
}
.item-type-zoom .item-info {
    z-index: 10;
    color: #ffffff;
    display: table-cell;
    vertical-align: middle;
    position: absolute;
    z-index: 5;
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -ms-transform: scale(0,0);
    transform: scale(0,0);
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
	bottom:10px;
	left: 10px;
	right: 10px;
}
.item-type-zoom .item-info .headline {
    font-size: 18px;
    /*width: 75%;*/
    width: 100%;
    margin: 0 auto;
    border: 4px solid #ffffff;
    padding: 10px;
}

.item-type-zoom .item-info .line {
    height: 1px;
    width: 60%;
    margin: 15px auto 10px auto;
    background-color: #ffffff;
}
.item-type-zoom .item-info .dit-line {
    font-size: 14px;
    font-style: italic;
}
.item-hover, .item-hover {
	position: absolute;
    top: 0;
    left: 0;
	height:100%;
	width:100%;
}
.item-type-zoom .item-hover:hover {
    opacity: 1;
}
/*.item-type-zoom .item-hover:hover:before{
	content:"";
	position:absolute;
	height:100%;
	width:100%;
	background:rgba(34, 109, 59, 0.7);
	top:0px;
	left:0px;
}*/
/*.item-type-zoom .item-hover:hover .item-info {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    background:rgba(0, 0, 0, 0.7);
}*/
.special-box{
	padding-bottom:40px;
}
/*.special-box .owl-theme .owl-controls .owl-page.active span{
	background:#e75b1e;
	height: 16px;
	width: 16px;
}
.special-box .owl-theme .owl-controls .owl-page span{
	border:2px solid #fff;
	opacity: 1;
	background:#202020;
	height: 16px;
	width: 16px;
}*/
/*.type-wine {
	z-index: 20;
  color: #ffffff;
  display: flex;
  vertical-align: middle;
  position: absolute;
	bottom: 48px;
	left: 0;
	right: 0;
	text-align: center;
	background: rgba(78,130,78,0.7);
	justify-content: center;
  align-items: center;
}
.desc-wine {
	z-index: 20;
  color: #000;
  display: flex;
  vertical-align: middle;
  position: absolute;
	bottom:0;
	left: 0;
	right: 0;
	text-align: center;
	background: #FFF;
	padding: 0 50px;
	min-height: 48px;
	justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: Lucida Sans, Lucida Grande, Lucida Sans Unicode, Luxi Sans, sans-serif;
}*/
.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive Section
******************************************/
@media all and (max-width: 640px) {

	.intro-text {
		padding-top: 85px;
	}

	.intro .clock, .intro .message {
		justify-content: center;
	}

	.intro #symbole {
		padding-left: 0;
		/*display: none;*/
	}

	.intro #welcome {
		padding: 0 10px 0 10px;
	}

	.intro .left-link {
		top: 88%;
	}
	
	.intro .right-link {
		top: 88%;
	}

	.intro .left-link .arrow {
		margin: 5px -20px 5px 40px;
	}
	
	.intro .right-link .arrow {
		margin: 5px 40px 5px -20px;
	}

	#about {
		padding: 80px 0;
	}

	#sliding-gallery{
		padding: 80px 0;
	}

	#slider .item:focus {
		outline: none;
	}
}
