@font-face {
  font-family: 'Brandon_Grotesque';
  src: url('../fonts/HvDTrial_Brandon_Grotesque_regular-BF64a625c9311e1.otf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'Brandon_Grotesque bold';
  src: url('../fonts/HvDTrial_Brandon_Grotesque_bold-BF64a625c9151d5.otf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'BebasNeue-Regular';
  src: url('../fonts/BebasNeue-Regular.otf') format('opentype');
  font-style: normal;
}

/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Brandon_Grotesque';
}

/* ===== OFFER STRIP ===== */
.top{
  width:100%;
  background:#8EAD52;
  color:#fff;
  text-align:center;
  padding:2vh 1vw;
  font-size:1.1rem;
  font-family:'Brandon_Grotesque bold';
}

.text{
  display:inline-block;
}

/* ===== LOGO STRIP ===== */
.head{
  width:100%;
  background:#FFF0D7;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:2vh 0;
}

.logo{
  width:7vw;
  height:auto;
}

/* ===== HERO SECTION ===== */
.main{
  position:relative;
  width:100%;
  height:85vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  background-size:cover;
  background-position:center;
  background-image:url("../images/loin.jpg");
}

.main::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.45);
  top:0;
  left:0;
}

.box{
  position:relative;
  z-index:2;
  width:90%;
}

.title{
  margin-bottom:2vh;
  font-family:'Brandon_Grotesque bold';
  font-size:50px;
  text-transform:uppercase;
}

.note{
  font-size:2.3rem;
  margin-bottom:3vh;
}

.wrap{
  display:flex;
  justify-content:center;
  align-items:center;
}

.button{
  padding:0.5em 1.5em;
  font-size:1.55rem;
  border:none;
  background:#8EAD52;
  color:#fff;
  cursor:pointer;
  transition:0.3s;
  border-radius:3rem;
}

.button:hover{
  background:#556b1f;
}

/* ===== MAP SECTION ===== */
.area{
  width:100%;
  height:60vh;
}

.frame{
  width:100%;
  height:100%;
}

.frame iframe{
  width:100%;
  height:100%;
  border:0;
}

/* ===== FOOTER ===== */
.section{
  background:#fcf6ed;
  padding:0vh 8vw;
}

.list{
  display:flex;
  justify-content:flex-start;
  flex-wrap:wrap;
}

.item{
  min-width:20vw;
}

.item h3{
  font-size:1.2rem;
  letter-spacing:0.15em;
  margin-bottom:3vh;
  color:#58595b;
  font-family:'Brandon_Grotesque bold';
}

.item ul{
  list-style:none;
}

.item ul li{
  margin-bottom:1.5vh;
}

.item ul li a{
  text-decoration:none;
  color:#58585A;
  font-size:0.95rem;
  transition:0.3s;
}

.item ul li a:hover{
  text-decoration:underline;
}

.data p{
  margin-bottom:1.2vh;
  font-size:0.95rem;
  color:#58585A;
  font-weight:900;
}

/* ===== FOOTER BOTTOM ===== */
.bottom{
  background:#fcf6ed;
  padding:3vh 8vw;
  font-size:1rem;
  color:#444;
}

.row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:2vh;
  color:#937a7a;
}

/* ===== POLICY ===== */
.foot{
  height:7vh;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.9rem;
  background:#000;
}

.link{
  color:#fff;
  text-decoration:none;
}

.list {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

  .top{
    letter-spacing:0.1rem;
  }

  .main{
    height:65vh;
    background-image:url("../images/snake.png");
  }

  .box{
    width:95%;
  }

  .title{
    font-size: 2.1rem;
    letter-spacing: 0rem;
    line-height: 2.7rem;
  }

  .note{
    font-size:1.5rem;
    letter-spacing:0.1rem;
    line-height:1.7rem;
  }

  .button{
    font-size:1.7rem;
  }

  .logo{
    width:20vw;
  }

  .list{
    flex-direction:column;
    gap:4vh;
  }

  .row{
    flex-direction:column;
    align-items:flex-start;
  }

  .foot{
    font-size:1.2rem;
  }

}