@charset "UTF-8";
/* CSS Document */

body {
    font-family: roboto, sans-serif;
}

.home {
    height: 100vh;
    position: relative;
}
video {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-content {
   font-size: clamp(1.5rem, 2.1vw, 1.4rem);
	position: relative;
    padding-top: 130px;
    color: #fff;
    text-align: center;
}
h1 {
    font-family: Playfair Display, serif;
    font-size: clamp(45px, 7vw, 130px);
    line-height: 1.1;
}
h5 {
    font-family: Playfair Display, serif;
    font-size: clamp(0.4rem, 1vw, 0.3rem);
    line-height: 1.1;
}

.home p {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-top: 10px;
}

.home-content button {
    display: block;
    font-size: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    margin: 50px auto 0;
    padding: 12px 20px;
    cursor: pointer;
}

.logobar {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-style: normal;
    margin: 0px;
    padding: 0px;
    border-width: 0px;
    border-style: none;
    position: fixed;
	top: 0px;
	right: 0px;
	width: 450px;
	height: 230px;
	border: 0px; 	
}
.logo {
    position: fixed;
    top: 0px;
	width: 400px;
	height: 228px;
}
.menubar {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-style: normal;
    margin: 0px;
    padding: 0px;
    border-width: 0px;
    border-style: none;
    position: fixed;
	top: 30px;
	left: 20px;
	width: 3000px;
	height: 230px;
	border: 0px; 	
}
.menuback {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-style: normal;
    margin: 0px;
    padding: 0px;
    border-width: 0px;
    border-style: none;
    position: fixed;
	top: 0px;
	left: 0px;
	width: 3000px;
	height: 230px;
	border: 0px; 	
}

.footnoteback {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-style: normal;
    margin: 0px;
    padding: 0px;
    border-width: 0px;
    border-style: none;
    position: fixed;
	Bottom: 0px;
	left: 0px;
	width: 3000px;
	height: 230px;
	border: 0px; 	
}

/* Carousel container */
.carousel {
    position: fixed;
	left: 36px;
	bottom: 5px;
	width: 500px;
  overflow: hidden;
}

/* Track that holds images */
.carousel-track {
  display: flex;
  animation: scroll 90s linear infinite;
}

/* Images styling */
.carousel-track img {
  width: 50px; 
	height: 50px; 
  flex-shrink: 0;
}

/* Animation for infinite scroll */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1400px);
  }
}

.footer-content {
   font-size: clamp(0.9rem, 1.1vw, 0.7rem);
	position: fixed;
    bottom: 5px;
    color: #fff;
    text-align: left;
}
