* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.logo img {
  width: 100px;
}

.fas {
  font-size: 25px;
}

.carousel {
  width: 100%;
  height: 96.2vh;
  position: relative;
  background-color: black;
}

.carousel > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  left: 50%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.slide > img {
  display: block;
  width: 90%;
  height: 80%;
  object-fit: cover;
  object-position: center;
}

.slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  background: none;
  border: none;
  font-size: 4rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  border-radius: .25rem;
  padding: 0 .5rem;
  background-color: rgba(0, 0, 0, .1);
}

.carousel-button:hover,
.carousel-button:focus {
  color: white;
  background-color: rgba(0, 0, 0, .2);
}

.carousel-button:focus {
  outline: 1px solid black;
}

.carousel-button.prev {
  left: 1rem;
}

.carousel-button.next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 1.5rem;
  width: 100%;
}

.dot {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: black;
  border: 1px solid white;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: white;
}


.logo img {
  width: 100px;
}

/* Off-screen menu */

.off-screen-menu {
  display: none;
  background-color: rgb(243, 243, 243);
  height: 50vh;
  width: 100%;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10%;
  align-items: start;
  text-align: center;
  font-size: 3rem;
  transition: 5s;
}

.ham-menu-items ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-top: 10px;
}

.ham-menu-items ul li {
  text-align: left;
  font-size: 15px;
  font-family: "Noto Sans", sans-serif !important; 
  font-weight: 300;
  text-decoration: none;
  list-style-type: none;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

.ham-menu-items ul li a {
  text-decoration: none;
}

.ham-menu-items ul li a:hover {
  color: red;
}

.ham-menu-items {
  margin-top: 64px;
  margin-left: -85px;
  width: 27%;
  border-top: solid black 1px;
}

.off-screen-menu li a {
  color: black;
}

/* Navigation */
nav {
position: fixed;
display: flex;
flex-direction: row;
align-items: center;
width: 95%;
left: 2.5%;
top: 1%;
transition: opacity 0.3s ease, visibility 0.3s ease;
}

nav.hidden {
opacity: 0;
visibility: hidden;
}


nav > h1 > a {
text-decoration: none;
color: rgb(255, 255, 255);
}

/* Ham menu */
.ham-menu {
  height: 40px;
  width: 30px;
  margin-left: auto;
  position: relative;
  cursor: pointer;
}

.ham-menu span {
  height: 1px;
  width: 100%;
  background-color: #000000;
  border-radius: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease;
}

.nav-bar-logo.active {
  color: rgb(0, 0, 0) !important;
}


.ham-menu span:nth-child(1) {
  top: 25%;
}

.ham-menu span:nth-child(3) {
  top: 75%;
}

.ham-menu.active span {
  background-color: rgb(0, 0, 0);
}

.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
  opacity: 0;
}

.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-bar-section {
  position: relative;
  z-index: 1000;
}

.nav-bar-logo a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}

.nav-bar-logo.black a {
color: black;
}

@media (max-width:768px) {
  .off-screen-menu {
      display: none;
      background-color: rgb(243, 243, 243);
      height: 60%;
      width: 100%;
      max-width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10%;
      align-items: center;
      text-align: center;
      font-size: 3rem;
      transition: 1s;
      padding-top: 50px;
      
  }
  .ham-menu-items {
      margin-top: 0px;
      width: 27%;
      border-top: solid black 1px;
      margin-left: -60%;
  }
  .ham-menu-items ul li {
      text-align: left;
      font-size: 12px;
      font-family: "Noto Sans", sans-serif !important; 
      font-weight: 300;
      text-decoration: none;
      list-style-type: none;
      line-height: 1.6;
      padding: 0;
  }
  
  
}
/* Navigation */
nav {
position: fixed;
display: flex;
flex-direction: row;
align-items: center;
width: 95%;
left: 2.5%;
top: 1%;
transition: opacity 0.3s ease, visibility 0.3s ease;
}

nav.hidden {
opacity: 0;
visibility: hidden;
}


nav > h1 > a {
text-decoration: none;
color: rgb(255, 255, 255);
}

/* Ham menu */
.ham-menu {
  height: 40px;
  width: 30px;
  margin-left: auto;
  position: relative;
  cursor: pointer;
}

.ham-menu span {
  height: 1px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease;
}

.nav-bar-logo.active {
  color: rgb(0, 0, 0) !important;
}


.ham-menu span:nth-child(1) {
  top: 25%;
}

.ham-menu span:nth-child(3) {
  top: 75%;
}

.ham-menu.active span {
  background-color: rgb(0, 0, 0);
}

.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
  opacity: 0;
}

.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-bar-section {
  position: relative;
  z-index: 1000;
}

.nav-bar-logo a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}

.nav-bar-logo.black a {
color: black;
}
@media (max-width:1100px) {
  .off-screen-menu {
      display: none;
      background-color: rgb(243, 243, 243);
      height: 80% !important;
      width: 100%;
      max-width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      flex-direction:row;
      align-items: start;
      justify-content: center;
      gap: 10%;
      text-align: center;
      font-size: 3rem;
      transition: 1s;
      padding-top: 50px;
      
  }
} 


@media (max-width:768px) {
  .off-screen-menu {
      display: none;
      background-color: rgb(243, 243, 243);
      height: 90% !important;
      width: 100%;
      max-width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10%;
      align-items: center;
      text-align: center;
      font-size: 3rem;
      transition: 1s;
      padding-top: 50px;
      
  }
  .ham-menu-items {
      margin-top: 0px;
      width: 27%;
      border-top: solid black 1px;
      margin-left: -60%;
  }
  .ham-menu-items ul li {
      text-align: left;
      font-size: 12px;
      font-family: "Noto Sans", sans-serif !important; 
      font-weight: 300;
      text-decoration: none;
      list-style-type: none;
      line-height: 1.2 !important;
      padding: 0;
  }
  
  .user-position {
      display: flex;
      flex-direction: column;
      width: 100%;
      gap: 15px;
  }
  
}
  
.main-select {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  background-color: white;
}

.custom-selects {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
}

.custom-select {
  display: inline-block;
  width: 50%;
  background-color: white;
  box-sizing: border-box;
  color: #000000;
  padding: 10px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  height: 28px;
  border: 0.5px solid black;
  gap: 20px;
  font-family: "Noto Sans", sans-serif !important;
  font-weight: 200;
  font-size: 14px;
  text-align: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease; 
}

.select-selected.selected {
  background-color: #3f3934;
  color: #ffffff;
}

.content-div {
  
  display: block;
}

.diva {
  height: auto;
  background-color: transparent;
}

#description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: start;
  width: 100%;
  height: 100%;
  margin-top: 50px;
  text-align: left;
  margin-bottom: 50px;
}

.description-position {
  width: 48%;
}

.description-position h1 {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 50px;
  font-size: 40px;
}

.description-position h2 {
  font-family: "Noto Sans", sans-serif;
  margin-top:  30px;
  font-weight: 400;
}

.description-position p {
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
}

.description-position p a {
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  margin-top: 50px;
  font-size: 30px;
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.description-position p a:hover {
  color: #2d2925;
}
.img-row{
  display: flex;
  flex-direction: column;
}

.card-section {
  display: flex;
  width: 100%;
  height: 100%; 
}

.first-img-div {
  width: 100%; 
  height: 50%; 
  position: relative;
  overflow: hidden;
}

.first-img-div h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
  font-size: 50px;
  color: aliceblue;
}

.first-img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  filter: brightness(90%);
  transition: all 0.3s ease;
  z-index: 1;
}

.first-img-div:hover .first-img {
  filter: brightness(60%);
  transform: scale(1.1);
  z-index: 1;
}

.first-img-div:hover h1 {
  opacity: 1;
  z-index: 2;
}

.first-img-div h1 a {
  text-decoration: none;
  color: white;
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  text-align: center;
  font-size: 30px;
}
.first-img-div p {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
  font-size: 20px;
  color: aliceblue;
  font-family: "Noto Sans", sans-serif;
  font-weight: 100;
  margin-top: 2%;
}

.first-img-div:hover p {
  opacity: 1;
  z-index: 2;
}


.stacking-divs {
  
  position: sticky;
  top: 0;
}
@media (max-width:1360px) {
  .first-img-div h1 a {
    text-decoration: none;
    color: white;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
  }
}

@media (max-width:1000px) {
  .first-img-div h1 a {
    text-decoration: none;
    color: white;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: 23px;
    margin-bottom: 15px;
  }
  .first-img-div p {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
    font-size: 15px;
    color: aliceblue;
    font-family: "Noto Sans", sans-serif;
    font-weight: 100;
    margin-top: 2%;
  }
}

@media (max-width:845px) {
   .content-div {
    display: block;
    display: flex;
    flex-direction: column;
    margin: 0px !important;
   }
   .first-img-div p {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
    font-size: 20px;
    color: aliceblue;
    font-family: "Noto Sans", sans-serif;
    font-weight: 100;
    margin-top: 2%;
  }
  .first-img-div h1 a {
    text-decoration: none;
    color: white;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: 30px;
  }
}


@media (max-width:550px) {
  .content-div {
    display: block;
    display: flex;
    flex-direction: column;
    margin: 0px !important;
   }
   .first-img-div p {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
    font-size: 15px;
    color: aliceblue;
    font-family: "Noto Sans", sans-serif;
    font-weight: 100;
    margin-top: 2%;
  }
  .first-img-div h1 a {
    text-decoration: none;
    color: white;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: 25px;
  }
}
@media (max-width:460px) {
  .content-div {
    display: block;
    display: flex;
    flex-direction: column;
    margin: 0px !important;
   }
   .first-img-div p {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
    font-size: 12px;
    color: aliceblue;
    font-family: "Noto Sans", sans-serif;
    font-weight: 100;
    margin-top: 2%;
  }
  .first-img-div h1 a {
    text-decoration: none;
    color: white;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: 22px;
  }
}

@media (max-width:340px) {
  .content-div {
    display: block;
    display: flex;
    flex-direction: column;
    margin: 0px !important;
   }
   .first-img-div p {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
    font-size: 10px;
    color: aliceblue;
    font-family: "Noto Sans", sans-serif;
    font-weight: 100;
    
  }
  .first-img-div h1 a {
    text-decoration: none;
    color: white;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: 16px;
  }
}



/* ---------------------------------------------------------------- */

.footer {
  width: 100%;
  margin-top: auto;
  height: 125.25px;
  background-color: rgb(238, 236, 236);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  margin-top: auto;
  z-index: 10;
}

.footer-mail {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.footer-social-media {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}


.footer-social-media p a {
  text-decoration: none;
  color: black;
}

.footer-social-media p a:hover {
  text-decoration: none;
  color: rgb(182, 63, 63);
}
