@font-face {
  font-family: "TT Prosto Sans Condensed";
  src: url("assets/fonts/TTProstoSansCondensed-Light.eot") format("eot"),
    url("assets/fonts/TTProstoSansCondensed-Light.woff2") format("woff2"),
    url("assets/fonts/TTProstoSansCondensed-Light.woff") format("woff");
  font-style: normal;
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: "TT Prosto Sans Condensed";
  src: url("assets/fonts/TTProstoSansCondensed-Regular.eot") format("eot"),
    url("assets/fonts/TTProstoSansCondensed-Regular.woff2") format("woff2"),
    url("assets/fonts/TTProstoSansCondensed-Regular.woff") format("woff");
  font-style: normal;
  font-stretch: condensed;
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "TT Prosto Sans Condensed";
  src: url("assets/fonts/TTProstoSansCondensed-Bold.eot") format("eot"),
    url("assets/fonts/TTProstoSansCondensed-Bold.woff2") format("woff2"),
    url("assets/fonts/TTProstoSansCondensed-Bold.woff") format("woff");
  font-style: normal;
  font-stretch: condensed;
  font-display: swap;
  font-weight: 700;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "TT Prosto Sans Condensed";
  font-stretch: condensed;
}

body p {
  margin: 0px;
}

p {
  font-size: 1rem;
  font-weight: 400;
}

.container {
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
}

.header {
  background-color: #f7f7f7;
  padding: 32px 0 0;
  color: #4a4a4a;
  height: 100vh;
  position: relative;
}

.first-layer {
  position: absolute;
  height: 100%;
  background-image: url("assets/bg.svg");
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-position: center bottom;
}

.second-layer {
  position: absolute;
  height: 100%;
  background-image: url("assets/bg_1.svg");
  background-size: contain;
  background-repeat: repeat-x;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-position: center bottom;
}

.welcome {
  height: 742px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  z-index: 2;
}

.welcome .subTitle {
  font-size: 1.924rem;
  line-height: 45px;
  text-align: center;
}

.logo {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 236px; /* Adjust size as needed */
  height: 56px;
}

h1 {
  font-size: 3rem;
  margin: 0px;
  font-weight: 700;
  line-height: 52.8px;
}

h2 {
  font-size: 2rem;
  margin: 0px;
  font-weight: 400;
}

h3 {
  font-size: 2.25rem;
  margin: 0px;
  font-weight: 400;
  line-height: 35.2px;
}

h4 {
  font-size: 1rem;
  margin: 0px;
  font-weight: 300;
  line-height: 22px;
}

.subHeader {
  padding: 45px 22.4px 35px 22.4px;
  background-color: #f7f7f7;
}

.subHeader h3 {
  font-size: 1.5rem;
}

.shop {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
}

.shop .shopTitle {
  font-size: 24px;
  line-height: 26.4px;
}

.yourShop {
  background-color: white;
  padding: 100px 22.4px;
}

.yourShop h3 {
  margin-bottom: 17px;
  font-weight: 300;
  line-height: 39.6px;
}

.contact-form {
  padding: 60px 22.4px 70px 22.4px;
  background-color: #08703a;
  color: white;
}

.formContainer {
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
  justify-content: center;
  max-width: 960px;
  margin: auto;
}

.formContainer h2 {
  font-weight: 300;
}

.formContainer form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.formContainer p {
  max-width: 800px;
  text-align: center;
  line-height: 22px;
}

.form-group {
  position: relative;
}

.form-group input {
  background-color: unset;
  width: 100%;
  border: none;
  border-bottom: 1px solid white;
  padding: 4px 0px;
  color: white;
}

.form-group input.error {
  color: #ce2b37;
}

.form-group .input-label {
  position: absolute;
  pointer-events: none;
  transition: all 0.2s ease-out;
  color: white;
  font-size: 16px;
  left: 0px;
}

.form-group input:focus + .input-label,
.form-group .input-label.focused {
  transform: translateY(-20px);
  font-size: 12px;
}

input:focus-visible {
  outline: unset;
}

input::placeholder {
  color: white;
}

.form-group button {
  width: 100%;
  color: #08703a;
  border: 1px solid #f9f9f9;
  border-radius: 5px;
  background-color: white;
  padding: 10px;
  cursor: pointer;
}

.virtual-group {
  display: none;
}

.successIcon {
  display: none;
}

.successButton .successIcon {
  display: inline-block;
}

.successButton .buttonText {
  display: none;
}

footer {
  font-size: 14px;
  color: white;
  padding: 5px 0px;
  text-align: center;
  background-color: #ce2b37;
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }

  .formContainer form {
    grid-template-columns: 1fr 1fr;
  }

  .virtual-group {
    display: block;
  }
}

@media screen and (min-width: 1560px) {
  .container {
    max-width: 1560px;
  }
}
