/*
 * @Author: 海灯
 * @E-mail: 83662863@qq.com
 * @Update: 2026-06-23 23:50
 * @Statement: 尊重原创作者,请保留版权信息！
 *
 */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/montserrat-v31-latin-100.woff2') format('woff2'); 
}
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/montserrat-v31-latin-200.woff2') format('woff2'); 
}
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/montserrat-v31-latin-300.woff2') format('woff2');  
}
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2'); 
}
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/montserrat-v31-latin-500.woff2') format('woff2');  
}
@font-face {
  font-display: swap;   
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2');  
}
@font-face {
  font-display: swap;   
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');  
}
@font-face {
  font-display: swap;   
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/montserrat-v31-latin-800.woff2') format('woff2'); 
}
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/montserrat-v31-latin-900.woff2') format('woff2');
}
:root {
    --main-color: #000024;
    --hover-color: #093ca8;
    --light-color: #0052cc;
    --dark-color: #0e0129;
    --text-color: #444444;
    --des-color: #666666;
    --border-color: #f9fafb;
    --white-color: #ffffff;
    --weight-color: #c3c3c3;
    --shadow: 0px 0px 25px rgba(85, 85, 85, 0.1);
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--main-color);
    cursor: pointer;
}

a:hover,
a:focus {
    color: var(--hover-color);
    outline: none;
}

ul,
ol {
    list-style: none;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 0;
}

h1 {
    font-size: 2em;
    font-weight: normal;
}

h2 {
    font-size: 1.5em;
    font-weight: normal;
}

h3 {
    font-size: 1.17em;
    font-weight: normal;
}

h4,
h5,
h6 {
    font-weight: normal;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 1.5em;
}

th,
td {
    border: 1px solid var(--border-color);
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

th {
    background-color: var(--hover-color);
    color: var(--white-color);
    font-weight: normal;
}

label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 500;
    color: var(--main-color);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea {
    font-family: inherit;
    font-size: 15px;
    line-height: 1.6;
    width: 100%;
    padding: 20px 15px;
    border: none;
    transition: border-color 0.3s ease;
    background-color: var(--white-color);
    color: var(--main-color);
    resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--hover-color);
    outline: none;
}

input[type="submit"],
button {
    font-family: inherit;
    background-color: var(--hover-color);
    color: var(--white-color);
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover,
button:hover,
input[type="submit"]:focus,
button:focus {
    outline: none;
}

input:disabled,
button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

blockquote {
    margin: 1em 0;
    padding-left: 1em;
    border-left: 4px solid var(--hover-color);
    color: var(--weight-color);
    font-style: italic;
}

code,
pre {
    font-family: monospace, monospace;
    background-color: var(--weight-color);
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 90%;
}

hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2em 0;
}

/* reset */
.imgitem {
    position: relative;
    height: 0;
    padding-bottom: 100%;
}

.imgitem img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    border: none;
    cursor: pointer;
    outline: none;
    color: var(--white-color);
    background: linear-gradient(320deg, #031f60 0%, #093ca8 50%, #2e83f5 100%);
    padding: 10px 30px;
    border-radius: 30px;
    text-transform: capitalize;
    transition: var(--transition);
    align-self: start;
}

.btn:hover {
    background: var(--main-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

.text-title {
    font-size: 22px;
    color: var(--main-color);
    font-weight: 700;
    text-transform: capitalize;
}

.text-title a {
    color: var(--main-color);
}

.text-title a:hover {
    color: var(--hover-color);
}

.text-des {
    color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-title {
    font-size: 20px;
    color: var(--main-color);
    font-weight: 700;
    text-transform: capitalize;
}

.list-title a {
    color: var(--main-color);
}

.list-title a:hover {
    color: var(--hover-color);
}

.text-white {
    color: var(--white-color);
}

.hovermove {
    transition: all 0.4s ease;
}

.hovermove:hover {
    transform: translateY(-10px);
}

.bgcolor {
    background: var(--border-color);
}

.bgwhite {
    background: var(--white-color);
}

.flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flex5 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.flex10 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flex20 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flex30 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fleximg {
    flex-shrink: 0;
}

.flextext {
    flex: 1;
}

.grid {
    display: grid;
    gap: 15px;
}

.p15 {
    padding: 15px 0;
}

.p30 {
    padding: 30px 0;
}

.ps15 {
    padding: 15px;
}

.m30 {
    margin: 30px 0;
}

.flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.text-center {
    text-align: center;
}

.bigimg {
    overflow: hidden;
}

.bigimg img {
    transition: transform 0.3s ease;
}

.bigimg:hover img {
    transform: scale(1.1);
}

.hide {
    display: none;
}

.btnlist {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btnlist a:nth-child(n+2) {
    background: var(--main-color);
    color: var(--white-color);
}

.btnlist a:nth-child(n+2):hover {
    background: var(--hover-color);
}
.section-head{
    margin-bottom: 30px;
}
.section-title {
    margin-bottom: 30px;
}

.section-title>h3 {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--orange-color);
}

.section-title>h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--main-color);
}

.section-title>h2>span {
    color: var(--hover-color);
}

.section-title>p {
    font-size: 18px;
}

.section-white-title>h3 {
    color: var(--white-color);
}

.section-white-title>h2 {
    color: var(--white-color);
}

.section-white-title>p {
    color: var(--white-color);
}

.box-title>h3 {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--hover-color);
}

.box-title>h2 {
    font-size: 44px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--main-color);
    text-transform: capitalize;
    padding-bottom: 10px;
}

.box-title>h2>span {
    color: var(--hover-color);
}

.box-title>p {
    font-size: 18px;
}

.box {
    box-shadow: var(--shadow);
}

.rad {
    border-radius: 15px;
}

/* swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

/* swiper */
/* Fold menu */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.accordion-item {
    background: var(--hover-color);
    cursor: pointer;
    padding: 12px;
    text-align: left;
    font-size: 17px;
    color: var(--white-color);
    font-weight: 600;
    outline: none;
    transition: var(--transition);
}

.accordion-item.active {
    color: var(--white-color);
}

.accordion-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.accordion-item.active .accordion-item-content {
    max-height: 500px;
}

/* Fold menu */
/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--hover-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.logo img {
    max-height: 40px;
    filter: brightness(0) invert(1);
}

.logo:hover {
    color: #fff;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white-color);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link i {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 14px;
    transition: transform 0.3s;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 140%;
    left: 0;
    width: 100%;
    background: var(--white-color);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-content {
    padding: 30px;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.mega-col h3 {
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.mega-col h3 a {
    color: var(--main-color);
}

.mega-col h3 a:hover {
    color: var(--hover-color);
}

.mega-col ul li {
    margin-bottom: 10px;
}

.mega-col ul li a {
    font-size: 16px;
    color: var(--text-light);
    transition: color 0.2s;
}

.mega-col ul li a:hover {
    color: var(--hover-color);
}

.featured-col {
    background: var(--weight-color);
    padding: 20px;
    border-radius: 8px;
}

.featured-col p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.btn-sm {
    display: inline-block;
    background: var(--hover-color);
    color: var(--white-color);
    font-size: 12px;
    padding: 6px 15px;
    border-radius: 20px;
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: var(--white-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: 0 0 4px 4px;
    padding: 10px 0;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
}

.dropdown-menu li a:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white-color);
    transition: var(--transition);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}
.headbtn{
    background: var(--white-color);
    color: var(--hover-color);
    padding: 0 30px;
    font-size: 15px;
    height: 50px;
    line-height: 50px;
}

.headbtn:hover {
    transform: none;
}

.head-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366 !important;
    background-image: none !important;
    color: var(--white-color);
    padding: 0 34px;
    font-size: 15px;
    font-weight: 500;
    height: 50px;
    line-height: 50px;
    white-space: nowrap;
}

.head-whatsapp:hover {
    background: #1ebe5d !important;
    background-image: none !important;
    color: var(--white-color);
    transform: none;
}
/* header */
/* footer */
#backToTop {
    position: fixed;
    right: 20px;
    bottom: 40px;
    width: 40px;
    height: 40px;
    background-color: var(--hover-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
}

#backToTop:hover {
    background-color: var(--main-color);
}

.footer {
    background: var(--main-color);
    position: relative;
}
.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.footer-logo img {
    max-height: 40px;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--weight-color);
    padding: 20px 0;
}

.footer-copyright a {
    color: var(--weight-color);
}

.footer-copyright a:hover {
    color: var(--hover-color);
}

.footer-title {
    position: relative;
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--white-color);
}

.footer-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--hover-color);
    bottom: 0;
    left: 0;
}
.footer-ul li {
    color: var(--text-color);
}
.footer-ul a {
    color: var(--weight-color);
    transition: var(--transition);
}

.footer-ul a:hover {
    color: var(--hover-color);
    padding-left: 5px;
}

.footer-links li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li::before {
    content: "";
    width: 12px;
    height: 12px;
    line-height: 12px;
    background: var(--hover-color);
}

.footer-links li a:hover {
    padding-left: 10px;
    color: var(--hover-color);
}
.footer-about{
    color: var(--weight-color);
}
.footer-contact li{
    color: var(--weight-color);
}
.footer-contact i {
    margin-right: 5px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: var(--hover-color);
}

.footer-qrcodes img {
    width: 160px;
    height: 160px;
    padding: 8px;
    border-radius: 8px;
    background: var(--white-color);
    object-fit: cover;
}

.footer-qrcodes p {
    margin-top: 10px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 700;
}

/* footer */
/* slider */
.slider {
    position: relative;
    min-height: 600px;
}
.slider-content{
    margin-top: 100px;
}
.slider-name {
    font-size: 18px;
    color: var(--hover-color);
    font-weight: 500;
    text-transform: uppercase;
    background: var(--white-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.slider-title {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 700;
}

.slider-des {
    font-size: 20px;
}
.slider-btnlist {
    flex-wrap: wrap;
}

.slider-btnlist .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    line-height: 50px;
    padding: 0 34px;
    font-size: 15px;
    font-weight: 500;
    transform: none;
}

.slider-btnlist .btn:hover {
    transform: none;
}

.slider-btnlist .slider-inquiry {
    background: var(--white-color);
    background-image: none;
    color: var(--hover-color);
}

.slider-btnlist .slider-inquiry:hover {
    background: var(--white-color);
    background-image: none;
    color: var(--hover-color);
}

.slider-btnlist .slider-whatsapp {
    background: #25d366 !important;
    background-image: none !important;
    color: var(--white-color);
}

.slider-btnlist .slider-whatsapp:hover {
    background: #1ebe5d !important;
    background-image: none !important;
    color: var(--white-color);
}
.slider-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}
/* slider */
/* layout */
/* section-1 */
.section-1-img{
    position: relative;
}
.experience{
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 10px 20px;
    background: var(--hover-color);
    color: var(--white-color);
    font-weight: 600;
}
.section-1-text-list li{
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}
.section-1-text-list li i{
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    background: var(--light-color);
    color: var(--white-color);
}
/* section-1 */
/* section-2 
.section-2-ul>li{
    border-bottom: 1px solid var(--light-color);
}*/
.section-2-ul>li:hover{
    background: var(--weight-color);
}

.section-2-ul .product-card a {
    display: block;
    height: 100%;
}

.section-2-ul .product-card .img {
    aspect-ratio: 4 / 3;
    background: var(--weight-color);
}

.section-2-ul .product-card .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.section-2-ul .product-card .text {
    min-height: 112px;
}

.pagebtn{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 30px;
}

.home-product-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    line-height: 50px;
    padding: 0 34px;
    font-size: 15px;
    font-weight: 500;
    transform: none;
}

.home-product-actions .btn:hover {
    transform: none;
}

.home-product-whatsapp {
    background: #25d366 !important;
    background-image: none !important;
    color: var(--white-color);
}

.home-product-whatsapp:hover {
    background: #1ebe5d !important;
    background-image: none !important;
    color: var(--white-color);
}
/* section-2 */
/* section-3 */
.section-3{
    background: var(--hover-color);
}
.section-3-ul li i{
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    color: var(--white-color);
    background: var(--hover-color);
}
/* section-3 */
/* product-card */
.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
}

.product-title:hover {
    color: var(--hover-color);
}

.product-des {
    font-size: 18px;
    line-height: 1.3;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* product-card */
/* section-4 */
.section-4-ul li{
    font-weight: 600;
}
.section-4-ul li i{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    background: var(--light-color);
    color: var(--white-color);
}

.more {
    font-size: 14px;
    color: var(--hover-color);
    text-transform: capitalize;
}

.more a {
    color: var(--hover-color);
}

.more a:hover {
    color: var(--text-color);
}

/* section-4 */
/* section-5 */
.section-5{
    position: relative;
    overflow: hidden;
    background: url(../img/section-5-bg.webp) no-repeat center center/cover;
}
.section-5::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--hover-color);
    opacity: 0.8;
    z-index: 1;
}

.section-5::after{
    content: "";
    position: absolute;
    left: 0;
    top: 50px;
    width: 413px;
    height: 376px;
    background: url(../img/section-5-shape.webp) no-repeat left top/auto;
    z-index: 2;
    opacity: 0.1;
}
.section-5-content{
    position: relative;
    z-index: 3;
}
/* section-5 */
/* section-6 */
.faq-item {
    border: 1px solid var(--weight-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--white-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background: var(--weight-color);
}

.faq-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
}

.faq-icon {
    color: var(--hover-color);
    transition: transform 0.3s ease;
}

.faq-content {
    padding: 0 20px;
    background: var(--white-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-content p {
    font-size: 18px;
    padding: 20px 0;
    color: var(--dark-color);
    line-height: 1.6;
}

.faq-item.active .faq-header {
    background: var(--hover-color);
}

.faq-item.active .faq-header h3 {
    color: var(--white-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--white-color);
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding: 0 20px;
}
/* section-6 */
/* section-7 */
.info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.info>li {
    font-size: 15px;
    font-weight: 300;
    color: var(--hover-color);
}

.info>li>a {
    color: var(--hover-color);
}

.info>li>a:hover {
    color: var(--text-color);
}

/* section-7 */
/* layout */

/* page-banner */
.page-banner {
    position: relative;
}
.page-banner::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    opacity: 0.5;
}
.page-banner-content {
    margin-top: 70px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.page-banner-title {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
}

/* page-banner */
/* crumb */
.crumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.crumb a {
    color: var(--white-color);
    text-transform: capitalize;
}

.crumb a:hover {
    color: var(--hover-color);
}

#crumb {
    padding: 20px 0;
    border-bottom: 1px solid var(--weight-color);
}

#crumb a {
    color: inherit;
}

/* crumb */
/* about */
/* about-1 */
.about-1-img {
    flex-shrink: 0;
}

.about-1-text {
    flex: 1;
}

/* about-1 */
/* about-4 */
.about-4-content p {
    font-size: 18px;
    font-weight: 500;
}

.about-4-content p:nth-child(2) {
    color: var(--hover-color);
}

/* about-4 */
/* about */
/* message */
.message-ul>li {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.message-ul>li>i {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    background: var(--hover-color);
    color: var(--white-color);
}

.message-ul>li>.text {
    flex: 1;
}

.message-ul>li>.text>p {
    font-weight: 700;
}

.message-form form {
    display: grid;
    gap: 15px;
}

.message-form form input,
.message-form form textarea {
    border: 1px solid #aebdcc;
    border-radius: 8px;
    background: var(--white-color);
    color: var(--main-color);
}

.message-form form input::placeholder,
.message-form form textarea::placeholder {
    color: #7b8794;
}

.message-form form input:focus,
.message-form form textarea:focus {
    border-color: var(--hover-color);
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(9, 60, 168, 0.12);
}

.message-form form textarea {
    grid-column: span 2;
}

.message-form form .btn {
    grid-column: 1/-1;
    justify-self: center;
    width: auto;
    padding: 15px 60px;
    text-transform: uppercase;
}

/* message */
/* layout */
/* index-product */
.indexpro-topmenu {
    border-bottom: 1px solid var(--border-color);
}

.indexpro-topmenu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.indexpro-topmenu-list a {
    transition: var(--transition);
    font-size: 16px;
    font-weight: 500;
    background: var(--border-color);
    padding: 10px 20px;
    border-radius: 10px;
    text-transform: capitalize;
}

.indexpro-topmenu-list a:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.indexpro-topmenu-list a:first-child {
    background: var(--hover-color);
    color: var(--white-color);
}

.indexpro-title {
    position: relative;
    padding-bottom: 15px;
}

.indexpro-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--hover-color);
}

.indexpro-title a {
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
    color: var(--hover-color);
}

/* index-product */
/* page */
.page-content {
    flex: 1;
}

/* page */
/* sidebar */
.side-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    border-bottom: 2px solid var(--light-green);
    padding-bottom: 15px;
}

.side-cat li a {
    display: block;
    background: var(--white-color);
    padding: 15px;
}

.side-cat li a:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.side-blog li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.side-blog li .img {
    flex-shrink: 0;
    width: 30%;
}

.side-blog li .text .time {
    font-size: 12px;
    color: var(--hover-color);
}

.side-blog li .text h3 {
    font-size: 15px;
    line-height: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* sidebar */
/* pagination */
.pagnavi {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagnavi a {
    display: inline-block;
    width: 50px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    margin: 5px;
    background: var(--weight-color);
    border: 1px solid var(--border-color);
    text-transform: capitalize;
}

.pagnavi a:hover {
    border: 1px solid var(--hover-color);
    background: var(--hover-color);
    color: var(--white-color);
}

.pagnavi .current {
    border: 1px solid var(--hover-color);
    background: var(--hover-color);
    color: var(--white-color);
}

/* pagination */
/* toppro */
.toppro-img {
    flex-shrink: 0;
}

.toppro-text {
    flex: 1;
}

.toppro-title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    color: var(--hover-color);
    padding-bottom: 15px;
}

.toppro-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 2px;
    background: var(--hover-color);
}

.toppro-text-title {
    font-size: 22px;
    font-weight: 700;
}

.toppro-ul li {
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toppro-ul li span {
    color: var(--hover-color);
    font-weight: 600;
}

.toppro-img .swiper-button-next,
.toppro-img .swiper-button-prev {
    color: var(--hover-color);
}

.product-detail-actions {
    flex-wrap: wrap;
}

.product-detail-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    line-height: 50px;
    padding: 0 34px;
    font-size: 15px;
    font-weight: 500;
    transform: none;
}

.product-detail-actions .btn:hover {
    transform: none;
}

.product-detail-whatsapp {
    background: #25d366 !important;
    background-image: none !important;
    color: var(--white-color);
}

.product-detail-whatsapp:hover {
    background: #1ebe5d !important;
    background-image: none !important;
    color: var(--white-color);
}

.product-detail-pdf {
    background: #dc2626 !important;
    background-image: none !important;
    color: var(--white-color);
}

.product-detail-pdf:hover {
    background: #b91c1c !important;
    background-image: none !important;
    color: var(--white-color);
}

/* toppro */
/* single */
.single-table {
    overflow-x: auto;
    width: 100%;
}

.single-title {
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.single-title h1 {
    font-weight: 700;
    font-size: 30px;
    color: var(--main-color);
    line-height: 40px;
    margin-bottom: 15px;
}

.single-arc h2 {
    font-weight: 700;
    font-size: 20px;
    color: var(--hover-color);
    border-left: 3px solid var(--hover-color);
    padding-left: 15px;
}

.single-arc h3 {
    font-weight: 700;
    font-size: 18px;
}

.single-arc h4 {
    font-weight: 700;
}

.toppro + .m30 .single-arc {
    overflow-x: auto;
}

.single-arc table p {
    margin: 0;
}

.toppro + .m30 .single-arc table {
    width: 100%;
    min-width: 640px;
    margin: 20px 0;
    border: 1px solid #c9d6e5;
    border-collapse: collapse;
    background: var(--white-color);
    box-shadow: 0 8px 24px rgba(0, 0, 36, 0.06);
}

.toppro + .m30 .single-arc td,
.toppro + .m30 .single-arc th {
    text-align: left;
    line-height: 1.6;
    border: 1px solid #c9d6e5;
    padding: 14px 18px;
    color: var(--main-color);
}

.toppro + .m30 .single-arc th {
    background: var(--hover-color);
    color: var(--white-color);
    font-weight: 600;
}

.toppro + .m30 .single-arc tr:nth-child(even) td {
    background: #f6f9fd;
}

.toppro + .m30 .single-arc td:first-child {
    width: 38%;
    background: #eef4fb;
    font-weight: 600;
    color: var(--hover-color);
}

.toppro + .m30 .single-arc tr:nth-child(even) td:first-child {
    background: #e8f0fa;
}

.single-arc iframe {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.single-arc ul,
.single-arc ol {
    padding-left: 25px;
}

.single-arc li {
    margin: 15px 0;
    list-style-type: disc;
}

.prenext {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* single */
/* contact */
.contact-info {
    background: var(--border-color);
}

.contact-info h2 {
    color: var(--hover-color);
}

.contact-ul>li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.contact-ul .icon i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    background: var(--hover-color);
    color: var(--white-color);
    font-size: 22px;
}

.contact-ul .text h4 {
    font-size: 20px;
    font-weight: 700;
}

.contact-form form {
    display: grid;
    grid-template-columns: repeat(1, fr);
    gap: 15px;
}

.contact-form form input,
.contact-form form textarea {
    border: 1px solid #aebdcc;
    border-radius: 8px;
    background: var(--white-color);
    color: var(--main-color);
}

.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
    color: #7b8794;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
    border-color: var(--hover-color);
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(9, 60, 168, 0.12);
}

/* contact */
/* inquiry popup */
.inquiry-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.inquiry-popup.active {
    display: flex;
}

.inquiry-popup-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 36, 0.65);
}

.inquiry-popup-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    background: var(--white-color);
    border-radius: 16px;
    padding: 34px 30px 30px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.inquiry-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    padding: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--main-color);
    font-size: 26px;
}

.inquiry-popup-close:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.inquiry-popup-title {
    margin-bottom: 24px;
    padding: 0 40px;
    color: var(--main-color);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.inquiry-popup-form {
    display: grid;
    gap: 14px;
}

.inquiry-popup-form input,
.inquiry-popup-form textarea {
    border: 1px solid #aebdcc;
    border-radius: 8px;
    background: var(--white-color);
    color: var(--main-color);
    padding: 17px 16px;
}

.inquiry-popup-form input::placeholder,
.inquiry-popup-form textarea::placeholder {
    color: #7b8794;
}

.inquiry-popup-form input:focus,
.inquiry-popup-form textarea:focus {
    border-color: var(--hover-color);
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(9, 60, 168, 0.12);
}

.inquiry-popup-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding-top: 4px;
}

.inquiry-attachment-note {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
}

.inquiry-attachment-note a {
    color: var(--hover-color);
    font-weight: 600;
}

.inquiry-popup-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    line-height: 50px;
    padding: 0 34px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 25px;
    transform: none;
}

.inquiry-popup-actions .btn:hover {
    transform: none;
}

.inquiry-whatsapp {
    background: #25d366 !important;
    background-image: none !important;
    color: var(--white-color);
}

.inquiry-whatsapp:hover {
    background: #1ebe5d !important;
    background-image: none !important;
    color: var(--white-color);
}

.inquiry-popup-tip {
    min-height: 22px;
    color: var(--hover-color);
    font-size: 14px;
}

body.inquiry-popup-open {
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .inquiry-popup-box {
        padding: 24px 18px;
    }

    .inquiry-popup-title {
        font-size: 24px;
    }

    .inquiry-popup-actions .btn {
        width: 100%;
    }
}
/* inquiry popup */
/* thank you */
.thank-you-box {
    max-width: 720px;
    margin: 0 auto;
}

.thank-you-box h2 {
    margin-bottom: 15px;
    color: var(--main-color);
    font-size: 36px;
    font-weight: 700;
}

.thank-you-box p {
    margin-bottom: 25px;
    font-size: 18px;
}
/* thank you */
/* floating contacts */
.floating-contacts {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 998;
    width: 50px;
}

.floating-contacts ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 18px 0;
    background: #b7b7b7;
}

.floating-contacts li {
    position: relative;
    width: 50px;
    height: 50px;
}

.floating-contacts a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: transparent;
    color: var(--white-color);
    overflow: hidden;
    transition: width 0.3s ease, background 0.3s ease;
}

.floating-contacts a i {
    position: absolute;
    top: 0;
    right: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
}

.floating-contacts a span {
    display: none;
    padding: 0 62px 0 18px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    line-height: 50px;
}

.floating-contacts a:hover {
    width: 300px;
    border-radius: 25px;
    background: #0044d7;
    justify-content: flex-start;
    color: var(--white-color);
    box-shadow: 0 8px 24px rgba(0, 0, 36, 0.18);
}

.floating-contacts a:hover span {
    display: inline-block;
}

.floating-contacts .floating-wechat a,
.floating-contacts .floating-whatsapp {
    overflow: visible;
}

.floating-contacts .floating-wechat img,
.floating-contacts .floating-whatsapp img {
    position: absolute;
    right: 58px;
    top: 25px;
    width: 180px;
    max-width: none;
    padding: 8px;
    border: 1px solid #d6dee8;
    border-radius: 8px;
    background: var(--white-color);
    box-shadow: 0 8px 24px rgba(0, 0, 36, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

.floating-contacts .floating-wechat:hover img,
.floating-contacts .floating-whatsapp:hover img {
    opacity: 1;
    visibility: visible;
}

.floating-contacts .floating-whatsapp {
    background: transparent;
}

.floating-contacts .floating-whatsapp:hover {
    background: #0044d7;
}

@media (max-width: 992px) {
    .floating-contacts {
        display: none;
    }
}
/* floating contacts */
/* mobile action bar */
.mobile-action-bar {
    display: none;
}

@media (max-width: 992px) {
    body {
        padding-bottom: 78px;
    }

    .mobile-action-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9998;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: var(--white-color);
        border-top: 1px solid #d6dee8;
        box-shadow: 0 -8px 24px rgba(0, 0, 36, 0.12);
    }

    .mobile-action-bar a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-width: 0;
        height: 50px;
        border-radius: 25px;
        font-size: 15px;
        font-weight: 600;
        color: var(--white-color);
        text-align: center;
    }

    .mobile-action-bar a:hover {
        color: var(--white-color);
    }

    .mobile-action-inquiry {
        background: linear-gradient(320deg, #031f60 0%, #093ca8 50%, #2e83f5 100%);
    }

    .mobile-action-whatsapp {
        background: #25d366;
    }
}
/* mobile action bar */
/* 404 */
/* FAQ */
.section-5-text-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid var(--weight-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--white-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background: var(--weight-color);
}

.faq-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

.faq-icon {
    color: var(--hover-color);
    transition: transform 0.3s ease;
}

.faq-content {
    padding: 0 20px;
    background: var(--white-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-content p {
    margin: 0;
    padding: 20px 0;
    color: var(--dark-color);
    line-height: 1.6;
}

.faq-item.active .faq-header {
    background: var(--hover-color);
}

.faq-item.active .faq-header h3 {
    color: var(--white-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--white-color);
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding: 0 20px;
}

/* FAQ */
.title-404 {
    color: var(--hover-color);
    font-size: 100px;
    font-weight: 700;
}

/* 404 */
@media screen and (min-width: 768px) {
    .container {
        width: 760px;
        margin: 0 auto;
    }

    .container-layout {
        margin-left: 30px;
        margin-right: 30px;
    }

    .m100 {
        margin: 100px 0;
    }

    .m80 {
        margin: 80px 0;
    }

    .m50 {
        margin: 50px 0;
    }

    .p100 {
        padding: 100px 0;
    }

    .p80 {
        padding: 80px 0;
    }

    .p50 {
        padding: 50px 0;
    }

    .ps30 {
        padding: 30px;
    }

    .grid {
        gap: 30px;
    }

    .grid2 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* reset */
    /* slider */
    .slider-title {
        font-size: 60px;
    }

    /* slider */
    /* layout */
    /* section-1 */
    .section-1-content{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .section-1-img{
        width: 50%;
    }
    /* section-1 */
    /* section-2 */
    .pagebtn{
        padding-top: 50px;
    }
    /* section-2 */
    /* section-5 */

    /* section-5 */
    /* layout */
    /* message */
    .message-form form {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* message */
    /* caselist */
    .caselist-item {
        display: flex;
        align-items: center;
    }

    .caselist-item>.img {
        width: 45%;
    }

    /* caselist */
    /* contact */
    .contact-form form {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contact-form form textarea {
        grid-column: span 2;
    }

    .contact-form form button {
        grid-column: 1/-1;
    }

    /* contact */
}

@media screen and (min-width: 1200px) {
    .container {
        width: 1170px;
    }

    .grid3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .ps50 {
        padding: 50px;
    }

    .section-head {
        margin-bottom: 50px;
    }

    .section-title {
        max-width: 60%;
        margin: 0 auto 50px auto;
    }

    /* reset */
    /* slider */
    .slider {
        min-height: 100vh;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }
    .slider.p100 {
        padding: 85px 0 30px;
    }
    .slider-content{
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 4%;
        margin-top: 0;
    }
    .slider-img{
        width: 42%;
    }
    .slider-text {
        flex: 0 0 54%;
    }
    /* slider */
    /* layout */
    /* section-4 */
    .section-4-content{
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }
    .section-4-img{
        width: 50%;
    }
    /* section-4 */
    /* section-6 */
    .section-6-content{
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 30px;
    }
    .section-6-img{
        width: 55%;
    }
    /* section-6 */
    /* layout */
    /* page-banner */
    /* page-banner */
    /* page */
    .page {
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 30px;
    }

    .sidebar {
        width: 25%;
        align-self: start;
    }

    /* page */
    /* toppro */
    .toppro-content {
        flex-direction: row;
    }

    .toppro-img {
        width: 50%;
    }

    /* toppro */
    /* about */
    /* about-1 */
    .about-1-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }
    .about-1-img{
        width: 50%;
    }
    /* about-1 */

    /* about */
    /* contact */
    .contact {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .contact-info {
        align-self: stretch;
    }

    .contact-form {
        width: 50%;
    }

    /* contact */
}

@media screen and (min-width: 1400px) {
    .container {
        width: 1370px;
    }

    /* reset */
}
@media (max-width: 1200px) {
	.headbtn {
		display: none;
	}

    .header-actions {
        margin-left: auto;
        margin-right: 15px;
    }

	.top-icon {
		display: none;
	}
    .slider-img{
        display: none;
    }
}

@media (max-width: 992px) {
	.hamburger {
		display: flex;
	}

    .head-whatsapp {
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        font-size: 20px;
    }

    .head-whatsapp span {
        display: none;
    }

	.navbar {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--white-color);
		box-shadow: var(--shadow);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease-out;
	}

	.navbar.active {
		max-height: 100vh;
		overflow-y: auto;
	}

	.nav-menu {
		flex-direction: column;
		gap: 0;
		padding: 20px;
	}

	.nav-item {
		width: 100%;
		border-bottom: 1px solid #eee;
	}

	.nav-link {
		justify-content: space-between;
		padding: 15px 0;
		color: var(--main-color);
	}

	.mega-menu {
		position: static;
		width: 100%;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		padding: 0;
		border-top: none;
		background: #f9f9f9;
	}

	.mega-menu.open {
		display: block;
	}

	.mega-content {
		padding: 15px;
	}

	.mega-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.dropdown-menu {
		position: static;
		width: 100%;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		background: #f9f9f9;
		padding-left: 20px;
	}

	.dropdown-menu.open {
		display: block;
	}

	.hamburger.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
}

@media screen and (max-width: 768px) {
	.container {
		margin-left: 15px;
		margin-right: 15px;
	}

	/* reset */
}
