* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/** 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;
}
.container {
  width: 90%;
  margin: 0 auto;
}
/* Theme Color Button link */
.theme-btn {
  background-color: var(--theme-color);
  color: #fff;
  width: 180px;
  height: 50px;
  font-family: var(--poppins-bold);
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  margin-top: 17px;
}
.theme-btn:hover {
  background-color: #ff5b2e;
}
/* For All Images */
section img {
  margin-bottom: 30px;
}

/* For Homepage 2th paragraph */
section p:nth-child(2) {
  font-family: var(--poppins-bold);
  margin-bottom: 20px;
}

/* For paragraph */
section p {
  font-family: var(--poppins-regular);
  font-size: 14px;
  line-height: 1.6;
}

/* for heading 2 */
section h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

/* Header */
header {
  padding-top: 23px;
  position: absolute;
  z-index: 1;
  width: 100%;
}
.header-container {
  width: 80%;
  margin: 0 auto;
}
/* Brand Log */
.brand-logo img {
  width: 80px;
  height: 45px;
}
/* Checklabel Menu */
#menu-label {
  display: none;
}
/* Input:checked */
.menu-tick {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  opacity: 0;
  margin: 29px;
  cursor: pointer;
}
/*Menu bar*/
.menu-bar {
  background-color: var(--theme-color);
  height: 42px;
  width: 42px;
  position: absolute;
  top: 5px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  margin: 20px;
  z-index: 2;
  border-radius: 5px;
}

/*Menu Bar 3 lines*/
.menu-bar > div {
  background-color: #fff;
  width: 100%;
  height: 2px;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/*Menu bar X lines*/
.menu-bar > div::before,
.menu-bar > div::after {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 8px;
}
.menu-bar > div::after {
  position: absolute;
  top: -8px;
}

/*Menu bar active*/
.menu-tick:checked + .menu-bar > div {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.menu-tick:checked + .menu-bar > div::before {
  top: 0px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.menu-tick:checked + .menu-bar > div::after {
  top: 0px;
}
.menu-tick:checked:hover + .menu-bar > div {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.menu-tick:checked ~ .nav-links {
  visibility: visible;
}
.menu-tick:checked ~ .nav-links > div {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 0.72s;
  -o-transition-duration: 0.72s;
  transition-duration: 0.72s;
}

/*Navigation links*/
.nav-links {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  overflow: hidden;
  z-index: 1;
}
.nav-links > div {
  background-color: rgba(0, 0, 0, 0.85);
  width: 200vw;
  height: 200vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.72s ease;
  -o-transition: all 0.72s ease;
  transition: all 0.72s ease;
  border-radius: 50%;
  overflow: hidden;
}
.nav-links > div nav ul li {
  list-style: none;
  margin-bottom: 25px;
}
.nav-links > div nav ul li a {
  font-family: var(--nunito-bold);
  font-size: 22px;
  color: #fff;
  text-decoration: none;
}
.nav-links > div nav ul li a:hover {
  color: rgb(230, 220, 220);
}

/* Banner (Main hero img)
Style appling on Homepage, Cotact-us,
*/
.main-banner {
  height: 608px;
  position: relative;
}
.hero-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
}
.main-banner h1 {
  font-family: var(--poppins-bold);
  font-size: 28px;
  color: #fff;
  text-align: center;
  margin-bottom: 38px;
}
.main-banner h1 span:nth-child(1) {
  display: block;
}
.main-banner h1 span:nth-child(2) {
  color: var(--theme-color);
}
.main-banner .hero-wrapper p {
  font-family: var(--raleway);
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.main-banner p:nth-child(3) {
  font-family: var(--poppins-bold);
  font-weight: bold;
  margin-top: 20px;
}

/* Section 2 (Strategy) */
.section2 {
  padding: 40px 0px;
}
.card2-img img {
  width: 270px;
  height: 225px;
}

.card2-content h2 {
  font-family: var(--poppins-bold);
  color: #fff;
}
.card2-content p {
  color: #fff;
}

/* Section 3(Content Marketing) */
.section3 {
  padding: 80px 0px 40px;
}
.card3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
/* Section 4(Social & PPC) */
.section4 {
  padding-bottom: 80px;
}

.section3 img,
.section4 img {
  width: 290px;
  height: 400px;
}
.section3 h2,
.section4 h2 {
  font-family: var(--poppins-bold);
  color: #383838;
}
.section3 p,
.section4 p {
  color: #6e6e6e;
}

/* Form */
.form-content {
  margin: 100px 0px 70px;
}
.form-content h2 {
  font-family: var(--poppins-semibold);
  color: #383838;
}
.form-content p {
  color: #6e6e6e;
}
.form-content address {
  margin-top: 50px;
}
.form-content address ul li {
  font-family: var(--poppins-bold);
  font-size: 14px;
  color: #6e6e6e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.form-content address ul li a {
  color: #6e6e6e;
}
.form-content address ul li svg {
  width: 30px;
  height: 30px;
  fill: #6e6e6e;
  margin-right: 20px;
}
.form label {
  display: none;
}
.form input {
  background-color: #f6f6f6;
  color: #6e6e6e;
  font-family: var(--poppins-regular);
  font-size: 14px;
  border: none;
  width: 278px;
  height: 53px;
  margin-bottom: 20px;
  padding-left: 29px;
  margin-right: 4px;
}
.form textarea {
  color: #6e6e6e;
  font-family: var(--poppins-regular);
  font-size: 14px;
  background-color: #f6f6f6;
  color: #6e6e6e;
  height: 160px;
  border: none;

  width: 278px;
  padding: 25px 10px 10px 29px;
}
.form .theme-btn {
  background-color: var(--theme-color);
  color: #fff;
  cursor: pointer;
}
.form .theme-btn:hover {
  background-color: #ea4517d9;
}
/* Footer */
footer {
  background-color: #171717;
  text-align: center;
  padding-top: 96px;
}
footer img {
  width: 80px;
  height: 45px;
  margin-bottom: 40px;
}
footer .footer-nav ul li {
  margin-bottom: 20px;
}
footer .footer-nav ul li a {
  font-family: var(--poppins-bold);
  font-size: 15px;
  color: #fff;
}
footer .footer-nav ul li a:hover {
  color: rgba(255, 255, 255, 0.774);
}
footer p {
  background-color: #141414;
  color: #a7a3a3;
  font-family: var(--poppins-regular);
  font-size: 15px;
  height: 120px;
  padding-top: 10px;
}
footer p a {
  color: var(--theme-color);
}

@media only screen and (min-width: 500px) {
  /* Banner */
  .main-banner h1 {
    font-size: 35px;
    margin-bottom: 50px;
  }
  .main-banner .hero-wrapper p {
    font-size: 18px;
  }
  section p:nth-child(2) {
    margin-bottom: 30px;
  }

  /* Making img center in homepage */
  .card2-img,
  .card3-img,
  .card4-img,
  .development-img {
    text-align: center;
  }
  /* Footer */
  footer .footer-nav ul li {
    display: inline-block;
    margin-right: 20px;
  }
}

@media only screen and (min-width: 768px) {
  /* for heading 2 */
  section h2 {
    font-size: 2.2rem;
  }
  section p {
    font-size: 1rem;
  }
  /* Header */
  header {
    padding-top: 43px;
  }
  .header-container {
    width: 90%;
  }
  /*Menu bar*/
  .menu-bar,
  .menu-tick {
    display: none;
  }
  .nav-links {
    display: unset;
    position: unset;
    width: 100%;
    height: 100%;
    visibility: unset;
    overflow: unset;
    z-index: 1;
  }
  .nav-links > div {
    background-color: unset;
    width: unset;
    height: unset;
    display: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    border-radius: unset;
  }
  /* Brand Logo */
  .brand-logo {
    float: left;
  }
  .main-menu {
    float: right;
  }
  .nav-links > div nav ul li {
    display: inline-block;
    margin: 15px 0px 0px 20px;
  }
  .nav-links > div nav ul li a {
    font-size: 18px;
  }
  header::after {
    content: "";
    display: block;
    clear: both;
  }

  /* Banner (Main hero img) */
  .hero-wrapper {
    top: 60%;
  }
  .main-banner h1 {
    font-size: 3.4rem;
    margin-bottom: 40px;
  }
  .main-banner .hero-wrapper p {
    width: 500px;
    margin: 0 auto;
  }
  .main-banner p:nth-child(3) {
    margin-top: 20px;
  }

  /* Section 2 (Strategy) */
  .card2-img,
  .card2-content {
    width: 50%;
  }
  .card2-img img {
    width: 310px;
    height: 250px;
    padding-right: 24px;
  }

  .card2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  /* Section 3(Content Marketing) */
  .card3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .card3-content,
  .card3-img {
    width: 50%;
  }

  /* Section 4(Social and PPC)*/
  .card4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .card4-content {
    width: 50%;
  }
  .card4-img {
    padding-right: 24px;
    width: 50%;
    text-align: left;
  }

  /* Section 5 (Web Development) */
  .card5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .card5-col {
    width: 50%;
  }
}

@media only screen and (min-width: 1024px) {
  .container {
    width: 950px;
  }
  /* Header */
  .header-container {
    width: 960px;
  }
  /* Nav Links- */
  .nav-links > div nav ul li {
    margin: 15px 0px 0px 45px;
  }
  /* Section 2 (Strategy) */
  .card2-img,
  .card4-img {
    text-align: left;
  }
  .card3-img,
  .development-img {
    text-align: right;
  }
  .card2-img img {
    width: 400px;
    height: 300px;
  }
  /* Section 3(Content Marketing) */
  .section3 img,
  .section4 img {
    width: 350px;
    height: 550px;
  }

  /* Section 7 form */
  .form-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .form-content {
    width: 45%;
  }
  .form {
    width: 60%;
    padding-left: 30px;
  }
  .form input {
    width: 250px;
  }
  .form input#about-business,
  .form textarea {
    width: 98%;
  }
}
