*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 15px;

    --white:#ffffff;
    --black:#1E1E1E;
    --grey:#3A3A3A;
    --accent:#D2E154;

    --container-padding-lr: 4em;
    --container-max-width: 1800px; 
    --header-height:10vh;
}

@media screen and (max-width:768px) {
    :root{
        --header-height: 5vh;
    }
}

@font-face {
    font-family: helvetica-neun;
    src: url(../Assets/Helvetica\ Neue\ LT\ 53\ Extended.ttf);
}

::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--grey);
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--accent);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
  }
 
img{
    max-width: 100%;
}

a{
    text-decoration: none;
    color: var(--white);
}

a:hover{
    color: var(--white);
    text-decoration: none;
}

body{
    font-family: "helvetica-neun", sans-serif;
    color: var(--white);
    background-color: var(--black);
    position: relative;
}

.cta{
    padding: 0.25em 1em;
    border: none;
    border-radius:100px;
    color: var(--accent);
    background-color: var(--grey);
    white-space: nowrap;
    cursor: pointer;
}

.overlay{
  position:absolute;
  background-image:linear-gradient(-30deg,rgba(0,0,0,0.8),transparent 70%);

  width: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 1rem;
  z-index: 1;
  flex-direction: column;
  height: 100%;
  top:0px;
  font-weight: 600;
  left: 0px;
  transition: opacity 1s ease, color 1s ease 1s;
}
.home-slide .overlay{
  opacity: 0;
  color: transparent;
}

.home-slide.zoom img{
  animation: zoom 10s linear 0.5s;
}
.home-slide.currentSlide .overlay{
  opacity: 1;
  color:white;
}
.transition-fade {
  transition: 0.5s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}
main{
  margin-top:var(--header-height);
}
.heading{
  font-size: 3rem;
  line-height: 3rem;
}
.subheading{
  font-size: 1.8rem;
}


@keyframes zoom {
  0%{
    transform:scale(1);
  }
  100%{
    transform:scale(1.1);
  }
}

/* lazy image */
.lazy-image{
  width: 100%;
  height: 100%;
  transition:  all 2s ease;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  overflow: hidden;
}

.lazy-image .base-image{
  filter:blur(20px);
}
.lazy-image .main-image{
  opacity: 0;
  transition: all 1.5s ease;
  position: absolute!important;
}

.lazy-image-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lazy-image-contain img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}