.post-banner {
  background-position: center center;
  min-height: 75vh;
  background-size: cover;
  position: relative;
  background: rgb(2, 41, 61);
  background-image: none;
  display: flex;
  align-items: center;
  padding-top: 10%;
  padding-bottom: 10%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.post-banner .page-center {
  position: relative;
  z-index: 9;
}

.post-banner-sec {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.post-banner-txt {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
  padding-right: 15px;
  padding-left: 15px;
}

.post-banner-share {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  padding-right: 15px;
  padding-left: 15px;
}

.post-banner-txt h1 {
  color: #fff;
  font-size: 3.375rem;
  font-family: "Roboto Slab", serif;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.25em;
}

.post-banner-txt a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.33, 1);
}
.post-banner-txt p {
  color: #fff;
  opacity: 0.625;
  letter-spacing: 1.2px;
}
.hero-overlay {
  opacity: 0.7;
  background-color: rgba(45, 49, 51, 0.76);
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-backface-visibility: hidden;
  top: 0;
  left: 0;
  padding-bottom: 0;
  z-index: 3;
}

ul.share-menu {
  position: absolute;
  top: 50%;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.33, 1);
  list-style: none;
  display: flex;
  gap: 10px;
  opacity: 0%;
  margin-left: 14px;
}

.share-wrapper:hover .share-bttn {
  opacity: 0%;
}

.share-wrapper:hover ul.share-menu {
  opacity: 100%;
}

.share-bttn, ul.share-menu li a {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 16px;
  padding: 6px 20px;
  margin-top: 0 !important;
  border-radius: 100px;
}

ul.share-menu li {
  display: inline-block;
}

ul.share-menu li a {
  display: inline-block;
}

.share-bttn, ul.share-menu {
  position: absolute;
  top: 50%;
}
.share-bttn {
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.2px;
}

@media(max-width:767px){
  .post-banner {
    min-height: 100%;
    padding: 100px 0px 50px;
  }

  .post-banner-txt, .post-banner-share {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .share-bttn, ul.share-menu {
    position: relative;
    display: inline-block !important;
    margin: 0px;
    display: flex;
    padding: 0;
  }

  .share-wrapper:hover .share-bttn {
    display: none;
  }

  .share-wrapper:hover ul.share-menu {
    display: block;

  }