#content .cont {
  width: 800px;
  padding: 0 0px 40px;
  margin: 0 auto;
}
#content .cont h2 {
  font-family: eb;
  font-size: 26px;
  color: #5FD67C;
  margin-bottom: 16px;
}
#content .cont .cont-box {
  margin-bottom: 32px;
}
#content .cont .cont-box p {
  font-family: m;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  margin-bottom: 16px;
}
#content .cont .cont-box h3 {
  font-family: b;
  font-size: 20px;
  color: #333333;
  margin-bottom: 16px;
}
#content .cont .contact-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  font-family: s;
  color: #333;
  background: #FFFFFF;
  box-sizing: border-box;
}
#content .cont .contact-form .form-group {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}
#content .cont .contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
#content .cont .contact-form .form-group input,
#content .cont .contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f8f9fa;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
  font-family: m;
}
#content .cont .contact-form .form-group textarea {
  height: 120px;
  resize: vertical;
  box-sizing: border-box;
}
#content .cont .contact-form .one,
#content .cont .contact-form .two {
  width: calc((100% - 16px) / 2);
}
#content .cont .contact-form .submit-btn {
  width: 270px;
  height: 54px;
  background: #FFD445;
  border-radius: 4px 4px 4px 4px;
  margin: 0 auto;
  line-height: 54px;
  font-family: s;
  font-size: 20px;
  color: #333333;
  text-align: center;
  display: block;
}
@media screen and (min-width: 860px) and (max-width: 1079px) {
  #content .cont {
    width: 100%;
    padding: 0 16px 16px;
  }
}
@media screen and (min-width: 750px) and (max-width: 859px) {
  #content .cont {
    width: 100%;
    padding: 0 16px 16px;
  }
}
@media screen and (min-width: 560px) and (max-width: 749px) {
  #content .cont {
    width: 100%;
    padding: 0 16px 16px;
  }
}
@media screen and (min-width: 0) and (max-width: 559px) {
  #content .cont {
    width: 100%;
    padding: 0 16px 16px;
  }
  #content .cont .contact-form {
    flex-direction: column;
  }
  #content .cont .contact-form .one,
  #content .cont .contact-form .two {
    width: 100%;
  }
}
