@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Quicksand", sans-serif;
    font-size: 15px;
}

html {
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    background: #fff6f7;
}

.top-header {
    background-color: #B11116;
    color: white;
    padding: 5px 0;
}

a {
    transition: .3s;
    text-decoration: none;
}

a:hover {
    color: #ffcb05 !important;
}

.logo-section {
    background-color: #fff6f7;
    height: 122px;
}

.company-logo {
    max-width: 135px;
}

.nav-section {
    background-color: #B11116;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.search-form input {
    outline: none;
    width: 100%;
    padding: 8px 80px 8px 15px;
    border: none;
    border-radius: 6px;
}

.search-form button {
    width: 40px;
    height: 40px;
    background: #ffcb05;
    border: 0;
    border-radius: 5px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0px;
}

.search-form button svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}

.top_header_heading {
    font-size: 16px;
    font-weight: 500;
}

.contact-info {
    display: flex;
    align-items: center;
    padding: 10px 0px;
    margin-bottom: 0px;
    gap: 40px;
    padding-left: 0px;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    fill: #b11116;
}

.contact__item__link {
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

.contact__item__link a {
    text-decoration: none;
    color: #231f20;
    font-size: 16px;
}

.active {
    background: #ffcb05;
}

.header__menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.header__menu__home {
    overflow-x: hidden;
}

.header__menu nav ul li:hover {
    background: #ffcb05;
}

.header__menu nav ul li {
    transition: all 0.4s ease;
}

.header__menu nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    font-size: 16px;
    text-decoration: none;
}
.header__menu nav ul li a:hover {
    color: #ffffff !important;
}

.header__menu nav ul li a i {
    margin-right: 5px;
}

.header__menu__link svg {
    width: 12px;
    fill: #fff;
    margin-left: 6px;
}

.header__menu__link {
    position: relative;
    transition: .3s;
}

.header__menu__link:hover {
    background: #ffcb05;
    color: #fff !important;
}

a.caret-down:after {
    content: "";
    position: relative;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #fff transparent transparent transparent;
    display: inline-block;
    top: 1px;
    margin-left: 5px;
    transition: 0.4s;
}

.line-clamp-3 {
    width: 170px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header__menu li:hover a.caret-down:after {
    transform: rotate(-180deg);
}

.menu__next,
.menu__previous {
    text-decoration: none;
}

.menu__next svg,
.menu__previous svg {
    width: 12px;
    fill: #fff;
}

.header__menu li {
    position: relative;
}

.header__menu {
    background-color: #c8102e;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.header__menu nav {
    flex: 1;
    position: relative;
}

.header__menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.drown__menu {
    width: 240px;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
}

.header__menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drown__menu ul li {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
}

.header__menu li ul li:last-child {
    border-bottom: none;
}

.header__menu li ul li a {
    padding: 12px 15px;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
}

.header__menu li ul li:hover {
    background: #fff;
}

.header__menu li ul li:hover a {
    color: #ffcb05 !important;
}

.section__slider {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section__slider img {
    width: 100%;
    max-width: 1520px;
}

.section__about {
    padding: 80px 0;
}

.section__about img {
    max-width: 100%;
    height: auto;
    position: sticky;
    top: 20px;
}

.section__about .about__content {
    padding-left: 30px;
}

.section__about .sub-title {
    color: #666;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section__about .title {
    color: #c8102e;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section__about .description {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0px;
}

.section__about .accordion-item {
    border: none;
    margin-bottom: 10px;
}

.section__about .accordion-button {
    color: #333;
    font-weight: 600;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.section__about .accordion-button:not(.collapsed) {
    color: #ffcb05 !important;
    background-color: #fff;
    box-shadow: none;
}

.section__about .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.section__about .accordion-body {
    padding: 20px;
}

.accordion-button:hover {
    color: #ffcb05 !important;
}

.content-faq {
    line-height: 1.8;
}

.content-faq > * {
    margin-bottom: 10px;
}

.section__why {
    position: relative;
    margin-bottom: 50px;
}

.section__why::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section__why .container {
    position: relative;
    z-index: 1;
}

.section__why .title {
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    z-index: 9;
    padding: 0;
    margin: 0 0;
    position: relative;
    display: block;
    color: #b11116;
    font-weight: 700;
}

.section__why .content {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 20px;
}

.section__why__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.section__why__list li {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.section__why__list .icon {
    width: 104px;
    height: 104px;
    background: #fff6f7;
    margin-bottom: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.section__why__list .icon img {
    width: 64px;
    width: 64px;
}

.section__why__list .title-item {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
}

.section__why__list .content-item {
    color: #000;
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.title-item {
    text-align: center;
}

.section__why__img {
    width: 100%;
    position: absolute;
    bottom: 0px;
}

.section__book {
    padding: 60px 0;
}

.section__book__container {
    position: relative;
    border-radius: 6px;
    overflow-x: hidden;
}

.section__book__container img {
    max-width: 100%;
}

.book__wrapper {
    max-width: 600px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50%;
    display: flex;
    background: linear-gradient(90deg, #b11116 0%, rgba(255, 255, 255, 0) 100%);
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: 20px 100px 20px 50px;
}

.book__content {
    color: #fff;
}

.book__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.book__desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.book__btn {
    display: inline-block;
    padding: 12px 32px;

    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.book__btn:hover {
    background-color: #ffcb05;
    border-color: #ffcb05;
    transform: translateY(-2px);
    color: white!important;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section__banner {
    padding: 60px 0;
}

.banner__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.banner__item:hover {
    transform: translateY(-5px);
}

.banner__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.banner__item:hover .banner__image img {
    transform: scale(1.1);
}

.partners__subtitle {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 20px;
}

.partner__item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 129px;
    padding-bottom: 60%;
    overflow: hidden;
    height: auto;
    display: block;
    position: relative;
    background: #fff;
    border-radius: 15px;
}

.partner__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 10px;
    transition: all .5s ease;
}

.partner__item:hover img {
    transform: scale(1.05);
}

.footer {
    background-color: #B11116;
    color: #fff;
    padding: 40px 0 0;
}

.footer__title {
    color: #ffd700;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer__logo {
    margin-bottom: 30px;
}

.footer__logo img {
    max-width: 180px;
}

.payment__methods {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.payment__methods img {
    height: 30px;
    background: #fff;
    padding: 5px;
    border-radius: 4px;
}

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

.footer__list li {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer__list span {
    color: #ffd700;
    font-weight: 500;
}

.footer__list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__list a:hover {
    color: #ffd700;
}

.social__links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social__link img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s;
}

.social__link:hover img {
    transform: scale(1.1);
}

.footer__copyright {
    border-top: 1px solid #ffcb05;
    padding: 15px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 16px;
}

.brand {
    font-weight: bold;
}

.unit {
    color: #dc3545;
}

.additional-links {
    margin-top: 15px;
    font-size: 14px;
}

.link {
    color: #0d6efd;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.swiper {
    height: 580px;
    width: 1519px;
}

.mySwiper img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}


/* CSS cho Breadcrumb */
nav[aria-label="breadcrumb"] {
    margin-top: 30px;
    background-size: cover;
    background-position: center center;
    padding: 100px 0;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "-->";
}
.breadcrumb-item.active {
    background: transparent;
}

/* CSS cho blog */
.blog-container {
    padding: 30px 0;
    margin-bottom: 50px;
}
.post-item {
    margin-bottom: 30px;
}
.card {
    border: none;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.post-thumbnail {
    margin-bottom: 15px;
}
.post-thumbnail img {
    border-radius: 8px;
}
.post-title {
    font-size: 1.25rem;
    font-weight: bold;
}
.post-excerpt {
    font-size: 1rem;
    color: #555;
}
.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
}
.read-more-btn:hover {
    text-decoration: underline;
}
.post-item .post-thumbnail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}
.blog-pagination {
    display: flex;
    margin-top: 30px;
    justify-content: center;
}
.page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
}
.page-numbers.current {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    font-weight: bold;
}
.page-numbers:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}
.page-numbers.dots {
    background: transparent;
    color: #777;
    border: none;
    font-weight: bold;
}
.next.page-numbers {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.next.page-numbers:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.single-blog-post {
    margin: 40px auto;
    margin-bottom: 100px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.post-thumbnail img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.post-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.post-meta i {
    margin-right: 5px;
    color: #007bff;
}

.post-content {
    font-size: 18px;
    line-height: 1.6;
}
