@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,500');
*{
	margin:0;
	box-sizing: border-box;
}
:before,:after{
	box-sizing: border-box;
}

html {
  font-size: 100%;
}
body {
    background: #f5f5f5;
    color: #333;
    min-height: 100vh;
    margin: 0;
}

/* Slanted Background */
@media all and (min-width:500px) {
  .image-slant {
    background-size: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
    position: relative;
    min-height: 50vh;
  }
}

@media only screen and (max-width: 500px) {
  .image-slant {
    background-size: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
    position: relative;
    min-height: 42vh;
  }
}
.video-header{
     margin: auto;
     padding:5px;
     border-top: 1px solid #000000;
     border-bottom: 1px solid #000000;
	}


button{
  border:none;
  font-size:1.5em;
  width:300px;
  height:60px;
  text-transform:uppercase;
    position:relative;
  overflow:hidden;
}
button:before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:4px;
  background-color:black;
  transition:all 1s;
}
button:after{
  content:'';
  position:absolute;
  bottom:0;
  right:-100%;
  width:100%;
  height:4px;
  background-color:black;
  transition:all 1s;
}
button:hover:before {
  left:0;
}
button:hover:after{
  right:0;
}
 span:before{
  content:'';
  position:absolute;
  top:-100%;
  right:0%;
  width:4px;
  height:100%;
  background-color:black;
  transition:all 1s;
}
button:hover span:before{
  top:0;
}
span:after{
  content:'';
  position:absolute;
  bottom:-100%;
  left:0%;
  width:4px;
  height:100%;
  background-color:black;
  transition:all 1s;
}
button:hover span:after{
  bottom:0;
}


/* Animated Title */
.text {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 5px;
}

.text div,
span {
    display: inline-block;
}


@media all and (min-width:500px) {
.let {
    font-family: 'Quicksand';
    color: #fff;
    font-size: 4.2vw;
    font-weight: 400;
    animation: text 3s;
}

.and {
    font-family: 'Quicksand';
    font-weight: 100;
    font-size: 4.2vw;
    color: #ccc;
    animation: and 1s;
    padding: 0px 10px;
}

.s {
    height: 1px;
    margin: 0 auto;
    background: #fff;
    animation: s 4s;
    max-width: 80%;
}
}

@media only screen and (max-width: 500px) {
.let {
    font-family: 'Quicksand';
    color: #fff;
    font-size: 10vw;
    font-weight: 400;
    animation: text 3s;
}

.and {
    font-family: 'Quicksand';
    font-weight: 100;
    font-size: 10vw;
    color: #ccc;
    animation: and 1s;
    padding: 0px 10px;
}

.s {
    height: 1px;
    margin: 0 auto;
    background: #fff;
    animation: s 4s;
}
}

@keyframes and {
    from {
        -webkit-transform: rotateY(90deg);
        transform: rotateY(90deg);
    }
    to {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes text {
    from {
        color: #333;
        letter-spacing: 3px;

    }
    to {
        color: #fff;
        letter-spacing: 0px;
    }
}

@keyframes s {
    from {
        width: 0px;

    }
    to {
        width: 80%;
    }
}


h1 {
  margin: 0px;
}

@media all and (min-width:500px) {
.reveal-text,
.reveal-text:after {
  animation-delay: 2s;
  animation-iteration-count: 1;
  animation-duration: 800ms;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0.1, 1, 0);
}

.reveal-text {
  text-align:center;
  margin-top: 20px;
  position: relative;
  font-size: 2.8vw;
  user-select: none;
  animation-name: reveal-text;
  white-space: nowrap;
  font-family: 'Quicksand';
    font-weight: 100;
    color: #fff;
}
.reveal-text:after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: revealer-text;
}
}

@media only screen and (max-width: 500px) {
.reveal-text,
.reveal-text:after {
  animation-delay: 2s;
  animation-iteration-count: 1;
  animation-duration: 800ms;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0.1, 1, 0);
}

.reveal-text {
  text-align:center;
  margin-top: 20px;
  position: relative;
  font-size: 6vw;
  user-select: none;
  animation-name: reveal-text;
  white-space: nowrap;
  font-family: 'Quicksand';
    font-weight: 100;
    color: #fff;
}
.reveal-text:after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: revealer-text;
}
}

@keyframes reveal-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes revealer-text {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  50% {
    transform: scaleX(1);
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}


  /* hide mobile version by default */
.logo .mobile {
    display: none;
  }
  /* when screen is less than 600px wide
     show mobile version and hide desktop */
  @media (max-width: 600px) {
    .logo .mobile {
      display: block;
    }
    .logo .desktop {
      display: none;
    }
  }
  .brand {
      width: 100%;
      padding: 10px;
  }
.corinthia-regular {
  font-family: "Corinthia", cursive;
  font-weight: 400;
  font-style: normal;
}

.corinthia-bold {
  font-family: "Corinthia", cursive;
  font-weight: 700;
  font-style: normal;
}


.title-container {

  text-align: left;
  margin-bottom: 0px;
  width: 100%;
}


.title-anim, .title-anim-2bis, .title-anim-2, .title-anim-3, .title-anim-1bis, .title-anim-1 {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.title-anim span, .title-anim-2bis span, .title-anim-2 span, .title-anim-3 span, .title-anim-1bis span, .title-anim-1 span {
  position: absolute;
}

.home-title1 {
  font-size: 6em;
  font-family: "Corinthia", cursive;
  color: #fff;
  padding:10px;
}

.home-title2 {
  font-size: 2.3em;
  font-family: "Zalando Sans Expanded", sans-serif;
  color: #fff;
  text-transform: uppercase;
}

.home-title3 {
  font-size: 2em;
  font-family: Georgia, serif;
  color:#fff;
}

.home-title4 {
  font-size: 30px;
}

.home-title5 {
  font-size: 30px;
}

.title-anim-1 span {
  top: 100%;
  font-weight: 300;
  animation: 0.4s titleAnim 2s ease forwards;
}

.title-anim-1bis span {
  top: -80%;
  font-weight: 700;
  animation: 0.4s titleAnim 2.2s ease forwards;
}

.title-anim-3 span {
  top: 100%;
  font-weight: 300;
  animation: 0.4s titleAnim 3s ease forwards;
}

.title-anim-2 {
  width: 160px;
  left: 80px;
  animation: 0.5s titleAnim2 4.9s ease forwards;
}
.title-anim-2 span {
  top: 100%;
  font-weight: 300;
  color: #fff;
  font-family: Georgia, serif;
  animation: 0.4s titleAnim 4s ease forwards;
}

.title-anim-2bis {
  width: 300px;
}
.title-anim-2bis span {
  top: 0;
  left: -60%;
  font-weight: 700;
  color: #fff;
  font-family: Georgia, serif;
  animation: 0.4s titleAnim2 5s ease forwards;
}

@keyframes titleAnim {
  100% {
    top: 0;
  }
}
@keyframes titleAnim2 {
  100% {
    left: 0;
  }
}

    .give{
        margin:20px;
    }
.container{
	max-width: 1200px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
.v-center{
	align-items: center;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
	text-align: left;
}
a{
	text-decoration: none;
}
/* header */
.header{
	display: block;
	width: 100%;
	position: relative;
	z-index: 99;
	background-color:#fff;
}
.header .item-left{
	flex:0 0 17%;
}
.header .logo a{
	font-size: 30px;
	color:#000000;
	font-weight: 700;
	text-decoration: none;
}
.header .item-center{
	flex:0 0 66%;
}
.header .item-right{
	flex:0 0 17%;
	display: flex;
	justify-content: flex-end;
}
.header .item-right a{ 
     text-decoration: none;
     font-size: 16px;
     color:#555555;
     display: inline-block;
     margin-left: 10px;
     transition: color 0.3s ease;
}
.header .menu > ul > li{
	display: inline-block;
	line-height: 50px;
	margin-left: 25px;
}
.header .menu > ul > li > a{
	font-size: 15px;
	font-weight: 500;
	color:#000000;
	position: relative;
	text-transform: capitalize;
	transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu{
	position: absolute;
	z-index: 500;
	background-color:#ffffff;
	box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); 
	padding: 20px 30px;
	transition: all 0.5s ease;
	margin-top:25px;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
	margin-top: 0;
	visibility: visible;
	opacity: 1;
}
}
.header .menu > ul > li .sub-menu > ul > li{
	line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a{
	display: inline-block;
	padding: 10px 0;
	font-size: 15px;
	color: #555555;
	transition: color 0.3s ease;
	text-decoration: none;
	text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu{
	min-width: 280px;
	max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{
   line-height: 1;
   display: block; 
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
	padding:10px 0;
	display: inline-block;
	font-size: 15px;
	color:#555555;
	transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu{ 
    left: 50%;
    transform: translateX(-50%);	
}

.header .menu > ul > li .sub-menu.mega-menu-column-4{
  max-width: 1100px;
  width: 100%; 	
  display: flex;
  flex-wrap: wrap;
  padding:20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
  flex:0 0 25%;
  padding:0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title{
	font-size: 16px;
	color:#202a5b;
	font-weight: 500;
	line-height: 1;
	padding:10px 0;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
	text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
	max-width: 100%;
	width: 100%;
	vertical-align: middle;
	margin-top: 1px;
	object-fit: cover;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a{
	color:#ea4636;
}
/* banner section */
.banner-section{
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}
.mobile-menu-head,
.mobile-menu-trigger{
	display: none;
}

/*responsive*/
@media(max-width: 991px){

	.header .item-center{
		order:3;
		flex:0 0 100%;
	}
	.header .item-left,
	.header .item-right{
		flex:0 0 auto;
	}
	.v-center{
		justify-content: space-between;
	}
	.header .mobile-menu-trigger{
		display: flex;
		height: 50px;
		width: 50px;
		padding-top:40px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
		float: right;
	}
	.header .mobile-menu-trigger span{
		display: block;
		height: 2px;
		background-color: #333333;
		width: 24px;
		position: relative;
		
	}
	.header .mobile-menu-trigger span:before,
	.header .mobile-menu-trigger span:after{
		content: '';
		position: absolute;
		left:0;
		width: 100%;
		height: 100%;
		background-color: #333333;
	}
	.header .mobile-menu-trigger span:before{
		top:-6px;
	}
	.header .mobile-menu-trigger span:after{
		top:6px;
	}
	.header .item-right{
		align-items: center;
	}

	.header .menu{
		position: fixed;
		width: 320px;
		background-color:#ffffff;
		left:0;
		top:0;
		height: 100%;
		overflow: hidden;
		transform: translate(-100%);
		transition: all 0.5s ease;
		z-index: 1099;
	}
	.header .menu.active{
	   transform: translate(0%);	
	}
	.header .menu > ul > li{
		line-height: 1;
		margin:0;
		display: block;
	}
	.header .menu > ul > li > a{
		line-height: 50px;
		height: 50px;
		padding:0 50px 0 15px;
		display: block;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	.header .menu > ul > li > a i{
		position: absolute;
		height: 50px;
		width: 50px;
		top:0;
		right: 0;
		text-align: center;
		line-height: 50px;
		transform: rotate(-90deg);
	}
	.header .menu .mobile-menu-head{
		display: flex;
		height: 50px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		justify-content: space-between;
		align-items: center;
		position: relative;
		z-index: 501;
		position: sticky;
		background-color: #ffffff;
		top:0;
	}
	.header .menu .mobile-menu-head .go-back{
		height: 50px;
		width: 50px;
		border-right: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;
		font-size: 16px;
		display: none;
	}
	.header .menu .mobile-menu-head.active .go-back{
		display: block;
	}
	.header .menu .mobile-menu-head .current-menu-title{
		font-size: 15px;
		font-weight: 500;
		color:#000000;
	}
	.header .menu .mobile-menu-head .mobile-menu-close{
	    height: 50px;
		width: 50px;
		border-left: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;	
		font-size: 25px;
	}
	.header .menu .menu-main{
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.header .menu > ul > li .sub-menu.mega-menu,
	.header .menu > ul > li .sub-menu{
		visibility: visible;
		opacity: 1;
		position: absolute;
		box-shadow: none;
		margin:0;
		padding:15px;
		top:0;
		left:0;
		width: 100%;
		height: 100%;
		padding-top: 65px;
		max-width: none;
		min-width: auto;
		display: none;
		transform: translateX(0%);
		overflow-y: auto;
	}
.header .menu > ul > li .sub-menu.active{
	display: block;
}
@keyframes slideLeft{
	0%{
		opacity:0;
		transform: translateX(100%);
	}
	100%{
	    opacity:1;
		transform: translateX(0%);	
	}
}
@keyframes slideRight{
	0%{
		opacity:1;
		transform: translateX(0%);
	}
	100%{
	    opacity:0;
		transform: translateX(100%);	
	}
}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
		margin-top:0;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
		margin-bottom: 20px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title{
		margin-bottom:0px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
		flex: 0 0 100%;
        padding: 0px;
	}
	.header .menu > ul > li .sub-menu > ul > li > a,
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a{
		display: block;
	}
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
		margin-bottom: 15px;
	}
	.menu-overlay{
		position: fixed;
		background-color: rgba(0,0,0,0.5);
		left:0;
		top:0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		visibility: hidden;
		opacity:0;
		transition: all 0.5s ease;
	}
	.menu-overlay.active{
	  visibility: visible;
	  opacity:1;	
	}