/* BEGIN b-card-1 */
.b-card-1 {
    display: block;
    margin-bottom: 30px;
}
.b-card-1::after {
    content: '';
    display: table;
    clear: both;
}
.b-card-1 .b_thumb {
    float: left;
    margin-right: 25px;
    width: 300px;
    border-radius: 12px;
}
.b-card-1 .b_title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    color: var(--color-primary);
    padding-top: 2px;
    margin-bottom: 13px;
    -webkit-transition: 0.3s color ease-in-out;
    -o-transition: 0.3s color ease-in-out;
    transition: 0.3s color ease-in-out;
}
.b-card-1:hover .b_title {
    color: var(--secondary-color);
}
.b-card-1 .b_source {
    margin-bottom: 10px;
}
.b-card-1 .b_source li {
    display: inline-block;
    font-size: 15px;
}
.b-card-1 .b_source li:first-child {
    margin-right: 20px;
    /* text-transform: uppercase; */
}
.b-card-1 .b_desc {
    text-align: justify;
    color: #444;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.5;
}
.b-card-1 .b_btn {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3333333333;
    text-transform: uppercase;
    color: #918d8d;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 4px;
    letter-spacing: 1px;
    margin-top: 16px;
}
span.fa::before {
    color: var(--color-secondary);
}
@media (max-width: 479px) {
    .b-card-1 .b_thumb {
        width: 150px;
    }
    .b-card-1 .b_title {
        font-size: 15px;
    }
    .b-card-1 .b_source {
        display: none;
    }
}

/* END b-card-1 */
.p-contact {
    margin: 30px 0;
    position: relative;
}
.p-contact img {
    border-radius: 20px;
}
.p-contact .b_thumb {
    position: relative;
}
.p-contact .b_thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 98%;
    background: #000;
    border-radius: 20px;
    opacity: 0.4;
    z-index: 1;
}
.p-contact .b_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
    width: 75%;
}
.p-contact .b_title {
    font-size: 21px;
    font-weight: bold;
}
.p-contact a {
    display: inline-block;
    margin-top: 12px;
    background: #fff;
    padding: 10px 51px 10px 25px;
    border-radius: 12px;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 17px;
    position: relative;
}
.p-contact a::before  {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background-color: var(--color-secondary);
    background-image: url(/images/icons/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    transform: translate(-15px, -50%);
    transition: 0.4s ease-in-out;
}