.contactForm>div>.description { 
  font-size: 24px;
}

.contactForm {
  height: 1142px;
  text-align: center;
}
.contactForm h2.h2{
  margin: 0 0 32px 0;
}

.contactForm>div {
  background-color: #0c3c600D;
  padding: 128px 0 0 0;
  color: var(--color-normal);
}

.contactForm .content {
  display: flex;
  justify-content: center;
  margin: 80px 0 132px 0;
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.contactForm form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
  
.contactForm form > div {
  flex: 0 1 550px;
  text-align: left;
  margin-bottom: 51px;
  color: #1A234D;
}

.contactForm .placeholder {
  margin: 0;
}

.contactForm form > div.last {
  flex: 0 1 100%;
  margin-bottom: 41px;
}

.contactForm form  input {
  height: 50px;
}

.contactForm form  textarea {
  height: 150px;
  margin-top: 9px;
  resize: none;
}

.contactForm form  textarea::placeholder {
  color: #707070;
  font-size: 14px;
}

.contactForm form  textarea::-ms-input-placeholder {
  color: #707070;
  font-size: 14px;
}

.contactForm form  label {
  font-size: 18px;
  font-weight: bold;
}

.contactForm form  input:not([type="submit"]), .contactForm form  textarea {
  width: 100%;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  border-radius: 0;
  border-bottom: 1px solid #1A234D;
  background: transparent;
  font-size: 24px;
  line-height: 32px;
}

.contactForm form  input:not([type="submit"]):hover, .contactForm form  textarea:hover,
.contactForm form  input:not([type="submit"]):focus, .contactForm form  textarea:focus {
  border-bottom: 2px solid #1A234D;
}

.contactForm form  input:not([type="submit"]).warn, .contactForm form  textarea.warn {
  border-bottom: 2px solid #F50F54;
}

.submitBtn {
  margin: auto;
}

.contactForm .confirmMsg {
  color: #F50F54;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}

.contactForm .warnTxt {
  margin: 0;
  color: #F50F54;
  font-size: 14px;
}

.modalWrap {
  position: fixed;
  top: calc(50% - 1px);
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.6);
  transition: opacity .4s;
  opacity: 0;
  z-index: 1000;
  overscroll-behavior: none;
  overflow: hidden;
}

.modalWrap.show {
  opacity: 1;
  width: 100%;
  height: calc(100% + 5px);
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, -50%);
  max-width: 480px;
  max-height: 410px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 6px 12px #00000029;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal .circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 70px;
  font-weight: bold;
}

.circle.right {
  background-color: #e5e9f6;
  color: #0324A8;
}

.circle.warning {
  background-color: #fee7ee;
  color: #F50F54;
}

.modal .response {
  margin-top: 35px;
  text-align: center;
}

.modal .response p {
  margin: 0;
}

.modal .response > .title {
  color: #1A234E;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 24px;
}

.modal .hide, .contactForm .hide{
  display: none !important;
}

@media screen and (max-width: 1194px) {
  .contactForm {
    height: auto;
    width: 100vw;
    margin-left: -15px;
  }

  .contactForm > div {
    position: relative;
  }

  .contactForm .content {
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .contactForm form > div {
    flex: 1 1 100%;
  }

  .contactForm form > div.last {
    flex: 1 1 100%;
  }

  .contactForm form textarea {
    height: 300px;
  }
}

@media screen and (max-width: 720px) {
  .contactForm h2.h2{
    font-size: 40px;
  }
}

@media screen and (max-width: 600px) {
  .contactForm .description{
    padding: 0 15px;
  }
  
  .modal {
    width: calc(100% - 30px);
  }
}
  
@media screen and (max-width: 524px) {
  .contactForm > div > .description {
    text-align: left;
  }
}