html {
	scroll-behavior: smooth;
	font-family: "Playfair Display", serif;
}
* {
	box-sizing: border-box
}



body {
	background-color: white;
}

.playfair-display-<uniquifier> {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


.section1 {
	background-image: url(background2.jpg);
	background-attachment: fixed;
	background-size: cover;
	line-height: 90vw;
}

.section2 {
	background-image: url(background3.jpg);
	background-attachment: fixed;
	background-size: cover;
	line-height: 10vw;
	width: 100%;
}

.section3 {
    background-color: white;
	background-attachment: fixed;
	background-size: cover;
	line-height: 5vw;
}

.halfsection1 {
	line-height: 5vw;
	 width: 100%;
	 background-color: white;
}
.halfsection1 p {
	line-height: 3vw;
	font-size: 1vw;
	text-align: left;
	width: 50%;
	margin-left: 5vw;
	color: black;
}
.halfsection1 img {
	float: right;
	margin-right: 15vw;
	margin-top:1vw;
}
.container1 {
  color: white;
  mix-blend-mode: difference;
}

.container2 {
  padding: 0.5vw 4vw;
}

.text {
  color: lch(from var(--bg-color) calc(100 - l) c h);
  font-family: "Playfair Display", serif;
}

.card {
  box-shadow: 0 0.25vw 0.5vw 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 30vw;
  border-radius: 0.3vw;
  text-align: center;
  margin-top: 4vw;
  padding-top: 2vw;
  overflow: hidden;
}

.card img {
  border-radius: 0.3vw 0.3vw 0 0;
  height: 30vw;
}

.card p {
	color: black;
	line-height: 2vw;
	font-size: 1vw;
	text-align: center;
}

.mySlides1, .mySlides2 {
	display: none
}


header {
  color: black;
  padding: 3.6vw 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  margin-left: -0.5vw;
  mix-blend-mode: difference;
}

header h1 {
  float: left;
  margin-left: 2vw;
  margin-top: -2vw;
  font-size: 2vw;
  color: black;
}

footer {
    padding: 2vw 0;
    width: 100%;
    top: 0;
	text-align: left;
}

.footer2 {
	padding: 3vw 0;
    width: 100%;
    top: 0;
}

.footer3 {
	padding: 3vw;
}


footer p {
	text-align: center;
    margin-left: 2vw;
    margin-top: -2vw;
    font-size: 2vw;
    color: black;
}

footer h1 {
	margin-left: 5vw;
    margin-top: -2vw;
    font-size: 2vw;
    color: black;
	text-align: left;
}

footer h2 {
    font-size: 2vw;
    color: black;
	text-align: center;
	letter-spacing: 0.5vw;
}
.gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.gallery .item {
  flex: 1 1 calc(50% - 1vw);
  margin-bottom: 1vw;
  text-align: center;
}

.gallery .item img source {
  width: 100%;
  height: auto;
  border-radius: 0.3vw;
  border: 1vw solid black;
}

.gallery .item p {
  text-align: center;
  margin-top: 1vw;
}

.gallery img:hover {
  transform: scale(1.05); 
}

a {
	text-decoration: none;
	color: white;
}

li {
	text-align: right;
	word-spacing: 1.5vw;
	margin-right: 1.5vw;
	font-size: 1vw;
	 margin-top: -1vw;
}

h1 {
	font-size: 40vw;
	text-align: center;
    margin-bottom: -30vw;
	margin-top: -20vw;
}

p {
	font-size: 5vw;
	color: white;
	text-align: center;
	line-height: 60vw;
}

h2 {
	font-size: 1vw;
	text-align: center;
	line-height: 2vw;
	color: black;
}
 h3 {
    font-size: 4vw;
    color: black;
	text-align: center;
	letter-spacing: 0.5vw;
}

h4 {
	font-size: 15vw;
	text-align: center;
    margin-bottom: -30vw;
	margin-top: -20vw;
}
	
.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll span {
  opacity: 0;
  transform: translateY(1vw);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.animate-on-scroll.active span {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-image {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-in-image.visible {
  opacity: 1;
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}


@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


.slideshow {
  height: 30vw;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slides-track img {
  height: 30vw;
  width: calc(30vw * var(--ratio));
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 0.3vw;
}

