html {
  font-size: calc(100vw / 1920 * 16);
}

.myFooter {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  background: transparent;
  width: 100%;
  border: 0;
}

.myFooter .myContainer {
  height: 128px;
}

.bigBanner {
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}

.bigBanner .myContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.bigBanner .myContainer .title {
  font-family: Moderat-Light;
  font-size: 40px;
  padding-top: 19vh;
  line-height: 1;
  padding-bottom: 7vh;
  width: 80%;
  max-width: 571px;
}

.bigBanner .myContainer .myInp {
  font-family: Moderat-Light;
  font-size: 16px;
  height: 52px;
  line-height: 25px;
  width: 100%;
  max-width: 571px;
  background: transparent;
  outline: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 20px;
  box-sizing: border-box;
  margin-bottom: 16px;
  caret-color: transparent;
  transition: all 0.3s ease-in-out;
}

.bigBanner .myContainer .myInp::placeholder {
  color: #ffffff;
}

.bigBanner .myContainer .myInp:focus {
  border-bottom: 1px solid #ffffff;
}

.bigBanner .myContainer .myTextArea {
  padding-top: 15px;
  resize: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-family: Moderat-Light;
  font-size: 16px;
  width: 100%;
  max-width: 571px;
  background: transparent;
  height: 132px;
  outline: none;
  padding-left: 20px;
  box-sizing: border-box;
  caret-color: transparent;
  transition: all 0.3s ease-in-out;
}

.bigBanner .myContainer .myTextArea::placeholder {
  color: #ffffff;
}

.bigBanner .myContainer .myTextArea:focus {
  border-bottom: 1px solid #ffffff;
}

.bigBanner .myContainer .submit {
  width: fit-content;
  padding-top: 50px;
  width: 100%;
  max-width: 571px;
  display: flex;
  justify-content: flex-start;
}

.bigBanner .myContainer .submit .button {
  width: 200px;
  height: 55px;
  background-color: #bc0710;
  border-radius: 28px;
  font-family: Moderat-Light;
  font-size: 16px;
  color: #FFF;
  line-height: 55px;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .bigBanner .myContainer .title {
    padding-top: 15vh;
  }
}

@media (max-width: 768px) {
  .bigBanner .myContainer .title {
    padding-top: 20vh;
    margin: auto;
    text-align: center;
    font-size: 26px;
  }
  .bigBanner .myContainer .myInp {
    margin: auto;
  }
  .bigBanner .myContainer .myTextArea {
    margin: auto;
  }
  .bigBanner .myContainer .submit {
    margin: auto;
    justify-content: center;
  }
}

@media (max-width: 476px) {
  .bigBanner .myContainer .title {
    font-size: 22px;
    padding-bottom: 15px;
  }
  .bigBanner .myContainer .myInp {
    font-size: 14px;
    height: 50px;
  }
  .bigBanner .myContainer .myTextArea {
    font-size: 14px;
    height: 120px;
  }
  .bigBanner .myContainer .submit .button {
    width: 150px;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
  }
}
