@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap" rel="stylesheet"');

:root {
    --bg-header-top: #ebebeb;
    --bg-footer: #F5F5F5;
    --bg-copyright: #ebebeb;
    --bg-body: #ffffff;
    --bg-menu: #ffffff;
    --bg-white: #ffffff;
    --color-red: #e60023;
    --color-body: #343a40;
    --color-brown: #92161e;
    --color-white: #ffffff;
    --color-active: #FF7518;
    --color-blue: #2837D9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    scrollbar-color: rgb(146, 22, 30) #f1f1f1;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(146, 22, 30);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4facfe, #00f2fe);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #43e97b, #38f9d7);
}

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

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

.grecaptcha-badge {
    display: none !important;
}

/** Line-clamp **/
.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;
    height: 50px;
    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;
}

.lh_4 {
    line-height: 1.4;
}

.lh_5 {
    line-height: 1.5;
}

a {
    text-decoration: none;
}

/** Maintenance **/
.maintenance {
    width: 100%;
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    padding: 10px 0px;
    z-index: 10000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
}

/** Header **/
.header {
    position: relative;
    background: transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flex_header_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4.5rem;
    margin-left: 120px;
    position: relative;
    z-index: 1000;
}

/* Banner */
.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

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

.abl_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.abl_text h3 {
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    text-align: center;
}

/* Logo */
.menu-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.header_menu {
    flex: 1;
}

.container_header_menu {
    max-width: 90%;
    margin-right: auto;

}

.box_text_header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.flex-header-top {
    background-image: url('../images/background/bg_header.png');
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 10px 0;
    font-size: 12px;
}

.header-top-info {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-top-info img {
    width: 100%;
    height: auto;
    display: block;
}

.header-top-lang {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: .5rem;
}

.header-top-info span {
    font-weight: 500;
}

.opc_7 {
    color: #B5C5FD !important;
}

.header-top-info-email span,
.header-top-info-address span {
    color: #ffffff;
}

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

.menu {
    background-color: var(--bg-menu);
    position: relative;
    z-index: 2;
}

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

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

    to {
        transform: translateY(0);
    }
}

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

.menu-right {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

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

.menu-right .level-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    width: 100%;
    gap: 1.5rem;
}

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

.level-1>li>a.menu-item {
    display: block;
    padding: .25rem 0;
    color: #262626;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.level-1>li>a.menu-item::after {
    content: "";
    position: absolute;
    left: 1rem;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--color-active);
    transition: width 0.3s ease;
}

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

.level-1>li.active>a.menu-item::after {
    width: 30px;
}

.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 rgba(0, 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;
    gap: 6px;
    align-items: center;
    width: 150px;
}

.menu__icon {
    position: relative;
    display: inline-flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 38px;
    padding: 0px .5rem;
    font-weight: 400;
    border-radius: 30px;
    background: transparent;
    border: 1px solid #CCCCCC;
    color: #262626;
    text-decoration: none;
    gap: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.menu__icon>i {
    font-size: 18px;
    color: #2837D9;
    font-weight: thin;
}

.menu__icon:hover {
    transform: scale(1.05);
}

.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: bold;
    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-one {
    width: 100%;
    padding: 10px 0;
}

/** Profile menu **/
.menu__icon--user {
    position: relative;
    cursor: pointer;
    background-color: #f5f5f5;
    font-weight: bold;
    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: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0, 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: normal;
}

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

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

/* Slider show */
.slideshow {
    position: relative;
    width: 100%;
    height: 650px;
    margin: auto;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.slider-item {
    width: 100%;
    height: 650px;
    position: relative;
}

.slider-item>a {
    width: 100%;
    height: 650px;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.slider-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-btn:hover i {
    color: var(--color-active);
}

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

.item_text {
    position: absolute;
    bottom: 80px;
    left: 120px;
    z-index: 2;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: .5rem;
    width: 100%;
    max-width: 1000px;
}

.item_title {
    font-size: .875rem;
    text-transform: uppercase;
    color: var(--color-active);
    letter-spacing: .25rem;
    width: 100%;
    text-wrap: wrap;
}

.item_desc {
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .12rem;
    font-weight: 800;
    margin: 1rem 0;
    width: 100%;
    text-wrap: wrap;
}

.item_content {
    color: #fff;
    font-size: .875rem;
    border-left: 1px solid #fff;
    padding-left: 1rem;
    letter-spacing: 0.12rem;
    font-weight: lighter;
    width: 100%;
    text-wrap: wrap;
}

.btn_quote {
    margin-top: 2rem;
    background-color: var(--color-blue);
    color: #fff;
    text-transform: uppercase;
    font-size: .875rem;
    letter-spacing: 0.04rem;
    padding: .75rem 1.5rem;
    border-radius: .25rem;
    text-decoration: none;
}

.btn_contact {
    background-color: var(--color-blue);
    color: #fff;
    font-size: .875rem;
    letter-spacing: 0.04rem;
    border-radius: .25rem;
    text-decoration: none;
    padding: .5rem 1rem;
}

/* OVERVIEW */
.section_overview {
    background-image: url('../images/background/bg-overview.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 60px;
    padding-bottom: 60px;
}

.overview {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    place-items: center;
    min-height: 650px;
}

.overview_text {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.overview_text .title {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .25rem;
    text-transform: uppercase;
    color: var(--color-active);
}

.overview_text p {
    font-size: 15px;
    font-weight: 400;
    color: #262626;
    line-height: 1.6;
}

.overview_text h3 {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #262626;
}

.overview_img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 420px;
}

img {
    display: block;
    width: 100%;
}

.img_main {
    min-height: 420px;
    position: relative;
}

.asl {
    position: absolute;
}

.img_absolute_1 {
    top: 150px;
    left: 10px;
    z-index: 1;
    padding: .25rem;
    background-color: #fff;
    border-radius: .75rem;
}

.img_absolute_2 {
    bottom: -28px;
    left: 15%;
    z-index: 1;
    padding: .25rem;
    background-color: #fff;
    border-radius: .75rem;
}

.img_absolute_3 {
    top: -90px;
    right: 1%;
    z-index: 1;
    padding: .25rem;
    background-color: #fff;
    border-radius: .75rem;
}

.img_absolute_1 img,
.img_absolute_2 img,
.img_absolute_3 img {
    display: block;
    border-radius: .75rem;
}

/* Quality Criteria */
.quality_criteria {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}

.quality_criteria .item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: .5rem;
}

.item>h3 {
    width: 100%;
    font-size: 2.5rem;
    color: var(--color-active);
    font-weight: 700;
}

.item>h4 {
    width: 100%;
    font-size: 1.5rem;
    font-weight: 700;
    color: #404040;
    text-transform: uppercase;
}

.item>p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

/* CATEGORY */
.section_category {
    padding: 60px 0 0 0;
}

.list_category {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
    position: relative;
}

.category_item {
    flex: 0 0 calc((100% - 6rem) / 5);
    transition: transform 0.3s ease, box-shadow 0.3s ease-in-out;
    box-sizing: border-box;
    text-align: center;
    background-color: #f0f0f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    border-radius: .5rem;
}

.category_item picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
}

.category_item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 6px 6px rgba(0, 0, 0, 0.15);
}

.category_item .overlay {
    inset: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.15);
}

.category_item .item_name {
    width: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    color: #fff;
    font-size: 1.5rem;
    z-index: 2;
}

.title_category {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    margin-bottom: 2rem;
}

.title_category span {
    font-size: 14px;
    color: var(--color-active);
    font-weight: 400;
    text-transform: uppercase;
}

.title_category h3 {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #262626;
}

/* PRODUCT HOT CATEGORY */
.section_product_category {
    padding: 80px 0 0 0;
}

.owl-product-hot {
    margin-bottom: 2rem;
}

.owl-product-hot .owl-stage-outer {
    padding: 1rem 0;
}

.title_section {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    vertical-align: middle;
}

.product-category-wrapper,
.loader-placeholder {
    width: 100%;
    position: relative;
    min-height: 472px;
    margin-bottom: 3.75rem;
}

.product_item {
    padding: 12px;
    border: 1px solid #DADADA;
    border-radius: 10px;
}

.product_item_img {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
}

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

.product_item .product_item_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.product_item h3 {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    vertical-align: middle;
    height: 40px;
}

/* .section_product_hot {
    padding-top: 60px;
} */

.item_contact {
    width: 100%;
    text-align: end;
    margin: 20px 0 8px 0;
}

.product-hot-nav {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.product-hot-prev,
.product-hot-next {
    font-size: 32px;
    border: none;
    background: transparent;
    position: relative;
    z-index: 10;
    color: #E5E5E5;
    cursor: pointer;
}

.product-hot-prev {
    left: -24px;
}

.product-hot-next {
    right: -24px;
}

.product-hot-prev:hover,
.product-hot-next:hover {
    color: #333;
}

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

.loader-placeholder .loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

/* NEWS */

.section_news {
    padding: 60px 0;
    background-color: #F5F5F5;
}

.new_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
}

.news_list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

.column_2 {
    grid-column: span 2;
}

.news_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.news_video {
    width: 100%;
    max-width: 400px;
    margin-top: 1rem;
}

.item_news_text h3 {
    text-transform: uppercase;
    font-weight: 700;
    color: #262626;
    font-size: 18px;
}

.item_news_text .desc {
    line-height: 1.5;
    font-size: 14px;
    color: #404040;
    font-weight: 400;
    margin-top: 4px;
}

.time_news {
    font-weight: 400;
    color: var(--color-active);
    font-size: 12px;
    margin-bottom: 12px;
}

.mt_12 {
    margin-top: 12px;
}

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

.product-menu li {
    line-height: 1.2;
    margin-left: 20px;
}

.product-menu li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.product-menu li a:hover {
    background: #f8f8f8;
    color: #c72323;
}

.slide img {
    padding: 20px 0px;
    width: 850px;
    height: 400px;
    border-radius: 4px;
    display: block;
}

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

.news-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.news-video {
    flex: 1;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.news-list {
    width: 400px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-header h3 {
    color: #c72323;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.view-all {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.view-all i {
    margin-left: 5px;
    font-size: 12px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.news-item:last-child {
    border-bottom: none;
}

.news-image {
    width: 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.news-category {
    color: #c72323;
    font-size: 13px;
}

.news-date {
    color: #666;
    font-size: 13px;
}

.news-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.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: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 20px;
}

.scroll-circle {
    position: fixed;
    right: 20px;
    bottom: 140px;
    width: 50px;
    height: 50px;
    z-index: 999;
    cursor: pointer;
}

.scroll-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-circle .bg {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 5;
}

.scroll-circle .progress {
    fill: none;
    stroke: #007bff;
    stroke-width: 5;
    stroke-dasharray: 163.36;
    stroke-dashoffset: 163.36;
    transition: stroke-dashoffset 0.2s linear;
}

.scroll-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #007bff;
    font-size: 16px;
    pointer-events: none;
}

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

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

/** Footer **/
.footer {
    background-color: var(--bg-footer);
}

.footer-main {
    padding: 60px 0;
}

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

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

.flex-footer {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
}

.flex-footer> :first-child,
.flex-footer> :last-child {
    grid-column: span 2;
}

.footer-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
    justify-content: start;
}

.footer-col h3 {
    font-size: 14px;
    font-weight: 700;
    color: #262626;
}

hr {
    width: 100px;
    border: 1px solid var(--color-active);
}

.footer-text {
    color: #666;
    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: 10px;
}

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

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

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

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #666;
    font-size: 16px;
}

.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--bg-copyright);
    background: var(--bg-copyright);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.flex-copyright {
    text-align: center;
}

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

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

.contact_footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.address_contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
}

.location,
.email a,
.phone a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--color-blue);
    font-size: 13px;
    font-weight: 500;
}

.submit_contact h3 {
    color: var(--color-blue);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: .5rem;
}

.input_email form input {
    width: 180px;
    height: 38px;
    border: 1px solid var(--color-active);
    border-radius: 8px;
    padding: .25rem .75rem;
}

.input_email form button {
    padding: .665rem 1rem;
    border-radius: .5rem;
    background-color: var(--color-blue);
    color: #fff;
    border: none;
    cursor: pointer;
}

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

.lang {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/** Pagination **/
.pagination-home {
    margin-top: 30px;
}

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

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

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

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

.pagination a:hover {
    background: #ccc;
}

/** Button loading **/
.btn-loading {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loading.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading span {
    display: none;
}

.btn-loading.is-loading span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spinLoading 0.75s linear infinite;
}

@keyframes spinLoading {
    100% {
        transform: rotate(360deg);
    }
}

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

.notyf__message {
    white-space: nowrap;
}

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

.notyf__ripple {
    opacity: 0.12;
}

.notyf__wrapper {
    padding: 4px 8px;
}

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

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

/** Heading title **/
.heading-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.heading-title span {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-active);
}

.heading-title h3 {
    font-size: 2rem;
    color: #262626;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Link Contact */
.link_contact {
    background-image: url('../images/background/bg_contact.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 60px;
}

.contact_box {
    padding: 100px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact_box h3 {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact_box .contact_box_desc {
    font-size: 13px;
    font-weight: 500;
    vertical-align: middle;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 1px;
}

.contact_box a {
    background-color: #fff;
    color: #231D95;
    font-size: 13px;
    font-weight: 600;
    vertical-align: middle;
    padding: .5rem 1.5rem;
    border-radius: .5rem;
    transition: all 0.1s ease-in-out;
}

.contact_box a:hover {
    background-color: #000000d5;
    color: #fff;
}

/** Partner **/
.partner {
    padding: 60px 0;
}

.partner-wrapper {
    padding: 10px 0;
}

.partner-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-item a {
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.partner-item img {
    max-width: 100%;
    height: auto;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    filter: grayscale(20%);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.partner-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    filter: grayscale(0%);
}

.partner-wrapper {
    position: relative;
}

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

.partner-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partner-nav-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.partner-prev {
    left: 10px;
}

.partner-next {
    right: 10px;
}

.partner-nav-btn i {
    font-size: 16px;
    color: #333;
}

/** Menu mobile **/
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 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 rgba(0, 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: 140px;
}

.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 rgba(0, 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 */
.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;
}

/* MenuMobile submenu */
.mobile-has-submenu {
    position: relative;
}

.mobile-submenu-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background-color: transparent;
    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 transparent;
}

.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;
}

/** Static page **/
.static-main {
    padding-top: 10px;
    padding-bottom: 30px;
}

.title-main {
    font-size: 2rem;
    color: #262626;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    vertical-align: middle;
}

/** Breadcrumb **/

.breadcrumb-nav {
    margin: 0 0 16px 0;
    background-color: #D9D9D9;
}

.breadcrumb {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
}

.breadcrumb-item>span {
    padding: 0.3rem 0.2rem;
}

.breadcrumb-link {
    color: #333;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s ease-in-out;
}

.breadcrumb-link:hover {
    color: #e63946;
    background-color: transparent;
}

.breadcrumb-current {
    font-weight: bold;
    color: #333;
    padding: 0.3rem 0.5rem;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/** Empty data **/
.empty-state {
    text-align: center;
    padding-bottom: 60px;
    padding-top: 24px;
}

.empty-content i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-content h3 {
    color: #666;
    margin-bottom: 10px;
}

.empty-content p {
    color: #999;
    margin-bottom: 30px;
}

.empty-content a {
    color: #333;
}

/** Phone fixed **/
.fixed-social {
    position: fixed;
    bottom: 4rem;
    right: 0.25rem;
    padding: 0.5rem;
    z-index: 1000;
}

.fixed-social .link-item {
    position: relative;
    margin-bottom: 0.625rem;
}

.fixed-social .link-item span {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0.625rem;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 0;
    font-size: 3.75rem;
    border: 3px solid rgb(56, 32, 41);
    border-right: 0;
}

.fixed-social .social-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0.625rem;
    background-color: var(--color-blue);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.social-button svg {
    width: 24px;
    height: 24px;
}

.fixed-social .social-button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.fixed-social .social-button img {
    width: 1.75rem;
    height: auto;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(40, 55, 217, 0.7);
        box-shadow: 0 0 0 0 rgba(40, 55, 217, 0.7);
    }

    70% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        -webkit-box-shadow: 0 0 0 10px rgba(40, 55, 217, 0);
        box-shadow: 0 0 0 10px rgba(40, 55, 217, 0);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(40, 55, 217, 0);
        box-shadow: 0 0 0 0 rgba(40, 55, 217, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(40, 55, 217, 0.7);
        box-shadow: 0 0 0 0 rgba(40, 55, 217, 0.7);
    }

    70% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        -webkit-box-shadow: 0 0 0 10px rgba(40, 55, 217, 0);
        box-shadow: 0 0 0 10px rgba(40, 55, 217, 0);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(40, 55, 217, 0);
        box-shadow: 0 0 0 0 rgba(40, 55, 217, 0);
    }
}

.pulse-1 {
    -webkit-animation: pulse 0.8s infinite;
    animation: pulse 0.8s infinite;
}

.pulse-2 {
    -webkit-animation: pulse 1.2s infinite 0.2s;
    animation: pulse 1.2s infinite 0.2s;
}

.pulse-3 {
    -webkit-animation: pulse 1.5s infinite 0.4s;
    animation: pulse 1.5s infinite 0.4s;
}

.pulse-4 {
    -webkit-animation: pulse 1.7s infinite 0.1s;
    animation: pulse 1.7s infinite 0.1s;
}

.link-item-phone {
    position: relative;
}

.phone-sub {
    position: absolute;
    right: calc(100% + 12px);
    min-width: 150px;
    max-width: 250px;
    background-color: var(--color-blue);
    border-radius: 6px;
    bottom: 0px;
    transform-origin: bottom right;
    transform: scale(0);
    transition: 0.3s all;
}

.phone-sub.open {
    transform: scale(1);
}

.phone-sub-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    border-bottom: 1px solid #e3e3e3;
    color: #fff;
}

.phone-sub-item:last-child {
    border-bottom: 0px;
}

.phone-sub-item i {
    color: #fff;
    transform: rotate(90deg);
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.phone-sub-item .icon {
    color: var(--color-blue);
    width: 30px;
    height: 30px;
    margin-right: 5px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.phone-sub-item .icon svg {
    fill: var(--color-blue);
}

.phone-sub-item:hover {
    span:not(.icon) {
        opacity: 0.6;
    }
}

/** Google translate **/
.skiptranslate {
    display: none;
}

#google_language_translator {
    clear: both;
    width: auto !important;
    text-align: right;
    display: none;
}

/** Go top **/
.go-top {
    position: fixed;
    bottom: 15px;
    right: 12px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 400ms linear;
    background: transparent;
}

.go-top.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-top::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f077";
    text-align: center;
    line-height: 46px;
    font-size: 16px;
    font-weight: 900;
    color: var(--color-orange);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 400ms linear;
}

.go-top svg path {
    fill: none;
}

.go-top svg.progress-circle path {
    stroke: var(--color-blue);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 400ms linear;
}

/** CSS Content **/

.content-center-v1 {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1rem;
    width: 100%;
}

.content-center-v1 img {
    height: auto;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-center-v1 p {
    word-spacing: 1.5px;
    text-align: justify;
    margin-bottom: 1rem;
}

.content-center-v1 p img {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0px;
}

.content-center-v1 a:hover {
    text-decoration: underline;
}

.content-center-v1 ul,
.content-center-v1 ol {
    margin-left: 17px;
    margin-bottom: 1rem;
}

.content-center-v1 ul:last-child,
.content-center-v1 ol:last-child {
    margin-bottom: 0;
}

.error-message {
    font-size: 12px;
    font-weight: lighter;
    color: red;
}

/* Email button spinner */
.btn_submit .spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: none;
    margin-right: 6px;
}

.btn_submit .text {
    display: inline;
}

/* Email button loading state */
.btn_submit.loading .text {
    display: none;
}

.btn_submit.loading .spinner {
    display: inline-block;
    animation: spinner-rotate 0.8s linear infinite;
}

@keyframes spinner-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

main {
    overflow: hidden;
}