:root {
  --bg: #f3eee7;
  --text-color: #000;
  --font-size: 16px;
  --font-family: 'poppins', sans-serif;
  --line-height: 1.5;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::-webkit-input-placeholder {
  color: var(--text-color);
  font-size: 1.6rem;
}

::-moz-placeholder {
  color: var(--text-color);
  font-size: 1.6rem;
}

:-ms-input-placeholder {
  color: var(--text-color);
  font-size: 1.6rem;
}

:-moz-placeholder {
  color: var(--text-color);
  font-size: 1.6rem;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5%;
  margin: 0;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: var(--line-height);
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  background-color: var(--bg);
  -webkit-font-feature-settings: "ss02" 1;
  font-feature-settings: 'ss02' 1;
}

.container {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1300px;
  text-align: center;
}

.header {
  text-align: center;
}

.header__logo {
  max-width: 320px;
  margin: 0 auto 75px auto;
}

@media screen and (min-width: 1250px) {
  .header__logo {
    margin: 0 auto 120px auto;
  }
}

.main h1 {
  margin-bottom: 5%;
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (min-width: 1250px) {
  .main h1 {
    margin-bottom: 10%;
    font-size: 3.5rem;
  }
}

.footer__formWrap {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}

.footer__formWrap label {
  display: none;
}

.footer__formWrap input {
  width: 100%;
  padding: 0 65px 0 0;
  height: 80px;
  font-size: 1.6rem;
  color: var(--text-color);
  border: 0;
  border-bottom: 1px solid var(--text-color);
  background-color: transparent;
  outline: none;
}

.footer__formWrap input:focus + button {
  visibility: visible;
  opacity: 1;
}

.footer__formWrap button {
  visibility: hidden;
  position: absolute;
  width: 50px;
  height: 40px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-size: contain;
  background-image: url("../img/submit.svg");
  background-color: transparent;
  border: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__text {
  font-size: 1.3rem;
  padding: 0 5%;
}

@media screen and (min-width: 1250px) {
  .footer__text {
    font-size: 2.2rem;
  }
}
/*# sourceMappingURL=styles.css.map */