/**
 * CUSTOM INFO SECTION
 **/

.customInfoContainer {
  width: 1600px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0px;
}

.customInfo {
  width: 45%;
}

.customTitle {
  font-size: 30px;
  margin-bottom: 10px;
}

.customDesc {
  font-size: 20px;
}

.customIcons {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.customIcon {
  height: 140px;
  width: 140px;
}

/**
 * CUSTOM IMAGE SECTION
 **/

.customImageContainer {
  width: 1600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0px;
}

.customImage {
  width: 700px;
  height: auto;
}

/**
 * INQUIRY SECTION
 **/

.inquiryContainer {
  width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0px;
}

.inquiryText {
  font-size: 30px;
}

.inquiryButton {
  cursor: pointer;
  display: block;
  text-align: center;
  background-color: #b11f1f;
  padding: 6px 18px;
  color: #ffffff;
  font-size: 24px;
  margin-top: 20px;
  width: 200px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.inquiryButton:hover {
  background-color: #d62727;
}

/**
 * INQUIRY FORM
 **/

.iformContainer {
  width: 900px;
  margin: auto;
  padding: 50px 0px;
}

.formTitle {
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
}

.inputRow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}

.input {
  width: 300px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom-width: 1px;
  border-bottom-color: #000000;
  border-bottom-style: solid;
  font-size: 22px;
  font-family: sofia-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.textAreaTitle {
  font-size: 22px;
}

.textArea {
  width: 100%;
  border-width: 1px;
  border-color: #000000;
  border-style: solid;
  font-size: 18px;
  font-family: sofia-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding: 8px;
}

.inquirySubmit {
  margin: auto;
  cursor: pointer;
  display: block;
  text-align: center;
  background-color: #b11f1f;
  padding: 6px 18px;
  color: #ffffff;
  font-size: 24px;
  margin-top: 20px;
  width: 200px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.inquirySubmit:hover {
  background-color: #d62727;
}

#iformError, #iformFail, #iemailError {
  display: none;
  color: #ff3b3b;
}

#iformSuccess {
  display: none;
  color: #2dc252;
}

@media only screen and (max-width : 1650px) {
  .customInfoContainer {
    width: 1200px;
  }

  .customImageContainer {
    width: 1200px;
  }
}

@media only screen and (max-width : 1250px) {
  .customInfoContainer {
    width: 900px;
  }

  .customImageContainer {
    width: 900px;
  }
}

@media only screen and (max-width : 992px) {
  .customInfoContainer {
    width: 300px;
    flex-direction: column-reverse;
  }

  .customInfo {
    width: 100%;
  }
  
  .customTitle {
    margin-top: 40px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .customDesc {
    text-align: justify;
  }
  
  .customIcons {
    width: 100%;
  }

  .customIcon {
    height: 90px;
    width: 90px;
  }

  .customImageContainer {
    width: 300px;
  }

  .customImage {
    width: 300px;
  }

  .inquiryContainer {
    width: 300px;
  }

  .inquiryText {
    text-align: center;
  }

  .iformContainer {
    width: 300px;
  }

  .inputRow {
    flex-direction: column;
    padding: 0px;
  }

  input {
    margin: 12px 0px;
  }

  .textArea {
    height: 300px;
  }
}