.heading {
  text-align: center;
  object-fit: fill;
  flex-flow: wrap;
  align-content: stretch;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 60px;
  line-height: 110%;
  display: flex;
  position: static;
}

.paragraph {
  text-align: center;
  justify-content: center;
  margin-top: 10px;
  font-size: 20px;
  line-height: 150%;
  display: flex;
}

.div-block {
  max-width: 600px;
  flex-direction: column;
  display: flex;
}

.section {
  justify-content: center;
  display: flex;
}

.body {
  color: #efefef;
  background-color: #000;
  margin-left: 40px;
  margin-right: 40px;
  text-decoration: none;
}

.div-block-2 {
  max-width: 500px;
  object-fit: contain;
  flex: 1;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  position: static;
}

.section-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.form-block {
  object-fit: contain;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.form {
  flex: 1;
  display: flex;
}

.text-field {
  color: #fff;
  background-color: #2e2e2e;
  border: 1px solid #636363;
  flex: 1;
  margin-bottom: 0;
  margin-right: 10px;
}

.submit-button {
  color: #000;
  text-transform: uppercase;
  background-color: #fff;
  font-weight: 700;
}

.div-block-3 {
  height: auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  display: flex;
}

.heading-2 {
  text-align: center;
  margin-bottom: 20px;
  margin-left: 0;
  font-family: Oswald, sans-serif;
  font-size: 32px;
  line-height: 100%;
}

.heading-2.logo {
  margin-bottom: 20px;
  font-size: 28px;
}

.heading-2.underline {
  text-decoration: underline;
}

.heading-2.fill {
  outline-offset: 0px;
  color: #000;
  background-color: #fff;
  border-top: 1px #000;
  outline: 3px #fff;
  line-height: 100%;
  text-decoration: none;
}

.heading-2.fill.outline {
  outline-offset: 0px;
  border: 1px #000;
  border-top-width: 0;
  outline: 3px solid #fff;
  margin-left: 4px;
  margin-right: 4px;
}

.navbar {
  background-color: #000;
}

.text-block {
  color: #000;
}

.text-block-2 {
  color: #c00000;
}

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

@media screen and (max-width: 991px) {
  .heading {
    font-size: 50px;
  }

  .heading-2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .heading {
    font-size: 40px;
  }

  .form {
    flex-direction: column;
  }

  .text-field {
    margin-bottom: 10px;
  }

  .div-block-3 {
    margin-bottom: 60px;
  }

  .heading-2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 479px) {
  .paragraph {
    font-size: 16px;
  }

  .div-block-3 {
    margin-bottom: 40px;
  }
}


