* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #006241;
  --secondary: #046240;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 120rem;
  margin: 0px auto;
  position: relative;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
.center {
  text-align: center;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.btn_line {
  font-size: 1.6rem;
  color: var(--primary);
  padding: 0.7rem 4.4rem;
  background-color: transparent;
  display: inline-block;
  border: 1px solid var(--primary);
  width: max-content;
  line-height: 1;
  transition: 0.3s;
}
.btn_line:hover {
  background-color: var(--primary);
  color: white;
}
.get_more {
  padding: 4rem 0px 2.7rem;
  background-color: var(--primary);
  margin-bottom: 5.6rem;
}
.get_more p {
  margin-top: 1.8rem;
  color: white;
  opacity: 0.9;
}
.get_more .btn_line {
  color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
  padding: 0.5rem 1.5rem;
  border-width: 2px;
  border-radius: 3px;
  font-size: 1.8rem;
}
.get_more .btn_line:hover {
  background-color: white;
  color: var(--primary);
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1024px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content {
    max-width: 896px;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .get_more .btn_line {
    font-size: 15px;
  }
  .get_more p {
    font-size: 14px;
    line-height: 1.7;
  }
}
