main section#info {
  padding: 0 20px;
  margin: 45px auto;
  margin-bottom: 25px;
  max-width: 550px;
}

main section#info .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ff0a0a;
  text-align: center;
}

main section#info .content {
  margin-top: 15px;
}

main section#info .content * {
  text-align: center;
}

main section#form {
  display: flex;
  align-items: 0;
  justify-content: 0;
  flex-wrap: 0;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
  margin: 25px 0;
  margin-bottom: 65px;
}

main section#form aside {
  display: flex;
  align-items: 0;
  justify-content: 0;
  flex-wrap: 0;
  flex-direction: column;
  gap: 10px;
}

main section#form aside .details {
  padding: 20px;
  background: #223f8b;
}

main section#form aside .details .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
}

main section#form aside .details > .content {
  margin: 15px 0;
}

main section#form aside .details > .content * {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}

main section#form aside .details > .content ul {
  margin: 10px 0;
  padding-left: 17.5px;
}

main section#form aside .details > .content ul li {
  margin-bottom: 5px;
}

main section#form aside .details .detail-wrapper {
  display: flex;
  align-items: 0;
  justify-content: 0;
  flex-wrap: 0;
  flex-direction: column;
  gap: 35px;
}

main section#form aside .details .detail-wrapper .detail {
  display: flex;
  align-items: none;
  justify-content: none;
  flex-wrap: none;
  flex-direction: none;
  gap: 25px;
}

main section#form aside .details .detail-wrapper .detail svg {
  width: 32px;
  height: auto;
  min-width: 32px;
  min-height: auto;
  margin-top: 5px;
}

main section#form aside .details .detail-wrapper .detail .info > p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}

main section#form aside .details .detail-wrapper .detail .info .content * {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

main section#form aside .details .detail-wrapper .detail .info .content a {
  text-decoration: none;
}

main section#form aside .details .detail-wrapper .detail .info .content a:hover {
  text-decoration: underline;
}

main section#form aside .details .map-link {
  margin-top: 35px;
}

main section#form aside .map iframe,
main section#form aside .map .img-container,
main section#form aside .image iframe,
main section#form aside .image .img-container {
  width: 100%;
  height: 75vw;
}

main section#form aside .map iframe img,
main section#form aside .map .img-container img,
main section#form aside .image iframe img,
main section#form aside .image .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

main section#form aside .map .img-container,
main section#form aside .image .img-container {
  overflow: hidden;
}

main section#form form {
  background-color: #f5f5f5;
  padding: 35px 15px;
}

main section#form form .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #223f8b;
  margin-bottom: 40px;
}

main section#form form .fields {
  display: flex;
  align-items: 0;
  justify-content: 0;
  flex-wrap: 0;
  flex-direction: column;
  gap: 25px;
}

main section#form form .fields label {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  display: block;
  margin-bottom: 10px;
}

main section#form form .fields input,
main section#form form .fields select,
main section#form form .fields textarea {
  width: 100%;
  height: 50px;
}

main section#form form .fields textarea {
  height: 160px;
  resize: none;
  padding: 7.5px;
}

main section#form form .policy {
  margin: 20px 0;
}

main section#form form button {
  margin-top: 30px;
}

footer .cta {
  display: none !important;
}

@media only screen and (min-width: 576px) and (max-width: 785px) {
  main section#form aside {
    display: flex;
    align-items: 0;
    justify-content: 0;
    flex-wrap: 0;
    flex-direction: column;
    gap: 10px;
  }

  main section#form aside .details .detail-wrapper {
    display: flex;
    align-items: 0;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0px;
  }

  main section#form aside .details .detail-wrapper .detail {
    width: 49%;
    gap: 15px;
  }

  main section#form aside .map iframe,
  main section#form aside .map .img-container,
  main section#form aside .image iframe,
  main section#form aside .image .img-container {
    height: 55vw;
  }

  main section#form form .fields {
    display: flex;
    align-items: 0;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 25px;
  }

  main section#form form .fields .field {
    width: 47.5%;
  }

  main section#form form .fields .field:last-of-type {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  main section#form {
    flex-direction: row;
    gap: 2.5vw;
  }

  main section#form aside {
    width: 50%;
  }

  main section#form aside .map iframe,
  main section#form aside .map .img-container,
  main section#form aside .image iframe,
  main section#form aside .image .img-container {
    height: 40vw;
  }

  main section#form form {
    width: 50%;
  }
}

@media only screen and (min-width: 1200px) {
  main section#info {
    padding: 0 100px;
    margin: 25px auto;
    margin-bottom: 50px;
    max-width: none;
  }

  main section#info .title {
    font-size: 30px;
  }

  main section#info .content {
    margin-top: 20px;
  }

  main section#info .content * {
    font-size: 16px;
  }

  main section#form {
    padding: 0 50px;
    gap: 5vw;
  }

  main section#form aside .details {
    padding: 50px 80px 75px 40px;
  }

  main section#form aside .details .title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  main section#form aside .details > .content {
    margin: 25px 0;
  }

  main section#form aside .details > .content * {
    font-size: 16px;
  }

  main section#form aside .details > .content ul {
    margin: 30px 0;
  }

  main section#form aside .details .detail-wrapper {
    gap: 30px;
  }

  main section#form aside .details .detail-wrapper .detail {
    gap: 40px;
  }

  main section#form aside .details .detail-wrapper .detail .info > p {
    font-size: 18px;
  }

  main section#form aside .details .detail-wrapper .detail .info .content * {
    font-size: 20px;
  }

  main section#form aside .details .map-link {
    margin-left: 72px;
  }

  main section#form aside .map iframe,
  main section#form aside .map .img-container,
  main section#form aside .image iframe,
  main section#form aside .image .img-container {
    height: 30vw;
  }

  main section#form form {
    padding: 50px 45px;
    padding-bottom: 60px;
  }

  main section#form form .title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  main section#form form .policy {
    margin: 20px 0;
  }

  main section#form form button {
    margin-top: 40px;
  }
}
