* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
}
body {
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #dbecf5;
}
.banner {
  position: relative;
  width: 100vw;
  height: 55vw;
  background-color: azure;
  overflow: hidden;
}
.banner-img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.banner-tags {
  position: absolute;
  left: 15%;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner-tags h1 {
  letter-spacing: 2px;
  color: white;
}
main {
  width: 100vw;
  /* height: 100vw;
  background-color: aqua; */
  padding: 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 15px;
  row-gap: 15px;
}

main div img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  height: fit-content;
  transition: 0.3s;
  border-radius: 5%;
  cursor: pointer;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/* Add some padding inside the card container */
.container {
  padding: 16px 0px;
  display: flex;
  justify-content: center;
}

.container h4 {
  color: #233956;
}

.img-slide {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 90%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* border: 5px solid #FF56BA; */
  box-shadow: 0px 0px 20px 10px rgb(0, 0, 0, 0.3);
  padding: 10px;
  z-index: 4;
}
.img-slide-dis {
  display: none;
}
.controller {
  position: absolute;
  width: 50px;
  height: fit-content;
  transform: translateY(-50%);
  top: 50%;
}
.close {
  position: absolute;
  top: 0%;
  right: 0%;
  padding: 10px;
  font-weight: 500;
  border: 2px solid #e42b12;
  background-color: #e42b12;
  color: #fff;
  cursor: pointer;
}
.next {
  right: 0%;
}
.prev {
  left: 0%;
}
.next,
.prev {
  padding: 10px;
  border-radius: 50%;
  border-color: #dc6f1f;
  background-color: #dc6f1f;
  color: #fff;
  cursor: pointer;
}
.disp-img {
  object-fit: cover;
}
.v {
  height: 100%;
}
.h {
  width: 60%;
}
.join {
  width: 100vw;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 20px 0px;
  align-items: center;
}
.join div {
  font-size: 1.5vw;
}
.button {
  box-sizing: border-box;
  border: 2px solid #dc6f1f;
  border-radius: 0.8vw;
  width: 10vw;
  font-size: 1.5vw;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  padding: 0.5vw 0.5vw;
  letter-spacing: 2px;
}

.button a {
  text-decoration: none;
  color: #233956;
}

.button:hover {
  color: #fff;
  background-color: #dc6f1f;
  transition: ease-in-out 0.3s;
}

.button:hover > a {
  color: #fff;
}

@media all and (max-width: 800px) {
  main {
    width: 100vw;
    /* height: 100vw;
    background-color: aqua; */
    padding: 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
  }
}

@media all and (max-width: 500px) {
  main {
    width: 100vw;
    /* height: 100vw;
    background-color: aqua; */
    padding: 5vw;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 15px;
  }
}

@media all and (orientation: portrait) {
  .v {
    height: auto;
    width: 100%;
  }
  .h {
    width: 100%;
    height: auto;
  }
  .v-h {
    height: 100vw;
  }
  .h-h {
    height: 90vw;
  }
  .join div {
    font-size: 3vw;
  }
}
