/* 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 */

/* screenprinting logo */
.promotional-logo-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-2%, -65%);
  width: 430px;
  height: 135px;
}
/* main start */
main {
  height: 400px;
  width: 1500px;
  transform: translate(-1%, -29%);
}
.wrapper {
  background: url(/img/footer-dotted-middle.png);
  background-repeat: no-repeat;
  background-position: center top 50px;
  transform: translate(10%, 159%);
  height: 207px;
  margin-bottom: 20px;
}
.layout {
  display: grid;
  place-items: center;
  transform: translate(-3%, -58%);
}
.row {
  width: 80%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
.promo-img-first img {
  transform: translate(51%, -4%);
}
.promo-description-last p {
  font-size: 12px;
  color: rgb(16, 16, 129);
}
.quote {
  display: flex;
  transform: translate(103%, -77%);
}
.quote-desc {
  margin-left: 5px;
  margin-right: 5px;
}
.quote-desc p {
  font-size: 12px;
  color: rgb(16, 16, 129);
}
.quote-name {
  transform: translate(-5%, 43%);
}

/* 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;
  gap: 15px;
  padding: 12px 5px;
  color: #ffffff;
  font-size: 12px;
}
.address-p {
  width: 138px;
}
.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: 980px) {
  header {
    width: 980px;
  }
  .bg-home {
    width: 980px;
    content: url("/img/bg-home.png");
  }
  .promotional-logo-img {
    transform: translate(1%, -79%);
  }
  .promotional-logo-img img {
    height: 146px;
  }
  main {
    width: 970px;
    transform: translate(-5%, -29%);
    height: 370px;
  }
  .wrapper {
    transform: translate(0%, 140%);
  }
  .promo-img-first img {
    transform: translate(1%, -14%);
  }
  .promo-description-last {
    transform: translate(-33%, -8%);
  }
  .promo-description-last p {
    width: 530px;
  }
  .layout {
    transform: translate(-3%, -55%);
  }
  .quote {
    transform: translate(70%, -105%);
    width: 530px;
  }
  .quote-name {
    transform: translate(-33%, 70%);
    height: 60px;
  }

  .footer-background {
    width: 980px;
  }
  .footer-row {
    width: 95%;
  }

  .footer-dashed-img {
    width: 980px;
  }
  .footer-last-dashed-img img {
    margin-right: 10px;
  }
}
@media (max-width: 500px) {
  #content {
    transform: scale(0.372);
    transform-origin: top left;
  }
}
