* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-family: 'Roboto', sans-serif;
}
/*nav*/
nav {	
	position: fixed;
	top: 0;	
	left: 0;
	right: 0;	
	background-color: rgba(13, 13, 13, 0.9);			
	transition: .3s;
	z-index: 2;
}
nav ul {
	display: -ms-flexbox;
	display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
	max-width: 1280px;
	margin: 0 auto;
	height: 80px;
	list-style: none;	
	padding-right: 20px;	
	overflow: hidden;
}
nav ul li {
	-ms-flex-preferred-size: 10%;
	    flex-basis: 10%;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
  display: inline-block;
}
nav ul li.logo {
	-ms-flex-positive: 1;
	    flex-grow: 1;
}
nav ul li a {	
	display: block;
	padding: 10px 0;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
	transition: .3s;	
	margin: 0;  	
	box-sizing: content-box;
}
nav ul li:first-child a {
	padding: 0;	
	/*margin-left: -450px;*/
}
nav ul li .btn-1:hover {
	color: #c4bdff;
}
nav ul li .btn-2:hover {
  color: #957bff;
}
nav ul li .btn-3:hover {
  color: #7449ff;
}
nav ul li .btn-4:hover{
  color: #5127e5;
}	
nav ul li .btn-5:hover{
  color: #421eb2;
}	
@media(max-width: 1024px) {
	nav {	
		position: fixed;
		top: -100vh;
		transition: .3s;
	}
	nav ul {		
	  -ms-flex-pack: center;		
	      justify-content: center;
	}
	nav ul li:first-child a {	
		margin: 0;
	}
	nav ul li.logo {
		-ms-flex-positive: 0;
		    flex-grow: 0;
	}

	.burger {		
	 	position: fixed;
		display: block;
	 	top: 20px;
	 	right: 20px; 	
	 	width: 50px;
	 	height: 40px;
	 	transition: .2s;
	 	z-index: 10; 	
	}
	.burger span {
	 	position: absolute;
	 	width: 100%;
	 	height: 7px;
	 	background-color: #9595ea;
	 	left: 0;
	 	border-radius: 6px;
	 	transition: top .2s .2s, bottom .2s .2s, opacity .2s .2s, transform .2s .2s;
	}
	.burger span:nth-child(1) {
	 	top: 0;
	}
	.burger.active span:nth-child(1) {
	 	top: 50%;
	 	transform: translateY(-50%) rotate(45deg);
	}
	.burger span:nth-child(2) {
	 	top: 50%;
	 	transform: translateY(-50%);
	}
	.burger.active span:nth-child(2) {
	 	opacity: 0;
	}
	.burger span:nth-child(3) {
	 	bottom: 0;
	}
	.burger.active span:nth-child(3) {
	 	top: 50%;
	 	transform: translateY(-50%) rotate(-45deg);
	}
	.burger.active {
		transform: rotate(-90deg);
	}
	nav.active {
		top: 0;
	}
}
@media(max-width: 870px) {
	.burger {		
	 	width: 40px;
	 	height: 30px;
	}
	.burger span {
	 	height: 6px;
	}
	nav ul {
		-ms-flex-direction: column;
		    flex-direction: column;
		height: 100vh;
		padding-right: 0;
	}
	nav ul li a {	
		font-size: 20px;    	
	}	
}
@media(max-width: 420px) and (orientation: portrait) {
	nav ul {
		height: 100vh;
		padding: 0 0 80px 0;
	}
	nav ul li a {	
		padding: 12px;
		font-size: 18px;	  			  	
	}
}
/*header*/
.welcome {
	position: relative;
	margin: 80px auto 0;
	height: 100vh;
	width: 100%;
	background-image: url(../images/lavender1.jpg);
	background-repeat: no-repeat;
	background-size: cover; 
	background-position: center;	
	background-attachment: fixed;
	text-align: center; 
}
.welcome-wrap {
	position: absolute;
	height: 100vh;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}
.welcome h1 {
	font-family: 'La Belle Aurore', cursive;;
	font-size: 70px;
	margin-top: 80px;
	color: #9595ea;	
	text-transform: capitalize; 
	text-shadow: 0px 0px 1px #222;	
}
.welcome h1~h1 {
	margin-top: -50px;
}
.welcome h2 {	
	font-size: 40px;
	margin: 40px 15px;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 3px
}
.welcome p {
	font-size: 32px;
	color: #bfbff2;
	text-transform: uppercase;	
}
@media(max-width: 1024px) {
	.welcome {
		margin-top: 0;
		height: 100vh;
	}
	.welcome-wrap {
		height: 100vh;
	}
	.welcome h1 {
		margin-top: 100px;
		font-size: 60px;
	}
	.welcome h1~h1 {
		margin-top: -40px;
	}
	.welcome h2 {	
		margin: 30px 30px 60px;
		font-size: 30px;
	}
	.welcome p {
		font-size: 26px;
	}
}
@media(max-width: 825px) and (orientation: landscape) {
	.welcome h1 {
		margin-top: 15px;
		font-size: 40px;
	}
	.welcome h1~h1 {
		margin-top: -30px;
	}
	.welcome h2 {	
		margin: 20px;
		font-size: 24px;
	}
	.welcome p {
		font-size: 20px;
	}
}
@media(max-width: 540px) and (orientation: landscape) {
	.welcome h1 {
		font-size: 32px;
	}
	.welcome h1~h1 {
		margin-top: -24px;
	}
	.welcome h2 {			
		font-size: 20px;
	}
	.welcome p {
		font-size: 18px;
	}
}
@media(max-width: 420px) and (orientation: portrait) {
	.welcome {
		background-image: url(../images/1.jpg);
	}
	.welcome h1 {
		font-size: 40px;
	}
	.welcome h1~h1 {
		margin-top: -30px;
	}
	.welcome h2 {	
		margin-top: 30px;
		font-size: 24px;
	}
	.welcome p {
		margin-top: 50px;
		font-size: 20px;
	}
}
/*about us*/
.about-us {
	position: relative;
	top: 0;
	left: 0;
	max-width: 1280px;
	margin: 0 auto;
	height: 500px;
	display: -ms-flexbox;
	display: flex;
}
.about-us div.text {	
	-ms-flex-preferred-size: 60%;	
	    flex-basis: 60%;
}
.about-us div.text h1 {
	margin: 80px 50px 50px;
} 
.about-us div.text p, .about-us div.image  {
	margin: 50px;
}
.about-us div.text p {
	line-height: 150%;
	text-align: justify;
}
.about-us div.image {
  -ms-flex-positive: 1;
      flex-grow: 1;	
  background-image: url(../images/5.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media(max-width: 1024px) {
	.about-us div.text p {
		margin: 30px 50px;
	}
}
@media(max-width: 820px) and (orientation: landscape) {
	.about-us {		
		height: 100vh;
	}
	.about-us div.text h1 {
		margin: 50px;
	}
	.about-us div.text p {
		margin: 20px 20px 20px 50px; 
	}
}
@media(max-width: 670px) and (orientation: landscape) {
	.about-us div.text h1, .about-us div.text p, .about-us div.image {
		margin: 20px;
	}
	.about-us div.text h1 {
		font-size: 20px;
	}
	.about-us div.text p {
		line-height: 150%;
		font-size: 14px;
	}
}
@media(max-width: 820px) and (orientation: portrait) {
	.about-us {
		-ms-flex-direction: column;
		    flex-direction: column;
		height: 100vh;		
	}
	.about-us div.text {	
		-ms-flex-preferred-size: 40%;	
		    flex-basis: 40%;
	}
	.about-us div.text h1 {
		text-align: center;
		margin: 50px 50px;
	} 
	.about-us div.image {
		position: relative; 
		top: 0;
		left: 50%;
		margin: 40px 0;
		transform: translateX(-50%);
		width: 400px;
	}
}
@media(max-width: 420px) and (orientation: portrait) {
	.about-us {
		height: 150vh;
	}
	.about-us div.text h1 {
		margin: 30px;
		font-size: 16px;
	}
	.about-us div.text p {
		margin: 30px;
		line-height: 120%;
		font-size: 12px;
	}
	.about-us div.image {
		width: 200px;
	}
}

/*banner*/
.banner {	 
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.banner-image img {	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100vh;
	animation: moveImage 4s linear infinite;
}
.banner-image-mini img {
	display: none;
}
.banner-text h1 {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
	font-size: 32px;
	letter-spacing: 6px;
	text-transform: uppercase;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	z-index: 1;
	padding: 20px;
	animation: moveText 4s linear infinite;
}
div.arrow {	
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 44px;
	color: #fff;
	z-index: 1;
	cursor: pointer;
	filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, .8));
}
.arrow-left {
	left: 0;
	margin-left: 50px;
}
.arrow-right {
	right: 0;
	margin-right: 50px;
}
@keyframes moveImage {
	0% {		
		opacity: 0.2;
	}
	2% {
		opacity: 0.2;
	}
	15% {
		opacity: 1;
	}
	85% {
		opacity: 1;
	}
	98% {
		opacity: 0.2;
	}
	100% {		
		opacity: 0.2;
	}
}
@keyframes moveText {
	0% {		
		opacity: 0;
	}
	10% {
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {		
		opacity: 0;
	}
}
@media(max-width: 1024px) {
	.banner {
		height: 100vh;
	}
	.banner-text h1 {		
		font-size: 28px;	
	}
}
@media(max-width: 870px) {
	.banner-text h1 {		
		font-size: 26px;	
	}
	.banner-image img {
		display: none;
	}
	.banner-image-mini img{
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		min-width: 100%;
		min-height: 100vh;
		animation: moveImage 4s linear infinite;
	}
	.banner-text h1 {		
		font-size: 36px;	
	}
}
@media(max-width: 640px) {
	div.arrow {	
		font-size: 34px;
	}
	.arrow-left {	
		margin-left: 20px;
	}
	.arrow-right {	
		margin-right: 20px;
	}
	.banner-text h1 {		
		font-size: 24px;	
	}
}
@media(max-width: 360px) {
	.banner-text h1 {	
		padding: 30px 15px;	
		font-size: 22px;	
	}
}
/*gallery*/
.gallery {
	max-width: 1280px;
	margin: 0 auto 80px;
}
.gallery h1 {
	text-align: center;
	padding: 80px 0 20px;
	margin-bottom: 20px;
	font-size: 28px;
	text-transform: uppercase;
}
.gallery .album {
	display: -ms-flexbox;
	display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.gallery .album img {
	margin: 30px 15px 5px;
}
.gallery .album p {
	padding-top: 20px;
	text-align: center;
	text-transform: uppercase;
}
.gallery .album a.btn-gallery {
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
	margin: 15px 0;
	padding: 10px 20px;
	border-style: none;
	background-color: #9595ea;
	border-radius: 6px;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 2px;
	transition: .3s;
	cursor: pointer;
}
.gallery .album a.btn-gallery:hover {
	background-image: linear-gradient(#9595ea, #bab6ff);
}
.gallery .album .caption {	
	margin: -10px 15px 0;
	background-color: #eee;	
}
@media (max-width: 425px) {
	.gallery h1 {		
		padding: 30px 60px 0;
		margin-bottom:0;
		font-size: 20px;
		text-transform: uppercase;
	}
}
/*contact*/
.contact {
	display: -ms-flexbox;
	display: flex;
	height: calc(100vh - 64px);	
	color: #fff;
}
.contact .information {
	position: relative;
	top: 0;
	left: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-positive: 1;
	    flex-grow: 1;
	background-image: url(../images/4.jpg);
	background-repeat: no-repeat;	
	background-position: center;
	background-size: cover;
}
.contact .information .wrap {
	position: absolute;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-positive: 1;
	    flex-grow: 1;
	width: 100%;
	height: calc(100vh - 64px);
	padding: 0 30px;
	background-color: rgba(0, 0, 0, 0.8);
}
.contact .information h1 {
	text-align: center;
	text-transform: uppercase;
	font-size: 28px;
	padding: 80px 20px 20px;
	color: #9595ea;
	letter-spacing: 2px;
}
.contact .information .info {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-positive: 1;
	    flex-grow: 1;
	padding: 10px;
}
.contact .information .info .contact-icon {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
	text-align: center;
	font-size: 30px;
	color: #9595ea;
}
.contact .information .info .text {
	-ms-flex-positive: 1;
	    flex-grow: 1;
	font-size: 16px;	
}
.contact .information .info .text p.title {
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.contact .map {
	-ms-flex-preferred-size: 60%;
	    flex-basis: 60%;
	background-color: #555;	
	position: relative;
	left: 0;
	top: 0;
} 
.contact .map div#map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vh - 64px);
}
@media (max-width: 1024px) {
	.contact .information .wrap {
		padding: 0 15px;
	}
	.contact .information h1 {
		font-size: 24px;
	}
	.contact .information .info .contact-icon {
		font-size: 34px;
	}
	.contact .information .info .text {
		font-size: 18px;	
	}
	.contact .information .info .text p.title {
		font-size: 20px;
	}
}
@media (max-width: 870px) {
	.contact {
    -ms-flex-direction: column;
        flex-direction: column;
		height: 100vh;
	}
	.contact .information .info {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: column;
		    flex-direction: column;
		-ms-flex-align: center;
		    align-items: center;
		text-align: center;
	}
	.contact .information .wrap {
		height: 70vh;
	}
	.contact .map {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
	}
	.contact .map div#map {
		height: 30vh;
	}
}
@media (max-width: 870px) and (orientation: landscape){
	.contact {		
		height: 200vh;
	}
	.contact .map {
	  -ms-flex-preferred-size: 50%;
	      flex-basis: 50%;
	}
	.contact .map div#map {
		height: 100vh;
	}
	.contact .information .wrap {
		height: 100vh;
	}
	.contact .information h1 {
		padding: 15px;
		font-size: 30px;
	}
	.contact .information .info .contact-icon, .contact .information .info .text p.title {
		font-size: 18px;
	}
	.contact .information .info .text {
		font-size: 14px;	
	}
}
@media (max-width: 670px) and (orientation: landscape) {	
	.contact .information h1 {
		padding: 10px;
		font-size: 26px;
	}
	.contact .information .info .contact-icon {
		font-size: 14px;
	}
	.contact .information .info .text {
		font-size: 12px;	
	}
	.contact .information .info .text p.title {
		font-size: 14px;
	}
}
@media (max-width: 768px) and (orientation: portrait) {
	.contact .information h1 {
		font-size: 26px;
	}
	.contact .information .info .contact-icon {
		font-size: 40px;
	}
	.contact .information .info .text {
		font-size: 14px;	
	}
	.contact .information .info .text p.title {
		font-size: 16px;
	}
}
@media (max-width: 425px) and (orientation: portrait) {
	.contact {		
		height: 170vh;
	}
	.contact .map {
    -ms-flex-preferred-size: 70vh;
        flex-basis: 70vh;
	}
	.contact .map div#map {
		height: 70vh;
	}
	.contact .information .wrap {
		height: 100vh;
	}
	.contact .information h1 {
		padding: 20px 50px;
		font-size: 20px;
	}
	.contact .information .info .contact-icon, .contact .information .info .text p.title {
		font-size: 16px;
	}
	.contact .information .info .text {
		font-size: 12px;	
	}
}
footer {
	background-color: rgba(13, 13, 13, 0.9);	
	text-align: center;
}
footer p {
	padding: 20px;
	font-size: 20px;
	color: #bfbff2;
}
@media(max-width: 825px) {
	footer p {
		font-size: 18px;
	}
}
@media(max-width: 640px) {
	footer p {
		font-size: 16px;
	}
}
