/*******************************************/
/* Trial Lessons */
/*******************************************/
.section-trial-lessons {
  padding: 4.8rem 0 9.6rem 0;
}

.trial {
  display: grid;
  /* grid-template-columns: 2fr 1fr; */
  background-color: #fdf2e9;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0.15);
  border-radius: 11px;

  /* background-image: linear-gradient(to right bottom, #eb984e, #e67e22); */
  overflow: hidden;
}

.trial-lessons {
  max-width: 130rem;
  margin: 0 auto;
  /* padding: 0 3.2rem; */
  display: grid;
  align-items: start;
  background-color: #fdf2e9;
}

.trial-lessons-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  font-size: 3.2rem;
  font-weight: 400;
  color: #555;
}

.trial-lessons-description {
  font-size: 2rem;
  line-height: 1.8;
}

.trial-lessons-summary-container {
  row-gap: 1rem;
  column-gap: 2rem;
}

.trial-lessons-summary-key {
  font-weight: 600;
  text-align: right;
}

.trial-lessons-img {
  width: 100%;
}

.form-wrap {
  display: block;
  padding: 0.6rem;
}

.trial-lessons-name-grid {
  display: grid;
  grid-template-columns: 1fr 5fr 5fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.trial-lessons label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.trial-lessons input,
select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  border-radius: 9px;
}

.form-header {
  background-color: #fae5d3;
  border-color: #fae5d3;
  border-radius: 9px;
}

.header-text {
  margin: 0.7rem;
}

.btn-container {
  padding: 2rem;
  width: 100%;
}

.trial-lesson-overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  cursor: pointer;
}

.overlay-header {
  font-size: 3rem;
  font-weight: 800;
}
.overlay-message {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: 500;
}
