@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100vh;
  height: 100%;
}

body {
  background-color: #FEF9F0;
  font-family: "Plus Jakarta Sans", sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
}

._container {
  margin: 0 auto;
  padding: 0 80px;
}

.wrapper {
  height: 100%;
  max-width: 100vw;
  position: relative;
  overflow: hidden;
}

.header {
  padding: 40px 0;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__small-container {
  max-width: 900px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.header__logo img {
  width: 100%;
}
.list-social-header {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.list-social-header__item {
  width: 24px;
  height: 24px;
  background-color: #D3182E;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  transition: 0.2s ease;
}
.list-social-header__item:hover {
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15);
}

.intro {
  padding-top: 30px;
  padding-bottom: 90px;
}
.intro__container {
  position: relative;
}
.intro__text-area {
  position: relative;
  z-index: 1;
}
.intro__title {
  font-weight: 600;
  font-size: 70px;
  color: #D3182E;
  max-width: 1000px;
  margin-bottom: 24px;
  line-height: 110%;
}
.intro__subtitle {
  font-weight: 500;
  font-size: 24px;
  color: #D3182E;
  margin-bottom: 186px;
}
.intro__machine-img {
  width: 675px;
  position: absolute;
  right: -10px;
  top: -120px;
}
.intro__form-area {
  position: relative;
  z-index: 3;
}
.area-marquee-intro {
  position: absolute;
  top: 45%;
  transform: translateY(-45%);
  left: -350px;
}
.area-marquee-intro__item {
  background-color: #B9C937;
  padding: 10px 0;
  line-height: 95%;
  font-size: 40.32px;
  color: #fff;
  display: flex;
  gap: 35px;
  align-items: center;
  box-shadow: 0px 5.25px 0px 0px rgba(0, 0, 0, 0.24);
}
.area-marquee-intro__item span {
  white-space: nowrap;
  font-weight: 500;
}
.area-marquee-intro__item--first {
  transform: rotate(6deg);
  position: relative;
  z-index: 2;
  top: 300px;
}
.area-marquee-intro__item--second {
  transform: rotate(-18deg);
}

.form-intro {
  border-radius: 15px;
  padding: 32px 35.5px;
  width: 520px;
  position: relative;
}
.form-intro__title {
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  line-height: 125%;
  margin-bottom: 10px;
}
.form-intro__subtitle {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}
.form-intro__input-area {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-intro__input {
  background: none;
  outline: none;
  border: none;
  font-size: 14px;
  color: #FEF9F0;
  font-style: italic;
  font-weight: 500;
  line-height: 95%;
  height: 35px;
  border-bottom: 1px solid #FEF9F0;
  width: 100%;
}
.form-intro__input::placeholder {
  color: #FEF9F0;
}
.form-intro__input--textarea {
  height: 35px;
  display: flex;
  align-items: center;
  justify-self: center;
}
.form-intro__button {
  padding: 12.5px 32px;
  background-color: #FFF3DF;
  color: #D3182E;
  font-weight: 500;
  border: none;
  outline: none;
  font-style: italic;
  display: flex;
  justify-self: end;
  margin-right: 40px;
  border-radius: 4px;
  transition: 0.2s ease;
  cursor: pointer;
}
.form-intro__button:hover {
  background-color: #FEF9F0;
}
.form-intro__button:active {
  background-color: #FFF0D6;
}
.form-intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.form-intro__bg-triangle {
  position: absolute;
  bottom: -10px;
  right: -5px;
  z-index: 3;
  width: 48.72px;
  height: 67.11px;
  display: none;
}

.footer {
  display: none;
  padding-top: 24px;
  padding-bottom: 28px;
}
.popup-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 10;
}

.popup {
  background-color: #FEF9F0;
  border-radius: 16px;
  width: 480px;
  height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.popup__img {
  margin-bottom: 24px;
}
.popup__title {
  margin-bottom: 16px;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
}
.popup__subtitle {
  text-align: center;
  font-size: 16px;
  letter-spacing: -4%;
  max-width: 340px;
  margin: 0 auto;
  font-weight: 400;
}
.popup__close {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}

@media (min-width: 2375px) {
  ._container {
    max-width: 2350px;
  }
}
@media (max-width: 1800px) {
  .intro__machine-img {
    right: -80px;
  }
}
@media (max-width: 1600px) {
  .intro__machine-img {
    right: -300px;
  }
}
@media (max-width: 1400px) {
  .intro {
    height: 95vh;
  }
  .intro__machine-img {
    top: 0px;
    right: -350px;
  }
  .intro__title {
    max-width: 600px;
  }
}
@media (max-width: 1200px) {
  ._container {
    max-width: 1200px;
  }
  .intro__machine-img {
    top: 10px;
    right: -400px;
  }
}
@media (max-width: 992px) {
  ._container {
    max-width: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
  .area-marquee-intro {
    top: 40%;
    transform: translateY(-40%);
    left: -500px;
  }
  .intro__machine-img {
    position: relative;
    right: auto;
    left: 0;
    width: auto;
    height: 500px;
    right: -450px;
    display: flex;
    justify-content: center;
    box-shadow: -1px 10px 54px 0px rgba(0, 0, 0, 0.24);
  }
  .intro__subtitle {
    margin-bottom: 30px;
  }
  .intro__img-area {
    display: flex;
    justify-content: center;
    margin-bottom: 90px;
  }
  .intro__form-area {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .wrapper {
    overflow: hidden;
    min-height: 130vh;
  }
  .header {
    padding: 22px 0;
  }
  ._container {
    margin: 0 auto;
  }
  .intro {
    height: auto;
  }
  .intro__title {
    font-size: 40px;
  }
  .header__social-list {
    display: none;
  }
  .area-marquee-intro {
    top: 40%;
    transform: translateY(-40%);
    left: -600px;
  }
  .area-marquee-intro__item {
    padding: 5px 0;
    gap: 10px;
  }
  .area-marquee-intro__item span {
    font-size: 25px;
  }
  .area-marquee-intro__item--first {
    top: 60px;
  }
  .form-intro {
    width: 100%;
  }
  .form-intro__bg {
    display: none;
  }
  .form-intro__bg-triangle {
    display: block;
  }
  .form-intro {
    background-color: #D3182E;
  }
  .footer {
    display: block;
  }
  .footer__social-list {
    display: flex;
    justify-content: center;
    gap: 18px;
  }
}
@media (max-width: 576px) {
  ._container {
    max-width: 918px;
    padding: 0 24px;
  }
  .popup {
    max-width: 90%;
  }
  .popup__title {
    font-size: 20px;
  }
  .popup__subtitle {
    max-width: 250px;
    font-size: 14px;
  }
  .intro {
    padding-top: 10px;
  }
  .area-marquee-intro {
    left: -700px;
  }
  .header__logo {
    width: 167px;
  }
  .intro__title {
    font-size: 34px;
  }
  .intro__subtitle {
    margin-bottom: 50px;
  }
  .form-intro {
    margin-bottom: 24px;
  }
  .form-intro__button {
    margin-right: 10px;
  }
}
@media (max-width: 480px) {
  ._container {
    max-width: 900px;
    padding: 0 15px;
  }
  .area-marquee-intro {
    top: 30%;
    transform: translateY(-30%);
  }
  .intro__machine-img {
    height: 400px;
  }
  .area-marquee-intro__item {
    font-size: 20px;
    padding: 10px 0;
  }
  .intro__subtitle {
    font-size: 18px;
  }
  .area-marquee-intro__item span {
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .form-intro {
    padding: 25px 20px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1100px) and (max-height: 1400px) {
  .wrapper {
    min-height: 110vh;
  }
}
@media screen and (min-width: 900px) and (max-width: 1100px) and (max-height: 1000px) {
  .wrapper {
    min-height: 130vh;
  }
}


.grecaptcha-badge {
    display: none !important;
}

.wpcf7-form .wpcf7-response-output,
.wpcf7-form .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-spinner {
    display: none !important;
    background: none !important;
    animation: none !important;
}

.wpcf7-form.submitting .wpcf7-submit {
  pointer-events: none;
  background: #E94A5D;
  color: #FC919E;
  cursor: not-allowed;
}

span.wpcf7-not-valid-tip {
    display: none !important;
}

.wpcf7-form-control.wpcf7-not-valid {
    border-bottom: 1px solid red !important;
}
