:root {
  --white: white;
  --green: #1ba17e;
  --black: #222;
  --blue: #87b9dd;
  --transparent: #fff0;
  --light-blue: #b0dff0;
}

body {
  background-color: var(--white);
  color: #555;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

.body {
  background-color: var(--green);
  flex-flow: column;
  display: flex;
}

.section {
  padding: 120px 60px;
}

.section.header {
  background-color: var(--white);
  padding-top: 60px;
  padding-bottom: 60px;
}

.container-1500 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.logo-wrap {
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.logo {
  width: 400px;
}

.header-wrap {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph {
  margin-bottom: 20px;
}

.paragraph.header {
  color: var(--white);
  text-align: center;
  font-size: 22px;
}

.paragraph.header.large {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

.phone-text {
  color: var(--white);
  text-align: center;
  font-size: 28px;
  text-decoration: none;
}

.phone-link {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.ph-icon {
  width: 36px;
  height: 36px;
}

.form-head {
  justify-content: center;
  align-items: center;
  display: flex;
}

.form-title {
  color: var(--white);
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}

.form {
  width: 600px;
}

.form-block {
  margin-top: 20px;
  margin-bottom: 0;
}

.text-field {
  border: 1px solid var(--white);
  border-radius: 3px;
  margin-bottom: 20px;
  padding: 26px 12px;
  font-size: 20px;
}

.button {
  background-color: var(--black);
}

.text-area {
  border-radius: 3px;
  min-height: 220px;
  margin-bottom: 40px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 20px;
}

.grass-wrap {
  background-image: url('../images/grass.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50px;
  margin-top: auto;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

@media screen and (max-width: 991px) {
  .section {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding: 80px 30px;
  }

  .section.header {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container-1500 {
    align-items: stretch;
  }

  .logo {
    width: 400px;
  }

  .phone-link {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .form {
    width: auto;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding: 60px 20px;
  }

  .section.header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .paragraph.header.large {
    font-size: 32px;
  }

  .phone-link {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .form-title {
    font-size: 32px;
    line-height: 1.2;
  }
}


