:root {
  --white: white;
  --black: black;
}

body {
  color: #fff;
  text-align: center;
  font-family: Source Code Pro, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

a {
  color: #fff;
  text-decoration: none;
}

.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;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.hero-section {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  filter: contrast(122%);
  mix-blend-mode: normal;
  background-image: linear-gradient(to top, #000, #181520c9 24%, #34304400 70%, #00000080), url('../images/hero-section.png');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.image {
  margin-bottom: 100px;
}

.h1 {
  font-size: 52px;
  line-height: 100%;
}

.paragraph.copyright {
  font-size: 14px;
}

.section-1 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  background-image: linear-gradient(to top, #000, #1c1c1cbd 25%, #3b3b3b00 63%, #000 98%), url('../images/section.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.container-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 40px;
  display: flex;
}

.section-2 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  background-image: linear-gradient(to top, #000, #030303b0 31%, #0f0e0e00 62%, #000), url('../images/section_2.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: block;
}

.section-3 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  background-image: linear-gradient(to top, #000, #0000 55%, #000), url('../images/section_1.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.footer {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: #000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: color .3s;
}

.copyright {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.section_content-block {
  grid-row-gap: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.address {
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-phone {
  font-size: 16px;
}

.button {
  border-radius: 10px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 14px;
  font-weight: 400;
}

.button.b1 {
  background-color: #76c700;
  border: 2px solid #0000;
  transition: all .3s;
}

.button.b1:hover {
  background-color: #76c70000;
  border: 2px solid #76c700;
}

.button.b2 {
  background-color: #1d538d;
  border: 2px solid #0000;
  transition: all .3s;
}

.button.b2:hover {
  background-color: #1d538d00;
  border-color: #1d538d;
}

.button.b3 {
  background-color: #c71c21;
  border: 2px solid #0000;
  transition: all .3s;
}

.button.b3:hover {
  background-color: #c71c2100;
  border-color: #c71c21;
}

.contact-email {
  color: #c71c21;
}

.body-2 {
  color: #000;
  text-align: left;
  background-color: #fff;
  border-right-style: none;
  border-right-color: #000;
  margin: 20px;
}

.heading {
  text-align: center;
}

.paragraph-2 {
  text-align: left;
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 728px;
    padding-top: 140px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image {
    width: auto;
    max-width: none;
    height: 30%;
    min-height: 150px;
    max-height: 200px;
    margin-bottom: 0;
  }

  .section-1, .section-2, .section-3 {
    padding-top: 100px;
  }

  .section_content-block {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    max-width: none;
    padding-top: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .image {
    min-height: 0;
    margin-bottom: 0;
  }

  .h1 {
    font-size: 42px;
  }

  .paragraph {
    font-size: 16px;
  }

  .section-1, .section-2, .section-3 {
    padding-top: 0;
  }

  .section_content-block {
    grid-row-gap: 40px;
    height: auto;
    min-height: 100vh;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image {
    width: 30%;
    max-width: 200px;
    height: auto;
    max-height: none;
  }

  .h1 {
    font-size: 35px;
  }

  .section_content-block {
    height: 100vh;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}


