/* ^_^ */

@font-face {
    font-family: 'corporate s';
    src: 
        url("../assets/fonts/corporate-s-reg/Corporate-s.otf");
}        

.navbar {
    position: fixed;
    display: flex;
    gap: 27px;
    padding: 30px 0 0 clamp(25px, 2vw, 75px);
    font-size: 1.1em;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'corporate s';
    text-decoration: none;
}

body {
    margin: auto;
    padding: 200px 0 0 0;
    background-color: #EEEEEE;
    max-width: 1500px;
}

a {
  color: black;
  text-decoration: none; 
}

a:hover {
  color: #73BA00; 
}

html {
  background-color:#EEEEEE;
  background-size: cover;
}

h1 {

    font-family: 'corporate s';
    font-size: clamp(1em, 2.5vw, 1.4em);
    text-align: left;
    margin-bottom: 0px;
}

h2 {

  font-family: 'corporate s';
  font-size: clamp(2em, 2.5vw, 2.4em);
  font-weight: normal;
  text-align: center;
  margin-bottom: clamp(2%, 1vw, 5%);
  margin-top: clamp(-100px, 1vw, -50px)
  
}

p {
    font-family: 'corporate s';
    font-size: clamp(.5em, 2.5vw, .75em);
    text-align: left;
    margin-top: 0px;
    margin-bottom: clamp(5px, 1vw, 10px);
}

.green {
    color: #73BA00;
    text-align: right;
    margin-top: clamp(7px, 1vw, 14px);
    margin-bottom: clamp(20px, 5vw, 80px);
    font-size: clamp(.75em, 2.5vw, 1em);
}

.green2 {
    color: #73BA00;
    text-align: right;
    margin-top: clamp(5px, 1vw, 12px);
    margin-bottom: clamp(20px, 5vw, 80px);
    font-size: clamp(.75em, 2.5vw, 1em);
}

.image-container {
  display: flex;
  max-width: 1500px; 
  margin: 0 auto; 
}

.image-container img {
  height: auto; 
  object-fit: cover; 
}

.wide-img { 
    width: 55%; 
}

.narrow-img { 
    width: 45%; 
}

@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
    }
    .wide-img {
        width: 100%;
    }
    .narrow-img { 
    width: 100%; 
    }
}



.marquee-container {
    width: 100%;
    max-width: 1500px;
    height: auto;
    overflow: hidden;
    margin: auto;
    background: #EEEEEE;
    padding: 0 0;
}
.marquee {
    display: flex;
    width: max-content;
    animation: scroll-left 10s linear infinite;
}
@keyframes scroll-left {
    0% { transform: translateX(0);}
    100% { transform: translateX(-50%);}
}
.marquee img {
    width: 60vw;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    flex: 0 0 auto;
}