* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: 62.5%;
}

body {
  color: white;
}

h1 {
  color: #323e48;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
}

h2 {
  color: #323e48;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

h3 {
  color: #323e48;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
}

h4 {
  color: #323e48;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}

h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}

h6 {
  color: #323e48;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

p {
  color: #323e48;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}

ul {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  text-decoration: none;
}

a {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

a, p a {
  color: #020202;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
}

a:hover, p a:hover {
  color: #020202;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: #020202;
}

section {
  width: 89%;
  margin: auto;
}

.contact_us {
  background-color: #323e48;
}

.contact_us .contact_us-container {
  width: 80%;
  margin: auto;
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact_us .contact_us-container-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 0 20px 0;
}

.contact_us .contact_us-container-col p {
  text-align: center;
  color: white;
  font-size: 20px;
}

.contact_us .contact_us-container-col i {
  font-size: 20px;
  color: white;
  margin-right: 10px;
  margin-top: 5px;
}

@media screen and (max-width: 800px) {
  .contact_us .contact_us-container-col:first-child {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .contact_us .contact_us-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.nav-main {
  width: 100%;
  background: #323e48;
  height: 70px;
  padding: 0 5%;
}

.nav-main .logo {
  float: left;
}

.nav-main .logo img {
  height: 25px;
  max-width: 100%;
  margin-top: 23px;
}

.nav-main .logo h5 {
  font-size: 26px;
  padding-top: 18px;
}

.nav-main a {
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.8rem;
}

.nav-main-menu {
  float: right;
}

.nav-main-menu-box {
  display: inline-block;
  padding: 0;
}

.nav-main-menu-box-item {
  display: inline-block;
  padding: 28px 30px 22px 30px;
}

.nav-main-menu-box-item:hover {
  background-color: #475866;
}

.nav-content {
  position: absolute;
  top: 70px;
  overflow: hidden;
  background-color: #323e48;
  max-height: 400;
  display: none;
}

.nav-content.open {
  display: block;
}

.nav-content-sub {
  padding: 0px;
}

.nav-content-sub a {
  display: inline-block;
  padding: 20px 30px;
}

.nav-content-sub a:hover {
  background-color: #475866;
}

.nav-expand {
  display: none;
}

@media screen and (max-width: 1024px) {
  .nav-main .nav-main-menu {
    display: none;
  }
  .nav-main .hamburger {
    float: left;
    padding: 22px 30px 19px 30px;
    cursor: pointer;
  }
  .nav-main .hamburger .line {
    width: 24px;
    height: 3px;
    background-color: white;
    margin: 5px;
    border-radius: 2px;
  }
  .nav-main .hamburger:hover {
    background-color: #475866;
  }
  .nav-main .hamburger:focus {
    background-color: #475866;
    outline: none;
  }
  .nav-main .hamburger:focus ~ .nav-expand {
    display: inline;
  }
  .nav-main .logo {
    float: none;
    max-width: 152px;
    margin: auto;
  }
  .nav-expand {
    position: absolute;
    top: 70px;
    left: 0px;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background-color: #323e48;
    text-decoration: none;
  }
  .nav-expand-item {
    display: block;
    padding: 20px;
    padding-left: 85px;
  }
  .nav-expand-item:hover {
    background-color: #475866;
  }
  .nav-expand-item-sub {
    display: block;
    padding: 15px;
    padding-left: 80px;
  }
  .nav-expand-item-sub:hover {
    background-color: #475866;
  }
  .nav-expand.open {
    display: inline;
  }
}

@media screen and (max-width: 500px) {
  .nav-main {
    padding: 0 20px;
  }
  .nav-main .hamburger {
    padding: 22px 10px 19px 10px;
  }
  .nav-main .nav-expand {
    padding: 0;
  }
  .nav-main .nav-expand-sub {
    margin: 0;
  }
  .nav-main .nav-expand-item {
    padding-left: 35px;
  }
  .nav-main .logo {
    float: right;
  }
}

.index-container {
  background-image: url("../images/ACM.jpeg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  padding: 300px 8%;
}

.index-container h1 {
  text-align: center;
  color: white;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 700;
}

.index-container h2 {
  text-align: center;
  color: white;
}

.index-container .message_error_frontpage {
  text-align: center;
  padding: 16px;
  width: 50%;
  margin-top: 30px;
  margin-left: 25%;
  border: unset;
  background-color: #475866;
}

.index-container .default-form {
  padding: 0 5%;
}

.index-container .default-form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0 20px 0;
}

.index-container .default-form-container-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.index-container .default-form-container-col input {
  padding: 16px;
  margin-bottom: 12px;
  width: 90%;
  border: unset;
  font-weight: 700;
}

.index-container .default-form-container-col input::-webkit-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.index-container .default-form-container-col input:-ms-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.index-container .default-form-container-col input::-ms-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.index-container .default-form-container-col input::placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.index-container .default-form-container-col textarea {
  padding: 16px;
  margin-bottom: 12px;
  width: 90%;
  height: 86px;
  border: unset;
  font-weight: 700;
}

.index-container .default-form-container-col textarea::-webkit-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.index-container .default-form-container-col textarea:-ms-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.index-container .default-form-container-col textarea::-ms-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.index-container .default-form-container-col textarea::placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.index-container .default-form-container-col select {
  padding: 16px;
  margin-bottom: 12px;
  width: 90%;
  border: unset;
  font-weight: 700;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

.index-container .default-form-container-col select::-webkit-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.index-container .default-form-container-col select:-ms-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.index-container .default-form-container-col select::-ms-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.index-container .default-form-container-col select::placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.index-container .default-form-container-col input[type=button], .index-container .default-form-container-col input[type=submit], .index-container .default-form-container-col input[type=reset] {
  padding: 16px;
  margin-bottom: 12px;
  width: 90%;
  border: unset;
  font-weight: 700;
  background-color: #20c6af;
  color: white;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .index-container .default-form-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .index-container .default-form-container-col {
    padding: 0;
  }
  .index-container .default-form-container-col input, .index-container .default-form-container-col textarea, .index-container .default-form-container-col select, .index-container .default-form-container-col input[type=button], .index-container .default-form-container-col input[type=submit], .index-container .default-form-container-col input[type=reset] {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .index-container {
    padding: 200px 8%;
  }
}

.body-container-homes {
  padding: 50px 2%;
}

.body-container .homes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1500px;
}

.body-container .homes-home {
  width: 400px;
}

.body-container .homes-home img {
  width: 400px;
  padding-right: 20px;
}

.body-container .default-form {
  padding: 0;
}

.body-container .default-form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px 0;
}

.body-container .default-form-container-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.body-container .default-form-container-col input {
  background-color: lightgrey;
  padding: 12px;
  margin-bottom: 12px;
  width: 90%;
  border: unset;
  font-weight: 700;
}

.body-container .default-form-container-col input::-webkit-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.body-container .default-form-container-col input:-ms-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.body-container .default-form-container-col input::-ms-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.body-container .default-form-container-col input::placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.body-container .default-form-container-col select {
  background-color: lightgrey;
  padding: 12px;
  margin-bottom: 12px;
  width: 90%;
  border: unset;
  font-weight: 700;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

.body-container .default-form-container-col select::-webkit-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.body-container .default-form-container-col select:-ms-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.body-container .default-form-container-col select::-ms-input-placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.body-container .default-form-container-col select::placeholder {
  color: black;
  font-family: 'Poppins', sans-serif;
}

.body-container .default-form-container-col input[type=button], .body-container .default-form-container-col input[type=submit], .body-container .default-form-container-col input[type=reset] {
  padding: 12px;
  margin-bottom: 12px;
  width: 90%;
  border: unset;
  font-weight: 700;
  background-color: #20c6af;
  color: white;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .body-container .default-form-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .body-container .default-form-container-col {
    padding: 0;
  }
  .body-container .default-form-container-col input, .body-container .default-form-container-col textarea, .body-container .default-form-container-col select, .body-container .default-form-container-col input[type=button], .body-container .default-form-container-col input[type=submit], .body-container .default-form-container-col input[type=reset] {
    width: 100%;
  }
}

.footer-container {
  background: #323e48;
}

.footer-container p, .footer-container a {
  color: white;
}

.footer-container a:hover {
  color: #d1d1d1;
}

footer {
  width: 84%;
  padding: 60px 0 65px 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

footer .col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px;
}

footer img {
  height: 40px;
  max-width: 100%;
  margin-bottom: 20px;
}

footer .footer_marg_bottom {
  margin-bottom: 20px;
}

footer .social {
  margin-right: 10px;
}

@media screen and (max-width: 900px) {
  footer img {
    height: 20px;
  }
}

@media screen and (max-width: 700px) {
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer img {
    height: 40px;
  }
  footer .col {
    padding-bottom: 0px;
  }
}
/*# sourceMappingURL=style.css.map */