@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

.coverHolder {
  margin-top: 128px;
  width: 100%;
  height: 40vh;
}

.coverImg {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.5))), url("../img/webdev/cover.jpg") no-repeat center center;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, .5)), url("../img/webdev/cover.jpg") no-repeat center center;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
}

.coverImg p {
  font-size: 60px;
  font-weight: 700;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
  width: 90%;
  text-align: center;
}

#web_dev {
  padding: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

#web_dev .card {
  height: 40vh;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

#web_dev .card .card_head {
  height: 40%;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#web_dev .card .card_head .display_pic {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  border: 4px solid #fff;
  overflow: hidden;
  margin-top: 10px;
}

#web_dev .card .card_head .display_pic img {
  height: 100%;
  width: 100%;
}

#web_dev .card .card_body {
  padding: 20px;
  height: 60%;
}

#web_dev .card .card_body .details {
  padding: 75px 0 30px 0;
  text-align: center;
  font-family: 'Roboto';
}

#web_dev .card .card_body .details .name {
  font-size: 20px;
  color: #2b2b2b;
  margin-bottom: 5px;
}

#web_dev .card .card_body .details .designation {
  font-size: 17px;
  color: #2b2b2b;
}

#web_dev .card .card_body .social_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#web_dev .card .card_body .social_icons a {
  width: 30px;
  height: 30px;
}

#web_dev .card .card_body .social_icons a img {
  width: 100%;
}

@media (max-width: 800px) {
  .coverHolder {
    margin-top: 0;
  }
  .coverHolder p {
    font-size: 30px;
  }
  #web_dev {
    padding: 20px;
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
  }
  .coverImg p{
  }
}

@media (min-width: 1900px) {
  #web_dev .card {
    height: 45vh;
  }
  #web_dev .card .card_head .display_pic {
    width: 250px;
    height: 250px;
    border-radius: 250px;
  }
  #web_dev .card .card_body {
    margin-top: 35px !important;
  }
  #web_dev .card .card_body .name {
    font-size: 25px !important;
  }
  #web_dev .card .card_body .designation {
    font-size: 20px !important;
  }
}
/*# sourceMappingURL=webdev.css.map */