* {
    margin: 0px;
    padding: 0px;
}

.navlogo {
    display: flex;
    left: 1rem;
    width: 10rem;
    max-width: 100%;
    height: auto;
    transition: 0.15s ease-in-out;
}

.navlink {
    color: black;
    text-decoration: none;
    font-weight: 10;
    transition: 0.15s ease-in-out;
}

.navlink:hover {
    color: blue;
    text-decoration: none;
    font-weight: 10;
    transition: 0.15s ease-in-out;
}

.navcontainer {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 1rem;
    background-color: rgba(255, 255 ,255);
    transition: 0.15s ease-in-out;    
}

.sidebar {
    height: 100vh;
    position: fixed;
    right: -100%;
    transition: 0.15s ease-in-out;
}

.sidebaropen {
    visibility: collapse;
    position: fixed;
    top: 0.5rem;
    right: 0.5rem;
    background-color: black;
    width: 40px;
    height: 40px;
}

@media (min-width: 0px) and (max-width: 30rem) {
    .navcontainer {
        justify-content: center;
        align-items: center;
    }
    .navsubcontainer {
        visibility: collapse;
    }
    .sidebaropen {
        visibility: visible;
    }
}

@media (min-width: 30.01rem) and (max-width: 48rem) {
    html {
        font-size: 110%;
    }
    .navcontainer {
        justify-content: center;
        align-items: center;
    }
    .navsubcontainer {
        visibility: collapse;
    }
    .sidebaropen {
        visibility: visible;
    }
}

@media (min-width: 48.01rem) {
    html {
        font-size: 120%;
    }
    .navlink {
        padding-inline: 1.3rem;
    }
    .navsubcontainer {
        position: absolute;
        right: 1rem;
    }
}

@media (min-width: 62rem) {
    html {
        font-size: 130%;
    }
    .navlink {
        padding-inline: 1.8rem;
    }
}

@media (min-width: 75rem) {
    html {
        font-size: 140%;
    }
    .navlink {
        padding-inline: 2rem;
    }
}

@media (min-width: 90rem) {
    html {
        font-size: 160%;
    }
    .navlink {
        padding-inline: 2.2rem;
    }
}

.homeBox1 {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 80vh;
    justify-content: center;
    transition: height 0.15s ease-in-out;
}

.homeBox2 {
    width: 100vw;
    height: 80vh;
    background-color: black;
    transition: height 0.15s ease-in-out;
}

.title {
    font-size: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(50, 50, 50);
}

.subTitle {
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(50, 50, 50);
}

.infoBoxContainer1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vw;
    background-color: rgba(30, 30, 30,255);  
}

.infoBoxContainer2 {
    display: flex;
    padding-inline: 5vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.infoBoxHeader {
    color: white;
    font-weight: 600;
    font-size: 2vh;
    padding: 3vh;
}

.infoBoxContent {
    color: white;
    padding: 1vh;
    font-size: 2vh;
}

.infoBoxLogo {
    height: 5vh;
    padding-right: 2vw;
    width: auto;
}

.logo {
    position: fixed;
    left: 1vh;
    top: 1vh;
    height: 10vh;
    width: auto;
}




.carousel-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: black;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  user-select: none;
}

.carousel-button.prev {
    left: 0.5rem;
}

.carousel-button.next {
    right: 0.5rem;
}

.carousel-dots {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    background-color: black;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-dots .dot.active {
    background-color: grey;
}

.carouselslide1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-inline: 1rem;
    height: 80vh;
    border-radius: 1rem;
    background-color: rgb(150, 150, 150);
    transition: height 0.15s ease-in-out;
}

.carouselslide2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-inline: 1rem;
    height: 80vh;
    border-radius: 1rem;
    background-color: rgb(225, 225, 225);
    transition: height 0.15s ease-in-out;
}

.carouselslide3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-inline: 1rem;
    height: 80vh;
    border-radius: 1rem;
    background-color: rgb(190, 190, 190);
    transition: height 0.15s ease-in-out;
}