/* All Common CSS Strat */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a,
a:hover {
  text-decoration: none;
  display: inline-block;
}
ul,
ol {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  line-height: 0.8;
}
body {
  font-family: "Lato", sans-serif;
}
/* All Common CSS End */

/* Nav Bar Part CSS Strat */
.navbar {
  background: #121212;
  padding: 20px 0;
}
.nav-link {
  color: #959595;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 3%;
  margin: 0 20px;
  transition: 0.4s;
}
.nav-link:hover {
  color: #fd6f00;
}
.navBtn {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3%;
  background: #fd6f00;
  padding: 12px 40px;
  border-radius: 8px;
  border: 2px solid #fd6f00;
  transition: 0.4s;
}
.navBtn:hover {
  background: transparent;
  color: #959595;
  border: 2px solid #959595;
}
/* Nav Bar Part CSS End */
/* Banner Part CSS Start */
#bannerPart {
  background: #121212;
  padding-top: 100px;
  padding-bottom: 150px;
}
.bannerText h4 {
  color: #707070;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3%;
}
.bannerText h3 {
  color: #959595;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3%;
  padding-top: 15px;
  padding-bottom: 34px;
}
.bannerText h1 {
  background: linear-gradient(90deg, #984300 0%, #fd6f00 46%, #ca5900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 70px;
  font-weight: 900;
  letter-spacing: 3%;
  padding-bottom: 40px;
}
.socialIcon a {
  font-size: 20px;
  color: #bababa;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 2px solid #575757;
  padding-left: 5px;
  padding-top: 3px;
  transition: 0.4s;
  margin-right: 10px;
}
.socialIcon a:hover {
  color: #fd6f00;
  border: 2px solid #fd6f00;
}
.bannerBtn {
  padding-top: 60px;
  padding-bottom: 80px;
}
.marginRight {
  margin-right: 20px;
}
.bannerCounter {
  background: rgba(255, 255, 255, 4%);
  border-radius: 8px;
  padding: 24px;
  width: 90%;
}
.counter {
  border-right: 2px solid #959595;
  padding: 10px;
}
.cNone {
  border-right: none !important;
}
.counter h2 {
  color: #fd6f00;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 3%;
  padding-bottom: 20px;
}
.counter h4 {
  color: #dfdfdf;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3%;
}
.bannerImg img {
  margin-top: -115px;
  margin-left: 25px;
}
/* Banner Part CSS End */

/* Service Part CSS Start */
#servicePart {
  padding-bottom: 150px;
  background: #121212;
}
.mainTitle h2 {
  color: #fefefe;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 3%;
  padding-bottom: 25px;
}
.mainTitle p {
  color: #707070;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3%;
  padding-bottom: 60px;
}
.skill {
  padding: 34px;
  background: rgba(255, 255, 255, 4%);
  border-radius: 24px;
  transition: 0.4s;
}
.skill h3 {
  color: #fd6f00;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3%;
  padding-top: 25px;
  padding-bottom: 40px;
}
.skill p {
  color: #575757;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3%;
  line-height: 160%;
  width: 326px;
  margin: 0 auto;
}
.skill:hover {
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}
.spaces {
  margin-top: 30px;
}
/* Service Part CSS End */