.pageblock{
  position: relative;
  padding-top: 40%;
  background: #444;
}

.pageblock::before{
  content: ' ';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.4);
}

.pageblock img{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pageblock img::before{
  position: absolute;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
}

.pageblock h2{
  position: absolute;
  top: 15%;

  
  color: white;
  z-index: 200;
  font-size: 20px;
  text-transform: uppercase;  
}

.pageblock p{
  position: absolute;
  top: 50%;

  font-size: 38px;
  color: white;
  font-weight: 700;
  z-index: 105;
  width: 90%;
  text-align: center;
}

.pageblock .read-btn{
  position: absolute;
  bottom: 30px;
  
  color: white;
  padding: 0.8em 1.5em 0.8em 1.5em;
  box-shadow: none;
  border-width: 2px;
  border-style: solid;
  border-color: #ffffff;
  border-radius: 99px;
  font-weight: 700;
  z-index: 200;
}

.pageblock .read-btn:hover{
  color: #262626;
  background: white;
}

/* Desktops & Laptop ----------- */
@media only screen 
and (min-device-width : 992px)  {
  
}

/* Desktops ----------- */
@media only screen 
and (min-width : 1200px) {   

    
}

/* Laptop ----------- */
@media only screen 
and (min-device-width : 992px) 
and (max-device-width : 1199px)  {   
  .pageblock p{
    font-size: 30px;
  }    

  
}

/* iPads ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 991px) {
  .pageblock p{
    font-size: 20px;
  }    

  .pageblock .read-btn{
    bottom: 5px;
  }
}

/* Mobile (any orientation) ----------- */
@media only screen 
and (max-device-width : 767px) {
     

  .pageblock .read-btn{
    bottom: 5px;
  }
}

/* Mobile (landscape) ----------- */
@media only screen 
and (min-device-width : 576px)
and (max-device-width : 767px) {  
  
}

/* Mobile (portrait) ----------- */
@media only screen 
and (max-device-width : 575px) {  
  .pageblock p{
    font-size: 18px;
  } 
}