/** POPPINS:>> Bold, SemiBold, Regular **/
@font-face {
  font-family: "Poppins-Bold";
  src: url("../../fonts/Poppins/Poppins-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../../fonts/Poppins/Poppins-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("../../fonts/Poppins/Poppins-Regular.ttf");
  font-display: swap;
}
/** NUNITO:>> Bold **/
@font-face {
  font-family: "Nunito-Bold";
  src: url("../../fonts/Nunito/Nunito-Bold.ttf");
  font-display: swap;
}
/** RALEWAY:>> Regualar **/
@font-face {
  font-family: "Raleway-Regular";
  src: url("../../fonts/Raleway/Raleway-Regular.ttf");
  font-display: swap;
}

:root {
  /* Theme Color */
  --theme-color: #ea4517;

  /* Poppins Font */
  --poppins-bold: "Poppins-Bold";
  --poppins-semibold: "Poppins-SemiBold";
  --poppins-regular: "Poppins-Regular";

  /* Nuntio Font */
  --nunito-bold: "Nunito-Bold";

  /* Raleway */
  --raleway: "Raleway-Regular";
}

p {
  line-height: 1.5;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
/* Banner (Main hero img)*/
.main-banner {
  height: 675px;
}
/* Background Img */
.homepage-banner::after {
  content: "";
  background: linear-gradient(rgb(0 0 0 / 42%), rgb(0 0 0 / 56%)),
    url("../../images/homepage/digital-marketing.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 678px;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: -1;
}

/* Section 1 (Creative Place) */
.creative-place {
  background: url("../../images/homepage/creativeplace-bg.png") no-repeat center
    center/cover;
  padding: 50px 0px;
  text-align: center;
}
.creative-place img {
  width: 258px;
  height: 214px;
}
.creative-place h2 {
  font-family: var(--poppins-semibold);
  font-size: 28px;
  color: #383838;
  margin-bottom: 30px;
}
.creative-place p:nth-child(3) {
  font-family: var(--poppins-bold);
  margin-bottom: 20px;
}
.creative-place p {
  font-family: var(--poppins-regular);
  font-size: 14px;
  color: #6e6e6e;
}

/* Section 2 (Strategy) */
.strategy {
  background: linear-gradient(rgb(234 69 23 / 0.9), rgb(234 69 23 / 0.9)),
    url("../../images/homepage/strategy-bg.jpg") no-repeat left center/cover;
}
/*  Section 5 (Web Development) */
.web-development {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url("../../images/homepage/web-development-bg.jpg") no-repeat center
      center/cover;
  padding: 50px 0px;
}
.development-img {
  text-align: center;
}
.web-development img {
  width: 280px;
  height: 231px;
  margin-top: 30px;
}
.web-development h2 {
  font-family: var(--poppins-semibold);
  color: #fff;
}
.web-development p {
  color: #fff;
}
/* Section 6 */
.hire {
  background-color: var(--theme-color);
  padding: 50px 0px;
  text-align: center;
}
.hire h3 {
  font-family: var(--poppins-semibold);
  font-size: 25px;
  color: #fff;
  margin-bottom: 35px;
}
.hire p {
  color: #fff;
  margin-bottom: 50px;
}
.hire a {
  background-color: #fff;
  color: var(--theme-color);
  margin: 0 auto;
}
.hire a:hover{
  background-color: rgba(255, 255, 255, 0.774);
}
@media only screen and (min-width: 768px) {
  /* Banner*/
  .hero-wrapper {
    top: 60%;
  }
  /* Section 1 (Creative Place)*/
  .creative-place img {
    width: 258px;
    height: 214px;
  }
  .creative-place h2 {
    font-size: 35px;
  }
  .creative-place p {
    width: 75%;
    font-size: 16px;
    margin: 0 auto;
  }
  /* Section 5 (Web Development) */
  .development-content.card5-col p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1024px) {
  /* Section 5 (Web Development) */
  .web-development img {
    width: 400px;
    height: 300px;
  }
  .development-content.card5-col p {
    font-size: 16px;
  }
  /* Section 6 */
  .hire-container {
    width: 792px;
  }
}
