#footer{
/*      position: fixed;
    left: 0;
    bottom: 0;
    background: #ececec;
    width: 100%;
    z-index: 0;*/
    background: #393735;

}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Oxygen:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Oxygen", sans-serif;
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
}

a {
  text-decoration: none;
}

header {
  width: 100%;
/*  background: #f5f6f8;
*/  background: #393735;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 0;
/*  border-bottom: solid 1px #ddd;
*/
}
header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .menus {
  display: flex;
  gap: 15px;
    padding: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -moz-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
header .menus .grid-dots {
  width: 26px;
  fill: #e15616;
  cursor: pointer;
}
header .hamb-menu {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  header .hamb-menu {
    display: none;
  }
}
header .hamb-menu::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background: #fff;
  transform: translatey(-10px);
  transition: 0.2s;
  box-shadow: 0 10px 0 #fff;
}
header .hamb-menu::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background: #fff;
  transition: 0.2s;
  transform: translatey(10px);
}
header .hamb-menu.active::before {
  transform: translatey(0px) rotate(45deg);
  box-shadow: 0 0px 0 #fff;
}
header .hamb-menu.active::after {
  transform: translatey(0px) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  header nav {
    display: flex;
  }
}
header nav .logo {
  color: #fff;
  font-size: 2.4rem;
  display: grid;
  place-content: center;
  font-family: "Montserrat", sans-serif;
}
header nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 40px;
  padding: 20px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  header nav ul {
    display: flex;
    position: relative;
    flex-direction: row;
    background: transparent;
    margin-left: 5em;
    flex-direction: row;
  }
}
header nav ul li a {
  color: #fff;
  font-size: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  header nav ul li a {
    font-size: 1.1rem;
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 300ms;
  }
    header nav ul li a:hover {
    background: #fff;
    color: #393735;
  }
  header nav ul li a.active {
    background: #fff;
    color: #393735;
  }
}
header nav ul li a::after {
/*  position: absolute;
  content: "";
  width: 10px;
  height: 5px;
  background: #fff;
  left: 50%;
  bottom: -40%;
  transform: translate(-50%, 40%);
  opacity: 0;
  transition: opacity 0.2s ease-in;*/
}
header nav ul li a:hover::after {
/*  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  left: 50%;
  bottom: -40%;
  border-radius: 50%;
  transform: translate(-50%, 40%);
  opacity: 1;*/
}
header nav ul.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  width: min(1400px, 90%);
  margin: 0 auto;
  position: relative;
}

main {
  min-height: 700px;
  position: relative;
  height: 100vh;
  width: 100%;
}
main .imgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}
main .imgBox img.active {
  opacity: 1;
}
main > .container {
  height: 100%;
}
main .arrows {
  position: absolute;
  bottom: 40px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  right: 0;
}
main .arrows .arrow-left,
main .arrows .arrow-right {
  width: 30px;
  height: 30px;
/*  background: rgba(255, 255, 255, 0.3);
*/  
  background: ;
/*  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
*/  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #e15616;
  transition: 0.2s;
  border: solid 1px #e15616;
}
main .arrows .arrow-left:hover,
main .arrows .arrow-right:hover {
  background: #f2913d;
}
main .arrows svg {
  width: 20px;
}
main .hero {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  width: 100%;
  z-index: 999;
}
main .hero-content {
  max-width: 500px;
}
main .hero-content > div {
  display: none;
}
main .hero-content > div.active {
  display: block;
}
main .hero-content h1 {
  font-size: clamp(3rem, 2.3239rem + 3.3803vw, 6rem);
  text-transform: uppercase;
  line-height: 1;
  color: #000;
  font-family: 'Darker Grotesque', sans-serif;
}
main .hero-content p {
  color: #000;
  margin-left: 5px;
  margin: 20px 0 30px 0;
  font-family: 'Bellefair', serif;
  font-size: 20px;
}
main .hero-content a {
  background: #00612f;
  color: #f0f0f0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  width: max-content;
  padding: 10px 25px;
  border-radius: 4px;
  transition: 0.2s ease-in-out;
  font-family: 'Darker Grotesque', sans-serif;
  letter-spacing: 1px;

}
main .hero-content a:hover {
  background: #e15616;
}

#popup-detail,
#popup-all {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  /*  background: rgba(0, 0, 0, 0.8);*/

  background: rgba(0, 97, 47, 1);

  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  color: #fff;
  z-index: 9999;
  padding: 20px;
  overflow-y: scroll;
}
@media screen and (min-width: 681px) {
  #popup-detail,
#popup-all {
    overflow-y: visible;
  }
}
#popup-detail a.close1,
#popup-all a.close1 {
  position: absolute;
  top: 35px;
  right: 40px;
}
#popup-detail a svg,
#popup-all a svg {
  color: #e15616;
  width: 40px;
}

#popup-detail p {
  width: min(1400px, 90%);
  padding-top: 5em;
  margin: 0 auto;
}

#popup-all .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, min(300px, 100%));
  place-content: center;
  text-align: left;
  gap: 25px;
  height: auto;
  color: #ffffff;
}
.a2{
    line-height: 32px;
  font-family: 'Bellefair', serif;
  font-size: 22px;
  color: #ffffff !important;
}
@media screen and (min-width: 681px) {
  #popup-all .cards {

/*    height: 100%;
*/
    height: auto;
  }
}
#popup-all .cards .card {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 4px;
  overflow: hidden;
}
#popup-all .cards .card h2 {
  font-size: 22px;
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: left;
}
#popup-all .cards .card-img-wrapper {
  overflow: hidden;
  aspect-ratio: 3/2;
}
#popup-all .cards .card-img-wrapper img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  transition: 0.2s ease-in-out;
}
#popup-all .cards .card:hover img {
  transform: rotate(2deg) scale(1.1);
}

#popup-detail.active,
#popup-all.active {
  visibility: visible;
  opacity: 1;
  top: 50%;
  min-height: 500px;
}