.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px;
  padding-bottom: 50px;
}

.contact-fixed {
  background-image: url("../../images/fixed-truck.png");
  background-repeat: no-repeat;
  width: 400px;
  height: 770px;
  background-position: center;
  border-radius: 35px;
}

.navbar {
  background-color: #232323;
}

.footer-container a {
  text-decoration: none;
  color: white;
}


.contact-form-new {
  display: flex;
  gap: 20px;
}

.form-0 {
  background-color: #044DA3;
  border-radius: 35px;
  width: 680px;
  padding: 20px 70px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-0 .girl {
  background-image: url("../../images/girl.png");
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
  background-position: center;
  border-radius: 35px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: contain;
}

.form-0 .girl .cloud {
  background-color: #012257e1;
  padding: 8px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 30px;
  white-space: nowrap;
}

.form-0 .girl .cloud .text-white {
  font-size: 20px;
}

.form-0 .girl .cloud .text-blue {
  font-size: 18px;
  color: #5192c7;
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
}

.form-0 .constents {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.form-0 .constents .consent {
  display: flex;
  gap: 12px;
}

.form-0 .constents .consent input {
  width: 17px;
  height: 17px;
}

.form-0 .constents .consent input,
.form-0 .constents .consent label {
  cursor: pointer;
}

.form-0 button {
  background-color: white;
  border: unset;
  color: rgb(4, 77, 163);
  padding: 10px 41px;
  border-radius: 50px;
  font-weight: 500;
  margin-top: 35px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.4);
  transition: all 0.3s;
}

.form-0 button:hover {
  opacity: 0.9;
}

.form-0 .constents label {
  color: white;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.form-0 a {
  color: #85b8e9 !important;
}

.consent-error {
  background-color: white;
  border-radius: 20px;
  padding: 55px 28px;
  color: rgb(4, 77, 163);
  font-weight: 500;
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 295px;
  cursor: pointer;

  display: none;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.consent-error.show {
  display: block;
  opacity: 1;
}

.consent-error .close {
  position: absolute;
  top: 4px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/*
  Form 1
*/

.form-1 {
  display: flex;
  flex-direction: column;
  width: 680px;
  justify-content: space-between;
}

.form-1 .form-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 40px;
  margin-top: 40px;
}

.form-1 .form-fields-row {
  display: flex;
  gap: 20px;
}

.form-1 .form-col {
  flex: 1;
}

.form-1 input {
  padding: 13px 14px;
  border-radius: 25px;
  border: 0;
  box-shadow: 0 0 13px 0 #044ea37e;
  font-size: 14px;
  outline: none;
  width: 100%;
}

.form-1 button {
  background-color: white;
  border: unset;
  color: rgb(4, 77, 163);
  padding: 10px 70px;
  border-radius: 50px;
  font-weight: 500;
  margin-top: 35px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.4);
  transition: all 0.3s;
}

.form-1 button:hover {
  opacity: 0.8;
}

.form-1 .progress-new {
  background-color: #044DA3;
  border-radius: 35px;
  color: white;
  padding: 20px 70px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 25px 0 #044ea36b;
}

.form-1 .progress-new .title {
  font-weight: 300;
  font-size: 16px;
  text-align: right;
}

.form-1 .progress-new img {
  width: 64px;
  height: 64px;
  border-radius: 150px;
  box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.4);
}

.form-1 .progress-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-1 .progress-bar {
  background-color: white;
  height: 22px;
  border-radius: 25px;
  margin: 30px 0;
  margin-bottom: 20px;
  padding: 0 7px;
  position: relative;
  overflow: hidden;
}

.form-1 .progress-bar .progress {
  background: rgb(22,177,255);
  background: -moz-linear-gradient(90deg, rgba(22,177,255,1) 0%, rgba(9,121,255,1) 50%);
  background: -webkit-linear-gradient(90deg, rgba(22,177,255,1) 0%, rgba(9,121,255,1) 50%);
  background: linear-gradient(90deg, rgba(22,177,255,1) 0%, rgba(9,121,255,1) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#16b1ff",endColorstr="#0979ff",GradientType=1);
  border-radius: 25px;
  height: 13px;
}

.form-1 .progress {
  position: relative;
}

.form-1 .progress-absolute {
  position: relative;
}

.form-1 .progress-counter {
  position: absolute;
  right: 0;
  background-color: #0e91ff;
  width: 37px;
  height: 37px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 55%;
  transform: translateY(-50%);
  z-index: 5;
  font-weight: 500;
  font-size: 15px;
  margin-left: -15px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.4);
}

.form-1 .action {
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-1 button {
  position: relative;
}

.form-1 .chevron {
  position: absolute;
  right: 15px;
  top: 0px;
  font-size: 25px;
}

.form-1 ::placeholder,
.form-2 ::placeholder {
  color: rgb(4, 77, 163);
}

.form-1 ::-ms-input-placeholder,
.form-2 ::-ms-input-placeholder {
  color: rgb(4, 77, 163);
}

.progress-text p {
  font-weight: 300;
  font-size: 14px;
  margin-top: 15px;
}

.form-1 .form-col.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-1 .form-col.center button {
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-1 .circular {
  border-radius: 100px;
  width: 45px;
  padding: 10px 0px;
  transform: rotate(180deg);
}

.form-1 .action.end {
  justify-content: space-between;
  padding-left: 50px;
  padding-right: 50px;
}

.form-1 .form-fields.multiple button {
  width: 80%;
  display: flex;
  justify-content: space-between;
  height: 100px;
  border-radius: 15px;
  margin-top: 5px;
}

.form-1 .form-fields.multiple button img {
  height: 100%;
  max-width: 310px;
}

.form-1 .multiple-small button {
  width: 350px !important;
  align-items: flex-start !important;
  justify-content: start !important;
  padding: 10px 15px;
  font-weight: 300;
  margin-top: 5px;
}

.form-2 {
  display: flex;
  flex-direction: column;
  width: 680px;
  justify-content: space-between;
  background-color: #044DA3;
  border-radius: 35px;
  box-shadow: 0 5px 25px 0 hsla(212, 95%, 33%, 0.42);
  padding: 150px 40px;
}

.form-2 .form-msg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-2 .form-msg label {
  margin-left: 17px;
  color: rgb(111, 178, 255);
  font-size: 14px;
}

.form-2 .form-msg textarea {
  padding: 15px;
  border-radius: 18px;
  box-shadow: 0 0 15px 0 hsla(0, 0%, 0%, 0.3);
  resize: none;
  outline: none;
  font-size: 14px;
}

.form-2 button {
  background-color: white;
  border: unset;
  color: rgb(4, 77, 163);
  padding: 10px 54px;
  border-radius: 50px;
  font-weight: 500;
  margin-top: 35px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.4);
  transition: all 0.3s;
}

.form-2 button:hover {
  opacity: 0.8;
}

.form-2 .action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-2 .form-message {
  color: white;
  font-weight: 300;
}

.form-2 .socials {
  display: flex;
  align-items: center;
  gap: 30px;
}

.form-2 .socials img {
  width: 50px;
}

.form-2 .action.flex {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.form-2.end {
  justify-content: center;
  padding: 150px 85px;
}

.next-button, .circular, .form-1 .form-fields.multiple button {
  transition: all 0.2s;
}

.next-button:hover, .circular:hover, .form-1 .form-fields.multiple button:hover {
  background-color: #044DA3;
  color: white;
}

.required-label {
  color: red;
  margin-top: 5px;
}

.radio-button.selected {
  background-color: #044DA3;
  color: white;
}

.option-button {
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
}

.option-button.selected {
  background-color: #044DA3;
    color: white;
}

.multiple-select {
  list-style-type: none;
}

@media screen and (max-width: 1086px) {
  .contact-fixed {
    display: none;
  }
}

@media screen and (max-width: 786px) {
  .form-1 .form-fields {
    margin-top: 0;
  }

  .form-0 {
    width: 100%;
    border-radius: 0;
    border-bottom-left-radius: 75px;
    padding: 50px 50px;
  }

  .form-1 {
    width: 100%;;
  }

  .contact-form-new {
    width: 100%;
  }

  .form-1 .progress-new {
    border-radius: 0;
    border-bottom-left-radius: 75px;
    margin-bottom: 40px;
  }

  .form-1 .form-fields-row {
    flex-direction: column;
  }

  .form-1 .action {
    justify-content: end;
    padding: 0 40px;
    margin-bottom: 40px;
  }

  .form2 .form-col.center button {
    width: 100%;
  }

  .form2 button {
    margin-top: 0;
  }

  .form2 .action.end {
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 160px;
  }

  .form3 .form-fields.multiple button {
    width: 100%;
  }

  .form3 .form-fields.multiple button img {
    width: 100%;
  }

  .form3 .form-fields.multiple button {
    gap: 20px;
    white-space: nowrap;
  }

  .form4, #form-8 {
    width: 100%;
    border-radius: 0;
    border-bottom-left-radius: 75px;
  }

  .contact {
    padding: 80px 0;
    padding-bottom: 0;
  }

  .form-0, .form-1, .form-2 {
    min-height: 100vh;
  }
}