.hero {
  height: 58vh;
  width: 100%;
  background: url("../image/group.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.hero_content {
  color: #fff;
  height: 100%;
  width: 100%;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: rgba(24, 28, 38, 0.76);
  padding: 8rem 1rem;
}

@media (max-width: 639px) {
  .hero_content {
    padding: 4.5rem 1rem;
  }
}

.hero_content h1 {
  margin-top: 6rem;
  font-size: 7rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.7rem;
}

@media (max-width: 639px) {
  .hero_content h1 {
    font-size: 4rem;
    font-weight: 600;
  }
}

.hero_content .path {
  font-size: 1.7rem;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero_content .path span {
  color: #289aff;
}

.hero_content .path a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.24s;
  transition: all 0.24s;
}

.hero_content .path a:hover {
  color: #289aff;
  text-decoration: underline;
}

.contact_box_container {
  padding: 7rem 0;
}

@media (max-width: 639px) {
  .contact_box_container {
    padding: 4rem 0;
  }
}

.contact_box_container .single_box {
  height: 25rem;
  padding: 3rem;
  margin: 1.4rem;
  background: #eee;
  word-wrap: break-word;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.02);
  -webkit-transition: all 0.32s;
  transition: all 0.32s;
}

.contact_box_container .single_box_icon {
  color: #444;
  font-size: 4rem;
  padding-bottom: 1.5rem;
}

.contact_box_container .single_box_body h2 {
  color: #444;
  font-size: 2.4rem;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  -webkit-transition: 0.34s;
  transition: 0.34s;
}

.contact_box_container .single_box_body p {
  color: #666;
  font-size: 1.8rem;
  font-family: 'Open Sans', sans-serif;
  -webkit-transition: 0.34s;
  transition: 0.34s;
}

.contact_box_container .single_box:hover {
  background: #222;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.17);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.17);
}

.contact_box_container .single_box:hover .single_box_icon {
  color: #ccc;
}

.contact_box_container .single_box:hover .single_box_body h2 {
  color: #92d60a;
}

.contact_box_container .single_box:hover .single_box_body p {
  color: #fff;
}

@media (max-width: 991px) {
  .contact_box_container .single_box {
    height: 20rem;
    padding: 1.5rem;
    margin: 0;
  }
  .contact_box_container .single_box .single_box_icon {
    font-size: 2.4rem;
  }
  .contact_box_container .single_box .single_box_body h2 {
    font-size: 1.9rem;
  }
  .contact_box_container .single_box .single_box_body p {
    font-size: 1.6rem;
  }
}

@media (max-width: 639px) {
  .contact_box_container .single_box {
    margin: 0.7rem;
  }
}

.contact_form {
  padding: 8rem 0;
  background: #fdfdfd;
}

@media (max-width: 639px) {
  .contact_form {
    padding: 4rem 0;
  }
}

.contact_form .working_hour h1 {
  color: #46b8ff;
  font-size: 3rem;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.8;
}

.contact_form .working_hour p {
  color: #555;
  font-size: 1.8rem;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}

.contact_form .working_hour .timing ul li {
  font-size: 1.8rem;
  margin: 1.4rem 0;
}

@media (max-width: 639px) {
  .contact_form .form_container {
    padding: 2rem 0;
  }
}

.contact_form .form_container h2 {
  color: #555;
  font-size: 2.7rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
}

.contact_form .form_container h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 7rem;
  background: #1e90ff;
}

.contact_form .form_container .form_row {
  margin: 0.5rem 0;
}

@media (max-width: 991px) {
  .contact_form .form_container .form_row {
    margin: 0;
  }
}

.contact_form .form_container .form_row input,
.contact_form .form_container .form_row textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  color: #333;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.7px;
  outline: none;
  border: 1.8px solid #ddd;
  border-radius: 4px;
  caret-color: #1e90ff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin: 1rem;
}

.contact_form .form_container .form_row input:hover,
.contact_form .form_container .form_row textarea:hover {
  border-color: #999;
}

.contact_form .form_container .form_row input:focus,
.contact_form .form_container .form_row textarea:focus {
  border-color: #9ce014;
}

.contact_form .form_container .form_row input.message,
.contact_form .form_container .form_row textarea.message {
  height: 13rem;
  max-height: 16rem;
}

.contact_form .form_container .form_row button {
  padding: 12px 14px;
  color: #111;
  font-size: 1.7rem;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  background:#1e90ff;
  outline: none;
  border: none;
  -webkit-transition: 0.24s;
  transition: 0.24s;
}

.contact_form .form_container .form_row button:hover {
  color: #fff;
  background: #333;
}

.contact_form .form_container .form_row button:active {
  background: #000;
}
/*# sourceMappingURL=contact.css.map */