* {
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.background-container {
  display: flex;
}

.Reviewform-row-1,
.Reviewform-row-2,
.Reviewform-row-3,
.Reviewform-row-4,
.Reviewform-row-5,
.Reviewform-row-6,
.Reviewform-row-7 {
  display: flex;
}

.Reviewform-row-1,
.Reviewform-row-2,
.Reviewform-left-column {
  flex: 1;
}

.Reviewform-row-1,
.Reviewform-row-2,
.Reviewform-right-column {
  flex: 1;
}

.Reviewform-row-3 .column {
  flex: 1;
}

.Reviewform-row-3 .column textarea {
  background-color: #dadada;
  border: none;
  font-family: "Inter";
  font-style: normal;
  align-items: center;
  color: #000000;
}

.Reviewform-row-6,
.buttom-column {
  flex: 1;
  justify-content: center;
}

.Reviewform-select,
.Reviewform-text,
.form-text-long {
  border: none;
  font-family: "Inter";
  display: flex;
  align-items: center;
  font-style: normal;
  color: #000000;
}

.form-error-msg {
  display: none;
  position: absolute;
  color: red;
  font-family: "Inter";
  margin-top: 10px;
  font-weight: bold;
}

.Reviewform-text {
  width: 250px;
}

.form-text-long {
  width: 230px;
}

::placeholder {
  color: #000000;
}

.senden {
  background: #A59D84;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

.successimg {
  width: 150px;
  margin-top: -40px;
}

.successMsg {
  font-family: "Inter";
  margin-top: 5px;
  font-weight: bold;
}

.successButton {
  width: 100px;
  height: 50px;
  border: none;
  background-color: rgb(104, 168, 8);
  font-family: "Inter";
  font-weight: bold;
  border-radius: 5px;
  color: white;
  transition-duration: 0.5s;
  cursor: pointer;
}

.successButton:hover {
  background-color: rgb(83, 134, 7);
}

.Reviewform-row-7 {
  flex-direction: column;
  justify-content: start;
}

.Reviewform-row-7 h3 {
  font-size: 23px;
}

.Reviewform-row-7 .innercolumn {
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 10px;
  margin-bottom: -20px;
}

.Reviewform-row-7 .innercolumn .left-innercolumn {
  flex: 2;
}

.Reviewform-row-7 .innercolumn .right-innercolumn {
  flex: 8;
  display: flex;
  align-items: center;
}

.Reviewform-row-7 .innercolumn .left-innercolumn label {
  width: 150px;
  height: 50px;
  border-radius: 3px;
  background-color: #dadada;
  border: 2px solid #dadada;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition-duration: 0.5s;
}

.Reviewform-row-7 .innercolumn .left-innercolumn label:hover {
  background-color: #a1a1a1;
  border: 2px solid #a1a1a1;
}

.Reviewform-row-7 .innercolumn .right-innercolumn li {
  font-size: 18px;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .background-container {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 35px;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-row-3,
  .Reviewform-row-4,
  .Reviewform-row-5,
  .Reviewform-row-6 {
    flex-direction: column;
    gap: 35px;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-left-column {
    flex: 1;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-right-column {
    flex: 1;
  }

  .Reviewform-row-3 .column {
    flex: 1;
  }

  .Reviewform-row-3 .column textarea {
    width: 100%;
    height: 310px;
    padding: 10px 10px 10px 10px;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    margin-top: 20px;
  }

  .Reviewform-row-4 .Reviewform-right-column {
    display: none;
  }

  .Reviewform-row-6,
  .Reviewform-buttom-column {
    flex: 1;
    justify-content: center;
  }

  .Reviewform-select,
  .Reviewform-text,
  .form-text-long {
    width: 100%;
    height: 50px;
    font-weight: 600;
    font-size: 17px;
    line-height: 150%;
    padding: 0px 10px 0px 10px;
    border-bottom: 4px solid #A59D84;
  }

  .Reviewform-middle-column {
    flex: 1;
  }

  .form-error-msg {
    font-size: 13px;
  }

  .senden {
    margin-top: 30px;
    width: 100%;
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
  }

  .Reviewform-row-5 .Reviewform-left-column h3 {
    font-size: 20px;
  }
  
  .Reviewform-row-5 .Reviewform-left-column label {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    background-color: #dadada;
    border: 2px solid #dadada;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: -20px;
    transition-duration: 0.5s;
  }

  .Reviewform-row-7 {
    flex-direction: column;
    justify-content: start;
  }
  
  .Reviewform-row-7 h3 {
    font-size: 18px;
  }
  
  .Reviewform-row-7 .innercolumn {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: -30px;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn {
    flex: 1;
  }
  
  .Reviewform-row-7 .innercolumn .right-innercolumn {
    flex: 1;
    display: flex;
    align-items: center;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn label {
    width: 100%;
    height: 40px;
    border-radius: 3px;
    background-color: #dadada;
    border: 2px solid #dadada;
    display: flex;
    font-size: 13px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.5s;
  }
  
  .Reviewform-row-7 .innercolumn .right-innercolumn li {
    font-size: 15px;
    font-weight: 400;
  }
}
@media only screen and (min-width: 767px) {
  .background-container {
    flex-direction: column;
    width: 600px;
    height: auto;
    gap: 40px;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-row-3,
  .Reviewform-row-4,
  .Reviewform-row-5,
  .Reviewform-row-6 {
    flex-direction: row;
    gap: 50px;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-left-column {
    flex: 1;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-right-column {
    flex: 1;
  }

  .Reviewform-row-3 .column {
    flex: 1;
  }

  .Reviewform-row-3 .column textarea {
    width: 100%;
    height: 290px;
    padding: 10px 15px 10px 15px;
    font-weight: 600;
    font-size: 15px;
    line-height: 150%;
  }

  .Reviewform-row-6,
  .Reviewform-buttom-column {
    flex: 1;
    justify-content: center;
  }

  .Reviewform-select,
  .Reviewform-text,
  .form-text-long {
    width: 100%;
    height: 50px;
    font-weight: 600;
    font-size: 15px;
    line-height: 150%;
    padding: 0px 15px 0px 15px;
    border-bottom: 4px solid #A59D84;
  }

  .Reviewform-middle-column {
    flex: 1;
  }

  .form-error-msg {
    font-size: 13px;
  }

  .senden {
    margin-top: 30px;
    width: 150px;
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
  }

  .Reviewform-row-5 .Reviewform-left-column h3 {
    font-size: 18px;
  }
  
  .Reviewform-row-5 .Reviewform-left-column label {
    width: 150px;
    height: 50px;
    border-radius: 3px;
    background-color: #dadada;
    border: 2px solid #dadada;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: -20px;
    transition-duration: 0.5s;
  }

  .Reviewform-row-7 {
    flex-direction: column;
    justify-content: start;
  }
  
  .Reviewform-row-7 h3 {
    font-size: 18px;
  }
  
  .Reviewform-row-7 .innercolumn {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 10px;
    margin-bottom: -20px;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn {
    flex: 3;
  }
  
  .Reviewform-row-7 .innercolumn .right-innercolumn {
    flex: 8;
    display: flex;
    align-items: center;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn label {
    width: 130px;
    height: 40px;
    border-radius: 3px;
    background-color: #dadada;
    border: 2px solid #dadada;
    display: flex;
    font-size: 13px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.5s;
  }
  
  .Reviewform-row-7 .innercolumn .right-innercolumn li {
    font-size: 15px;
    font-weight: 400;
  }
}
@media only screen and (min-width: 880px) {
  .background-container {
    flex-direction: column;
    width: 700px;
    height: auto;
    gap: 40px;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-row-3,
  .Reviewform-row-4,
  .Reviewform-row-5,
  .Reviewform-row-6 {
    flex-direction: row;
    gap: 55px;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-left-column {
    flex: 1;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-right-column {
    flex: 1;
  }

  .Reviewform-row-3 .column {
    flex: 1;
  }

  .Reviewform-row-3 .column textarea {
    width: 100%;
    height: 310px;
    padding: 10px 15px 10px 15px;
    font-weight: 600;
    font-size: 17px;
    line-height: 150%;
  }

  .Reviewform-row-6,
  .Reviewform-buttom-column {
    flex: 1;
    justify-content: center;
  }

  .Reviewform-select,
  .Reviewform-text,
  .form-text-long {
    width: 100%;
    height: 50px;
    font-weight: 600;
    font-size: 17px;
    line-height: 150%;
    padding: 0px 15px 0px 15px;
    border-bottom: 4px solid #A59D84;
  }

  .Reviewform-middle-column {
    flex: 1;
  }

  .form-error-msg {
    font-size: 13px;
  }

  .senden {
    margin-top: 30px;
    width: 150px;
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
  }

  .Reviewform-row-5 .Reviewform-left-column h3 {
    font-size: 20px;
  }
  
  .Reviewform-row-5 .Reviewform-left-column label {
    width: 150px;
    height: 50px;
    border-radius: 3px;
    background-color: #dadada;
    border: 2px solid #dadada;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: -20px;
    transition-duration: 0.5s;
  }

  .Reviewform-row-7 {
    flex-direction: column;
    justify-content: start;
  }
  
  .Reviewform-row-7 h3 {
    font-size: 18px;
  }
  
  .Reviewform-row-7 .innercolumn {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 10px;
    margin-bottom: -20px;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn {
    flex: 2;
  }
  
  .Reviewform-row-7 .innercolumn .right-innercolumn {
    flex: 8;
    display: flex;
    align-items: center;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn label {
    width: 130px;
    height: 40px;
    border-radius: 3px;
    background-color: #dadada;
    border: 2px solid #dadada;
    display: flex;
    font-size: 13px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.5s;
  }
  
  .Reviewform-row-7 .innercolumn .right-innercolumn li {
    font-size: 15px;
    font-weight: 400;
  }
}
@media only screen and (min-width: 1024px) {
  .background-container {
    flex-direction: column;
    width: 900px;
    height: auto;
    gap: 50px;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-row-3,
  .Reviewform-row-4,
  .Reviewform-row-5,
  .Reviewform-row-6 {
    flex-direction: row;
    gap: 55px;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-left-column {
    flex: 1;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-right-column {
    flex: 1;
  }

  .Reviewform-row-3 .column {
    flex: 1;
  }

  .Reviewform-row-3 .column textarea {
    width: 100%;
    height: 310px;
    padding: 10px 15px 10px 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
  }

  .Reviewform-row-6,
  .Reviewform-buttom-column {
    flex: 1;
    justify-content: center;
  }

  .Reviewform-select,
  .Reviewform-text,
  .form-text-long {
    width: 100%;
    height: 57px;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    padding: 0px 15px 0px 15px;
    border-bottom: 4px solid #A59D84;
  }

  .form-error-msg {
    font-size: 15px;
  }

  .senden {
    margin-top: 30px;
    width: 150px;
    height: 57px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
  }

  .Reviewform-row-7 {
    flex-direction: column;
    justify-content: start;
  }
  
  .Reviewform-row-7 h3 {
    font-size: 23px;
  }
  
  .Reviewform-row-7 .innercolumn {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 10px;
    margin-bottom: -20px;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn {
    flex: 2;
  }
  
  .Reviewform-row-7 .innercolumn .right-innercolumn {
    flex: 8;
    display: flex;
    align-items: center;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn label {
    width: 150px;
    height: 50px;
    border-radius: 3px;
    background-color: #dadada;
    border: 2px solid #dadada;
    display: flex;
    font-size: 16px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.5s;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn label:hover {
    background-color: #a1a1a1;
    border: 2px solid #a1a1a1;
  }
  
  .Reviewform-row-7 .innercolumn .right-innercolumn li {
    font-size: 18px;
    font-weight: 400;
  }
}
@media only screen and (min-width: 1200px) {
  .background-container {
    flex-direction: column;
    width: 900px;
    height: auto;
    gap: 50px;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-row-3,
  .Reviewform-row-4,
  .Reviewform-row-5,
  .Reviewform-row-6 {
    flex-direction: row;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-left-column {
    flex: 1;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-right-column {
    flex: 1;
    justify-content: right;
  }

  .Reviewform-row-3 .column {
    flex: 1;
  }

  .Reviewform-row-3 .column textarea {
    width: 100%;
    height: 310px;
    padding: 10px 15px 10px 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
  }

  .Reviewform-row-5 .Reviewform-middle-column {
    flex: 1;
    justify-content: center;
  }

  .Reviewform-row-6,
  .buttom-column {
    flex: 1;
    justify-content: center;
  }

  .Reviewform-select,
  .Reviewform-text,
  .form-text-long {
    width: 405px;
    height: 57px;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    padding: 0px 15px 0px 15px;
    border-bottom: 4px solid #A59D84;
  }

  .Reviewform-text {
    width: 250px;
  }

  .senden {
    margin-top: 30px;
    width: 150px;
    height: 57px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
  }

  .Reviewform-row-7 {
    flex-direction: column;
    justify-content: start;
  }
  
  .Reviewform-row-7 h3 {
    font-size: 23px;
  }
  
  .Reviewform-row-7 .innercolumn {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 10px;
    margin-bottom: -20px;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn {
    flex: 2;
  }
  
  .Reviewform-row-7 .innercolumn .right-innercolumn {
    flex: 8;
    display: flex;
    align-items: center;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn label {
    width: 150px;
    height: 50px;
    border-radius: 3px;
    background-color: #dadada;
    border: 2px solid #dadada;
    display: flex;
    font-size: 16px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.5s;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn label:hover {
    background-color: #a1a1a1;
    border: 2px solid #a1a1a1;
  }
  
  .Reviewform-row-7 .innercolumn .right-innercolumn li {
    font-size: 18px;
    font-weight: 400;
  }
}
@media only screen and (min-width: 1366px) {
  .background-container {
    flex-direction: column;
    width: 900px;
    height: auto;
    gap: 50px;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-row-3,
  .Reviewform-row-4,
  .Reviewform-row-5,
  .Reviewform-row-6 {
    flex-direction: row;
    gap: 55px;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-left-column {
    flex: 1;
  }

  .Reviewform-row-1,
  .Reviewform-row-2,
  .Reviewform-right-column {
    flex: 1;
  }

  .Reviewform-row-3 .column {
    flex: 1;
  }

  .Reviewform-row-3 .column textarea {
    width: 100%;
    height: 310px;
    padding: 10px 15px 10px 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
  }

  .Reviewform-row-6,
  .Reviewform-buttom-column {
    flex: 1;
    justify-content: center;
  }

  .Reviewform-select,
  .Reviewform-text,
  .form-text-long {
    width: 100%;
    height: 57px;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    padding: 0px 15px 0px 15px;
    border-bottom: 4px solid #A59D84;
  }

  .form-error-msg {
    font-size: 15px;
  }

  .senden {
    margin-top: 30px;
    width: 150px;
    height: 57px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
  }

  .Reviewform-row-7 {
    flex-direction: column;
    justify-content: start;
  }
  
  .Reviewform-row-7 h3 {
    font-size: 23px;
  }
  
  .Reviewform-row-7 .innercolumn {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 10px;
    margin-bottom: -20px;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn {
    flex: 2;
  }
  
  .Reviewform-row-7 .innercolumn .right-innercolumn {
    flex: 8;
    display: flex;
    align-items: center;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn label {
    width: 150px;
    height: 50px;
    border-radius: 3px;
    background-color: #dadada;
    border: 2px solid #dadada;
    display: flex;
    font-size: 16px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.5s;
  }
  
  .Reviewform-row-7 .innercolumn .left-innercolumn label:hover {
    background-color: #a1a1a1;
    border: 2px solid #a1a1a1;
  }
  
  .Reviewform-row-7 .innercolumn .right-innercolumn li {
    font-size: 18px;
    font-weight: 400;
  }
}
