/* Breadcrumb */
.breadcrumb {
    min-height: 340px;
    position: relative;
    display: flex;
    align-items: end;
    text-align: center;
    overflow: hidden;
}

.breadcrumb::before {
    content: '';
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.breadcrumb h1 {
    font-size: 40px;
    color: #FFF;
    margin-bottom: 8px;
}

.breadcrumb ul {
    display: block;
    white-space: normal;
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
}

.breadcrumb ul li {
    display: inline;
    color: rgba(255, 255, 255, .8);
}

.breadcrumb ul li a {
    color: rgba(255, 255, 255, .8);
}

.breadcrumb ul li a:hover {
    color: var(--bv-secondary);
}

.breadcrumb ul li:not(:last-child) {
    position: relative;
    padding-right: 15px;
}

.breadcrumb ul li:not(:last-child)::before {
    content: '/';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    color: #FFF;
}

/* End breadcrumb  */



/* Content cho editor  */
.noi-dung,
.noi-dung-1 {
    font-size: 16px;
}

.noi-dung p,
.noi-dung-1 p {
    margin-bottom: 10px;
    text-align: justify;
    line-height: 1.5;
    font-size: 16px;
}

.noi-dung h2,
.noi-dung-1 h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.noi-dung h3,
.noi-dung-1 h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.noi-dung hr,
.noi-dung-1 hr {
    margin: 15px 0;
}

.noi-dung-1 table {
    margin-bottom: 10px;
    max-width: 100%;
    border-collapse: collapse;
    width: 100%;
}

.noi-dung table td img {
    border-radius: 20px;
}

.noi-dung table td {
    width: 50%;
}

.noi-dung blockquote,
.noi-dung-1 blockquote {
    border-left: 5px solid var(--bv-secondary);
    padding: 8px 15px;
    background: #eee;
    border-radius: 10px;
    margin-bottom: 15px;
}

.noi-dung blockquote h3,
.noi-dung blockquote h2,
.noi-dung blockquote p {
    margin-bottom: 0;
}

.noi-dung-1 blockquote h3,
.noi-dung-1 blockquote h2,
.noi-dung-1 blockquote p {
    margin-bottom: 0;
}

.noi-dung ul,
.noi-dung ol {
    margin-left: 30px;
    margin-bottom: 10px;
}

.noi-dung-1 ul,
.noi-dung-1 ol {
    margin-left: 30px;
    margin-bottom: 10px;
}

.noi-dung ul li,
.noi-dung ol li {
    margin-bottom: 5px;
}

.noi-dung-1 ul li,
.noi-dung-1 ol li {
    margin-bottom: 5px;
}

.noi-dung table tr td,
.noi-dung-1 table tr td {
    padding: 10px;
}

.noi-dung-1 table tr th {
    padding: 10px;
}

.noi-dung table {
    margin: 0 -10px 10px;
}

.image-caption {
    margin-bottom: 10px;
}

/* Column Split Plugin */
.cs-row iframe {
    width: 100%;
}

.cs-row .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
}


.cs-row .row>[class*="col-"] {
    position: relative;
    padding: 0px 10px;
}

.cs-col {
    padding: 0 10px;
    box-sizing: border-box;
}

.cs-tools {
    display: none !important;
}

@media (min-width: 768px) {
    .cs-row .row>[class*="col-md-6"] {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .cs-row .row {
        flex-direction: column;
    }

    .cs-row .row>[class*="col-md-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* end  */

/* pagination  */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-top: 30px;
    gap: 6px;
}

.pagination .page-item {
    display: inline-block;
}

.pagination .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #FFF;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.pagination .page-link:hover {
    background: var(--bv-secondary);
    color: #fff;
    border-color: var(--bv-secondary);
}

.pagination .page-item.active .page-link {
    background: var(--bv-secondary);
    color: #fff;
    border-color: var(--bv-secondary);
    pointer-events: none;
}

.pagination .page-item.disabled .page-link {
    background: #f5f5f5;
    color: #aaa;
    border-color: #ddd;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .noi-dung table tr td {
        width: 50%;
    }

    .noi-dung img,
    .noi-dung-1 img {
        max-width: 100%;
        height: auto !important;
    }
}

@media (max-width: 992px) {
    .noi-dung table tr td {
        width: 100% !important;
        display: block;
    }
}

@media (max-width: 768px) {
    .pagination .page-link {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .noi-dung table tr td,
    .noi-dung-1 table tr td {
        word-break: break-word;
    }
}

/*--------------------------------------------------------------
# Category
--------------------------------------------------------------*/
.category-one {
    position: relative;
    padding: 117px 0 135px;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: var(--bv-white);
    background-size: 100%;
}

@media (max-width: 1400px) {
    .category-one {
        padding: 77px 0 80px;
    }
}

@media (max-width: 767px) {
    .category-one {
        padding: 40px 0;
    }
}

.category-one .section-title__tagline svg path {
    fill: var(--bv-white);
}

.category-one__slider .slick-slide,
.service-one__slider .slick-slide {
    padding: 0 15px;
}

.category-one__slider .slick-list,
.service-one__slider .slick-list {
    margin: 0 -15px;
}

.category-one__slider {
    position: relative;
}

.category-one__slider.slick-slider .slick-dots {
    max-width: 878px;
    margin: 62px auto 0 !important;
    background-color: var(--bv-soft);
    border-radius: 19px;
    line-height: 0;
    height: 3px;
    padding: 0;
    list-style: none;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (max-width: 767px) {
    .category-one__slider.slick-slider .slick-dots {
        margin-top: 15px !important;
    }
}

.category-one__slider.slick-slider .slick-dots li {
    height: 10px;
    border-radius: 50%;
    width: 10px;
    background-color: rgba(var(--bv-base-rgb), 0.27);
    margin: 0 11px;
    position: relative;
    top: 0;
    z-index: 2;
    cursor: pointer;
    padding: 0;
}

.category-one__slider.slick-slider .slick-dots li::after {
    position: absolute;
    left: -6px;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    content: "";
    border-radius: 50%;
    border: 1px solid var(--bv-base);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.category-one__slider.slick-slider .slick-dots li:hover,
.category-one__slider.slick-slider .slick-dots li.slick-active {
    background-color: var(--bv-secondary);
}

.category-one__slider.slick-slider .slick-dots li:hover::after,
.category-one__slider.slick-slider .slick-dots li.slick-active::after {
    visibility: visible;
    opacity: 1;
}

.category-one__slider.slick-slider .slick-dots li button {
    display: none;
}

.category-one__slider.slick-slider .slick-dots::after {
    width: 18.4%;
    height: 3px;
    background-color: var(--bv-white);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: "";
}

@media (max-width: 1399px) {
    .category-one__slider.slick-slider .slick-dots::after {
        width: 28%;
    }
}

.category-one__slider.slick-slider .slick-arrow {
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 53px;
    text-align: center;
    font-size: 18px;
    color: var(--bv-base);
    border-radius: 50%;
    background-color: var(--bv-soft);
    margin: 0 5px;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    border: none;
    cursor: pointer;
}

.category-one__slider.slick-slider .slick-arrow:hover {
    background-color: var(--bv-base);
    color: var(--bv-white);
}

.category-one__item {
    position: relative;
    border-radius: 14px;
    box-shadow: 11px 15px 30px 0px rgba(128, 137, 225, 0.1);
    margin: 0 0 30px;
}

.category-one__item:hover .category-one__hover {
    transform: scaleY(1);
}

.category-one__wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--bv-soft3);
    background: var(--bv-white);
}

.category-one__thumb {
    position: relative;
    padding-bottom: calc((340 / 305) * 100%);
    margin-bottom: 44px;
}

.category-one__thumb img {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 303 334" fill="none"> <path d="M308 179.977C134.62 179.977 30.4249 281.999 0 333.01V0.00976562H308V179.977Z" fill="black"/> </svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 303 334" fill="none"> <path d="M308 179.977C134.62 179.977 30.4249 281.999 0 333.01V0.00976562H308V179.977Z" fill="black"/> </svg>');
    mask-repeat: repeat;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.category-one__content {
    position: absolute;
    left: 0;
    bottom: 18px;
    height: 195px;
    width: 100%;
    text-align: center;
}

.category-one__icon {
    position: relative;
    width: 100px;
    height: 100px;
    background-color: var(--bv-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--bv-white);
    overflow: hidden;
    margin: 0 auto 24px;
}

.category-one__icon::after {
    position: absolute;
    content: "";
    right: -29px;
    bottom: -39px;
    width: 77px;
    height: 99px;
    transform: rotate(-146.877deg);
    background: linear-gradient(177deg, rgba(var(--bv-white-rgb), 0.53) 0%, rgba(var(--bv-white-rgb), 0) 100%);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.category-one__title {
    font-size: 20px;
    line-height: 23px;
    margin: 0 20px 10px;
}

.category-one__text {
    font-size: 17px;
    color: var(--bv-secondary);
    margin: 0;
}

.category-one__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: all;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: white;

}

.category-one__hover .dec {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.category-one__hover__thumb {
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    height: 100%;
}

.category-one__hover__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.category-one__hover__thumb::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    content: "";
    background: rgba(30, 31, 37, 0.5);
}

.category-one__hover__content {
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    padding: 10px;
}

.category-one__hover__icon {
    position: relative;
    width: 100px;
    height: 100px;
    background-color: var(--bv-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--bv-white);
    overflow: hidden;
    margin: 0 auto 28px;
}

.category-one__hover__icon::after {
    position: absolute;
    content: "";
    right: -29px;
    bottom: -39px;
    width: 77px;
    height: 99px;
    transform: rotate(-146.877deg);
    background: linear-gradient(177deg, rgba(var(--bv-white-rgb), 0.53) 0%, rgba(var(--bv-white-rgb), 0) 100%);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.category-one__hover__title {
    font-size: 26px;
    color: var(--bv-white);
    line-height: 1.3;
    margin: 0 0 10px;
}

.category-one__hover__title a {
    color: inherit;
    background-image: linear-gradient(currentcolor, currentcolor), linear-gradient(currentcolor, currentcolor);
    display: inline;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
}

.category-one__hover__title a:hover {
    color: var(--bv-base);
    background-size: 0% 1px, 100% 1px;
}

.category-one__hover__text {
    font-size: 20px;
    color: var(--bv-white);
    margin: 0;
}

.category-one__item.video .category-one__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 49px;
    height: 49px;
    background-color: var(--bv-white);
    border-radius: 50%;
    font-size: 20px;
    color: var(--bv-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    overflow: visible;
}

.category-one__item.video .category-one__thumb {
    margin-bottom: 0;
}

.category-one__item.video .category-one__thumb img {
    mask: none;
}

.category-one__item.video .category-one__icon svg {
    width: 30px;
    height: 30px;
}

.category-one__item.video .category-one__icon::before {
    content: "";
    border: 1px solid rgba(var(--bv-base-rgb), 0.47);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: calc(100% + 107px);
    height: calc(100% + 107px);
    border-radius: 50%;
    animation: zoomBig 3.25s linear infinite;
    -webkit-animation-delay: 0.55s;
    animation-delay: 0.55s;
}

.category-one__item.video .category-one__icon::after {
    content: "";
    border: 1px solid rgba(var(--bv-base-rgb), 0.47);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: calc(100% + 107px);
    height: calc(100% + 107px);
    border-radius: 50%;
    animation: zoomBig 3s linear infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

/* Registration Modal Styles */
.modal-register {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-register.active {
    display: flex;
}

.modal-register__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-register__content {
    position: relative;
    background: #fff;
    width: 95%;
    max-width: 450px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10001;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-register__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: #f1c40f;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-register__close:hover {
    color: #e67e22;
}

.modal-register__header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.modal-register__icon-wrap {
    background: #fef5e7;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.modal-register__title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.modal-register__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-register__field input,
.modal-register__field select,
.modal-register__field textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.modal-register__field input:focus,
.modal-register__field select:focus,
.modal-register__field textarea:focus {
    border-color: #f39c12;
}

.modal-register__field textarea {
    height: 80px;
    resize: none;
}

.modal-register__submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.modal-register__submit {
    background: #f39c12;
    color: #fff;
    border: none;
    padding: 10px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
}

.modal-register__submit:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.modal-register__submit:active {
    transform: translateY(0);
}

@media (max-width: 576px) {
    .modal-register__content {
        padding: 40px 20px;
    }

    .modal-register__title {
        font-size: 26px;
    }
}