/*=========================
	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;
  gap: var(--space-2);
  min-height: 500px;
}

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

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

.block-cta-single .content .link {
  margin-top: var(--space-5);
}

.block-cta-single .background-blur {
  background: rgba(0, 64, 58, 0.75);
  backdrop-filter: blur(5px);
}

@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;
  }

}


