/* Arrow banner */
.main .cta-banner {
    background: var(--bbx-locales-primary-color);
    border-radius: 12px;
    padding: 25px;
    color: white;
    width: 100%;
    position: relative;
    margin-top: 100px;
}

.main .cta-banner .content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /*gap: 50px;*/
    gap: 15px;
    flex-direction: column;
}

.main .cta-banner .content .cta-title {
    color: white;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 20px;
}

.main .cta-banner .cta-triangle {
    display: none;
}

@media screen and (min-width: 500px) {
    .main .cta-banner {
        width: calc(100% - 53px);
    }

    .main .cta-banner .content {
        flex-direction: row;
    }

    .main .cta-banner .cta-triangle {
        display: block;
        position: absolute;
        height: 100%;
        right: -80px;
        top: 0;
        z-index: -1;
    }
}
/* End arrow banner */

/* Squared banner */
.main .cta-squared {
    background-color: var(--bbx-locales-secondary-color-shadow);
    border-radius: 50px;
    padding: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.main .cta-squared .cta-title {
    /*color: #0A355A;*/
    color: var(--bbx-locales-grey-text);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px; /* 150% */
    letter-spacing: -0.4px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.main .cta-squared .cta-description {
    /*color: #0A355A;*/
    color: var(--bbx-locales-grey-text);
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
}
/* End squared banner */

.main .cta-claim {
    text-align: center;
    width: 100%;
    /*background: var(--bbx-locales-contact-background);*/
    background-color: var(--bbx-locales-secondary-color-shadow);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    /*box-shadow: 2px 2px 10px 0 rgba(23, 93, 166, 0.25);*/
    gap: 15px;
    margin-top: 25px;
}

.main .cta-claim .svg-helmet {
    height: 45px;
    width: 45px;
    margin: 0 auto;
}

.main .cta-claim .cta-title {
    color: var(--bbx-locales-grey-text);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px; /* 150% */
    letter-spacing: -0.4px;
    margin-bottom: 0;
}

@media screen and (min-width: 1200px) {
    .main .cta-claim {
        padding: 25px 50px;
        margin-top: 50px;
    }
}