/*=========================
	CTA SINGLE BLOCK
=========================*/
.block-cta-single {
  position: relative;
}

.block-cta-single .content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.block-cta-single .content .title,
.block-cta-single .content .copy {
  margin-bottom: 20px;
  width: 60%;
  text-align: center;
}

.block-cta-single .content .icon img {
  max-width: 60px;
  height: auto;
}

@media only screen and (max-width: 991px) {

  
  .block-cta-single .content .title,
  .block-cta-single .content .copy {
    width: 80%;
  }
}

@media only screen and (max-width: 768px) {
  .block-cta-single .content {
    min-height: unset;
  }

}


