* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
}

section {
  width: 100%;
  min-height: 100vh;
}
section:nth-of-type(1) {
  display: grid;
  grid-template-columns: auto 50vw;
}
section:nth-of-type(1) .left,
section:nth-of-type(1) .right {
  background-color: #002631;
  height: 100vh;
}
section:nth-of-type(1) .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}
section:nth-of-type(1) .left h1,
section:nth-of-type(1) .left h2,
section:nth-of-type(1) .left form {
  width: 70%;
  padding: 1vw;
  box-sizing: border-box;
}
section:nth-of-type(1) .left h1,
section:nth-of-type(1) .left h2 {
  font-family: "Lilita One", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
section:nth-of-type(1) .left h1 {
  padding-bottom: 0;
  font-size: 1vw;
  color: #007697;
  margin-top: 4vh;
}
section:nth-of-type(1) .left h2 {
  font-size: 1.5vw;
  color: rgb(0, 78, 100);
}
section:nth-of-type(1) .left .line {
  width: 65%;
  border: 0.5px solid rgba(0, 78, 100, 0.5);
}
section:nth-of-type(1) .left form {
  border-radius: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 1vw;
       column-gap: 1vw;
  grid-template-areas: "a b" "c c" "d d" "e e";
  margin-top: 1vw;
  font-family: "Roboto", sans-serif;
}
section:nth-of-type(1) .left form label {
  font-size: 1.2vw;
  padding: 0.5vw;
  box-sizing: border-box;
  padding-left: 0;
  padding-top: 0;
  color: #007697;
}
section:nth-of-type(1) .left form input[type=text],
section:nth-of-type(1) .left form input[type=email],
section:nth-of-type(1) .left form textarea {
  border: 0;
  font-size: 1vw;
  outline: unset;
  border-bottom: 2px solid rgba(0, 78, 100, 0.5);
  padding: 0.5vw;
  box-sizing: border-box;
  margin-bottom: 1.5vw;
  color: rgb(0, 78, 100);
}
section:nth-of-type(1) .left form input[type=text]::-moz-placeholder, section:nth-of-type(1) .left form input[type=email]::-moz-placeholder, section:nth-of-type(1) .left form textarea::-moz-placeholder {
  color: rgba(0, 78, 100, 0.5);
  font-family: "Roboto", sans-serif;
}
section:nth-of-type(1) .left form input[type=text]::placeholder,
section:nth-of-type(1) .left form input[type=email]::placeholder,
section:nth-of-type(1) .left form textarea::placeholder {
  color: rgba(0, 78, 100, 0.5);
  font-family: "Roboto", sans-serif;
}
section:nth-of-type(1) .left form .fgroup {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section:nth-of-type(1) .left form #group1 {
  grid-area: a;
}
section:nth-of-type(1) .left form #group2 {
  grid-area: b;
}
section:nth-of-type(1) .left form #group3 {
  grid-area: c;
}
section:nth-of-type(1) .left form #group4 {
  grid-area: d;
}
section:nth-of-type(1) .left form #group4 textarea {
  resize: vertical;
}
section:nth-of-type(1) .left form #group5 {
  grid-area: e;
  margin-top: 1vw;
}
section:nth-of-type(1) .left form #group5 button {
  background-color: rgb(0, 78, 100);
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5vw 1vw;
  box-sizing: border-box;
  color: white;
  border-radius: 5px;
  font-size: 1vw;
  outline: 0;
  border: 0;
}
section:nth-of-type(1) .left #popup_wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  opacity: 0;
  justify-content: center;
}
section:nth-of-type(1) .left #popup_wrapper #popup_overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(34, 9, 1, 0.5);
}
section:nth-of-type(1) .left #popup_wrapper #popup {
  position: fixed;
  width: 40vw;
  min-height: 30vw;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 5vh;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 5px white;
  padding: 1vw;
  opacity: 0;
  box-sizing: border-box;
}
section:nth-of-type(1) .left #popup_wrapper #popup .row {
  display: flex;
  width: 100%;
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(1) {
  justify-content: flex-end;
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(1) button {
  padding: 0.5vw;
  box-sizing: border-box;
  background-color: rgb(191, 19, 99);
  border-radius: 5px;
  border: 0;
  outline: unset;
  cursor: pointer;
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(1) button:hover {
  background-color: #e81d7b;
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(1) button span {
  color: white;
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error {
  padding: 0.5vw;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "a a" "b c";
  -moz-column-gap: 1vw;
       column-gap: 1vw;
  align-items: center;
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error h1 {
  grid-area: a;
  color: rgb(191, 19, 99);
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error ol {
  grid-area: c;
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error ol li {
  padding: 0.5vw;
  padding-left: unset;
  box-sizing: border-box;
  font-size: 1vw;
  width: 100%;
  color: rgb(0, 78, 100);
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error img {
  grid-area: b;
  width: 100%;
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "a c" "b c";
  align-items: center;
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg h1,
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg h2 {
  width: 100%;
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg h1 {
  grid-area: a;
  font-size: 1.2vw;
  margin-top: 2vh;
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg h2 {
  grid-area: b;
  font-size: 2.5vw;
}
section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg img {
  grid-area: c;
  width: 100%;
}
section:nth-of-type(1) .right {
  background: linear-gradient(#002631, rgb(0, 78, 100));
  display: flex;
  flex-direction: column;
  align-items: center;
}
section:nth-of-type(1) .right h1 {
  font-family: "Lilita One", sans-serif;
  width: 25vw;
  margin-top: 4vh;
  margin-bottom: 1vw;
  font-size: 3vw;
  color: white;
  font-weight: 500;
}
section:nth-of-type(1) .right svg {
  width: 25vw;
}

@media only screen and (max-width: 750px) {
  section:nth-of-type(1) {
    display: flex;
    flex-direction: column-reverse;
    grid-template-columns: none;
  }
  section:nth-of-type(1) .left,
  section:nth-of-type(1) .right {
    min-height: 50vh;
  }
  section:nth-of-type(1) .left h1,
  section:nth-of-type(1) .left h2,
  section:nth-of-type(1) .left form {
    width: 90%;
    padding: 1.5vw;
  }
  section:nth-of-type(1) .left h1 {
    font-size: 3vw;
  }
  section:nth-of-type(1) .left h2 {
    font-size: 4.5vw;
  }
  section:nth-of-type(1) .left .line {
    width: 85%;
  }
  section:nth-of-type(1) .left form {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d" "e";
  }
  section:nth-of-type(1) .left form label {
    font-size: 3.2vw;
    padding: 1.5vw;
    padding-left: 0;
    padding-top: 0;
  }
  section:nth-of-type(1) .left form input[type=text],
  section:nth-of-type(1) .left form input[type=email],
  section:nth-of-type(1) .left form textarea {
    font-size: 3vw;
    padding: 1.5vw;
    margin-bottom: 3vw;
  }
  section:nth-of-type(1) .left form #group5 button {
    font-size: 3vw;
    padding: 1.5vw 3vw;
  }
  section:nth-of-type(1) .left #popup_wrapper #popup {
    width: 70vw;
    max-height: 80vh;
    overflow-y: scroll;
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(1) button {
    font-size: 3vw;
    padding: 1.5vw;
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error {
    grid-template-columns: 1fr;
    grid-template-areas: "x" "m" "l";
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error h1,
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error li,
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error img {
    margin-right: auto;
    margin-left: auto;
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error h1,
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error li {
    width: 80%;
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error img {
    grid-area: m;
    width: 60%;
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error h1 {
    grid-area: x;
    font-size: 4vw;
    margin-top: 2vh;
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error ol {
    grid-area: l;
    margin-bottom: 3vh;
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #user_input_error ol li {
    font-size: 3vw;
    margin-left: 5vw;
    width: -moz-fit-content;
    width: fit-content;
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "c" "b";
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg h1,
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg h2,
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg img {
    margin-right: auto;
    margin-left: auto;
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg h1,
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg h2 {
    width: 80%;
    text-align: center;
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg img {
    width: 60%;
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg h1 {
    font-size: 3vw;
  }
  section:nth-of-type(1) .left #popup_wrapper #popup .row:nth-of-type(2) #msg h2 {
    font-size: 5vw;
  }
  section:nth-of-type(1) .right {
    height: -moz-fit-content;
    height: fit-content;
    margin-top: unset;
  }
  section:nth-of-type(1) .right h1 {
    width: 70%;
    font-size: 5vw;
    text-align: center;
  }
  section:nth-of-type(1) .right svg {
    width: 70%;
  }
}/*# sourceMappingURL=feedback.css.map */