:root {
    --bg-header-top: #ebebeb;
    --bg-footer: #ebebeb;
    --bg-copyright: #ebebeb;
    --bg-body: #0D002A;
    --bg-white: #ffffff;
    --text-white: #ffffff;
    --color-black: #000000;
    --bg-menu: linear-gradient(to right, #4F2CFF, #9B25FD66, #FF1BFB1A);
    --color-red: #e60023;
    --color-orange: #FF6600;
    --color-body: #fff;
    --color-active: #FF6600;
    --color-button: #031871;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: "Josefin Sans", sans-serif;
    background-color: var(--bg-body);
    color: var(--color-body);
    font-size: 1rem;
    top: 0 !important
}

a {
    color: #fff;
    text-decoration: none;
}

.allison {
    font-family: "Allison", cursive !important;
    font-weight: 400;
    font-style: normal
}

.montserrat {
    font-family: "Montserrat", sans-serif
}

.font_script {
    font-family: "Vujahday Script", cursive !important
}

.josefin {
    font-family: "Josefin Sans", sans-serif !important
}

.section {
    margin-bottom: 30px
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative
}

.overflow_hidden {
    overflow: hidden
}

.grecaptcha-badge {
    display: none
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.line-clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.maintenance {
    width: 100%;
    background-color: #fc0;
    color: #000;
    text-align: center;
    padding: 10px 0;
    z-index: 10000;
    box-shadow: 0 2px 4px rgb(0 0 0 / .1);
    font-size: .85rem
}

.mobile-menu,
.mobile-header,
.mobile-menu-overlay {
    display: none
}

.menu {
    position: fixed;
    top: -120%;
    left: 0;
    width: 22%;
    height: 100vh;
    transition: top 0.5s ease-in-out;
    z-index: 900;
    overflow: auto;
    backdrop-filter: blur(5px);
    opacity: 1;
    background: var(--bg-menu)
}

.menu.active {
    top: 0
}

.toggle-button {
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    z-index: 1000;
    border: none;
    background-color: #fff0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 50px;
    margin-top: 40px
}

.toggle-button:hover>span {
    border: 1px solid var(--color-active)
}

.active>span {
    border: 1px solid var(--color-active) !important
}

.toggle-button>span {
    width: 100%;
    border: 1px solid #fff
}

.menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    box-shadow: 0 2px 10px rgb(0 0 0 / .1);
    animation: slideDown 0.3s ease
}

@keyframes slideDown {
    from {
        transform: translateY(-100%)
    }

    to {
        transform: translateY(0)
    }
}

.flex-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    padding: 10px;
    height: 100vh
}

.menu-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    margin-top: 70px;
    gap: 20px
}

.menu-right ul {
    list-style: none
}

.menu-right .level-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    flex: 1;
    list-style: none;
    padding: 0;
    width: 80%;
    gap: 16px;
    margin-left: 28px
}

.level-1>li {
    flex: 1;
    text-align: start;
    position: relative
}

.level-1>li>a.menu-item {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    border-radius: 4px;
    font-size: 1.5rem
}

.level-1>li:hover>a.menu-item,
.level-1>li.active>a.menu-item {
    color: var(--color-active)
}

.submenu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    z-index: 999;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 8px rgb(0 0 0 / .1);
    transform: translateY(10px);
    transition: all 0.3s ease
}

.level-1>li,
.submenu li {
    position: relative
}

.has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    background: #fff;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease;
    text-align: left
}

.submenu li a:hover {
    background: #f5f5f5
}

.level-3,
.level-4,
.level-5 {
    top: 0;
    left: 100%
}

.menu__icons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center
}

.menu__icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 30px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer
}

.menu__icon:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
    color: #000
}

.menu__icon i {
    pointer-events: none
}

.menu__cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #ff4d4f;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 0 0 2px #fff;
    transition: transform 0.2s ease
}

.menu__icon--cart:hover .menu__cart-count {
    transform: scale(1.08)
}

.nav-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px
}

.menu-style-two {
    padding: 10px 0;
    display: none
}

.menu-style-two .menu-right {
    margin-left: 0
}

.menu__icon--user {
    position: relative;
    cursor: pointer;
    background-color: #f5f5f5;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    justify-content: center;
    align-items: center
}

.menu__icon--user .avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ccc;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase
}

.dropdown-user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgb(0 0 0 / .1);
    min-width: 160px;
    display: none;
    z-index: 9999
}

.dropdown-user-menu li {
    list-style: none
}

.dropdown-user-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 15px;
    font-weight: 400
}

.dropdown-user-menu li a:hover {
    background-color: #f2f2f2
}

.menu__icon--user:hover .dropdown-user-menu {
    display: block
}

.slideshow {
    background: #f5f5f5;
    position: relative;
    z-index: 1
}

.slider-item img {
    display: block;
    width: 100%
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
    padding-left: 15px;
    padding-right: 15px
}

.slider-btn {
    background: rgb(255 255 255 / .9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgb(0 0 0 / .1)
}

.slider-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgb(0 0 0 / .15)
}

.slider-btn.prev {
    left: 20px
}

.slider-btn.next {
    right: 20px
}

.slider-btn i {
    font-size: 18px;
    color: #333
}

.banner1 {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 5px
}

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 999
}

.floating-contact a {
    width: 45px;
    height: 45px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgb(0 0 0 / .3);
    font-size: 20px
}

.contact-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 0;
    background: #fff
}

.contact-btn {
    background: gold;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-size: 14px
}

.footer {
    width: 100%;
    background-color: #fff0;
}

.container_footer {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
}

.hr2 {
    border: 1px solid var(--color-active);
    width: 100px;
    margin-bottom: 15px;
}

.footer-main {
    padding: 60px 1.25rem 20px 1.25rem
}

.footer-logo {
    margin-bottom: 16px
}

.contact-btn i {
    font-size: 16px
}

.flex-footer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px
}

.footer-col_2 {
    grid-column: span 2
}

.footer-col_2 h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff
}

.footer-text {
    color: #fff;
    line-height: 1.6;
    font-size: 14px
}

.footer-logo a {
    display: block
}

.footer-text ul {
    margin-left: 17px
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: 25px
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400
}

.footer-links a:hover {
    color: #e60023
}

.footer-map {
    width: 100%;
    height: 250px;
    border: none
}

.social-icons {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    align-items: center
}

.social-icons a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;

}

.copyright {
    padding: 15px 1.25rem;
    border-top: 1px solid var(--bg-copyright);
    background: #070016;
    border-top: 1px solid rgb(0 0 0 / .1)
}

.flex-copyright {
    text-align: start;
    font-size: 12px;
    color: #FFF
}

.google-iframe {
    position: relative;
    min-height: 300px
}

.google-iframe iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.pagination-home {
    margin-top: 30px
}

.pagination-home .pagination .page-item .page-link {
    color: #555;
    font-size: .875rem
}

.pagination-home .pagination .page-item.active .page-link {
    color: #fff;
    background-color: #555;
    border-color: #555
}

.pagination {
    display: flex;
    text-align: center;
    margin-top: 15px;
    list-style: none;
    justify-content: center
}

.pagination a {
    display: inline-block;
    vertical-align: top;
    margin: 0 2px 3px 2px;
    color: #333;
    background: #eee;
    border: 1px solid rgb(161 161 161 / .4);
    font-size: 12px;
    padding: 3px 10px 5px 10px;
    border-radius: 2px;
    text-decoration: none
}

.pagination a:hover {
    background: #ccc
}

.notyf {
    padding: 15px;
    z-index: 9999999999 !important
}

.notyf__message {
    white-space: nowrap
}

.notyf__toast {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgb(0 0 0 / .15);
    padding: 12px 20px 12px;
    font-size: 14px;
    font-weight: 500;
    max-width: 100%
}

.notyf__ripple {
    opacity: .12
}

.notyf__wrapper {
    padding: 4px 8px
}

.notyf__dismiss-btn {
    background: #fff0;
    opacity: 1;
    cursor: pointer;
    height: 26px;
    width: 26px;
    border-radius: 4px !important
}

.notyf__dismiss {
    height: 26px;
    width: 26px;
    border-radius: 4px !important
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -82%;
    width: 82%;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 0 0 10px rgb(0 0 0 / .1);
    display: flex;
    flex-direction: column
}

.mobile-menu.active {
    left: 0
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ebebeb
}

.mobile-logo {
    max-width: 150px
}

.mobile-logo img {
    max-width: 100%;
    height: auto
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-color-black);
    font-size: 18px;
    cursor: pointer;
    width: 30px;
    height: 30px
}

.mobile-search {
    width: 200px;
    padding: 15px;
    overflow: hidden;
    position: relative
}

.mobile-search form {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
    border: var(--text-color-red) dashed 1px;
    border-radius: 20px
}

.mobile-search input {
    width: 100px;
    padding: 8px 10px;
    outline: none;
    font-size: 14px;
    border: none
}

.mobile-search button {
    background: var(--background-button);
    border: none;
    outline: none;
    padding: 8px 8px;
    border-radius: 30px;
    cursor: pointer;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--text-color-white)
}

.mobile-search.active button {
    background: var(--main-background)
}

.mobile-search.active button i {
    filter: brightness(0) saturate(100%) invert(24%) sepia(94%) saturate(7465%) hue-rotate(0deg) brightness(91%) contrast(122%);
    color: var(--text-color-red)
}

.mobile-search input::placeholder {
    color: var(--text-color-red);
    font-weight: 500;
    font-size: 16px
}

.mobile-header .mobile-search {
    flex: 1;
    padding: 0 10px;
    max-width: 170px;
    margin-right: 10px
}

.mobile-header .mobile-search form {
    justify-content: flex-end
}

.mobile-menu .mobile-search {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #ebebeb
}

.mobile-menu .mobile-search form {
    justify-content: space-between
}

.mobile-menu .mobile-search input {
    width: 100%;
    opacity: 1;
    border: 1px solid #ddd;
    padding: 10px 15px
}

.mobile-menu .mobile-search button {
    position: absolute;
    right: 5px
}

.mobile-nav {
    padding-bottom: 10px;
    flex: 1;
    background: #f8f9fa
}

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

.mobile-menu-item:not(:first-child) {
    border-top: 1px solid #ebebeb
}

.mobile-menu-item a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: var(--text-color-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500
}

.mobile-menu-item.active a {
    color: var(--text-color-red)
}

.mobile-menu-item i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    font-size: 14px
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-top: 1px solid #ebebeb
}

.mobile-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--text-color-black);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s
}

.mobile-social-link:hover {
    background-color: var(--background-blue);
    color: #fff
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgb(0 0 0 / .1);
    position: sticky;
    top: 0;
    z-index: 100;
    display: none
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-header-logo {
    max-width: 140px
}

.mobile-header-logo img {
    max-width: 100%;
    height: auto
}

.mobile-header-actions {
    display: flex
}

.mobile-search-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-language-section {
    border-top: 1px solid #ddd;
    padding: 15px;
    margin-top: auto;
    background-color: #f8f9fa
}

.mobile-language-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 550;
    color: var(--text-color-black)
}

.mobile-language-title i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    color: var(--text-color-blue);
    font-size: 14px
}

.mobile-language-options {
    display: flex;
    flex-direction: row;
    gap: 10px
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color-black);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer
}

.mobile-lang-btn .flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 12px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid #ddd
}

.mobile-lang-btn span {
    flex: 1;
    font-weight: 500
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    height: 100%
}

.mobile-menu-footer {
    padding: 15px;
    background: #f8f8f8;
    border-top: 1px solid #ddd;
    font-size: 14px
}

.mobile-menu-footer .support-info {
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 4px
}

.mobile-menu-footer .support-info p {
    margin: 5px 0;
    color: #333
}

.mobile-menu-footer .support-info a {
    color: #007bff;
    text-decoration: none
}

.mobile-has-submenu {
    position: relative
}

.mobile-submenu-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background-color: #fff0;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease
}

.mobile-menu-content {
    display: flex;
    align-items: center;
    gap: 12px
}

.mobile-submenu-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
    color: #888
}

.mobile-submenu-arrow.rotated {
    transform: rotate(180deg)
}

.mobile-menu-item .active-span {
    font-weight: 600
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 0;
    transition: 0.2s all
}

.mobile-submenu.active {
    max-height: 800px;
    padding: 4px 0
}

.mobile-submenu-item {
    list-style: none
}

.mobile-submenu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid #fff0
}

.mobile-submenu-level-3 {
    background-color: #f9f9f9;
    padding-left: 10px
}

.mobile-submenu-level-3 .mobile-submenu-item a {
    font-size: 14px
}

.mobile-submenu-level-4 {
    background-color: #f9f9f9;
    padding-left: 20px
}

.mobile-submenu-level-4 .mobile-submenu-item a {
    font-size: 14px
}

.mobile-submenu-level-5 {
    background-color: #f9f9f9;
    padding-left: 30px
}

.mobile-submenu-level-5 .mobile-submenu-item a {
    font-size: 14px
}

.banner {
    width: 100%;
    position: relative;
}

.banner img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.text_abl {
    position: absolute;
    font-size: 128px;
    font-weight: 400;
    bottom: 200px;
    right: 200px;
}

.section_tmt {
    padding: 80px 0;
}

.section_tmt_1 {
    padding: 160px 0 0 0;
}

.tmt_wrapper {
    position: relative;
}

.tmt_wrapper h2 {
    width: 100%;
    text-align: center;
    font-size: 100px;
    font-weight: 400;
    margin-bottom: 80px;
}

.post_item {
    flex-shrink: 0;
    width: 690px;
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 1.5rem;
}

.post_item .item_image {
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
    width: 690px;
    height: 390px;
}

.post_item .item_image img {
    opacity: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.post_item .item_image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #f0f0f0 0%, #e1e1e1 20%, #f0f0f0 40%);
    transform: translateX(-100%);
    animation: shimmer 1.5s infinite;
    z-index: 10;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.post_item.loaded .item_image img {
    opacity: 1;
}

.post_item.loaded .item_image::before {
    display: none;
}

.tmt_flex {
    width: 100%;
    display: flex;
    width: 100%;
    gap: .75rem;
    min-height: 535px;
    overflow-x: scroll;
    box-sizing: border-box;
}

.tmt_flex::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.tmt_flex {
    scrollbar-width: none;
}

.item_detail {
    font-weight: 300;
    font-size: 14px;
    max-width: 90%;
    margin: 0px auto;
    line-height: 1.5;
}

.tmt_hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.tmt_visible {
    opacity: 1;
    visibility: visible;
}

#infinite_slider {
    position: relative;
}

.carboard_block {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 145px;
    pointer-events: none;
    z-index: 20;
}

.carboard_right,
.carboard_left {
    position: absolute;
    height: 100%;
    background-color: var(--bg-body);
    box-sizing: border-box;
}

.carboard_left {
    left: 0;
}

.carboard_right {
    right: 0;
}

.font_96 {
    font-size: 96px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 80px;
}

/* CAROUSEL */
.container_tmt_carousel {
    width: 100%;
    position: relative;
}

.carousel_item {
    width: 100%;
    height: fit-content;
}

.img_item {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.img_item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#carousel_tmt_controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.custom-owl-prev,
.custom-owl-next {
    width: 48px;
    height: 48px;
    background-color: transparent;
    font-size: 1.5rem;
    border-radius: 50%;
    border: 1px solid #fff;
    outline: none;
    position: absolute;
    color: #fff;
}

.custom-owl-next {
    right: -62px;
}

.custom-owl-prev {
    left: -62px;
}

.custom-owl-prev:hover,
.custom-owl-next:hover {
    background-color: #fff;
    color: #000;
}

.post_image_grid {
    display: grid;
    gap: 10px;
}

.post_image_grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.post_image_grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.post_image_grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.post_image_grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.post_image_grid.cols-2,
.post_image_grid.cols-3,
.post_image_grid.cols-4,
.post_image_grid.cols-5 {
    margin-bottom: 10px;
}

.post_image_item {
    width: 100%;
    height: 100%;
}

.post_image_item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post_image_item .img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
}

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

.span-3 {
    grid-column: span 3;
}

@media (max-width:1199px) {
    #carousel_tmt_controls {
        display: none;
    }
}


@media (max-width:991px) {
    .section_tmt_1 {
        padding: 80px 0 0 0;
    }

    .tmt_wrapper h2 {
        font-size: 56px;
    }

    .post_item {
        width: 100%;
    }

    .post_item .item_image {
        width: 100%;
        height: 340px;
    }

    .tmt_flex {
        min-height: 460px;
    }

    .banner img {
        width: 100%;
        height: auto;
    }

    .text_abl {
        bottom: 40px;
        right: 40px;
        font-size: 70px;
    }
}

@media (max-width:767px) {
    .font_96 {
        font-size: 60px;
    }

    .post_image_grid.cols-2,
    .post_image_grid.cols-3,
    .post_image_grid.cols-4,
    .post_image_grid.cols-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .flex-footer {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px
    }
}

@media (max-width:575px) {
    .banner img {
        height: auto;
    }

    .text_abl {
        font-size: 50px;
        bottom: 20px;
        right: 20px;
    }

    .section_tmt_1 {
        padding: 2rem 0 0 0;
    }

    .section_tmt {
        padding: 2rem 0;
    }

    .tmt_wrapper h2 {
        font-size: 44px;
        margin-bottom: 2rem;
    }

    .section_post_image {
        padding: 2rem 1rem;
    }

    .font_96 {
        font-size: 50px;
        margin-bottom: 2rem;
    }

    .flex-footer {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .post_image_grid.cols-2,
    .post_image_grid.cols-3,
    .post_image_grid.cols-4,
    .post_image_grid.cols-5 {
        grid-template-columns: repeat(1, 1fr);
    }

    .img_item img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .slider-nav {
        display: none;
    }
}