.cta-bar {
    position: relative;
    background-color: #044C84;
}

.cta-bar__img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    position: absolute;
}

.cta-wrapper {
    position: relative;
    color: var( --white);
    padding: 40px 0;
}

.cta-wrapper h2 {
    color: var( --white);
}

.cta-wrapper p {
    font-family: var( --font-latomedium);
    font-weight: normal;
    padding-bottom: 26px;
}

.cta-wrapper .btn-primary {
    background-color: var( --white);
    color: #044C84;
    margin-bottom: 20px;
}

.cta-wrapper .btn-primary:hover,
.cta-wrapper .btn-primary:focus {
    border-color: transparent;
    background: #0188E8;
    color: #fff;
}

.cta-wrapper .btn-secondary {
    border-color: var( --white);
    color: var( --white);
}

.cta-wrapper .btn-secondary:focus,
.cta-wrapper .btn-secondary:hover {
    background-color: var( --white);
    color: #0188e8;
}

.cta-wrapper .btn-primary::before {
    content: "";
    position: absolute;
    left: -20px;
    bottom: -18px;
    width: 33px;
    height: 18px;
    border-bottom: 7px dotted var( --blue-02);
    border-left: 7px dotted var( --blue-02);
}

.cta-wrapper .btn-secondary::before {
    content: "";
    position: absolute;
    left: -20px;
    bottom: -18px;
    width: 33px;
    height: 18px;
    border-bottom: 7px dotted var( --blue-02);
    border-left: 7px dotted var( --blue-02);
    display: block;
}

.cta-wrapper .btn+.btn {
    margin-top: 0;
    margin-left: 0px;
}

.cta-wrapper {
    background-color: rgba(4, 76, 132, 0.9);
}

.cta-wrapper__inner {
    max-width: 872px;
    margin: 0 auto;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cta-wrapper .btn-primary::before {
    display: none;
}

@media (min-width: 600px) {
    .cta-wrapper .btn-primary {
        margin-bottom: 0;
    }
    .cta-wrapper {
        padding: 45px 0 55px 0;
    }
    .cta-wrapper .btn-primary::before {
        display: block;
    }
    .cta-wrapper .btn-secondary::before {
        display: none;
    }
    .cta-container {
        display: block;
    }
    .cta-wrapper .btn+.btn {
        margin-left: 30px;
    }
}

@media (min-width: 1200px) {
    .cta-wrapper h2 {
        padding-bottom: 25px;
    }
    .cta-wrapper {
        padding: 70px 0 75px 0;
    }
    .cta-wrapper .btn-primary::before {
        left: -26px;
        bottom: -31px;
        width: 40px;
        height: 20px;
        border-bottom: 11px dotted #9FD2FA;
        border-left: 11px dotted #9FD2FA;
    }
}