/* universal selector */
* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/*  */
header {
  width: 1920px;
  margin: auto 0;
  background-size: cover;
  background-position: center center;
  height: 453px;
  position: relative;
}

/* navbar start */
.container {
  padding-top: 2.2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.nav {
  background-color: #333;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  overflow: hidden;
}
nav li {
  display: inline-block;
  margin-right: 10px;
}
nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  text-transform: uppercase;
}
nav li a:hover {
  color: #f9ae49;
}
nav li a.active {
  color: #f9ae49;
}
/* navbar end */

/* contact-form start here */
.contact-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(14%, -52%);
  width: 430px;
  height: 170px;
  font-family: "Helvetica Neue", sans-serif;
}
.input-name-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 7px;
  margin-top: 8px;
}
input::placeholder {
  color: #000000;
  opacity: 0.8;
}
.title-line-height {
  line-height: 1.2;
  margin-top: 5px;
}
.contact-form h3 {
  color: #ffffff;
  font-weight: bolder;
  font-size: 28px;
}
.contact-form small {
  color: #000000;
  display: block;
  line-height: -5px;
  font-size: 12px;
  font-weight: 500;
}
.textarea-color {
  background-color: #f9ae49;
  border: none;
  padding: 4px;
  margin-bottom: 5px;
  font-size: 15px;
  color: #000000;
  flex: 1;
  margin-right: 10px;
}
.email-width {
  width: 96%;
}
.image-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.image-container img {
  margin-left: 15px;
  max-width: 100%;
  height: auto;
}
/* contact-form end */

/* main start */
main {
  background: url(/img/footer-dotted-middle.png);
  background-repeat: no-repeat;
  background-position: center top 50px;
  width: 1900px;
  transform: translate(1%, 9%);
}
.lets-print {
  margin: auto 59%;
  display: block;
  transform: translate(1%, -30%);
}
/* main end */

/* footer start */
.footer-dashed-img {
  background: url(/img/footer-dotted.png);
  width: 1920px;
  margin: auto 0;
  height: 50px;
  overflow: hidden;
}
.footer-background {
  background: url(/img/bg-jean.png);
  width: 1920px;
  margin: auto 0;
  height: 220px;
  display: grid;
  place-items: center;
}
.footer-row {
  width: 80%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 50px 30px;
}
.about-left {
  padding-top: 1.5rem;
}
.about-left p {
  color: #ffffff;
  font-size: 12px;
  padding-top: 12px;
}
.follow-us-middle {
  padding-top: 1.5rem;
}
.call-or-find-right {
  padding-top: 1.5rem;
}
.address {
  display: flex;
  padding: 12px 5px;
  color: #ffffff;
  font-size: 12px;
  gap: 15px;
}
.address-p {
  width: 138px;
}
strong {
  color: white;
  font-size: 12px;
  margin-left: 10px;
}
.footer-last-dashed-img {
  margin-top: 20px;
  margin-bottom: 30px;
}
.footer-last-dashed-img img {
  margin-right: 45px;
}
.footer-dotted-vertical {
  width: 5px;
  padding-top: 40px;
}
.footer-social-media {
  display: flex;
  width: 130%;
}
/* footer end */

/******************** Media Query*******************/
@media (max-width: 1150px) {
  header {
    width: 1150px;
  }
  .bg-home {
    width: 1150px;
    content: url("/img/bg-home.png");
  }
  .contact-form {
    transform: translate(14%, -45%);
  }
  .contact-form h3 {
    font-size: 24px;
  }
  .contact-form small {
    font-size: 11px;
  }
  form {
    width: 420px;
    height: 100px;
    margin-top: 8px;
  }
  .input-name-flex {
    flex-wrap: nowrap;
    margin-bottom: 5px;
    margin-top: 6px;
    overflow: hidden;
  }
  .email-width {
    width: 406px;
  }
  .image-container {
    margin-top: 10px;
  }
  main {
    width: 1150px;
    background-size: contain;
    transform: translate(0%, 17%);
  }
  .lets-print {
    transform: translate(7%, -40%);
    margin-right: 25px;
  }

  .footer-background {
    width: 1150px;
  }
  .footer-row {
    width: 95%;
  }
  .footer-dashed-img {
    width: 1150px;
  }
  .footer-last-dashed-img img {
    margin-right: 10px;
  }
}

@media (max-width: 500px) {
  #content {
    transform: scale(0.31);
    transform-origin: top left;
  }
}
