@import url('http://fonts.cdnfonts.com/css/bank-gothic');
section{
  
    font-family: 'Bank Gothic', sans-serif;
    color: white;
}
body{
  background-color: #272727;
}
.projects {
  float: left;
  width: 100%;
  /* background-color: #f1eeed; */
  
  background-color: #272727;
  padding: 50px 0 0 54px;
}

.projects h2 {
  color: #000000;
  font-size: 38px;
  line-height: 72px;
  margin: 0 !important;
}
.projects p {
  color: #000000;
  font-size: 16px;
  line-height: 23px;
  width: 570px;
  padding: 10px 0 60px 0;
  margin: 0 !important;
}

.projects.projects-box {
  float: left;
  width: 100%;
  padding: 0 0 150px 0;
}
.projects.projects-box.pj-box {
  float: left;
  width: 100%;
  box-shadow: 0px 13px 6px 0px rgb(222, 222, 222);
  margin: 0 0 30px 0;
  background: #fff;
  /* height: 100%; */
}
.projects.projects-box.pj-img {
  float: left;
  width: 100%;
}
.projects.projects-box img {
  /* // object-fit: contain; */
  width: 100%;
  /* // height: 100%; */
}

.projects.projects-box.pj-text {
  float: left;
  width: 100%;
  height: 50px;
}
.projects.projects-box h3 {
  font-size: 14px;
  line-height: 17px;
  margin: 0 !important;
  font-weight: 900;
  text-align: center;
  padding: 15px 0px 15px 0px;
}

.pj-box {
  position: relative;
  /*box-shadow: 0px 13px 6px 0px rgb(222, 222, 222);*/
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0 0 0 / 60%);
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: 0.5s ease;
}

.pj-box:hover .overlay {
  width: 100%;
}

.text {
  color: #000;
  font-size: 20px;
  position: absolute;
  top: 64%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* // white-space: nowrap; */
  height: 250px;
}
.text h4 {
 color: #f9f7f7;
    font-size: 14px;
    line-height: 17px;
    font-weight: 900;
    text-align: left;
    padding: 2px 0 25px 10px;
    text-transform: uppercase;
    margin: 0 !important;
}


.text p {
  color: #fcfdfa;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
  width: 270px;
  font-family: Avenir-bold;
  padding: 0 0 5px 10px;
  margin: 0 !important;
}
.pj-know {
  position: absolute;
  width: 100%;
  bottom: 0px;
  /* //   height: 60px; */
}
.pj-know a {
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  margin: 0 !important;
  height: 60px;
  padding: 22px 0 13px 38px;
  background-color: #d45900;
  float: left;
  width: 100%;
  font-family:Avenir-bold;
  text-decoration: none;
}
.pj-know a:hover {
  color: #fff;
  text-decoration: underline;
}

.pj-know span {
  float: right;
  padding: 0 30px 0 0;
}

.mar-pr {
  margin: 0 0 20px 0;
}
/* our project ends */

/* projects starts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navheader {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 6rem;
  padding-bottom: 1rem;
  transition: 0.5s ease;
  /* background-color: rgba(247, 171, 7, 0.205); */
}

 .brand {
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
 .brand span {
  color: rgb(212, 10, 10);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  
}

.navheader .navigation {
  position: relative;
}

.navheader .navigation .navigation-items a {
  position: relative;
  color: rgb(250, 250, 250);
  font-size: 1.3em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}

.navheader .navigation .navigation-items a:before {
  content: "";
  position: absolute;
  background: rgb(235, 15, 15);
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

.navheader .navigation .navigation-items a:hover:before {
  width: 100%;
}
@media (max-width: 1040px) {
  .navheader {
    padding: 2rem 1rem;
  }

  .body {
    padding: 100px 20px;
  }

  
  .navheader .navigation {
    display: none;
  }
  .navheader .navigation.active {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  .navheader .navigation .navigation-items a {
    color: rgb(8, 8, 8);
    font-size: 1em;
    margin: 20px;
  }

  .navheader .navigation .navigation-items a:before {
    background: rgb(10, 10, 10);
    height: 5px;
  }
  .navheader .navigation.active .navigation-items {
    background: rgba(255, 255, 255);
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(1 1 1/20%);
  }

  
.menu-btn{
        
  background: url('../css/menu.png') no-repeat;
  background-size: 30px;
  background-position: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-btn.active{
  z-index:888;
  background: url('../css/close.png') no-repeat;
  background-size:25px;
  background-position:center;
  color: #fff;
  transition: 0.3s ease;
}
}

