* {
  margin:0;
  padding:0;
  box-sizing: border-box;
}
body{
  font-family: "Poppins",sans-serif;
}
:root{
   --el-color:#333;

}
h1,
h2,
h3,
h4,
a,
p {
  color: var(--el-color);
}
a{
  text-decoration: none;
}
h1{
  font-size:2.5rem;
}
h2{
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}
h3{
  font-weight:600;
}
p{
  font-weight: 300;
}
i{
  color:#eb7620;
}
.m-t{
  margin-top: 150px;
}
.m-b {
  margin-bottom: 100px;
}
.container {
  width: 70%;
  margin: auto;
  text-align: center;
}
/* Header Section */
nav{
  height: 100px;
}
nav h2{
  float: left;
  display: inline;
  line-height: 100px;
}
nav ul{
  float: right;
  line-height: 100px;
}
nav ul li{
 display: inline-block;
 margin: 0 25px;
}

nav ul li a {
  text-transform: uppercase;
}

.active{
   background-color: #eb7620;
   border-radius: 20px;
   padding: 7px 25px;
   color:#fff;

}

/* Showcase Area */

.Showcase {
  height: calc(100vh - 100px);
  background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
     url("img/mkb\ \(1\).jpg");
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 10px solid #eb7620;
}

.Showcase-content h1 {
  color: #fff;
  letter-spacing: 2px;
  
}
.Showcase-content p {
  margin: 50px 0;
  color: #fff;
}
.Showcase-content {
  width: 50%;
  margin: auto;
  text-align: center;
  transform: translateY(30yh);
}
.Showcase-content .btn {
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 60px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.5s all;
}
.Showcase-content .btn:hover {
  background-color: #eb7620;
  border: 0;
}
/* About */
.about .about-image{
  width: 45%;
  float: left;
}
.about-wrapper img {
  max-width: 100%;
  height: auto; 
}
.about .about-content {
  width: 45%;
  float: right;
  text-align: left;
  margin-top: 60px;

}
.about .line{
  width: 15px;
  height: 6px;
  margin-top: 50px;
  background-color: 50px;
}
.about p{
  margin-top: 50px;
}
.about ul{
  margin-top: 50px;
  list-style: none;
}
.about ul li {
  margin: 10px 0;
}
.about.fa-li {
  margin-left: -20px;
}
.social-icon {
  margin-top: 50px;
}
.social-icon i {
  padding: 10px;
  font-size: 30px;
  border: 1px solid black;
}