.header-container {
    display: flex;
    margin-bottom: 80px;
}

.header-title-container {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.header-title {
    font-size: 24px;
    margin-bottom: 0;
    text-wrap: nowrap;
}

.header-title > span {
    font-family: 'Allison Script';
    font-size: 70px;
    margin-right: 15px;
}

.header-subtitle, .header-subtitle-cta {
    font-size: 20px;
    font-weight: 100;
    margin-left: 40px;
    text-wrap: nowrap;
}

.header-arrow-and-btn-container {
    display: flex;
    flex-direction: column;
}

.header-arrow {
    height: 70px;
    width: 40px;
    object-fit: contain;
    transform: rotate(-30deg);
    margin-left: 10px;
}

.header-cta-btn {
    display: inline-block;
    border: none;
    margin-top: 20px;
    margin-left: 30px;
    text-decoration: none;
    text-align: center;
    width: 120px;
    padding: 6px 0;
    border-radius: 6px;
    color: #fff;
    background-color: #53CE6A;
}

.header-cta-btn:hover {
    background-color: #4BBF5A;
}

.header-img-container {
    display: flex;
    position: relative;
    flex-direction: column;
    padding-left: 40px;
    justify-content: end;
}

.header-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.header-img-design-border {
    position: absolute;
    height: 160px;
    width: 100%;
    left: -60px;
    bottom: -25px;
    border: 1px solid #A6A6A6;
    border-radius: 5px;
    z-index: -1;
}

.header-img-text {
    position: absolute;
    bottom: -10px;
    left: -30px;
}

.header-text-left, .header-text-right {
    font-family: 'Allison Script';
    font-size: 50px;
}

.header-text-right {
    margin-left: 50px;
}

@media screen and (max-width: 1110px) {
    .header-title {
        font-size: 20px;
    }

    .header-title > span {
        font-size: 64px;
    }

    .header-subtitle, .header-subtitle-cta {
        font-size: 16px;
    }

    .header-img-design-border {
        height: 145px;
        left: -60px;
        bottom: -25px;
    }

    .header-text-left, .header-text-right {
        font-size: 44px;
    }
}

@media screen and (max-width: 980px) {
    .header-img-design-border {
        height: 120px;
        left: -20px;
        bottom: -25px;
    }

    .header-img-text {
        left: -5px;
    }

    .header-text-left, .header-text-right {
        font-size: 32px;
    }
}

@media screen and (max-width: 850px) {
    .header-img-design-border {
        height: 100px;
        left: -10px;
        bottom: -25px;
        width: 90%
    }

    .header-img-text {
        bottom: -20px;
        left: 10px;
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .header-title-container {
        margin-bottom: 40px;
    }

    .header-arrow-and-btn-container {
        display: flex;
        position: relative;
        flex-direction: row;
        justify-content: center;
    }

    .header-arrow {
        margin: 0;
        transform: rotate(-90deg);
        position: absolute;
        top: -50px;
    }

    .header-cta-btn {
        margin: 0;
        height: 36px;
        position: absolute;
        top: -20px;
        right: 100px;
    }
}

@media screen and (max-width: 680px) {
    .header-container {
        margin: 0 10px;
        margin-bottom: 60px;
    }

    .header-title-container {
        margin-bottom: 50px;
    }

    .header-img-design-border {
        height: 100px;
        left: 0px;
        bottom: -15px;
        width: 90%
    }

    .header-img-text {
        bottom: -2px;
        left: 20px;
    }

    .header-text-left, .header-text-right {
        margin-bottom: 0;
    }

    .header-arrow {
        left: 170px;
    }

    .header-cta-btn {
        left: 230px;
    }
}