@font-face {
    font-family: 'MyFont';
    src: url('/fonts/Roboto-Regular.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'MyFont', sans-serif;
}

.navbar {
    background: #0D8E4F;
    padding: 10px 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav .nav-item {
    margin-right: 20px;
    /* Điều chỉnh khoảng cách giữa các menu item */
}

.text-secondary {
    color: var(--bd-secondary) !important;
}

.bd-section-subtitle {
    color: #FFB800;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.bd-section-title {
    font-weight: 600;
    font-family: var(--bd-ff-title);
}

.navbar-nav .dropdown-menu {
    margin-top: 8px;
    /* Điều chỉnh khoảng cách giữa dropdown menu và item */
}

.nav-link:hover {
    color: #f8d210 !important;
    text-decoration: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

.nav-item.dropdown:hover .nav-link i {
    transform: rotate(180deg);
    transition: transform 0.3s;
}


/* Định dạng chung cho dropdown */

.dropdown-menu {
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    min-width: 200px;
    /* opacity: 0; */
    /* visibility: hidden; */
    transform: translateY(10px);
    /* transition: all 0.3s ease-in-out; */
}


/* Khi hover vào dropdown, hiển thị menu */

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Định dạng cho từng mục con trong dropdown */

.dropdown-menu .dropdown-item {
    font-size: 16px;
    color: #333;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}


/* Khi hover vào mục con */

.dropdown-menu .dropdown-item:hover {
    background: #0D8E4F;
    color: white;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown i {
    transition: transform 0.3s;
}

.dropdown.active i {
    transform: rotate(180deg);
}

.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: #222;
    transition: 0.4s ease-in-out;
    z-index: 1050;
}

.sidebar.active {
    left: 0;
}

.sidebar a {
    padding: 12px 20px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.sidebar a:hover {
    background-color: #444;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
}

.overlay.active {
    display: block;
}

.submenu {
    display: none;
    padding-left: 20px;
}

.sidebar a.toggle {
    cursor: pointer;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-position: center;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    color: rgb(255, 255, 255) !important;
}

.item-prev:after,
.item-next:after {
    color: rgb(0, 0, 0) !important;
}

.bd-blog-title a {
    color: #06A16A !important;
    font-weight: 700;
}

@media (min-width: 1200px) {
    .bannaer_slider {
        width: 100%;
        height: 700px;
    }

    .bd-blog-title {
        font-size: 20px;
    }

    .bd-blog-content p {
        font-size: 16px;
    }

    .bd-blog-content {
        height: 180px;
    }

    .btn-sig-regis {
        display: flex;
        gap: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .bannaer_slider {
        width: 100%;
        height: 600px;
    }

    .bd-blog-title {
        font-size: 17px;
    }

    .bd-blog-content p {
        font-size: 16px;
    }

    .bd-blog-content {
        height: 180px;
    }

    .btn-sig-regis {
        display: flex;
        gap: 20px;
    }

    .navbar-nav li a {
        font-size: 14px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .bannaer_slider {
        width: 100%;
        height: 100%;
    }

    .bd-blog-title {
        font-size: 18px;
    }

    .bd-blog-content p {
        font-size: 16px;
    }

    .bd-blog-content {
        height: 180px;
    }

    .btn-sig-regis {
        display: flex;
        gap: 20px;
    }
}

@media (max-width: 575.98px) {
    .bannaer_slider {
        width: 100%;
        height: 100%;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 28px !important;
    }

    .bd-blog-title {
        font-size: 17px;
    }

    .bd-blog-content p {
        font-size: 16px;
    }

    .bd-blog-content {
        height: 157px;
    }

    .btn-sig-regis {
        display: flex;
        gap: 20px;
    }
}

.btn-sig-regis {
    display: flex;
    gap: 20px;
}

.bd-live-class-shape-01 {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 60px;
}

.bd-live-class-shape-02 {
    position: absolute;
    max-width: 60px;
    left: 40%;
    bottom: 22%;
}

.bd-live-class-shape-03 {
    position: absolute;
    max-width: 40px;
    right: 10%;
    top: 30px;
}

.section-space {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-space {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .section-space {
        padding-top: 65px;
        padding-bottom: 65px;
    }
}

.bd-live-class-thumb-wrapper.style-one .bd-live-class-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px dashed #06A16A;
    right: -30px;
    bottom: -30px;
    border-radius: 6px;
    z-index: -1;
}

.bd-live-class-thumb-wrapper.style-one .bd-live-class-thumb {
    margin: 0 30px 30px 50px;
    max-width: 450px;
    position: relative;
    z-index: 3;
}

.bd-live-class-thumb-wrapper.style-one .bd-live-class-thumb img {
    border-radius: 6px;
    width: 100%;
    height: 100%;
}

.art-shape {
    max-width: 100%;
    object-fit: cover;
}

.bd-section-title {
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    padding-bottom: 20px;
}

.bd-section-subtitle {
    color: #06A16A;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .bd-live-class-thumb-wrapper.style-one .bd-live-class-thumb {
        max-width: 100%;
        margin-left: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .bd-event-shape .shape-2 {
        display: none;
    }

    .bd-event-shape .shape-3 {
        display: none;
    }
}

.g-30,
.gy-30 {
    --bs-gutter-y: 30px;
}

.g-30,
.gx-30 {
    --bs-gutter-x: 30px;
}

.bd-event-shape .shape-2 img {
    width: 120px;
}

.bd-event-shape .shape-3 img {
    width: 120px;
}

.bd-event-shape .shape-3 {
    position: absolute;
    right: 210px;
    bottom: 70px;
    animation: KidsBounceTwo 3s linear 1s infinite alternate backwards;
}

.bd-event-shape .shape-2 {
    position: absolute;
    left: 80px;
    bottom: 50px;
    animation: KidsBounce 2s linear 1s infinite alternate both;
}

.bd-event-shape .shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: -1;
}

.p-relative {
    position: relative;
}

@keyframes KidsBounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-25px);
    }
}


/* KidsBounceTwo */

@keyframes KidsBounceTwo {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-35px);
    }
}

.bd-event-wrapper.style-three .bd-event-item {
    display: grid;
    align-items: center;
    grid-template-columns: 180px auto;
    gap: 30px;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    padding: 20px 40px 20px 20px;
    border-radius: 6px;
    transition: all 0.4s ease;
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bd-event-wrapper.style-three .bd-event-item {
        grid-template-columns: 220px auto;
        padding: 20px 20px 20px 20px;
    }
}

@media (max-width: 450px) {
    .bd-event-wrapper.style-three .bd-event-item {
        grid-template-columns: auto;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .bd-event-wrapper.style-three .bd-event-item {
        align-items: start;
        padding: 20px 20px 20px 20px;
    }
}

.bd-course-wrapper.style-seven {
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    box-shadow: 0px 4px 10px 0px rgba(131, 131, 131, 0.1);
}

.bd-course-thumb-style {
    display: block;
    overflow: hidden;
}

.bd-course-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 4;
}

.bd-course-thumb-style .bd-course-thumb-bg.bg-1 {
    background-color: #D5EFDE;
}

.bd-course-thumb-style .bd-course-thumb-bg {
    border-radius: 16px 16px 0 0;
    padding: 15px 15px;
}

.bd-course-thumb-style .bd-course-thumb-bg img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.bd-course-thumb-style .bd-course-thumb-instructor.center {
    left: 50%;
    transform: translateX(-50%);
}

.bd-course-thumb-style .bd-course-thumb-instructor {
    position: absolute;
    bottom: 0;
    z-index: 5;
}

.bd-course-thumb-style .small-text {
    position: absolute;
    top: 36px;
    left: 30px;
    font-size: 27px;
    font-family: var(--bd-ff-style);
    font-weight: var(--bd-fw-sbold);
}

.bg-text-color {
    color: var(--bd-bg-primary);
}

.bd-course-thumb-style .bd-course-overly-title {
    position: absolute;
    top: 50px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: var(--bd-ff-style);
    font-weight: var(--bd-fw-bold);
    line-height: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .fs-200 {
        font-size: 150px;
    }
}

.bd-course-thumb-style .small-text {
    position: absolute;
    top: 36px;
    left: 30px;
    font-size: 27px;
    font-family: var(--bd-ff-style);
    font-weight: var(--bd-fw-sbold);
}

.bd-course-wrapper.style-seven:hover .bd-course-info {
    opacity: 1;
    visibility: visible;
}

.bd-course-wrapper.style-seven .bd-course-info {
    width: 100%;
    height: 500px;
    background-color: white;
    border-bottom: 1px solid var(--bd-border-primary);
}

.bd-course-info {
    background: white;
    padding: 30px 30px;
    min-width: 100%;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.3s;
    z-index: 11;
    transition: all 0.3slinear;
    border-radius: 16px;
}

.bd-course-wrapper.style-seven .bd-course-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bd-blog-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bd-blog-title p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.underline a:hover {
    background-size: 0 1px, 100% 1px;
    color: #06A16A !important;
}

.underline a {
    display: inline;
    background-image: linear-gradient(#06A16A, #06A16A), linear-gradient(#06A16A, #06A16A);
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 83%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
    padding: 0 0 1% 0;
}

.bd-course-title-a {
    color: black;
    margin-top: 0px;
    line-height: 1.25;
    text-decoration: none;
    font-weight: 600;
}

.bd-course-wrapper.style-seven .bd-course-content {
    padding: 22px 22px 30px 22px;
    border-radius: 0 0 16px 16px;
    background-color: white;
}

.bd-btn {
    font-size: 16px;
    text-transform: capitalize;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    height: 50px;
    transition: all 0.3s linear;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    white-space: nowrap;
}

.btn-outline-border-primary {
    background-color: #07A169;
    color: white;
    border: 1px solid #07A169;
}

a {
    text-decoration: none;
}

.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-testimonial-quotes {
    width: 268px;
    height: 268px;
    background-color: #07A169;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.bd-testimonial-meta-thumb-1 {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 3px solid var(--bd-white);
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.15));
    animation: scaleUp 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate both;
}

.bd-testimonial-quotes-wrap {
    width: 362px;
    height: 362px;
    padding: 47px;
    border-radius: 100%;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bd-testimonial-meta-thumb-2 {
    position: absolute;
    top: 50px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 3px solid var(--bd-white);
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.15));
    animation: scaleUp 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate both;
}

.bd-testimonial-meta-thumb-3 {
    position: absolute;
    bottom: -20px;
    left: 130px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 3px solid var(--bd-white);
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.15));
    animation: scaleUp 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate both;
}

@keyframes scaleUp {
    0% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}

.bd-testimonial-item {
    display: flex;
    align-items: center;
    gap: 30px 80px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background-color: white;
    padding: 80px 80px 80px 80px;
    justify-content: space-between;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .bd-testimonial-item {
        gap: 30px 50px;
        padding: 60px 30px 60px 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .bd-testimonial-item {
        padding: 40px 40px 40px 40px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px 0;
    }
}

.rating {
    margin-bottom: 16px;
}

.description {
    font-size: 18px;
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 0 15px;
}

.fa-star {
    color: #f8d210;
}

.author .thumb {
    width: 60px;
    height: 60px;
    min-width: 60px;
}

.name {
    color: #000;
    font-weight: 700;
    font-size: 20px;
}

.author .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

@media (max-width: 450px) {
    .bd-testimonial-quotes-wrap {
        width: 290px;
        height: 290px;
    }
}

@media (max-width: 450px) {
    .bd-testimonial-quotes {
        width: 180px;
        height: 180px;
    }
}

.bd-newsletter-wrapper.style-three {
    padding: 0 100px;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    margin-top: 152px;
}

.bd-newsletter-wrapper.style-three .bd-newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    border-radius: 6px;
    mix-blend-mode: color-burn;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

.bd-newsletter-wrapper.style-three .thumb {
    position: relative;
    margin-top: -190px;
}

.bd-newsletter-wrapper.style-three .bd-newsletter-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 6px;
    padding: 15px 20px;
    position: absolute;
    left: 50%;
    bottom: 50px;
    z-index: 5;
    transform: translateX(-50%);
    width: 310px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.bd-newsletter-wrapper.style-three .bd-newsletter-badge-text {
    font-size: 18px;
    color: black;
}

.bd-newsletter-input {
    position: relative;
    margin: 0 auto;
    z-index: 9;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .bd-newsletter-wrapper.style-three {
        padding: 30px 20px;
        margin-top: 0;
    }
}

.bd-newsletter-input input {
    width: 100%;
    height: 60px;
    border-radius: 6px;
    outline: none;
    border: 0;
    padding-inline-start: 25px;
    padding-inline-end: 215px;
    font-size: 16px;
    line-height: 32px;
    font-weight: 500;
    background-color: white;
}

.bd-newsletter-input button {
    position: absolute;
    inset-inline-end: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 40px 0 35px;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
}

.btn-primary {
    background-color: #07a169;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .bd-newsletter-wrapper.style-three {
        padding: 0 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bd-newsletter-wrapper.style-three {
        padding: 60px 50px;
        margin-top: 0;
    }
}

.theme-bg {
    background-color: #F2FAF7;
}

.bd-instructor-wrapper.style-nine .bd-instructor-thumb-wrap {
    background-color: white;
    padding: 5px;
    border-radius: 16px;
    margin-bottom: 9px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.bd-instructor-wrapper.style-nine .bd-instructor-thumb a::before {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: #07a169;
    border-radius: 16px;
}

.img-accoute {
    height: 300px;
    width: 100%;
    /* max-width: 100%; */
    object-fit: cover;
}

.bd-instructor-wrapper.style-nine .bd-instructor-social {
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 100%;
    z-index: 5;
    opacity: 0;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}

.social-icon-list {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .social-icon-list {
        gap: 10px;
    }
}

.social-icon-list li {
    list-style: none;
}

.bd-instructor-social .bd-icon-3 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.5s ease-in-out;
}

.bd-instructor-social .bd-icon-4 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.6s ease-in-out;
}

.social-icon-list li {
    list-style: none;
}

.bd-instructor-social .bd-icon-1 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.3s ease-in-out;
}

.bd-instructor-social .bd-icon-2 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.4s ease-in-out;
}

.bd-instructor-wrapper.style-nine:hover .bd-instructor-social {
    opacity: 1;
}

.bd-instructor-wrapper.style-nine:hover .bd-instructor-social .bd-icon-3 {
    transform: translateY(-40px);
    opacity: 1;
}

.bd-instructor-wrapper.style-nine:hover .bd-instructor-social .bd-icon-4 {
    transform: translateY(-40px);
    opacity: 1;
}

.bd-instructor-wrapper.style-nine:hover .bd-instructor-social .bd-icon-1 {
    transform: translateY(-40px);
    opacity: 1;
}

.bd-instructor-wrapper.style-nine:hover .bd-instructor-social .bd-icon-2 {
    transform: translateY(-40px);
    opacity: 1;
}

.theme-social.circle a {
    border-radius: 50px;
}

.theme-social ul li a {
    color: black;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: inline-flex;
    border: 1px solid white;
    border-radius: 3px;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.bd-instructor-wrapper.style-nine:hover .bd-instructor-thumb-wrap {
    background-color: #f8d210;
}

.theme-social.has-white a {
    color: white;
    border-color: white;
    background-color: transparent;
}

.theme-social.has-white a:hover {
    color: #07a169 !important;
    border-color: white;
    background-color: white;
}

.bd-instructor-info {
    text-align: center;
}

.bd-instructor-info .name {
    margin-bottom: 5px;
}

.bd-instructor-info span {
    color: #4d4d4d;
    display: block;
}

.bd-kinder-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: luminosity;
    opacity: 0.05;
    z-index: -1;
}

.z-index-11 {
    z-index: 11;
}

@media (max-width: 575px) {
    .bd-newsletter-input input {
        padding-inline-end: 25px;
    }
}

@media (max-width: 575px) {
    .bd-newsletter-input button {
        position: initial;
        transform: translateY(0);
        width: 100%;
        margin-top: 15px;
        background-color: #ffb800;
    }

    .bd-newsletter-wrapper.style-three {
        padding: 30px 30px;
        margin-top: 0;
    }
}

.bd-blog-wrapper.style-eight {
    border-radius: 6px;
    overflow: hidden;
}

.bd-blog-wrapper.style-eight .bd-blog-thumb {
    overflow: hidden;
    transition: all 0.3s ease-out 0s;
    position: relative;
}

.bd-blog-wrapper .bd-blog-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.bd-blog-wrapper.style-eight .bd-blog-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 1.1s cubic-bezier(0, 0, 0.2, 1);
}

.bd-blog-wrapper.style-eight .bd-blog-content {
    position: relative;
    padding: 15px 14px;
    border: 1px solid #E5E5E5;
    border-top: 0;
    border-radius: 0 0 6px 6px;
    padding-inline-start: 52px;
    border-inline-start: 0;
    transition: all 0.3s ease-out 0s;
}

.bd-blog-wrapper.style-eight .date {
    position: absolute;
    bottom: 0;
    height: 100%;
    writing-mode: vertical-lr;
    left: 0;
    transform: rotate(-180deg);
}

.bd-blog-wrapper:hover .bd-blog-thumb::before {
    animation: shine 800ms;
}

.bd-blog-wrapper.style-eight .date span {
    background: #ffb800;
    color: white;
    padding: 0px 2px;
    height: 100%;
    display: inline-block;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}

.section-space-bottom {
    padding-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-space-bottom {
        padding-bottom: 80px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .section-space-bottom {
        padding-bottom: 65px;
    }
}

.theme-bg-05 {
    background-color: #F2FAF7;
}

.bd-footer-widget-logo {
    margin-bottom: 20px;
}

.bd-footer-widget-description {
    color: black;
    margin-bottom: 25px;
}

.list-none ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-1-col-2 {
    margin-left: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-1-col-2 {
        margin-left: 50px;
    }

    .footer-1-col-3 {
        margin-left: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .footer-1-col-2 {
        margin-left: 0;
    }

    .footer-1-col-3 {
        margin-left: 0 !important;
    }
}

.bd-footer-widget .bd-footer-widget-title {
    margin-bottom: 20px;
    color: #808080;
    font-size: 20px;
    font-weight: 700;
}

.bd-footer-widget .bd-footer-widget-links ul li:not(:last-child) {
    margin-bottom: 10px;
}

.bd-footer-widget .bd-footer-widget-links ul li {
    list-style: none;
    font-weight: 600;
}

.footer-1-col-3 {
    margin-left: 70px;
}

.bd-footer-widget .bd-footer-widget-links ul li a {
    color: black;
}

.bd-footer-widget-contact-item {
    display: flex;
    gap: 10px;
    color: #4d4d4d;
}

.bd-footer-widget-contact-item a {
    color: #4d4d4d;
}

.theme-social.social-brand-color ul li .facebook {
    background-color: #1877F2;
}

.theme-social.social-brand-color ul li a {
    color: white;
    border: none;
    transform: translateY(0px);
}

.theme-social.social-brand-color ul li .twitter {
    background-color: #202122;
}

.theme-social.social-brand-color ul li .linkedin {
    background-color: #0A66C2;
}

.theme-social.social-brand-color ul li .instagram {
    background-color: #E4405F;
}

.theme-social.social-brand-color ul li .youtube {
    background-color: #FF0000;
}
.theme-social.social-brand-color ul li .zalo {
    background-color: #4583f5;
}

#header-sticky {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

.bd-sticky {
    background: #0D8E4F;
    /* Hiệu ứng nền mờ khi cuộn */
    box-shadow: 0 4px 6px #2c2c2c;
}

@-moz-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@-ms-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@-webkit-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

.bd-breadcrumb-bg-two {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}

.fix {
    overflow: hidden;
}

.bd-breadcrumb-shape .shape-1 {
    position: absolute;
    left: 60px;
    bottom: 50px;
    animation: upDown 1.8s ease-in-out 1.8s forwards infinite alternate;
    z-index: 2;
}

.bd-breadcrumb-shape .shape-3 {
    position: absolute;
    right: 200px;
    top: 30px;
    animation: scaleZeroOne 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate both;
    z-index: 2;
}

@media (max-width: 575px) {
    .bd-breadcrumb-shape .shape-1 {
        left: 10px;
        bottom: 20px;
        width: 50px;
    }
}

@media (max-width: 575px) {
    .bd-breadcrumb-shape .shape-3 {
        right: 30px;
        top: 30px;
        width: 50px;
    }
}

.bd-breadcrumb.style-two {
    min-height: 300px;
}

.bd-breadcrumb {
    position: relative;
    z-index: 15;
    min-height: 450px;
}

.bd-breadcrumb-shape img {
    max-width: 100%;
}

@keyframes upDown {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(-15px);
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -o-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes scaleZeroOne {
    0% {
        transform: scale(0.6);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.bd-instructor-wrapper.style-four .bd-instructor-item {
    text-align: center;
}

.bd-instructor-wrapper.style-four .bd-instructor-thumb-wrapper {
    border-radius: 100%;
    position: relative;
    z-index: 2;
    transition: 0.3s;
    position: relative;
    padding: 20px;
}

.bd-instructor-wrapper.style-four .bd-instructor-thumb-wrapper .bd-instructor-thumb a {
    display: block;
    position: relative;
}

.bd-instructor-wrapper.style-four .bd-instructor-thumb-wrapper .bd-instructor-thumb a img {
    width: 276px;
    height: 276px;
    border-radius: 100%;
}

.bd-instructor-wrapper.style-four .bd-instructor-thumb-wrapper .bd-instructor-thumb a::after {
    background: #0D8E4F;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bd-instructor-wrapper.style-four .bd-instructor-thumb-wrapper::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-image: url(/source/images/instructor-border-shape.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    transition: 0.5s all;
}

img {
    max-width: 100%;
    object-fit: cover;
}

.bd-instructor-wrapper.style-four .bd-instructor-item {
    text-align: center;
}

.social-icon-list {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bd-instructor-social .bd-icon-1 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.3s ease-in-out;
}

.bd-instructor-social .bd-icon-2 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.4s ease-in-out;
}

.bd-instructor-social .bd-icon-3 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.5s ease-in-out;
}

.bd-instructor-wrapper.style-four .bd-instructor-thumb-wrapper .bd-instructor-social {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
    margin-left: -25px;
}

.bd-instructor-wrapper.style-four .bd-instructor-item:hover .bd-instructor-thumb-wrapper::after {
    transform: rotate(-90deg);
}

.bd-instructor-details-info {
    padding: 30px 30px;
    border-radius: 6px;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.sidebar-left {
    margin-right: 15px;
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .sidebar-left {
        margin-right: 0;
    }
}

.mb-20 {
    margin-bottom: 20px;
}

.bd-instructor-details-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.bd-instructor-details-info .designation {
    color: #6c757d;
}

.bd-instructor-details-info .bd-instructor-info-list ul li:not(:last-child) {
    margin-bottom: 5px;
}

.bd-instructor-details-info .bd-instructor-info-list ul li {
    list-style: none;
}

.bd-instructor-feature-box {
    padding: 22px 30px 30px;
    border-radius: 6px;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.mb-30 {
    margin-bottom: 30px;
}

.bd-instructor-details-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.bd-instructor-feature-box {
    padding: 22px 30px 30px;
    border-radius: 6px;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.bd-instructor-progress .progress-item {
    margin-bottom: 20px;
}

.bd-instructor-progress .title {
    font-size: 16px;
    color: #0A0A0A;
    margin-bottom: 5px;
    display: block;
    line-height: 1;
}

.bd-instructor-progress .progress-counter {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.bd-instructor-progress .progress-bar {
    position: relative;
    height: 10px;
    width: 100%;
    background-color: #F5F5F5;
    border-radius: 5px;
}

.bd-instructor-progress .progress {
    height: 100%;
    background-color: #07A169;
    border-radius: 5px;
    position: relative;
    width: 0;
    transition: width 1s ease-in-out;
}

.progress {
    height: 6px;
    overflow: visible;
    background-color: #07A169;
    border-radius: 10px;
}

.social-icon-list {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon-list li {
    list-style: none;
}

.theme-social ul li a {
    color: black;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: inline-flex;
    border: 1px solid #E5E5E5;
    border-radius: 3px;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.theme-social ul li a i {
    transition: all 0.3s ease-in-out;
}

.theme-social ul li a:hover {
    color: white;
    border-color: #07A169;
    background-color: #07A169;
}

p {
    word-break: break-word;
    overflow-wrap: break-word;
}

.bd-product-card {
    padding: 30px;
    background-color: #F5F5F5;
    text-align: center;
    position: relative;
    display: block;
    border-radius: 6px;
}

.bd-product-card::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #F5F5F5;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    border-radius: 6px;
    z-index: 1;
}

.bd-product-thumb {
    height: 215px;
    width: 150px;
    margin: 0 auto;
    margin-bottom: 15px;
}

@media (max-width: 575px) {
    .bd-product-thumb {
        width: 100%;
        height: 100%;
    }
}

.bd-product-thumb img {
    height: 100%;
    width: 100%;
}

.bd-product-content {
    display: block;
}

.current-price {
    font-size: 16px;
    font-weight: 500;
    color: #4d4d4d;
}

.bd-product-cart-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all .3 sease-in-out;
    z-index: 2;
}

.bd-product-card-wrap:hover .bd-product-card::before {
    opacity: 1;
    visibility: visible;
    box-shadow: inset 0 0 7px 0 #808080;
}

.bd-product-card-wrap {
    position: relative;
}

.bd-product-card-wrap:hover .bd-product-cart-btn {
    opacity: 1;
    visibility: visible;
}

.d-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-search-books::placeholder {
    color: #5c5c5c86;
}

.form-control::placeholder {
    opacity: 0.5;
}

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}

h2.small,
.h2.small {
    font-size: 40px;
    line-height: 1.1;
}

@media (max-width: 575px) {

    h2.small,
    .h2.small {
        font-size: 30px;
    }
}

.bd-book-format-wrap {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bd-book-format-option.selected {
    border: 2px solid #07A169;
    background-color: #F5F5F5;
}

.bd-book-format-option {
    border: 1px solid #07A169;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    text-align: start;
    transition: all 0.3s ease;
    min-width: 150px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}

.des-news {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Giới hạn hiển thị 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bd-blog-widget:not(:last-child) {
    margin-bottom: 30px;
}

.bd-blog-widget {
    background: white;
    box-shadow: 0px 10px 30px rgba(28, 51, 84, 0.08);
    padding: 30px 30px;
    border-radius: 5px;
}

.tagcloud a {
    font-size: 16px !important;
    color: var(--bd-taxonomy-color);
    font-weight: 500;
    border: 1px solid var(--bd-border-primary);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    height: 36px;
    margin: 5px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.bd-recent-post-item:not(:last-child) {
    margin-bottom: 20px;
}

.bd-recent-post-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bd-recent-post-thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
}

.bd-recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
    .bd-recent-post-item {
        flex-direction: column;
    }
}

.bd-blog-widget.widget_categories ul li:not(:last-child) {
    margin-bottom: 10px;
}

.bd-blog-widget.widget_categories ul li {
    align-items: center;
    display: flex;
    justify-content: space-between;
    color: black;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

ul {
    margin: 0px;
    padding: 0px;
}

.ul-title a {
    display: block;
    width: 100%;
    /* Điều chỉnh theo ý muốn */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: black;
}

.tagcloud a {
    font-size: 16px !important;
    color: #4d4d4d;
    font-weight: 500;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    height: 36px;
    margin: 5px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.bd-breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: black;
    font-weight: 500;
    font-size: 16px;
}

.bd-contact-form-thumb img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
}

.bd-contact-form-wrapper {
    margin-right: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .bd-contact-form-wrapper {
        margin-right: 0;
    }
}


.bd-course-wrapper.style-four {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}

.bd-course-wrapper.style-four .bd-course-thumb {
    overflow: hidden;
    transition: all 0.3s ease-out 0s;
    border-radius: 24px;
    position: relative;
    width: 100%;
}

.bd-course-wrapper.style-four .bd-course-thumb img {
    width: 100%;
    transition: all 0.3s ease-out 0s;
    height: 100%;
    object-fit: cover;
}

.bd-course-wrapper.style-four .shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.bd-header-top {
    background-color: #07A169;
    padding: 10px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bd-header-top-left ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0 56px;
}

@media (max-width: 575px) {
    .bd-header-top-left ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

.bd-header-top-right a {
    color: white;
    font-size: 16px;
}

@media (max-width: 575px) {
    .bd-header-top {
        padding: 15px 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

.bd-header-top-right .dropdown-menu {
    border-radius: .5rem;
    box-shadow: 0 0 2px rgba(145, 158, 171, .2), 0 12px 24px -4px rgba(145, 158, 171, .12);
    color: var(--fc-gray-600);
    line-height: 1.2rem;
    min-width: 12rem;
    z-index: 110;
    /* top: 40px; */
    left: auto;
    right: 0;
}

.avatar-md {
    height: 2.0rem;
    width: 2.0rem;
}

.avatar {
    display: inline-block;
    position: relative;
}

.rounded-circle {
    border-radius: 50% !important;
}

.h100p {
    height: 100%;
}

.bd-authentication-form-wrapper {
    background-color: white;
    box-shadow: 0px 4px 80px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 30px 30px;
    text-align: start;
}

.bd-authentication-form-logo {
    text-align: center;
    margin-bottom: 20px;
}

.bd-authentication-form-wrapper .title {
    font-size: 32px;
}

.bd-authentication-form-wrapper .subtitle {
    color: #808080;
    margin-bottom: 20px;
}

label {
    margin-bottom: 8px;
    text-transform: capitalize;
    font-size: 16px;
    text-align: left;
    display: block;
    color: #0A0A0A;
}

label span {
    color: #FF0033;
    margin-inline-start: 3px;
}

.form-input {
    position: relative;
}

.section-space-small-top {
    padding-top: 60px;
}

.custom-container {
    max-width: 1500px;
}

.bd-dashboard-breadcrumb-bg {
    min-height: 360px;
    border-radius: 12px;
}

.image-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.bd-dashboard-profile {
    display: flex;
    align-items: end;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 70px;
    width: calc(100% - 210px);
    left: 50%;
    transform: translateX(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bd-dashboard-profile {
        width: calc(100% - 40px);
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .bd-dashboard-profile {
        flex-wrap: wrap;
        gap: 30px;
        width: calc(100% - 50px);
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .bd-dashboard-profile-user {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }
}

.bd-dashboard-profile-user {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.bd-dashboard-profile-user .thumb {
    width: 160px;
    height: 160px;
    border: 4px solid white;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
}

.bd-dashboard-profile-user .thumb img {
    width: 100%;
    height: 100%;
}

.bd-dashboard-profile-user .content .designation {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .bd-dashboard-profile-user .bd-dashboard-profile-meta {
        justify-content: center;
    }
}

.bd-dashboard-profile-user .bd-dashboard-profile-meta {
    display: flex;
    align-items: center;
    gap: 10px 20px;
    flex-wrap: wrap;
}

.bd-dashboard-profile-user .bd-dashboard-profile-meta .enrolled-course,
.bd-dashboard-profile-user .bd-dashboard-profile-meta .complete-course {
    display: flex;
    align-items: center;
    gap: 0 10px;
    color: white;
}

.bd-dashboard-area {
    margin-top: -65px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .bd-dashboard-area {
        margin-top: 65px;
    }
}

.bd-dashboard-main {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    background: white;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.08);
    padding: 30px 30px;
    position: relative;
}

.bd-dashboard-menu ul>li {
    margin-top: 12px;
    margin-bottom: 12px;
    list-style: none;
}

.bd-dashboard-menu ul>li>a {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #808080;
    font-size: 16px;
    font-weight: 500;
    background: #F5F5F5;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    padding: 9px 20px;
}
.file-upload {
    overflow: hidden;
    position: relative;
}
.file-upload input {
    cursor: pointer;
    filter: alpha(opacity = 0);
    font-size: 20px;
    height: 100%;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.bd-postbox-comment ul li {
    margin-bottom: 30px;
    list-style: none;
}
.bd-blog-postbox-comment .bd-postbox-comment-box {
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.bd-postbox-comment-box {
    display: flex
;
    align-items: start;
    padding: 30px 30px;
    border-radius: 8px;
    background-color: white;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .bd-postbox-comment-box {
        flex-direction: column;
        gap: 15px 0;
    }
}
.bd-postbox-comment-info {
    flex: 0 0 auto;
}
.bd-postbox-comment-avatar img {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 6px;
}
.bd-postbox-comment-text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 22px;
}
.bd-postbox-comment-name {
    margin-bottom: 5px;
}
.bd-postbox-comment-name .title {
    font-size: 20px;
    line-height: 1;
    color: black;
}
a, button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}
.bd-postbox-comment-name .post-meta {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #808080;
    display: inline-block;
}