body {
    font-family: "Gothic A1", sans-serif;
    --primary-color: #05a;
}

/* Style chung s-header */
.hd-logo {
    line-height: 0;
}

.hd-menu h2 {
    font-size: inherit;
    font-weight: inherit;
}

a[ht-trigger="hd-menu"] {
    display: none;
    font-size: 14px;
    line-height: 1;
    padding: 0.5em;
    text-transform: uppercase;
    border: 1px solid;
    border-radius: 20px;
}
a[ht-trigger="hd-menu"] i:first-child {
    float: left;
}
a[ht-trigger="hd-menu"] i:last-child {
    float: right;
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
/* BEGIN s-header-7 */
.s-header-7 {
    background-color: #ffffff;
    box-shadow: 0 2px 1px #e7e7e7;
    position: relative;
    z-index: 111;
    padding: 10px 0;
}
.s-header-7 .hd-logo img {
    height: 65px;
}
.s-header-7 .hd-menu>ul {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.s-header-7 .hd-menu>ul>li {
    position: relative;
}
.s-header-7 .hd-menu>ul>li>a {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 3px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.s-header-7 .hd-menu>ul>li>span {
    display: none;
}
.s-header-7 .hd-menu>ul>li>a:nth-last-child(2) h2::after {
    content: "\f107";
    font-family: FontAwesome;
    margin-left: 10px;
    float: right;
}
.s-header-7 .hd-menu>ul>li>ul {
    visibility: hidden;
    min-width: 200px;
    width: max-content;
    padding: 5px 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    position: fixed;
}
.s-header-7 .hd-menu>ul>li>ul::after {
    content: "";
    height: 0;
    width: 0;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    top: -6px;
    left: 15px;
}
.s-header-7 .hd-menu>ul>li>ul>li:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.s-header-7 .hd-menu>ul>li>ul>li a {
    display: block;
    padding: 5px 30px 5px 15px;
}
.s-header-7 .hd-menu>ul>li>ul>li a::before {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 12px;
    margin-right: 6px;
    position: relative;
    top: -1px;
}
.s-header-7 .hd-menu>ul>li>ul>li:hover a {
    color: var(--primary-color);
}
.s-header-7 .hd-menu>ul>li.hd-logo {
    display: block;
}
.s-header-7 .hd-menu>ul>li.hd-logo>a {
    padding: 10px 0;
    background-color: transparent !important;
}
.s-header-7 .hd-menu>ul>li.hd-logo>a img {
    width: 100px;
}
.s-header-7 .hd-menu>ul>li.is-active>a {
    color: #fff;
    background-color: var(--primary-color);
}
.s-header-7 .hd-menu>ul>li:not(.no-hover):hover>a:nth-last-child(2) {
    border-radius: 3px 3px 0 0;
}

.hd-language {
    display: flex;
    /* position: absolute; */
    top: 8px;
    right: 30px;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.hd-language a {
    display: inline-block;
    width: 30px;
    height: 16px;
}

@media (min-width: 992px) {
    .s-header-7 .hd-menu>ul>li:not(.no-hover):hover>a {
        color: #fff;
        background-color: var(--primary-color);
    }
    .s-header-7 .hd-menu>ul>li:not(.no-hover):hover>ul {
        visibility: visible;
        position: absolute;
        z-index: 1000;
        -webkit-animation: slide-up 0.3s;
        -o-animation: slide-up 0.3s;
        animation: slide-up 0.3s;
    }
}
@media screen and (max-width: 991px) {
    .s-header-7 .hd-logo {
        display: block;
        float: left;
    }
    .s-header-7 .hd-logo img {
        height: 55px;
    }
    .s-header-7 .hd-menu {
        /* float: right; */
        /* margin-left: auto; */
        position: relative;
        order: 2;
    }
    .s-header-7 .hd-menu>a[ht-trigger="hd-menu"] {
        display: inline-block;
        margin: 10px 0;
        color: var(--primary-color);
    }
    .s-header-7 .hd-menu>ul {
        visibility: hidden;
        flex-direction: column;
        width: 250px;
        border-radius: 3px;
        background-color: #fff;
        box-shadow: 0 5px 10px 0 #ccc;
        z-index: 1;
        position: absolute;
        right: 0;
        padding: 5px 0;
    }
    .s-header-7 .hd-menu>ul>li>ul {
        width: 100%;
        position: relative;
        visibility: visible;
        display: none;
    }
    .s-header-7 .hd-menu>ul>li>ul::after {
        content: initial;
    }
    .s-header-7 .hd-menu>ul>li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    .s-header-7 .hd-menu>ul>li.hd-logo {
        display: none;
    }
    .s-header-7 .hd-menu>ul>li:not(.no-hover):hover>ul {
        min-width: 100%;
        right: 0;
    }
    .s-header-7 .hd-menu>ul>li:not(.no-hover):hover>ul::after {
        left: calc(100% - 25px);
    }
    .s-header-7 .hd-menu>ul>li>span {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 1111;
    }
    .s-header-7 .hd-menu>ul.is-active {
        visibility: visible;
        -webkit-animation: slide-up 0.3s;
        -o-animation: slide-up 0.3s;
        animation: slide-up 0.3s;
    }
    .s-header-7 .hd-menu>ul>li.is-active>span {
        color: #fff;
    }
    .s-header-7 .hd-menu>ul>li>a {
        transition: none;
    }
    .s-header-7 .container {
        /* display: flex; */
    }
    .s-header-7 .hd-language {
        position: relative;
        display: flex;
        margin-left: auto;
        top: 0;
    }
}

/* END s-header-7 */

/* BEGIN s-footer-3 */
.s-footer-3 {
    color: #fff;
    background-color: var(--primary-color);
}
.s-footer-3 .s_top {
    font-size: 16px;
    padding: 20px 0;
    background-color: var(--primary-color);
    background-image: -webkit-linear-gradient(left, var(--primary-color), rgba(255, 255, 255, 0.15) 0%);
    background-image: linear-gradient(to right, var(--primary-color), rgba(255, 255, 255, 0.15) 0%);
}
.s-footer-3 .s_top .align-items--center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media screen and (max-width: 1259px) {
    .s-footer-3 .s_top .align-items--center {
        display: none;
    }
}
.s-footer-3 .c-headline-4 {
    margin: 10px 0 15px;
}
.s-footer-3 .c-headline-4 i {
    color: #ccc;
}
.s-footer-3 .c-headline-4::after {
    margin-top: 5px;
}
.s-footer-3 .ft-ellipsis {
    margin-top: 3px;
    display: block;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.429em;
    max-height: 8.574em;
}
.s-footer-3 .ft-menu li {
    display: inline-block;
    width: calc((100% / 2) - 12px);
    color: inherit;
    font-size: 13px;
    margin: 0 10px 10px 0;
}
.s-footer-3 .ft-menu li.line {
    width: 100%;
    margin-right: 0;
}
.s-footer-3 .ft-menu li>h1, .s-footer-3 .ft-menu li>h2 {
    font-size: 20px;
    font-weight: inherit;
}
.s-footer-3 .ft-menu li a {
    display: inline-block;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.s-footer-3 .ft-menu li a>span::before {
    content: "\f105";
    font-family: FontAwesome;
    font-size: inherit;
    color: #ccc;
    margin-right: 5px;
}
.s-footer-3 .ft-menu li a:hover {
    color: #f60;
}
.s-footer-3 .ft-menu li>span {
    line-height: 20px;
}
.s-footer-3 .ft-menu li>span:not(:last-child) {
    margin-right: 20px;
}
.s-footer-3 .ft-menu li>span.fa::before {
    width: 15px;
    color: #ccc;
    text-align: center;
}
.s-footer-3 .ft-copyright {
    line-height: 40px;
}

.s-footer-3 .ft-social {
    margin-top: 25px;
}
.s-footer-3 .ft-social a {
    font-size: 25px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgb(255 255 255 / 50%);
}
/* END s-footer-3 */

/* BEGIN s-icon-1 */
.s-icon-1 {
    font-size: 14px;
    z-index: 100;
    position: fixed;
    right: 10px;
    top: 80%;
    z-index: 999;
    transform: translateY(-50%);
}
.s-icon-1>a {
    position: relative;
    padding: 10px 8px 5px 10px;
    display: -webkit-box;
    transition: 0.5s;
    background-color: rgb(255 255 255 / 80%);
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 12px;
    box-shadow: 8.23529px 12.3529px 12.3529px rgba(0, 0, 0, 0.1);
}
.s-icon-1>a>span:first-child {
    color: var(--primary-color);
    font-size: 0.929em;
    font-weight: bold;
    padding: 15px 15px;
    border-radius: 13px;
    opacity: 0;
    transition: 0.3s linear;
    position: absolute;
    width: 0;
    right: 0;
    top: 0;
    white-space: nowrap;
    background-color: rgb(255 255 255 / 80%);
    box-shadow: 8.23529px 12.3529px 12.3529px rgb(0 0 0 / 10%);
}
.s-icon-1>a>span:last-child {
    position: relative;
    display: inline-block;
    width: 25px;
}
/* END s-icon-1 */
@media screen and (min-width: 1260px) {
    .s-icon-1>a:hover>span:first-child {
        opacity: 1;
        width: 170px;
    }
    .s-header-7.fixedTop .s_box {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        width: 100%;
        background: rgb(171 44 48);
        border-radius: 5px;
        animation: smoothScroll 1s forwards;
        transition: all 0.5s;
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        border: 2px solid transparent;
    }
}
@media screen and (max-width: 991px) {
    .s-icon-1>a>span:last-child {
        width: 20px;
    }
}

.s-headline-1 {
    text-align: center;
    margin: 45px 0;
}
.s-headline-1 .s_sub {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 25px;
}
.s-headline-1 .s_title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 32px;
}

/* BEGIN b-card-21 */
.s-school-1 .item {
    margin: 0 15px;
}
.s-school-1 .slick-list {
    padding: 15px 0;
}
.s-school-1 .s-headline-1 {
    margin: 45px 0 20px;
}
.b-card-21 {
    display: block;
    margin-bottom: 30px;
    box-shadow: 2px 2px 10px rgb(0 48 79 / 15%);
    border-radius: 12px;
    border-bottom: 5px solid var(--primary-color);
    transition: 0.5s;
    padding: 12px;
    height: calc(100% - 30px);
}
.b-card-21 .b_thumb {
    margin: 0;
}
.b-card-21 .b_thumb img {}
.b-card-21 .b_content {
    text-align: left;
    margin-top: 12px;
}
.b-card-21 .b_title {
    font-size: 17px;
    font-weight: bold;
    margin: 0 0 10px;
    -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-21 .b_desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: 12px;
    margin-bottom: 12px;
}
.b-card-21:hover .b_title {
    color: var(--primary-color);
}

/* END s-home-5 */

.s-form-1 {
    /* background: linear-gradient(to bottom, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 95%) 150%), url(/images/bg/bg-10.png) no-repeat; */
    /* background-size: cover; */
    padding: 50px 0 60px;
}
.s-form-1 .s_content {
    padding-right: 50px;
}
.s-form-1 .s_content h3 {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 500;
    border-left: 5px solid var(--primary-color);
    padding-left: 10px;
}
.s-form-1 .s_content h2 {
    font-size: 40px;
    font-weight: bold;
    color: var(--primary-color);
}
.s-form-1 .s_content p {
    font-size: 17px;
    margin-top: 15px;
}
.s-form-1 .s_form {
    padding: 20px;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    margin-left: 50px;
    border: 2px solid #ddd;
}
.s-form-1 .s_form .plane {
    position: absolute;
    left: -153px;
    top: -125px;
}
.s-form-1 .s_form .plane img {
    width: 250px;
}
.s-form-1 .s_form .title {
    /* color: #fff; */
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
}
.s-form-1 .s_form .form-button {
    text-align: right;
}
.s-form-1 .s_form .form-button button {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    border-radius: 30px;
}
/* BEGIN c-form-border */
/* Copy when using c-form-border */
.c-form-border {
    border-radius: 3px;
    -webkit-transition: border-color 0.3s ease-in-out;
    -o-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    color: #fff;
    padding: 5px 5px;
    border: 2px solid rgb(144 144 144);
    border-radius: 30px;
}
.c-form-border .c_input {
    padding: 1.215em 1.072em 1.215em 1.072em;
    -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.c-form-border .c_input:focus {
    outline: none;
}
.c-form-border--icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.c-form-border--icon .c_input {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 1%;
    z-index: 2;
}
.c-form-border--icon .c_icon {
    -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.c-form-border--icon .c_icon:first-child {
    padding: 0.5em 0 0.5em 1.072em;
}
.c-form-border--icon .c_icon:nth-child(2) {
    padding: 0.5em 1.072em 0.5em 0;
}
.c-form-border--icon .c_icon:not(.c_icon--top) {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.c-form-border--icon .c_icon--top>i {
    position: relative;
    top: -0.142em;
}
.c-form-border--label .c_label {
    color: #999;
    background-color: #fff;
    pointer-events: none;
    padding: 0 0.358em 0 0.358em;
    z-index: 9;
    position: absolute;
    top: 0.572em;
    left: 0.715em;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}
.c-form-border--label:not(.is-empty) .c_label,
.c-form-border--label.is-focused .c_label {
    font-size: 0.786em;
    color: #0d4da5;
    position: absolute;
    top: -0.727em;
}
.c-form-border.is-focused {
    background-color: #ffffff2e;
}
.c-form-border.is-error {
    margin-bottom: 1.786em;
    border-color: var(--primary-color);
}
.c-form-border.is-error .c_label {
    color: var(--primary-color) !important;
}
.c-form-border.is-error .c_icon+.c_error {
    left: 0.143em;
    text-align: left;
}
.c-form-border.is-error .c_icon+.c_error>span {
    left: 0;
    margin: 0;
}
.form-box {
    margin-bottom: 25px;
}
.form-box label {
    /* color: #ffffff; */
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.form-box>label>span {
    color: #e8da1d;
    display: inline-block;
    margin-left: 5px;
}
.form-box .c_list .c-checkbox span {
    color: var(--primary-color);
}
@media screen and (max-width: 991px) {
    .s-form-1 {
        padding: 20px 0 60px;
        border-top: 1px solid #eee;
    }
    .s-form-1 .s_content img {
        display: none;
    }
    .s-form-1 .s_form .plane {
        display: none;
    }
    .s-form-1 .s_form {
        margin-left: 0;
        margin-top: 25px;
    }
    .s-form-1 .s_content h2 {
        font-size: 25px;
    }
    .s-form-1 .s_content h3 {
        font-size: 25px;
    }
    .s-form-1 .s_form {
        padding: 45px 25px 30px 25px;
    }
    .s-form-1 .s_form::after {
        right: 0;
    }
}
@media screen and (max-width: 575px) {
    .s-form-1 .s_content p {
        font-size: 15px;
    }
}

/* END c-form-border */
.s-banner-1 {
    background-image: url(/images/bg/bg-15.png);
    padding-top: 50px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.s-banner-1::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(255 255 255 / 90%);
}
.s-banner-1 .s_content {
    text-align: center;
}
.s-banner-1 .s_content .title {
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 1px 1px 1px #fff;
    position: relative;
    font-size: 40px;
    font-weight: bold;
}
.s-banner-1 .s_content .title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 185px;
    height: 2px;
    background-color: rgba(255, 0, 0, 0);
    background-image: linear-gradient(to right, rgba(255, 0, 0, 0), var(--primary-color) 50%, rgba(255, 0, 0, 0));
}
/* BEGIN s-breadcrumb-1 */
.s-breadcrumb-1 {
    font-size: 16px;
    margin-bottom: 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    z-index: 9;
    position: relative;
    color: rgb(2, 67, 132);
}
.s-breadcrumb-1 li:not(:first-child)::before {
    content: "\f101";
    font-family: FontAwesome;
    font-size: 0.786em;
    margin: 0 0.637em;
    color: #888;
}
.s-breadcrumb-1 li:first-child a>i {
    font-size: 1.429em;
}
.s-breadcrumb-1 li a {
    font-weight: bold;
}
.s-breadcrumb-1 li a:hover {
    color: var(--primary-color);
}
/* BEGIN p-detail-11 */
.p-detail-11 {
    padding-bottom: 30px;
}
.p-detail-11 .p_box {
    width: calc(100% - 200px);
    padding: 30px 30px 30px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    margin: -53px auto 5px;
    z-index: 9;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.p-detail-11 .p_title {
    font-size: 27px;
    text-align: left;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: bold;
}
.p-detail-11 .p_source {
    margin-bottom: 15px;
}
.p-detail-11 .p_source li {
    display: inline-block;
    margin-right: 20px;
}
.p-detail-11 .p_source li span.fa::before {
    color: #23aef4;
}
.p-detail-11 .p_desc {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.334em;
    margin-bottom: 20px;
    text-align: justify;
    background-color: #f1f5ff;
    padding: 20px;
    border-radius: 5px;
    color: #162a66;
}
.p-detail-11 .p_date {
    color: #000000;
    margin-bottom: 10px;
}
.p-detail-11 .p_social {
    margin: 20px 15px;
    line-height: 0;
    text-align: right;
}
.p-detail-11 .p_social a {
    font-size: 16px;
}
.p-detail-11 .p_social::before {
    content: "";
    display: inline-block;
    width: 65px;
    height: 1px;
    margin-right: 20px;
    background-color: #ddd;
}
.p-detail-11 .p_other>h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
.p-detail-11 .p_other>ul>li a {
    display: block;
    padding: 8px 0 8px 10px;
    border-bottom: 1px dotted #ddd;
}
.p-detail-11 .p_other>ul>li a:hover {
    color: #23e6f4;
}
.p-detail-11 .p_tag {
    font-size: 13px;
    margin-bottom: 50px;
    margin-top: 20px;
}
.p-detail-11 .p_tag label {
    float: left;
    line-height: 2.231em;
    margin-right: 5px;
}
.p-detail-11 .p_tag a {
    display: inline-block;
    color: #333;
    font-size: 0.924em;
    padding: 0.334em 0.75em 0.334em 0.75em;
    margin: 2px 0;
    background-color: rgb(190 147 72 / 10%);
    border-left: 0.25em solid #4889be;
    position: relative;
}
.p-detail-11 .p_tag a:before {
    content: "";
    height: 0;
    width: 0;
    border: solid transparent;
    border-left-color: #487dbe;
    border-width: 0.334em;
    pointer-events: none;
    position: absolute;
    top: 0.667em;
    left: 0;
}
.p-detail-11 .p_tag a:hover {
    color: #152360;
}
.p-detail-11 .p_info {
    margin-top: 10px;
}
.p-detail-11 .p_info li {
    display: inline-block;
    width: calc(100% / 2 - 10px);
    margin-bottom: 5px;
}
.p-detail-11 .p_info li span {
    font-weight: 500;
    display: inline-block;
    margin-right: 10px;
}
.p-detail-11 .p_headline {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 18px;
}

@media screen and (max-width: 991px) {
    .p-detail-11 .p_box {
        width: 100%;
        margin: -20px auto 5px;
    }
    .s-section-1 .s_title {
        margin-top: 15px;
    }
    .ht-page__sidebar {
        display: none;
    }
    .p-detail-11 .p_box {
        padding: 15px;
    }
}
.b-card-9 {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.b-card-9 .b_author {
    margin-bottom: 12px;
}
.b-card-9 .b_author span {
    display: block;
}
.b-card-9 .b_author span:first-child {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}
.b-card-9 .b_author span:last-child {
    font-weight: 300;
}
.b-card-9 .b_list li {
    margin-bottom: 8px;
}
.b-card-9 .b_list li span {
    font-weight: 600;
}
.b-card-9 .b_content {}
.company {
    width: 60%;
    margin: 30px auto;
}
.company .b-card-9:nth-child(even) .row {
    flex-direction: row-reverse;
}
@media (max-width: 767px) {
    .company {
        width: 95%;
        margin: 30px auto;
    }
}
/* BEGIN b-card-6 */
.b-card-6 {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.b-card-6 .b_thumb img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.b-card-6 .b_title {
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 20px;
    line-height: 1.334em;
    padding: 27px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(to right, #05a, #ffffff38);
    height: 100%;
    display: flex;
    align-items: center;
}
.b-card-6:hover .b_thumb img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

/* END b-card-6 */