.cpt-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px);
}
.scroll-svg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.cpt-header.small {
    height: calc(65vh - 80px);    
}

.cpt-header #breadcrumbs {
    position: absolute;
    top: 10%;
    left: 100px;
}
.cpt-header .header-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 100px;
}
.cpt-header .header-half {
    display: flex;
    flex-direction: column;
}
.cpt-header .half-content {
    width: 40%;
    justify-content: flex-start;
}
.cpt-header .header-content-wrapper {
    max-width: 474px;
}

.cpt-header.small .half-content {
    width: 100%;
    justify-content: center;
    text-align: center;
    align-content: center;
}
.cpt-header.small .header-content-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.cpt-header.small .cta-container{
    justify-content: center;
    text-align: center;
    align-content: center;
}
.cpt-header .half-img {
    width: 60%;
    align-items: center;
    justify-content: center;
}
.cpt-header .header-title {
    font-size: 46px;
    line-height: 46px;
    margin-bottom: 15px;
}
.cpt-header .header-text {
    margin-bottom: 35px;
}
.cpt-header .cta-container {
    display: flex;
    justify-content: flex-start;
}

.cpt-header .header-img-container {
    height: 63vh;
    width: 45vw;
    overflow: hidden;
    border-radius: 40px;
}
.cpt-header .header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    
    aspect-ratio: auto 1 / 1;
}

.splitting .word {
  animation: slide-in 1s cubic-bezier(.5, 0, .5, 1) both;
  animation-delay: calc(100ms * var(--word-index));
}

.cpt-header .to-anim {
    transition: opacity 1s cubic-bezier(.5, 0, .5, 1);
}
.cpt-header .to-anim.hide {
    transition: opacity 0s linear 0s;
    opacity: 0;
}
.cpt-header .header-text,
.cpt-header .cta-container,
.cpt-header .header-half.half-img {
    will-change: opacity;
}

@keyframes slide-in {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
}
@media screen and (min-width: 768px) { /* added by co */
    .cpt-header .header-title {
        font-size: 56px;
        line-height: 56px;
    }
}
@media screen and (max-width: 1200px) {
    .cpt-header .cpt-header #breadcrumbs {
        top: -30px;
    }

    .cpt-header .header-img-container {
        height: 55vh;
        width: 40vw;
    }
    .cpt-header .header-title {
     /*   font-size: 46px; 
        line-height: 46px;*/ /* removed by co */
    }
    .cpt-header .half-img {
        align-items: flex-end;
    }
}
@media screen and (max-width: 991px) {
    .cpt-header,
    .cpt-header.small {
        padding: 25px 0 40px;
        height: auto;
    }
    .scroll-svg {
        display: none;
    }
    .cpt-header #breadcrumbs {
        position: relative;
        display: flex;
        width: 100%;
        margin-bottom: 40px;
        top: inherit;
        left: inherit;
    }
    .cpt-header .header-wrapper {
        flex-direction: column;
        padding: 0 var(--global-sides-margin); /* 0 6% */
    }
    .cpt-header .half-content {
        width: 100%;
    }
    .cpt-header .header-content-wrapper {
        max-width: inherit;
    }
    .cpt-header .half-img {
        width: 100%;
        margin-top: 40px;
        align-items: center;
    }
    .cpt-header .header-img-container {
        height: 55vh;
        width: 100%;
    }
    .cpt-header .header-img {
        aspect-ratio: auto 831 / 505;
    }
}
@media screen and (max-width: 767px) {
    .cpt-header .header-title {
        text-align: left;
    }
    .cpt-header .header-img {
        aspect-ratio: auto 638 / 505;
    }
}
@media screen and (max-width: 500px) {
    .cpt-header .header-img-container {
        height: 35vh;
        width: 100%;
    }
    .cpt-header .header-img {
        aspect-ratio: auto 1 / 1;
    }
}