* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.form-field {
  margin-bottom: 1.5rem;
  text-align: left;
}

fieldset {
  padding: 0;
  border: none;
}

label {
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
  font-weight: 900;
}

.frm_description {
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
  font-weight: 900;
}

.frm_button_submit {
  margin-top: 1rem;
  width: 13rem;
}

.frm_error_style {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 2rem;
  display: block;
  color: rgba(226, 68, 68, 0.813);
}

.frm_error {
  font-size: 0.8rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-top: 0.5rem;
  display: block;
  color: rgba(226, 68, 68, 0.813);
}

button {
  padding: 0.8rem 2rem;
  border-radius: 5px;
  background-color: #C39746;
  color: white;
  border: none;
  font-weight: 200;
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
}
button:hover {
  background-color: #ac853d;
  color: white;
  cursor: pointer;
}

input {
  width: 100%;
  display: block;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  background-color: rgba(28, 28, 28, 0.842);
  color: white;
  border: 1px solid #C39747;
}

textarea {
  width: 100%;
  display: block;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  background-color: rgba(28, 28, 28, 0.842);
  color: white;
  border: 1px solid #C39747;
}

h1 {
  font-family: Arial, sans-serif;
  color: white;
  font-size: 3rem;
  margin: 1rem 0;
  font-weight: 900;
}
h1 > * a, h1 > * strong {
  margin: 0;
  display: inline-block;
}

h2 {
  font-family: Arial, sans-serif;
  color: white;
  font-size: 2.8rem;
  margin: 1rem 0;
  font-weight: 900;
}
h2 > * a, h2 > * strong {
  margin: 0;
  display: inline-block;
}

h3 {
  font-family: Arial, sans-serif;
  color: white;
  font-size: 2.6rem;
  margin: 1rem 0;
  font-weight: 900;
}
h3 > * a, h3 > * strong {
  margin: 0;
  display: inline-block;
}

h4 {
  font-family: Arial, sans-serif;
  color: white;
  font-size: 2.4rem;
  margin: 1rem 0;
  font-weight: 900;
}
h4 > * a, h4 > * strong {
  margin: 0;
  display: inline-block;
}

h5 {
  font-family: Arial, sans-serif;
  color: white;
  font-size: 2.2rem;
  margin: 1rem 0;
  font-weight: 900;
}
h5 > * a, h5 > * strong {
  margin: 0;
  display: inline-block;
}

h6 {
  font-family: Arial, sans-serif;
  color: white;
  font-size: 2rem;
  margin: 1rem 0;
  font-weight: 900;
}
h6 > * a, h6 > * strong {
  margin: 0;
  display: inline-block;
}

p {
  font-family: "Open Sans", sans-serif;
  color: white;
  font-size: 1.1rem;
  margin: 1rem 0;
  font-weight: 100;
}
p > * a, p > * strong {
  margin: 0;
  display: inline-block;
}

strong {
  font-family: "Open Sans", sans-serif;
  color: white;
  font-size: 1.1rem;
  margin: 1rem 0;
  font-weight: 900;
  display: block;
}
strong > * a, strong > * strong {
  margin: 0;
  display: inline-block;
}

a {
  display: block;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  color: white;
  font-size: 1.1rem;
  margin: 1rem 0;
  font-weight: 100;
}
a > * a, a > * strong {
  margin: 0;
  display: inline-block;
}
a:hover {
  color: #C39746;
}

ul {
  font-family: "Open Sans", sans-serif;
  color: white;
  font-size: 1.1rem;
  margin: 1rem 0;
  list-style-position: inside;
  padding: 0;
}
ul li {
  font-weight: 100;
}
ul li > * a, ul li > * strong {
  margin: 0;
  display: inline-block;
}

ol {
  font-family: "Open Sans", sans-serif;
  color: white;
  font-size: 1.1rem;
  margin: 1rem 0;
  list-style-position: inside;
  padding: 0;
}
ol li {
  font-weight: 100;
}
ol li > * a, ol li > * strong {
  margin: 0;
  display: inline-block;
}

.wrapper {
  margin: 0 auto;
  max-width: 1080px;
}
@media only screen and (max-width: 1100px) {
  .wrapper {
    padding: 0 2rem;
  }
}
.wrapper--size-lg {
  max-width: 1500px;
}
@media only screen and (max-width: 1500px) {
  .wrapper--size-lg {
    padding: 0 2rem;
  }
}

.hero {
  width: 100%;
  display: block;
  background: radial-gradient(rgba(9, 9, 9, 0.918), rgba(9, 9, 9, 0.918)), url(./images/background.jpg?a106018e02e9140dcbdbd55fdee0a1b2);
  text-align: center;
}
.hero .wrapper {
  display: flex;
  align-items: center;
  min-height: inherit;
  width: inherit;
}
@media only screen and (max-width: 900px) {
  .hero .wrapper {
    padding: 0 2rem;
  }
}
.hero__inner {
  width: inherit;
}
.hero__inner > * {
  color: white;
  text-align: center;
}
.hero--size-lg {
  min-height: 100vh;
}
.hero--size-md {
  min-height: 70vh;
}

.btn-primary {
  padding: 0.8rem 2rem;
  border-radius: 5px;
  background-color: #C39746;
  color: white;
}
.btn-primary:hover {
  background-color: #ac853d;
  color: white;
  cursor: pointer;
}

.header {
  background-color: #1f1f1f;
  color: white;
  position: absolute;
  width: 100%;
  border-bottom: 2px solid #C39746;
  height: 106px;
}
.header .wrapper {
  display: flex;
  align-items: center;
  height: inherit;
}
.header__logo {
  height: auto;
}
@media only screen and (max-width: 845px) {
  .header__logo {
    width: 100%;
  }
}
.header__logo a, .header__logo span {
  height: auto;
}
@media only screen and (max-width: 450px) {
  .header__logo a img, .header__logo span img {
    width: 100%;
    height: auto;
  }
}
.header__nav {
  padding-left: 2rem;
  width: 100%;
}
@media only screen and (max-width: 845px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
}
.header__nav ul li {
  margin-right: 1rem;
}
.header__nav ul li:nth-last-of-type(1) {
  margin-right: 0;
}
.header__nav ul li a {
  color: white;
}
.header__nav-mobile-toggle {
  display: none;
  margin-left: 2rem;
}
.header__nav-mobile-toggle button {
  margin-left: auto;
  display: block;
}
@media only screen and (max-width: 845px) {
  .header__nav-mobile-toggle {
    display: block;
  }
}

.header-btn-right {
  margin-left: auto;
}

.header-btn-primary a {
  padding: 0.8rem 2rem;
  border-radius: 5px;
  background-color: #C39746;
  color: white;
}
.header-btn-primary a:hover {
  background-color: #ac853d;
  color: white;
  cursor: pointer;
}

.header-spacer {
  display: block;
  width: 100%;
  height: 102px;
}

.mobile-navmenu {
  background-color: #232323;
  padding: 2rem;
}
.mobile-navmenu ul {
  list-style: none;
}
.mobile-navmenu ul li i {
  margin-right: 0.8rem;
  font-size: 1.3rem;
  color: #E5BF78;
}
.mobile-navmenu ul .header-btn-right {
  margin-top: 2rem;
}

.footer {
  background-color: #202020;
  border-top: 4px solid #C39746;
}
.footer__content {
  padding: 2rem 0 4rem 0;
}
.footer__content .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 900px) {
  .footer__content .wrapper {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 900px) {
  .footer__content .wrapper > * {
    width: 50%;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 600px) {
  .footer__content .wrapper > * {
    width: 100%;
  }
}
.footer__content-col strong {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  margin-bottom: 2rem;
}
.footer__content-col ul {
  list-style: none;
}
.footer__content-col ul li {
  margin-bottom: 1rem;
  font-weight: 100;
  display: flex;
  align-items: center;
  line-height: 1;
}
.footer__content-col ul li i {
  margin-right: 0.8rem;
  font-size: 1.3rem;
  color: #E5BF78;
}
.footer__content-col ul li a {
  margin: 0;
}
.footer__copyright {
  text-align: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.25);
}
.footer__copyright > * {
  font-size: 0.9rem;
  color: white;
  margin: 0;
}

.home .homepage-section-header > * {
  color: #E2E2E2;
  margin: 0 0 4rem 0;
}
.home .hero__inner > img {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 520px) {
  .home .hero__inner > img {
    width: 100%;
    height: auto;
  }
}
.home .about-us {
  padding: 5rem 0;
  text-align: center;
  background-color: #111111;
  border-top: 4px solid #C39746;
  border-bottom: 4px solid #C39746;
}
.home .about-us__content-row {
  display: flex;
  justify-content: space-evenly;
}
@media only screen and (max-width: 900px) {
  .home .about-us__content-row {
    flex-wrap: wrap;
  }
}
.home .about-us__content-row > * {
  width: 30%;
}
@media only screen and (max-width: 900px) {
  .home .about-us__content-row > * {
    width: 50%;
    padding: 2rem;
  }
  .home .about-us__content-row > *:nth-last-child(1) {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 600px) {
  .home .about-us__content-row > * {
    width: 100%;
  }
}
.home .about-us__card {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1500px) {
  .home .about-us__card {
    padding: 1rem;
  }
}
.home .about-us__card > * {
  color: rgb(226, 226, 226);
}
.home .about-us__card a, .home .about-us__card h3 {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  font-family: Arial, sans-serif;
}
.home .about-us__card i {
  color: #C39746;
  font-size: 2.5rem;
  border: 2px solid #C39746;
  border-radius: 50px;
  width: 5rem;
  height: 5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 2rem 0;
}
.home .about-us__card p {
  display: block;
}
.home .projects {
  background: linear-gradient(to bottom right, #292929, #070707);
  padding: 6rem 0;
  text-align: center;
  box-shadow: #070707;
}
.home .projects__content {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 900px) {
  .home .projects__content {
    flex-direction: column;
    align-items: center;
  }
}
.home .projects__content > * {
  margin: 0 1rem;
}
@media only screen and (max-width: 900px) {
  .home .projects__content > * {
    margin: 0 0 4rem 0;
  }
}
.home .projects .projects-card {
  text-align: left;
  background-color: #232323;
  border-radius: 10px;
  width: 400px;
  box-shadow: rgba(7, 7, 7, 0.601) 0px 7px 29px 0px;
  display: grid;
  grid-template-rows: 1fr 2fr;
  height: 500px;
}
@media only screen and (max-width: 450px) {
  .home .projects .projects-card {
    width: 100%;
    height: auto;
  }
}
.home .projects .projects-card img {
  border-radius: 10px 10px 0 0;
  height: 200px;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 450px) {
  .home .projects .projects-card img {
    width: 100%;
    height: 150px;
  }
}
.home .projects .projects-card__info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.home .projects .projects-card__info h3 {
  font-size: 1.5rem;
  color: #e9e9e9;
}
@media only screen and (max-width: 450px) {
  .home .projects .projects-card__info h3 {
    margin: 0;
  }
}
.home .projects .projects-card__info p {
  font-size: 1rem;
  color: #E2E2E2;
}
@media only screen and (max-width: 450px) {
  .home .projects .projects-card__info p {
    font-size: 0.9rem;
  }
}
.home .projects .projects-card__info a {
  color: #E5BF78;
  margin: auto 0 1rem 0;
  text-align: right;
}
@media only screen and (max-width: 450px) {
  .home .projects .projects-card__info a {
    margin: auto 0 0 0;
  }
}
.home .projects .projects-card__info a i {
  margin-left: 0.5rem;
}

.page .content {
  border-top: 2px solid #C39746;
  background-color: #161616;
  padding: 4rem 0;
}

.contact-us .wrapper {
  padding: 3rem unset;
}
.contact-us h1 {
  margin-bottom: 3rem;
}

.single .hero__inner p {
  font-size: 1rem;
}
.single .content {
  background-color: #161616;
  padding: 4rem 0;
  border-top: 2px solid #C39746;
}
