.free_content_section__row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.free_content_section__left_col {
    width: calc(17% - 10px);
    padding-top: 80px;
}

.free_content_section__left_col h3 {
    font-size: 13px;
    font-weight: bold;
}

.free_content_section__right_col {
    width: calc(83% - 10px);
}

.free_content_section__cards__button {
    background-color: #F2F2F2;
    color: #8c8c8c;
    border: 2px solid #F2F2F2;
    padding: 15px 20px;
    margin-bottom: 10px;
    font-size: 13px;
    text-align: center;
    border-radius: 5px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition:    all .2s ease-in-out;
    -o-transition:      all .2s ease-in-out;
    -ms-transition:     all .2s ease-in-out;
    transition:         all .2s ease-in-out;
    cursor: pointer;
}

.free_content_section__cards__button--active {
    background-color: #D4EBFF;
    color: #187CC4;
    border: 2px solid #187CC4;
}

.free_content_section__cards__button:hover {
    background-color: #D4EBFF;
    color: #187CC4;
    border: 2px solid #187CC4;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition:    all .2s ease-in-out;
    -o-transition:      all .2s ease-in-out;
    -ms-transition:     all .2s ease-in-out;
    transition:         all .2s ease-in-out;
}

.free_content_section__cta_card_section {
    height: 352px;
    border-radius: 15px;
    position: relative;
    display: flex;
    opacity: 1;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.free_content_section__cta_card_section--hidden {
    display: none;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition:    all .3s ease-in-out;
    -o-transition:      all .3s ease-in-out;
    -ms-transition:     all .3s ease-in-out;
    transition:         all .3s ease-in-out;
}

@-webkit-keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}


.free_content_section__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.free_content_section__cta_card_section.full_width {
    width: 100%;
}

.free_content_section__cta_card_section.half_width {
    width: calc(50% - 10px);
}

.free_content_section__cta_card_section img {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    z-index: 0;
}

.free_content_section__cta_card_section__content {
    color: #fff;
    padding-left: 50px;
    position: relative;
    z-index: 1;
}

.free_content_section__cta_card_section__content span {
    font-size: 12px;
    text-transform: uppercase;
}

.free_content_section__cta_card_section__content h2 {
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
    font-weight: bold;
}

.free_content_section__cta_card_section__content p {
    line-height: 1.3 !important;
    margin-bottom: 0px;
}

.free_content_section__cta_card_section__content__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.free_content_section__right_col__top_title {
    font-weight: bold;
    margin-bottom: 0px;
    font-size: 12px;
    line-height: 1;
}

@media only screen and (max-width: 1117px) {

    .free_content_section {
        padding: 0px 15px;
    }

    .free_content_section__cta_card_section {
        padding: 75px 20px;
        height: unset;
        width: 100% !important;
    }

    .free_content_section__cta_card_section__usps {
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px !important;
    }

    .free_content_section__cta_card_section__content {
        padding-left: 0px;
    }

    .free_content_section__left_col {
        width: 100%;
        padding-top: 0px;
    }

    .free_content_section__right_col {
        width: 100%;
    }
}