* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Exo", sans-serif;
  font-style: italic;
  font-weight: 100;
  background-color: black;
}

main {
  background: url("../../IMG/General/index/wood_background.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
}

/* MAIN */
main .choiceBx {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: auto;
  transition: 0.75s;
  visibility: visible;
}

main .box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

main .box:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #fff;
  z-index: 1;
  border: 1px solid
    linear-gradient(235deg, rgb(79, 79, 79), black, rgb(79, 79, 79));
  box-shadow: 10px 0 10px rgba(0, 0, 0, 0.5), -10px 0 10px rgba(0, 0, 0, 0.5),
    0 10px 10px rgba(0, 0, 0, 0.5), 0 -10px 10px rgba(0, 0, 0, 0.5);
}

main .box:after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #fff;
  z-index: 1;
  filter: blur(40px);
}

main .box .imgBx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  z-index: 2;
}

main .box .imgBx img {
  max-width: 100%;
  transition: 0.3s;
  opacity: 0.65;
  border: 1px solid
    linear-gradient(235deg, rgb(79, 79, 79), black, rgb(79, 79, 79));
}

main .box .imgBx h2 {
  color: white;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 0 15px black;
  opacity: 0.65;
  transition: 0.3s;
}

main .box:before,
main .box:after {
  background: linear-gradient(235deg, rgb(79, 79, 79), black, rgb(79, 79, 79));
}

main .box .content {
  position: absolute;
  bottom: 0;
  transition: 0.3s;
  text-align: justify;
  border: 1px solid
    linear-gradient(235deg, rgb(79, 79, 79), black, rgb(79, 79, 79));
  opacity: 0.65;
  z-index: 2;
}

main .box:hover .content,
main .box:hover .imgBx h2,
main .box:hover .imgBx img {
  opacity: 1;
}

main .box .content span {
  color: #fff;
  font-weight: 200;
}

@media (min-width: 1026px) {
  footer {
    background: black !important;
  }

  main {
    min-height: 55vw;
  }

  main .box {
    width: 25vw;
    height: 27.5vw;
    margin-left: 6vw;
    margin-right: 6vw;
    margin-top: 11vw;
    transition: 0.3s;
  }

  main .box:before {
    border-radius: 1vw;
  }

  main .box .imgBx {
    padding: 1vw;
  }

  main .box .imgBx img {
    border-radius: 1vw;
  }

  main .box .imgBx h2 {
    font-size: 1.8vw;
    padding: 1vw;
  }

  main .box .content {
    left: 1vw;
    right: 1vw;
    padding: 1vw;
    border-radius: 1vw;
  }

  main .box .content span {
    font-size: 1vw;
    line-height: 1.2vw;
    letter-spacing: 0.1vw;
  }
}

@media (max-width: 1025px) {
  header .logo {
    left: 10px !important;
  }

  main {
    margin-top: 60px;
  }

  main .box {
    min-width: 220px;
    min-height: 320px;
    width: calc(90px + 25vw);
    height: calc(90px + 31.25vw);
    margin: 6vw;
    transition: 0.3s;
  }

  main .box:before {
    border-radius: calc(2px + 1vw);
  }

  main .box .imgBx {
    padding: calc(2px + 1vw);
  }

  main .box .imgBx img {
    border-radius: calc(2px + 1vw);
  }

  main .box .imgBx h2 {
    font-size: 17px;
    padding: calc(2px + 1vw);
  }

  main .box .content {
    left: calc(2px + 1vw);
    right: calc(2px + 1vw);
    padding: calc(2px + 1vw);
    border-radius: calc(2px + 1vw);
    text-align: center;
  }

  main .box .content span {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 1px;
  }
}
