.cta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 31%;
    background-color: var(--white);
    box-shadow: 0px 5px 10px #00000014;
    border-radius: 10px;
    padding: 15px;
    box-sizing: border-box;
    margin-top: 45px;
}

.cta .cta_image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.cta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 5px;
}

.cta_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 200px);
}

.cta_info p {
    margin: -5px auto 20px auto;
    text-align: center;
}

.cta h3,
.cta h4 {
    margin: 0;
}

.cta h3 {
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--black);
}

.cta h4 {
    color: var(--bronze);
    font-size: 18px;
    margin-bottom: 20px;
}

.cta .button {
    width: 100%;
    height: 100%;
}

@media (max-width: 1330px) {
    .cta {
        width: 48%;
    }

    .cta:nth-child(3) {
        margin: 45px auto 0;
    } 
}

@media (max-width: 750px) {
    .opening {
        flex-direction: column;
    }

    .cta {
        width: 100%;
        margin-right: 0;
    }
}
