.hero-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.hero-section .text-wrapper {
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: left;
    }

.hero-section .text-wrapper h1 {
            font-size: 43px;
            font-weight: 700;
            max-width: 504px;
            margin-bottom: 24px;
        }

.hero-section .text-wrapper p {
            font-size: 20px;
            max-width: 465px;
        }

.hero-section .image-wrapper img {
            width: 100%;
        }

.hero-cta {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.2);
    max-width: 1181px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
    margin-top: -73px;
    background-color: white;
    margin-bottom: 80px;
}

.hero-cta .cta-container:last-child {
        padding-left: 40px;
        border-left: 2px solid var(--grey);
    }

.hero-cta .cta-container {
        display: flex;
        flex: 1;
    }

.hero-cta .cta-container img {
            border-radius: 8px;
            margin-right: 16px;
        }

.hero-cta .cta-container div {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 5px 0;
        }

.hero-cta .cta-container div h4 {
                font-size: 18px;
                font-weight: 600;
                margin-bottom: 10px;
            }

.hero-cta .cta-container div a {
                display: flex;
                align-items: center;
                color: var(--black);
                cursor: pointer;
            }

.hero-cta .cta-container div a img {
                    padding: 8px;
                    background-color: red;
                    border-radius: 50%;
                }

@media (max-width: 1100px) {
    .hero-cta {
        margin-top: 0;
    }
}
@media (max-width: 920px) {
    .hero-section {
        flex-direction: column-reverse;
    }

        .hero-section .text-wrapper {
            margin: 24px 0 16px 0;
        }
            .hero-section .text-wrapper h1,
            .hero-section .text-wrapper p {
                max-width: 100%;
            }
}
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: start;
        margin-bottom: 31px;
    }

        .hero-cta .cta-container:first-child {
            width: 100%;
            padding-bottom: 16px;
        }
        .hero-cta .cta-container:last-child {
            width: 100%;
            padding-top: 16px;
            padding-left: 0;
            border-top: 2px solid var(--grey);
            border-left: none;
        }
}
@media (max-width: 480px) {
            .hero-section .text-wrapper h1 {
                font-size: 32px;
            }
            .hero-section .text-wrapper p {
                font-size: 16px;
            }
}
