@charset "utf-8";

section {
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin: 166px auto 120px;
  padding: 0 60px;
}
section h1 {
  box-sizing: border-box;
  width: 100%;
  margin: 50px auto 0;
  color: #ec6e9a;
  font-size: 22px;
  font-weight: 100;
  text-align: center;
}
section hr {
  margin: 3px auto 0;
  border-top: 2px solid #135dac;
}
.enrollment_arrow {
  margin: 30px auto;
}
section p {
  color: #656565;
  font-size: 20px;
  font-weight: 400;
}
section > p {
  padding: 20px;
  border: 3px solid #CEEDFF;
  border-radius: 6px;
}
.enrollment_step {
  padding: 20px;
  border: 3px solid #CEEDFF;
  border-radius: 6px;
}
.enrollment_step.first {
  margin-top: 40px;
}
.enrollment_step > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}
.enrollment_step > div img {
  width: 160px;
}
.enrollment_step a {
  width: 180px;
  border: 2px solid #2BBC67;
  border-radius: 6px;
  color: white;
  text-align: center;
  line-height: 40px;
  letter-spacing: 0.05em;
  text-shadow: 0px 1px 0 #0a5cab;
}
.enrollment_step .location {
  background: #2ecc71;
  border-color: #2BBC67;
}
.enrollment_step .contact {
  background: #e74c3c;
  border-color: #CB4435;
}
.enrollment_step .enroll {
  background: #3498db;
  border-color: #2E88C4;
}
.enrollment_main_img {
  width: 400px;
  margin: 40px auto 0;
}
.enrollment_footer_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 60px auto 0;
}
.enrollment_footer_btn a {
  width: 240px;
  padding: 10px 0;
  margin-right: 20px;
  background: #ea6d99;
  border: 2px solid #d3698d;
  border-radius: 8px;
  color: white;
  text-shadow: 0px 1px 0 #0a5cab;
  text-align: center;
  letter-spacing: 0.05em;
}
.enrollment_footer_btn a:last-child {
  margin-right: 0;
}
.enrollment_footer_btn a:hover {
  opacity: 0.7;
}

@media all and (max-width: 980px) {
  section {
    margin: 0 auto 120px;
  }
  section h1 {
    margin: 40px 0 20px;
  }
}
@media all and (max-width: 480px) {
  section {
    padding: 0 20px;
  }
  .enrollment_step > div img {
    width: 100px;
  }
  .enrollment_step a {
    font-size: 14px;
  }
  .enrollment_main_img {
    width: 300px;
  }
  .enrollment_footer_btn {
    display: block;
    width: 100%;
  }
  .enrollment_footer_btn a {
    margin: 20px auto 0;
  }
  .enrollment_footer_btn a:last-child {
    margin: 20px auto 0;
  }
}