@charset "utf-8";

.contact{
  padding: 80px 20px;
  background: #fff;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .contact{
    padding: 98px 40px 100px;
  }
}
@media screen and (min-width: 1100px) {
  .contact{
    padding: 98px 134px 100px;
  }
}

.contact__wrap {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.contact__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.col-md-4,
.col-md-8 {
  padding: 0;
  max-width: 100%;
  flex: unset;
}

.row {
 margin: 0;
}

.contact__item label {
  font-size: 14px;
  line-height: calc(19 / 14);
  font-weight: 400;
}

.contact__item > .formTh > .requiredText {
  background: #D80E0E;
  width: 32px;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  padding: 3px 2px 4px;
  margin-left: 10px;
  font-weight: 400;
}
.contact__item > .formTh > .anyText {
  background: #5C5C5C;
  width: 32px;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  padding: 3px 2px 4px;
  margin-left: 10px;
  font-weight: 400;
}

.contact__item > .formTd > input,
.contact__item > .formTd > textarea,
.contact__item > .formTd > div > select{
  box-sizing: border-box;
  font: inherit;
  color: inherit;
  vertical-align: top;
  width: 100%;
  border-radius: 3px;
  border: 1px solid #D3D3D3;
  background: #F3F4F5;
  padding: 9px 15px 9px;
}
.contact__item > .formTd > div > select {
  width: 295px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('../images/arrow-down.svg');
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 20px;
  background-size: 12px;
}

.contact__item > .formTd > textarea {
  height: 180px;
}

.contact__item > .formTd > input::placeholder,
.contact__item > .formTd > textarea::placeholder,
.contact__item > .formTd > div > select::placeholder {
  color: #5A5A5A;
  font-weight: 400;
}

:focus-visible {
    outline: #284038 auto 1px;
}

.privacy-policy {
    height: 156px;
    margin-top: 27px;
    padding: 30px 20px;
    border-radius: 3px;
    border: 1px solid #D3D3D3;
    background: #F3F4F5;
    overflow-y: scroll;
    width: 100%;
    margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .privacy-policy {
    padding: 10px 18@x;
  }
}

.privacy-policy__item + .privacy-policy__item {
  margin-top: 52px;
}

.privacy-policy__title {
  font-size: 18px;
  letter-spacing: 0.006em;
  color: #464646;
  padding: 0 0 15px 0;
  border-bottom: 1.5px solid #D0D0D0;
  display: flex;
  gap: 28px;
  align-items: center;
}
.privacy-policy__title::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: #F28305;
}

.privacy-policy__text {
  margin-top: 20px;
  font-size: 14px;
  line-height: calc(30.8 / 14);
  color: #646464;
  font-weight: 400;
}

.formBtn {
  margin: 41px auto 0;
  padding: 19px 0;
  border-radius: 28px;
  border: 1px solid #F28305;
  width: 200px;  
  background: #F28305;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  transition: all 0.3s;
}
.formBtn:hover {
  background: transparent;
  color: #F28305;
}

.privChek {
  margin-top: -25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.privacyLabel {
  margin-bottom: 1px;
  font-size: 14px;
  padding-left:10px;
}

.privacy-agree {
  margin-top: -18px;
  display: flex;
  align-items: center;
}

.privacyformError {
    margin-top: -45.5px !important;
}