.hero-container {
    width: auto;
    height: 70vh;
    overflow: hidden;
    position: relative;
}

.hero-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}
  
.slide.active {
    opacity: 1;
    z-index: 0;
    pointer-events: all;
}

.invisible {
    display: none;
}

/* Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 2rem;
    border-radius: 50%;
}

.prev { left: 0.5rem; }
.next { right: 0.5rem; }

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);    
}

.overlay-header {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    font-size: 1.75rem;
    color: var(--neutral-light-transparent);
    -webkit-text-stroke: 0.05rem var(--alternate-color);
}

.overlay-h2 {
    position: absolute;
    top: 9rem;
    left: 2rem;
    display: flex;
    font-size: 1.5rem;
    color: var(--neutral-light-transparent);
    -webkit-text-stroke: 0.05rem var(--alternate-color);
}

.overlay-button-container {
    position: absolute;
    bottom: 5rem;
    right: 1rem;
    display: flex;
}

.overlay-button {
    background-color: var(--main-color-transparent);
    color: white;
    
    padding: 0.75rem 1.75rem;
    margin: 0 auto;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    width: auto;
    transition: background-color 0.3s ease;

}

.overlay-button:hover {
    background-color: var(--main-color-light);
}

.overlay-menu {
    position: absolute;
    bottom: 3rem;
    right: 5rem;
    background-color: var(--neutral-light-transparent);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    z-index: 10;
    text-align: center;
}

.overlay-menu h3 {
    font-size: 3.25rem;
    margin: 1rem;
}

.overlay-menu button {
    font-size: 2.5rem;
    margin: 0 1.25rem 1rem 1.25rem;
}

.overlay-menu .main {
    font-size: 3.25rem;
}

.social-icons {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: center;
  gap: 18px;

  padding: 12px 0;
  margin: 0;
  list-style: none;
}

.icon {
  width: 2rem;
  height: 2rem;
  transition: all 0.25s ease;
  stroke: var(--alternate-color);
  fill: white;
}

.social-item a:hover .icon {
  transform: scale(1.15);
}

@media (min-width: 1200px) {

}

@media (min-width: 992px) {

}

@media (min-width: 768px) {
    .hero-container img {
        
        object-position: center;
        left: 0%;
    }

    .icon {
        width: 4rem;
        height: 4rem;
        transition: all 0.25s ease;
        stroke: var(--alternate-color);
        fill: white;
    }

    .social-icons {
        bottom: 0;
    }

}

@media screen and (orientation: landscape) {

}

@media (max-width: 612px) {

}

@media (max-width: 575px) {

}

@media (max-width: 379px) {

}