 .request_form,
 .privacy {
  width: 100%;
  padding: 10rem 0 4rem;
}

.thanks__wrapper {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  p{
    font-size: 1.5rem;
    line-height: 1.5em;
  }
}

.privacy__wrapper {
  padding-top: 1rem;
}

.privacy span {
  color: var(--bgFormColor);
  font-size: 20px;
}

.privacy__content {
  margin-top: 1.8rem;

}

.privacy__content-title {
  color: var(--primary);
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 0.5rem;
  margin-top: .5rem;
}

.privacy__content-subtitle {
  color: var(--subtitleColor);
  font-weight: 300;
  font-size: 20px;
  margin-bottom: .5rem;
  margin-top: .5rem;
}

.privacy__list li {
  font-size: 18px;
  margin-bottom: 7px;
  list-style: none;
}

.form-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 100vh;
}

.title.request-title {
  margin: 2rem auto 2rem;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

.request-subtitle{
  margin: 2rem 2.5rem 2rem;
  font-size: 18px;
  color: var(--textColor);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.contact-info {
  position: relative;
  text-align: start;
  &::before {
    content: url(../images/form_image/form-logo.svg);
    display: block;
    width: 240px;
    position: absolute;
    right: 1rem;
    top: 0;
    opacity: 1;
    transform: translate(-10%);
  }
}

.contact-block-title {
  font-size: 36px;
  line-height: 54px;
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 1.8rem;
  color: var(--primary);
}

.contact-block-body {
  margin-bottom: 1rem;
  font-size: 20px;
}

.contact-list {
  line-height: 1.6;
}

.contact-list li {
  margin-bottom: 15px;
  list-style: none;
}

.contact-list-icon {
  position: relative;
  padding-left: 39px;
}

.contact-list a {
  color: var(--bgFormColor);
  text-decoration: none;
}

.contact-list-icon::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 24px; 
  height: 24px;
}

.contact-list-icon.a_phone::before {
  background-image: url(../images/form_image/phone.svg);
}

.contact-list-icon.a_mail::before {
  background-image: url(../images/form_image/mail.svg);
}

/* ProgressBar */
.progressbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 2rem 0 4rem 0;
  counter-reset: step;
}

.progressbar::before, .progress {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  width: 100%;
  background-color: var(--bgFormColor);
}

.progress {
  background-color: var(--bgProgressColor);
  width: 0%;
  transition: 0.3s ease-in-out;
}

.progress-step {
  width: 35px;
  height: 35px;
  background-color: var(--bgFormColor);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.progress-step::before{
  counter-increment: step;
  content: counter(step);
}

.progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: calc(100% + .5rem);
  font-size: 0.80rem;
  color: var(--bgFormColor);
}

.progress-step.active {
  background-color: var(--bgProgressColor);
  color: var(--light);
}

/* Form */

.input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 2rem 0;
}

.contact-info,
.form {
  width: clamp(520px, 30%, 420px);
  margin: 0 auto;
  border: 1px solid var(--twoTextColor);
  border-radius: .35rem;
  padding: 1.5rem;
  box-shadow: 0.3rem 0.3rem 0.5rem rgba(195, 193, 198, 0.902), -0.2rem -0.2rem 0.4rem rgb(168, 163, 163);
  .wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--primary);
	color: var(--primary);
  }
  span{
    display: inline-block;
    width: 100%;
  }
  label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    line-height: 1.2;
  }
  textarea{
    height: 50px;
  }
  textarea, 
  select,
  input {
    display: block;
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--twoTextColor);
    border-radius: 0.25rem;
    font-family: 'Oswald', sans-serif;
    &:focus {
      border-color: #689c9c;
      outline: none;
      color: var(--bgFormColor);
      box-shadow: 0 0 15px 1px rgba(103, 155, 155, 0.2);
    }
    &::placeholder{
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      line-height: 27px;
      font-weight: 300;
      color: var(--twoTextColor);
    }
  }
}

input[type="file"] {
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
  font-family: 'Oswald', sans-serif;
}

input[type="file"]::file-selector-button{
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
  color: var(--twoTextColor);
  border-radius: 4px;
  padding: 0 16px;
  height: 40px;
  cursor: pointer;
  background-color: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  margin-right: 16px;
  transition: background-color 200ms;
}

#from_type.select,
#to_type {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
  color: var(--twoTextColor);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* Checkbox */

.input-group-checkbox {
  margin: .5rem 0;
}

input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box; 
  padding: initial;
  margin: 0 1rem 0 0;
  border-radius: 0.5rem;
  transition: transform 0.2s ease-in;
}

input[type="checkbox" i]:checked {
  background-image: url(../images/form_image/truck_check.svg);
  background-position: center;
  box-shadow: 0.3rem 0.3rem 0.6rem #c8d0e7, -0.2rem -0.2rem 0.5rem #fff;
}

.checkbox-row input,
.checkbox-row span {
  display: inline;
}

/* Buttons */
.form-row,
.btns-group  {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}

.form-row .input-group {
  margin-top: 0;
}

.btn {
  padding: 0.75rem;
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: var(--primary);
  color: var(--light);
  font-size: 20px;
  line-height: 21px;
  text-transform: uppercase;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  &:hover {
    box-shadow: 0 0 0 2px var(--light), 0 0 0 3px var(--primary);
  }
  &:active {
    transform: scale(.98);
  }
}

@media (max-width: 1024px){
  .contact-block-body img {
    width: 80%;
  }
}

@media (max-width: 900px){
  
  .form-inner {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .contact-info,
  .form {
    margin: 0 auto;
    width: 520px;
  }
}

@media (max-width: 520px){
  .privacy,
  .request_form {
    padding: 100px 0 50px 0;
  }
 
  .request-subtitle {
    margin: 2rem auto;
  }

  .contact-info,
  .form {
    width: 340px;
  }
}




