/*=========================
	CTA IMAGE BLOCK
=========================*/
.block-cta-image {
  position: relative;
}

.block-cta-image .container {
  z-index: 1;
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 30px !important;
}
.block-cta-image .content {
  display: flex;
  width: 100%;
  gap: 30px;
  align-items: center;
  z-index: 1;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
}

.block-cta-image .content .title,
.block-cta-image .content .copy {
  display: block;
}

.block-cta-image .link {
  border: 0 !important;
  background-color: transparent !important;
  width: 100%;
  border-radius: 10px;
}

.block-cta-image .link:hover {
  background-color: var(--color-n-black) !important;
  color: var(--color-n-white) !important;
}

.block-cta-image .image {
  position: relative;
}

.block-cta-image .image.full {
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
  z-index: 0;
}
.block-cta-image .content:after {
  content: '';
  background: url('../../../img/arrow-right-link.svg');
  position: absolute;
  right: 15px;
  top: 13px;
  width: 48px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
}

.block-cta-image.btn-3D .content:after {
  background: url('../../../img/3D.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Image only styles */
.block-cta-image.image-only .container {
  min-height: 800px;
  max-height: 500px;
  overflow: hidden;
  padding-bottom: 0 !important;
}

.block-cta-image.image-only .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.block-cta-image.image-only .image .background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* No image styles */
.block-cta-image.no-image {
  width: 100%;
}

.block-cta-image.no-image .container {
  min-height: auto;
  padding-top: 30px !important;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
}

.block-cta-image.no-image .image {
  display: none;
}

@media only screen and (max-width: 1250px) {
  .block-cta-image .content {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
  }
  .block-cta-image .content:after {
    position: relative;
    width: 24px;
    height: 24px;
    right: unset;
    top: 0;
  }
}

@media only screen and (max-width: 991px) {
  .block-cta-image .container {
    grid-template-columns: 1fr;
  }
  .block-cta-image .image.full {
    min-height: 450px;
    width: 100%;
  }
}


@media only screen and (max-width: 500px) {
  .block-cta-image .content .logos img {
    max-height: 50px; 
    max-width: 50px;
  }
}


