* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
}

/* MAIN LAYOUT */
.hero {
  display: flex;
  height: 100vh;
  justify-content: space-between;
}

.logo {
  width:280px;
  display: inline-block;
  margin-left: -17px;
  outline: none;
}
.logo img{
  width: 100%;
}
/* LEFT IMAGE */
.hero-left {
  width: 100%;
}

.hero-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT SIDE */
.hero-right {
  width: 38%;
  /* background: #30846d; */
  background: linear-gradient(90deg,rgba(48, 132, 109, 1) 0%, rgba(48, 132, 109, 0.93) 100%, rgba(48, 132, 109, 1) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 2%;
}

.contents {
  height: 100%;
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;*/
  padding: 3% 0;
}

/* TEXT */
.title {
  font-size: 36px;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}

.subtitle {
  font-size: 27px;
  letter-spacing: 1px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

/* LOCATION */
.location {
  margin-top: 10%;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}
.location img{
    width: 45px;
    margin-left: -6px;
}
#downloadflyer{
  margin-top:1.4pc;
}
#downloadflyer {
  h3, button{
    font-family: 'Oswald', sans-serif;
    text-align: left;
  }
}
#downloadflyer input{
  display: block;
    width: 80%;
    padding: 7px;
    margin-top: 11px;
}
#downloadflyer button{
  background:black;
  color:white;
  padding:10px 15px;
  margin-top:1pc;
  font-size:16px;
  border:none;
  cursor: pointer;
}
/* 🔥 RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-left {
    width: 100%;
    height: 32vh;
  }

  .hero-right {
    width: 100%;
    /*height: 65vh;*/
    text-align: center;
  }

  .contents {
    max-width: 100%;
    padding:5%;
  }

  .title {
    font-size: 40px;
    text-align: left;
    margin-bottom: 4px;
  }
  #downloadflyer input{
    width:100%;
  }
  #downloadflyer button{
    margin-right: auto;
    display: block;
  }
}