@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&family=Inter:wght@400;500;600;700&display=swap');


html {
  scroll-behavior: smooth;
}

.epi-main {
  max-width: 100% !important;
  padding: 0;
}

.epi-block {
  padding: 0 !important;
}

.epi-nav {
  margin-bottom: 30px;
}

.epi-block .epi-question {
  padding-bottom: 0;
}

.home-header {
  background-color: #c73028;
  color: #fff;
  padding: 30px 20px 20px;
  margin-top: -30px;
  font-family: 'EB Garamond', serif;
}

.home-header h1 {
  font-size: 2.5rem;
}

.list-tags {

}

.tag-number {
  font-size: 1.25rem;
  margin-right: 10px;
}

.tag-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  padding: 10px;
}

.tag-item:not(:last-child) {
  border-bottom: 1px solid #cf4f48;
}

.tag-text {
  font-size: 1.25rem;
}

.tag-text a {
  color: #fff;
  text-decoration: none;
}

.tag-item .arrow-down {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tag-item:hover .arrow-down {
  opacity: 1;
  transform: translateY(0);
}

.home-content {
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
}

.home-content:nth-child(5), .home-content:nth-child(9) {
  background-color: #f3f3f3;
}

.home-container {
  padding: 0 20px;
  margin: 0 auto;
}

.section-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
}

.section-number {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  font-size: 3rem;
  color: #db3b0a;
  line-height: .6;
  width: 16%;
  margin-bottom: 30px;
}

.section-number:after {
  content: "";
  height: 2px;
  width: 3.5rem;
  background-color: #db3b0a;
}

.section-content {
  max-width: 800px;
  margin-left: 4%;
}

.btn-wrapper {
  width: 100%;
  text-align: center;
}

.input-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: #db3b0a;
  color: #fff;
  border-radius: 24px;
  transition: all 0.3s ease;
  border: 1px solid #db3b0a;
  width: fit-content;
  padding: 6px 18px;
  cursor: pointer;
  margin: 40px auto 0;
}

.input-link:hover {
  background-color: #fff;
  color: #db3b0a;
  box-shadow: 0 .5rem .6rem 0 rgba(0, 0, 0, .175);
}

.note {
  color: #db3b0a;
}

.extra-time {
  margin-top: 20px;
  font-size: 16px;
}

.extra-time .mrEdit {
  width: 50px;
}

.extra-time .mrErrorText {
  font-size: 14px;
  width: fit-content;
}


@media (max-width: 600px) {
  .home-content {
    font-size: 1rem;
  }
  
  .section-wrapper {
    flex-direction: column;
  }

  .input-link {
    font-size: 1rem;
    padding: 5px 12px;
    gap: 0.5rem;
  }
}








