/*==================================
* Author        : "ThemeSine"
* Template Name : Sinemkt  HTML Template
* Version       : 1.0
==================================== */

/*==================================
font-family: 'Roboto', sans-serif;
==================================== */

/*=========== TABLE OF CONTENTS ===========
1.  General css (Reset code)
2.  Top-area
3.  Welcome-hero
4.  Populer-post
5.  New-arrivals
6.  Accordion
7.  Features
8.  Blog
9.  Clients
10. News-letter
11. Footer
12. Card
13. Popup-face-body
==========================================*/

/*-------------------------------------
		1.General css (Reset code)
--------------------------------------*/
* {
    padding: 0;
    margin: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #a09e9c;
    background: #fff;
    text-transform: capitalize;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
}

a,
a:hover,
a:active,
a:focus {
    display: inline-block;
    text-decoration: none;
    color: #616060;
    font-size: 16px;
    padding: 0;
    font-weight: 500;
}
h1,
h2,
h4,
h5,
h6 {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    margin-bottom:1em;
}
h3 {
    margin: 0;
    color: #5f5b57;
    font-size: 9px;
    font-weight: 500;
}
p {
    margin: 0;
    color: #a09e9c;
    font-size: 16px;
    line-height: 1.8;
    text-transform: math-auto !important;
}
img {
    border: none;
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

ul li {
    list-style: disc;
}

.navbar-nav li {
    list-style: none;
}


select,
input,
textarea,
button {
    box-shadow: none;
    outline: 0 !important;
}
button {
    background: transparent;
    border: 0;
}

html,
body {
    height: 100%;
}

[placeholder]:focus::-webkit-input-placeholder {
    -webkit-transition: opacity 0.3s 0.3s ease;
    -moz-transition: opacity 0.3s 0.3s ease;
    -ms-transition: opacity 0.3s 0.3s ease;
    -o-transition: opacity 0.3s 0.3s ease;
    transition: opacity 0.3s 0.3s ease;
    opacity: 0;
}

.social-media {
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-social {
    display: block;
    background-color: #ffcc00;
    background-image: linear-gradient(45deg, #f0e47b, #f3dc73, #f8e74a);
    color: #000;
    border-radius: 10px;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    width: 250px;
    height: 50px;
    justify-content: center;
}

.btn-social:hover {
    background-color: #d4a017;
    transform: translateY(-3px);
}

.btn-social img.social-icon {
    width: 30px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.btn-social:hover img.social-icon {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .social-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-social {
        width: 250px;
        height: 50px;
        justify-content: center;
        margin: 0 auto;
    }
    
    .btn-belanja {
        width: 180px;
        height: 40px;
        margin: 0 auto;
        font-size: 13px;
    }
}

.btn-belanja {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffcc00;
    background-image: linear-gradient(45deg, #f0e47b, #f3dc73, #f8e74a);
    color: #000;
    border-radius: 6px;
    /* padding: 4px 8px; */
    font-size: 16px;
    font-weight: normal;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
    width: 120px;
    height: 32px;
    text-align: center;
}

/* Section Blog Styling */
.section-blog {
    padding: 100px 0;
    background-color: #dfc669; 
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
}

.blog-grid .col-lg-4, .blog-grid .col-md-6 {
    display: flex;
    justify-content: center;
    margin: 100px; 
}

.blog-post {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    max-width: 350px;
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: scale(1.05); 
}

.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.blog-date {
    position: absolute;
    background: #3a3973;
    color: #ffffff;
    padding: 8px 15px;
    top: 10px;
    left: 10px;
    font-size: 14px;
    border-radius: 3px;
}

.blog-info {
    padding: 20px;
    text-align: center;
}

.blog-info h5 a {
    color: #3a3973;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-info h5 a:hover {
    color: #fe4f6c;
}

.blog-info p {
    color: #333333;
    font-size: 14px;
}

.px-btn-arrow {
    color: #fe4f6c;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 10px 0;
}

.px-btn-arrow .arrow {
    width: 13px;
    height: 2px;
    background: currentColor;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    transition: all 0.3s;
}

.px-btn-arrow .arrow:after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.px-btn-arrow:hover .arrow {
    right: -25px;
}

/* Text Styling */
.section-title h2 {
    color: #3a3973; 
}

.section-title p {
    color: #555; 
}


/*============= Style CSS =================*/
.card-blog {
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    overflow: hidden;
    border: none;
    background-color: #fff;
    height: 100%;
}

.card-img-top {
    width: 100%;
    height: 200px; 
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px; 
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
    color: #dfc669;
    transition: color 0.3s;
}

.card-text {
    color: #666;
    font-size: 1rem;
    text-align: left;
    line-height: 1.5;
    flex-grow: 1;
    max-height: 60px; /* Batasi tinggi teks */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Maksimal 3 baris */
    -webkit-box-orient: vertical;
}

.card-blog .btn-primary {
    background-color: #dfc669;
    border-color: #bfa95a;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    color: #fff;
    align-self: flex-start;
    margin-top: auto; /* Menjaga tombol tetap di bawah */
    transition: background-color 0.3s, transform 0.2s;
}

.card-blog .btn-primary:hover {
    background-color: #e6cf7d;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 5px 20px;
    transform: scale(1.05);
}

/* Styling khusus untuk card product */
.card-product {
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    margin-bottom: 2rem;
    margin-top: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-product:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Gambar produk full */
.card-product-img {
    width: 100%;
    height: 100%; /* Buat gambar memenuhi seluruh card */
    object-fit: cover;
    display: block;
}

/* Overlay untuk judul */
.card-product-body {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Latar belakang transparan */
    padding: 10px;
    text-align: center;
}

/* Judul Produk */
.card-product-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff; /* Warna putih agar kontras */
    margin: 0;
}

.card-product-title a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.card-product-title a:hover {
    color: #dfc669; /* Warna hover */
}



.article-body::-webkit-scrollbar {
    width: 8px;
}

.article-body::-webkit-scrollbar-thumb {
    background: #dfc669;
    border-radius: 4px;
}

.article-body::-webkit-scrollbar-thumb:hover {
    background: #ecd37a;
}

.article-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.blog-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.tags {
    margin-right: 15px;
    display: flex;
    gap: 10px;
}

.tag {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.8rem;
    color: #dfc669;
}

.reading-time,
.author,
.date {
    margin-right: 15px;
    font-size: 0.9rem;
}

.author a {
    color: #dfc669;
    text-decoration: none;
    font-size: 0.9rem;
}

.author a:hover {
    font-size: 0.9rem;
    text-decoration: underline;
}

.card-blog img {
    width: 100%;
}

.latest-article-img {
    width: 100%;
    height: auto; /* Sesuaikan tinggi gambar */
    object-fit: cover;
    border-radius: 8px;
}

.popular-article-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.blog-description {
    margin-top: 20px;
    font-size: 18px; 
    line-height: 1.8; 
    max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
}

.blog-description p, 
.blog-description div {
    text-align: left !important; 
    color: #000;
    font-size: medium;
    text-transform: none !important;
}

.description-content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Gaya paragraf */
.description-content p {
    margin-bottom: 1em;
}

/* Gaya list unordered dan ordered */
.description-content ul,
.description-content ol {
    padding-left: 40px;
    margin-bottom: 1em;
}

.description-content ul {
    list-style-type: disc;
}

.description-content ol {
    list-style-type: decimal;
}

.note-editable ul{
  list-style: disc !important;
  list-style-position: inside !important;
}

.note-editable ol {
  list-style: decimal !important;
  list-style-position: inside !important;
}

/* Gaya heading jika ada */
.description-content h1,
.description-content h2,
.description-content h3 {
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #222;
}

/* Gaya gambar */
.description-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
    border-radius: 8px;
}

/* Gaya link */
.description-content a {
    color: #007bff;
    text-decoration: none;
}

.description-content a:hover {
    text-decoration: underline;
}


.media {
    display: flex;
    align-items: flex-start;
}

.media img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: fill;
}

.media-body {
    margin-left: 15px;
}

.media h5 {
    margin-bottom: 0.5rem;
    color: #dfc669;
}

.media h5 a {
    color: inherit;
}

.media h5 a:hover {
    color: #ecd37a;
}
.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: #fff;
    --bs-pagination-border-width: 1px;
    --bs-pagination-border-color: #dee2e6;
    --bs-pagination-border-radius: 0.375rem;
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: #e9ecef;
    --bs-pagination-hover-border-color: #dee2e6;
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: #e9ecef;
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #0d6efd;
    --bs-pagination-active-border-color: #0d6efd;
    --bs-pagination-disabled-color: #6c757d;
    --bs-pagination-disabled-bg: #fff;
    --bs-pagination-disabled-border-color: #dee2e6;
    display: flex;
    padding-left: 0;
    list-style: none;
}

.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: var(--bs-pagination-color);
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid
        var(--bs-pagination-border-color);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .page-link {
        transition: none;
    }
}
.page-link:hover {
    z-index: 2;
    color: var(--bs-pagination-hover-color);
    background-color: var(--bs-pagination-hover-bg);
    border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
    z-index: 3;
    color: var(--bs-pagination-focus-color);
    background-color: var(--bs-pagination-focus-bg);
    outline: 0;
    box-shadow: var(--bs-pagination-focus-box-shadow);
}
.page-link.active,
.active > .page-link {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: var(--bs-pagination-active-bg);
    border-color: var(--bs-pagination-active-border-color);
}
.page-link.disabled,
.disabled > .page-link {
    color: var(--bs-pagination-disabled-color);
    pointer-events: none;
    background-color: var(--bs-pagination-disabled-bg);
    border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px;
}
.page-item:first-child .page-link {
    border-top-left-radius: var(--bs-pagination-border-radius);
    border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
    border-top-right-radius: var(--bs-pagination-border-radius);
    border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
    --bs-pagination-padding-x: 1.5rem;
    --bs-pagination-padding-y: 0.75rem;
    --bs-pagination-font-size: 1.25rem;
    --bs-pagination-border-radius: 0.5rem;
}

.pagination-sm {
    --bs-pagination-padding-x: 0.5rem;
    --bs-pagination-padding-y: 0.25rem;
    --bs-pagination-font-size: 0.875rem;
    --bs-pagination-border-radius: 0.25rem;
}

.col-lg-4 {
    display: block;
    margin-bottom: 30px;
}



.about-us-section {
    padding: 50px 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10%;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
}

.btn-pink {
    background-color: #ff4081;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.services-section {
    padding: 50px 0;
    text-align: center;
}

.services-cards .service-card {
    text-align: center;
    margin-top: 20px;
}

.services-cards .service-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.services-cards .service-card h4 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
}

.judul-karir {
    font-size: 1.5rem; /* Adjust font size for emphasis */
    font-weight: bold;
    color: #333; /* Dark gray text color for readability */
    text-align: center;
    margin-bottom: 15px;
}

.judul-karir h1 {
    font-size: 3rem; /* Adjust font size for emphasis */
    font-weight: semi-bold;
    color: #333; /* Dark gray text color for readability */
    text-align: center;
    margin-bottom: 15px;
}


/* About Us Section Styling */
/* .about-us-section {
    background-color: #f8f9fa; 
    padding: 60px 0; 
}

.about-us-img {
    border: 3px solid #b6b120; 
    transition: transform 0.3s ease-in-out;
    min-height: auto;
}

.about-us-img:hover {
    transform: scale(1.05); /
}

.about-us-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    text-align: left; 
} 

.about-us-title {
    font-size: 2.5rem;
    color: #b6b120; 
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.about-us-text {
    font-size: 2.1rem;
    color: #495057; 
    line-height: 1.4; 
    text-align: left;
}

/* Media Query for Responsive Design */
/* @media (max-width: 768px) {
    .about-us-subtitle{
        margin-top: 20px;
    }
    .about-us-title {
        font-size: 2rem; 
    }
    .about-us-text {
        font-size: 1rem; 
    }
} */

/*-------------------------------------
        2. Top-area
--------------------------------------*/
nav.navbar.bootsnav {
    background-color: transparent;
    float: right;
    border-bottom: transparent;
}
.wrap-sticky nav.navbar.bootsnav.sticked {
    position: sticky;
    background-color: transparent;
    box-shadow: transparent;
    float: right;
}

/*.navbar-brand*/
.navbar-header a.navbar-brand,
.navbar-header a.navbar-brand:hover,
.navbar-header a.navbar-brand:focus {
    position: sticky;
    display: inline-block;
    color: #616060;
    font-size: 24px;
    font-weight: 500px;
    padding-left: 0;
}
.navbar-header a.navbar-brand span {
    display: inline-block;
    text-transform: capitalize;
}

.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand,
.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:hover,
.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:focus {
    padding: 30px 0px;
    float: right;
}
/*.navbar-brand*/

/*.nav li*/
nav.navbar.bootsnav ul.nav > li > a {
    float: right;
    color: #494949;
    font-weight: 500;
}

header .navbar ul {
    float: right;
    list-style: none;
}

header .navbar ul li {
    position: relative;
}

header .navbar ul li a {
    font-size: 17px;
    padding: 20px;
}

header .navbar ul li ul {
    position: auto;
    width: 200px;
    display: none;
}

header .navbar ul li ul li ul {
    left: 200px;
    top: 0;
}

header .navbar ul li:hover > ul {
    display: initial;
}

#menu-bar {
    display: none;
}

header label {
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: none;
}

.nav.navbar.bootsnav ul.nav > li > a:focus {
    color: gold;
}
nav.navbar.bootsnav ul.nav > li.active > a {
    color: gold;
}

nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after {
    content: normal;
}
nav.navbar.bootsnav ul.nav > li.dropdown span {
    font-size: 8px;
}
/*.nav li*/

/*.menu-ui-design*/
.menu-ui-design {
    overflow-y: scroll;
    height: 350px;
}
.menu-ui-design::-webkit-scrollbar {
    width: 5px;
}
.menu-ui-design::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 8px rgb(69, 64, 64);
}
/*.menu-ui-design*/

/*.attr-nav*/
.attr-nav {
    position: relative;
    top: 5px;
}
.attr-nav > ul > li > a {
    color: #616060;
    padding: 44px 15px;
    font-size: 18px;
    font-weight: 500;
}
.attr-nav > ul > li > a:hover {
    color: rgb(0, 0, 0);
}
.wrap-sticky nav.navbar.bootsnav.sticked .attr-nav > ul > li > a {
    padding: 28px 15px;
}
/*.attr-nav*/

/*badge*/
.badge {
    background-color: gold;
    border: 2px solid gold;
}
.attr-nav > ul > li > a span.badge {
    margin-top: -25px;
    width: 20px;
    height: 20px;
    padding-top: 3px;
}
/*.badge*/

nav.navbar.bootsnav .navbar-toggle i {
    margin-top: 90%;
}

.navbar-nav {
    background-color: white;
}

button.navbar-toggle {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Gaya untuk ikon */
button.navbar-toggle i {
    font-size: 24px;
    color: #333;
}

/* Hover state untuk tombol */
button.navbar-toggle:hover {
    background-color: #eee;
}
/*.navbar-toggle */

/*.cart-list*/
ul.dropdown-menu.cart-list {
    height: 232px;
    overflow-y: scroll;
    border-radius: 3px;
}
ul.cart-list > li img {
    width: 50px;
    height: 50px;
    border: transparent;
}

.s-cate::-webkit-scrollbar {
    width: 5px;
}
.s-cate::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 8px #000;
}
.s-cate::-webkit-scrollbar-thumb {
    background-color: #a09e9c;
}

.single-cart-list {
    position: relative;
    display: flex;
}

ul.cart-list > li {
    border-bottom: solid 1px #ebebeb;
    padding: 20px !important;
}

ul.cart-list > li:last-child {
    border-bottom: 0;
}

.attr-nav ul.cart-list > li > a:hover {
    border-left: 2px solid transparent !important;
}

.dropdown-menu.cart-list h6 a {
    color: #43465d;
    font-size: 12px;
    line-height: 1.3;
}

.cart-list-txt p {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.8;
}

ul.cart-list > li .price {
    font-weight: 300;
}

.cart-close {
    position: absolute;
    top: 10px;
    right: 14px;
    cursor: pointer;
}

ul.cart-list > li.total > span {
    padding-top: 0px;
    position: relative;
    top: 4px;
}

ul.cart-list > li.total span {
    color: #43465d;
    font-size: 14px;
    font-weight: 500;
}

ul.cart-list > li.total {
    background-color: #fff;
    padding-bottom: 20px !important;
}

.btn-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    background: gold;
    border: 1px solid gold;
    width: 80px;
    height: 30px;
    white-space: nowrap;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 3px;
}
/*.cart-list*/

/*.packages-price */
.packages-price p {
    position: relative;
    color: #616060;
    font-size: 16px;
    font-weight: 500;
}

.packages-price del,
.packages-price span {
    color: #bbb9b9;
    font-size: 16px;
    font-weight: 500;
}

.packages-price del {
    margin-left: 10px;
}
/*.packages-price */

/*-------------------------------------
        3.  Welcome-hero
--------------------------------------*/
.welcome-hero {
    position: relative;
    z-index: 1;
}
/* .header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
} */

.single-slide-item {
    position: relative;
    background-size: cover;
    background-position: center;
}
.single-slide-item.slide1 {
    background: transparent;
}
.single-slide-item.slide2 {
    background: transparent;
}
.single-slide-item.slide3 {
    background: transparent;
}

/*welcome-hero-content*/
.welcome-hero-img-slider {
    padding-top: -20%;
    margin: -5%;
}
.single-welcome-hero {
    flex-direction: column;
    justify-content: center;
    height: 450px;
    margin: 80px;
    margin-top: 150px;
}
.welcome-hero-txt h4 {
    color: #998d80;
    font-size: 24px;
    font-weight: 400;
}
.welcome-hero-txt h2 {
    font-size: 48px;
    color: #616060;
    font-weight: 400;
    margin: 20px 0 22px;
}
.welcome-hero-txt p {
    margin: 35px 0 20px;
}
.welcome-hero-txt .packages-price p {
    margin: 0;
    padding-left: 35px;
}
.packages-price p:before {
    position: absolute;
    content: "";
    width: 25px;
    height: 1px;
    background: #616060;
    top: 45%;
    left: 0;
}
.btn-cart.welcome-add-cart,
.btn-cart.welcome-add-cart.welcome-more-info {
    width: 170px;
    height: 60px;
    line-height: 60px;
    border-radius: 1px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    margin-top: 34px;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}
.btn-cart.welcome-add-cart span {
    text-transform: lowercase;
}
.btn-cart.welcome-add-cart span.lnr.lnr-plus-circle {
    position: relative;
    top: 0px;
    font-size: 16px;
    margin-right: 5px;
}
.btn-cart.welcome-add-cart.welcome-more-info {
    color: gold;
    background: transparent;
    border: transparent;
}
.btn-cart.welcome-add-cart:hover {
    color: gold;
    background: transparent;
    border: 1px solid gold;
}
.btn-cart.welcome-add-cart.welcome-more-info:hover {
    background: transparent;
    color: gold;
    border: 1px solid gold;
}
/*welcome-hero-content*/

/* .carousel-indicators */
.carousel-indicators {
    bottom: 4.5%;
}
.carousel-indicators li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 12px 10px 0 0;
    text-indent: -999px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid gold;
    border-radius: 50%;
}
.carousel-indicators li > span.small-circle {
    position: absolute;
    top: -1px;
    left: -1px;
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: transparent;
    border: 1px solid gold;
    border-radius: 50%;
}
.carousel-indicators li.active > span.small-circle {
    top: 3px;
    left: 3px;
    background-color: gold;
}
.carousel-indicators .active {
    position: relative;
    top: 4px;
    width: 16px;
    height: 16px;
    margin: 12px 10px 0 0;
    background-color: transparent;
    border: 1px solid gold;
}

/* .carousel-indicators */

/* .carousel-fade */
.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
    z-index: 2;
}

/* Media Query for Smartphones */
@media only screen and (max-width: 767px) {
    /* Adjust carousel indicators */
    .carousel-indicators {
        bottom: 10px;
    }
    .carousel-indicators li {
        width: 6px;
        height: 6px;
    }
    .carousel-indicators li.active {
        width: 10px;
        height: 10px;
    }

    /* Adjust image in carousel */
    .carousel-inner .item img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        object-fit: cover;
    }

    /* Reduce padding/margin */
    .carousel-inner .item {
        margin-top: 80px; /* Reduce top margin for better visibility */
    }

    /* Adjust buttons and text */
    .carousel-control {
        display: none; /* Optional: hide controls on smaller screens */
    }
}

/* .carousel-fade */

/*-------------------------------------
        4. Testimoni
--------------------------------------*/
.owl-carousel .owl-item {
    width: auto;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    transform: scale(0.9);
}

.owl-carousel .owl-item.active.center {
    opacity: 1;
    transform: scale(1.5);
}

.owl-carousel .owl-item.active.center img {
    max-width: 1000px;
}

.owl-carousel .owl-item img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 5px 5px 5px rgba(255, 215, 0, 0.1);
}

.owl-carousel .owl-item.active.center img {
    max-width: 800px;
}

/* Style untuk navigation dots */
.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
    height: 10px;
    background: #a38f2a !important;
    border-radius: 2px !important;
    opacity: 0.8;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    height: 9px;
    width: 9px;
    opacity: 1;
    transform: translateY(2px);
    background: #e7dd83 !important;
}

/* CSS khusus untuk section testimoni */
#populer-testimoni {
    background-color: #fff;
}

/* Untuk membatasi lebar carousel */
#populer-testimoni .carousel-inner {
    max-width: 2000px;
    margin: 0 auto;
}

/* Style untuk item testimoni */
.testimoni-item {
    text-align: center;
    margin: 10px;
}

/* Gaya tambahan untuk memastikan gambar tampil rapi */
.testimoni-img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsiveness */
@media (max-width: 768px) {
    .owl-carousel .owl-item {
        padding: 20px;
    }

    .testimoni-img {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .owl-carousel .owl-item {
        padding: 15px;
    }

    .testimoni-img {
        max-width: 80%;
    }
}

/*-------------------------------------
        5. Populer-post
--------------------------------------*/
.populer-products {
    padding: 0px 0 0;
}
.single-populer-products {
    position: relative;
    min-height: 280px;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
}

.single-populer-product-img.mt40 {
    margin-top: 10px;
}

.single-inner-populer-products {
    margin-top: 40px;
    padding: 0 90px 0 30px;
    text-align: left;
}

.single-populer-products h2 a {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #5f5b57;
    margin: 20px 0 22px;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.single-populer-products:hover h2 a {
    color: gold;
}
.single-populer-products-para {
    min-height: 70px;
    overflow: hidden;
    display: inline-block;
}
.single-populer-products-para p {
    font-size: 10px;
    padding: 7px;
}
.single-inner-populer-product-txt {
    margin-top: 8px;
}
.single-populer-products .single-inner-populer-product-txt h2 a {
    margin: 0;
}
.single-inner-populer-product-txt span {
    text-transform: lowercase;
}
.single-inner-populer-product-txt p {
    font-size: 14px;
    margin: 18px 0 13px;
}
.populer-products-price h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: initial;
}
.populer-products-price h4 span {
    color: gold;
}
.btn-cart.welcome-add-cart.populer-products-btn {
    width: 118px;
    height: 40px;
    line-height: 40px;
    color: #5f5b57;
    background: transparent;
    border: 1px solid #5f5b57;
    font-size: 14px;
    margin-top: 23px;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}
.single-populer-products:hover .btn-cart.welcome-add-cart.populer-products-btn {
    color: #fff;
    background: #5f5b57;
    border: 1px solid #5f5b57;
}

/*-------------------------------------
        5. New-arrivals
--------------------------------------*/
.new-arrivals {
    padding: 85px 0 70px;
}
.new-arrivals-content {
    margin-top: 80px;
}

.single-new-arrival {
    margin-bottom: 50px;
    text-align: center;
}
.single-new-arrival-bg {
    position: relative;
    min-height: 310px;
    background: #f8f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.single-new-arrival-bg img {
    width: auto;
    height: auto;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}
.single-new-arrival-bg:hover img {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
.single-new-arrival-bg-overlay {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(106, 119, 129, 0.1);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}
.single-new-arrival-bg:hover .single-new-arrival-bg-overlay {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.sale {
    position: absolute;
    top: 10px;
    right: 0;
    width: 60px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}
.sale p {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 2.2;
}

.sale.bg-1 {
    background: #d8924c;
}
.sale.bg-2 {
    background: #47d93c;
}

.mr-global-3 {
    margin-right: 2rem;
}

.ml-global-3 {
    margin-left: 2rem !important;
}
.ml-global-2 {
    margin-left: 1rem !important;
}
.mb-global {
    margin-bottom: 3rem !important;
}

.margin-global {
    margin: 1rem !important;
}

.df-global {
    display: flex !important;
}

.box-scroll {
    overflow-y: scroll;
    height: 400px;
}

.new-arrival-cart {
    position: absolute;
    bottom: -14px;
    z-index: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: #33383c;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    opacity: 0;
    visibility: hidden;
}
.new-arrival-cart p {
    float: left;
    margin-left: 20px;
    color: #fff;
    font-size: 12px;
    line-height: 3;
}
.new-arrival-cart p a {
    color: #fff;
    font-weight: 400;
    font-size: 12px;
}
.new-arrival-cart p span.lnr.lnr-cart {
    margin-right: 10px;
}
.new-arrival-cart p span {
    text-transform: lowercase;
}
p.arrival-review span {
    margin-right: 15px;
}
.single-new-arrival-bg:hover .new-arrival-cart {
    opacity: 1;
    visibility: visible;
    bottom: 0px;
}
.single-new-arrival h4 a {
    color: #5f5b57;
    font-size: 16px;
    font-weight: 500;
    margin: 26px 0 12px;
}
.arrival-product-price {
    color: #5f5b57;
    font-size: 16px;
    font-weight: 400;
}
.single-new-arrival:hover h4 a {
    color: gold;
}

/*-------------------------------------
        6. Accordion
--------------------------------------*/

.accordion {
    background: #dadada;
    margin-top: -10%;
    color: black;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    font-weight: bold;
    transition: 0.4s;
    margin: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2.5px 3.5px rgb(100, 100, 100);
}

.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    font-weight: normal;
    overflow: hidden;
}

.panel img {
    margin-right: 10%;
}

.panel text {
    margin-right: -10%;
    margin-top: -10%;
}

.header1::after {
    content: "\25BC";
    font-size: 1.5rem;
    position: absolute;
    right: 1rem;
}

.header1 {
    padding: 0.5rem 3rem 0.5rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.rounded {
    width: 40%;
    height: 40%;
    margin-top: 10%;
}

.text {
    text-align: right;
    font-size: 50%;
    margin-top: -45%;
}

.text h1 {
    text-align: right;
    width: 75%;
    font-weight: bold;
}

.text h1 p {
    margin-right: 10%;
    width: 75%;
    font-weight: bold;
}

/*-------------------------------------
        7. Features
--------------------------------------*/
.feature {
    padding: 110px 0 0px;
}

.feature-content,
.blog-content {
    margin-top: 75px;
}
.single-feature,
.single-blog {
    margin-bottom: 30px;
}

/*.single-feature-txt */
.single-feature-txt,
.single-blog-txt {
    margin-top: 25px;
}
.single-feature-txt p i {
    color: #efce4a;
    margin-left: 5px;
}
span.spacial-feature-icon i {
    color: #a9a9a9;
}
span.feature-review {
    margin-left: 10px;
}
.single-feature-txt p {
    font-size: 14px;
}
.single-feature-txt h3 a,
.single-blog-txt h2 a {
    color: #5f5b57;
    margin: 10px 0px 15px;
}
.single-feature-txt h5 {
    color: #5f5b57;
    font-weight: 400;
}

/*.single-feature-txt */
.feature1 {
    margin-top: 9%;
    position: auto;
}

.feature2 {
    margin-top: 1%;
    position: auto;
}

/*-------------------------------------
        8.  Blog
--------------------------------------*/
.blog {
    padding: 80px 0;
}

/*.single-blog*/
.single-blog {
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.single-blog-img {
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.single-blog-img img {
    width: auto;
    height: auto;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.single-blog:hover img {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}

.single-blog-img-overlay {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.single-blog:hover .single-blog-img-overlay {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.single-blog-txt h2 a {
    text-transform: initial;
    margin: 0 0 15px 0;
}
.single-blog-txt h3,
.single-blog-txt h3 a {
    color: #bcb7b2;
    font-size: 14px;
    font-weight: 400;
}

.single-blog-txt h3 a {
    margin: 0;
}
.single-blog-txt p {
    font-size: 13px;
    margin-top: 20px;
    color: #95908b;
}

.single-blog:hover .single-blog-txt h2 a {
    color: gold;
}
/*.single-blog*/

/*-------------------------------------
         garis footer
--------------------------------------*/
.garis {
    border-left: 1px gold solid;
    background-image: linear-gradient(
        to right,
        #000000,
        #c7b565,
        hsl(50.6, 100%, 56.5%),
        #c7b565,
        #000000
    );
    height: 3px;
    width: 100%;
    margin-top: 2%;
}

/*-------------------------------------
        9. Clients
--------------------------------------*/
.clients {
    background: #f8f9fd;
    display: flex;
    align-items: center;
    height: 220px;
}
.clients .item {
    text-align: center;
}
/*-------------------------------------
        10. News-letter
--------------------------------------*/
.newsletter {
    padding: 120px;
}

.hm-footer-widget {
    margin-bottom: 30px;
}
.hm-foot-title h4 {
    margin-left: 75px;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
}
.hm-foot-menu ul li a {
    color: #a09e9c;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.hm-foot-menu ul li a:hover {
    color: gold;
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
}
.hm-foot-para p {
    margin-left: 20px;
    font-size: 15px;
    text-transform: initial;
    margin-bottom: 25px;
}

.more a {
    margin-left: 100px;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    border: 1px solid #b59e50;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

/*hm-foot-email*/
.hm-foot-email {
    position: relative;
}
.foot-email-box .form-control {
    background: #fff;
    display: block;
    padding: 25px 15px;
    outline: 0 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 0;
}
.foot-email-box input[type="text"] {
    font-size: 14px;
    color: #bcb7b2;
}
.foot-email-subscribe {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: transparent;
    color: gold;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.foot-email-box .form-control:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Mengatur padding pada newsletter section agar responsif */
.newsletter {
    padding: 60px;
}

/* Mengatur tampilan kotak email agar responsif */
.foot-email-box .form-control {
    width: 100%;
}

.contentCardsv2__copy h2 {
    margin-top: -11%;
}
/*-------------------------------------
        RESPONSIVE
--------------------------------------*/
@media (max-width: 476px) {
    .container11 {
        width: 100vh;
    }

    .container1 {
        margin-left: 50px;
    }

    .welcome-hero {
        width: 100vh;
    }

    .welcome-hero-img-slider {
        margin-top: -90%;
    }

    .feature {
        margin-top: -10%;
    }

    .feature1 {
        margin-top: 10px;
    }
}
/* // Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    .feature {
        margin-top: 5%;
    }

    .feature1 {
        margin-top: 10px;
    }

    nav.navbar.bootsnav ul.nav li.dropdown ul.dropdown-menu > li > a {
        display: block;
        width: 100%;
        border-bottom: solid 1px #e0e0e0;
        padding: 10px 0;
        margin-left: 60%;
        color: #6f6f6f;
    }

    .navbar-brand img {
        margin-top: -7%;
        margin-right: 35px;
    }

    .hero__copy h2 {
        margin-top: -25%;
    }

    .contentCardsv2__copy h2 {
        margin-top: -20%;
    }
}

@media (max-width: 785px) {
    .feature {
        margin-top: -30%;
    }

    .container11 {
        width: 100vh;
    }

    .container1 {
        margin-left: 50px;
    }

    .welcome-hero {
        width: 100vh;
    }

    .welcome-hero-img-slider {
        margin-top: -20%;
    }
}

/* // Medium devices (tablets, 768px and up) */
@media (max-width: 800px) {
    .feature {
        margin-top: 60px;
    }

    .feature1 {
        margin-top: 16%;
    }

    .container11 {
        width: 100vh;
        margin-top: -50%;
    }

    .container1 {
        margin-left: 50px;
        width: 10%;
    }

    .sofa-collection .welcome-hero-content img {
        margin-top: -5%;
    }

    .welcome-hero {
        width: 100vh;
    }

    .welcome-hero-img-slider {
        margin-top: -10%;
        width: 100%;
    }

    .welcome-hero-img-slider img {
        margin-left: 7%;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .feature {
        margin-top: -5%;
    }

    .feature1 {
        margin-top: 28%;
    }

    .welcome-hero-content img {
        margin-top: 50%;
    }

    .container11 {
        width: 100vh;
        margin-top: 40%;
    }

    .container1 {
        margin-left: 50px;
        width: 10%;
    }

    .welcome-hero {
        width: 100vh;
    }

    .welcome-hero-img-slider {
        margin-top: -10%;
        width: 100%;
    }

    .welcome-hero-img-slider img {
        margin-left: 7%;
        width: 100%;
    }

    .welcome-hero-content {
        margin-top: 5%;
    }
}

@media (max-width: 1000px) {
    .feature {
        margin-top: -5%;
    }

    .feature1 {
        margin-top: 12%;
    }

    .populer-products-content {
        margin-top: -5%;
    }

    .welcome-hero-content {
        margin-top: 7%;
    }

    .welcome-hero-img-slider img {
        margin-top: -5%;
    }

    .sofa-collection {
        margin-top: -5%;
    }

    .ic-b-right {
        display: none !important;
    }
}

.welcome-hero-content {
    margin-top: 5%;
}

.welcome-hero-content img {
    margin-top: -3%;
}

.item active {
    margin-top: 16%;
}

.sofa-collection {
    margin-top: -10%;
}

/*-------------------------------------
        11. Footer
--------------------------------------*/
.footer {
    background: #fff;
    color: #333;
    margin-top: 30px;
    font-family: "Arial", sans-serif;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-logo {
    width: 25%;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 12px;
    line-height: 1.4;
    color: #666;
    text-align: left;
}

.footer-logo h5 {
    margin-bottom: 5px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: 2px solid #ffc107;
}

.footer-links {
    width: 20%;
}

.footer-links h5 {
    font-size: 14px; /* Ukuran font lebih kecil */
    font-weight: bold;
    color: #333;
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: 2px solid #ffc107;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-top: 5px; /* Kurangi jarak antar item */
    list-style: none;
}

.footer-links ul li a {
    color: #666;
    font-size: 12px; /* Ukuran font lebih kecil */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: #ffc107;
}

.footer-contact {
    width: 25%;
}

.footer-contact h5 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: 2px solid #ffc107;
}

.footer-contact ul li {
    margin-top: 5px;
}

.footer-contact ul li a {
    color: #666;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-contact ul li a:hover {
    color: #ffc107;
}

.footer-copyright {
    background-color: #d4af37;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    margin-top: 20px;
}

.footer-copyright p {
    margin: 0;
    color: #fff;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin-right: 5px;
    color: #ffc107;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #333;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        margin-top: 10px;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        width: 100%;
        margin-bottom: 20px; /* Kurangi margin bottom */
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-logo p,
    .footer-contact p {
        text-align: center;
    }
}

/*-------------------------------------
    12. SPECIAL CARD (IMPROVED)
--------------------------------------*/

/* ===== SECTION WRAPPER ===== */
#special-offer {
    background-color: #fffdf5;
    padding: 80px 0;
}

#special-offer .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f9cc44;
    margin-bottom: 10px;
}

#special-offer .lead {
    color: #666;
    font-size: 1.3rem;
}

.divider {
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background-color: #f9cc44;
    margin: 15px auto 0;
}

/* ===== CARD STYLES ===== */
.card-special-offer {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 100%;
}

.card-special-offer:hover {
    transform: translateY(-12px) scale(1);
    /* box-shadow: 0 20px 40px rgba(249, 204, 68, 0.3); */
}

/* === Offer Badge === */
.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* === Card Image === */
.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: auto; 
}

.card-image {
    width: 100%;
    height: auto; 
    object-fit: contain; 
    transition: transform 0.4s ease;
}

.card-special-offer:hover .card-image {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-special-offer:hover .image-overlay {
    opacity: 1;
}

/* === Card Content === */
.card-content {
    padding: 24px;
    position: relative;
    text-align: center;
}

.offer-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
}

.offer-excerpt {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 48px;
}

/* === CTA Button === */
.cta-button {
    text-align: center;
    margin-bottom: 20px;
}

.btn-view-details {
    display: inline-block;
    background: linear-gradient(45deg, #f9cc44, #ffd700);
    color: #2d3748;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 204, 68, 0.3);
}

.card-special-offer:hover .btn-view-details {
    background: linear-gradient(45deg, #ffd700, #f9cc44);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 204, 68, 0.4);
}

/* ===== MODAL STYLES ===== */
.modal-content {
    border-radius: 18px;
    border: none;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal-header {
    padding: 1.2rem 1.5rem;
    border-bottom: 2px solid #f9cc44;
}

.stylish-modal-header {
    position: relative; /* penting agar tombol bisa diatur absolut */
    display: flex;
    align-items: center;
    justify-content: center; /* buat judul selalu di tengah */
    padding: 1.2rem 1.8rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px 12px 0 0;
    background: linear-gradient(90deg, #ffd84d, #f9cc44);
}

/* Judul */
.stylish-modal-header .modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #2d2d2d;
    margin: 0;
}

/* Tombol Close Custom */
.btn-close-custom {
    position: absolute;
    top: 12px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    line-height: 1;
}

.btn-close-custom:hover {
    color: #000;
    transform: scale(1.1);
}

.btn-close-custom span {
    display: block;
    transform: translateY(-2px);
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #2d3748;
    margin: 0;
}

.modal-body {
    max-height: calc(100vh - 200px); /* biar gak melebihi tinggi layar */
    overflow-y: auto; /* aktifkan scroll vertikal */
    font-family: "Poppins", sans-serif;
    color: #333;
    line-height: 1.7;
    font-size: 0.95rem;
    padding: 30px;
}

.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.modal-footer {
    border-top: 1px solid #e2e8f0;
    padding: 20px 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Tambahan gaya baru */
.stylish-footer {
    background: linear-gradient(90deg, #fff9e6 0%, #ffffff 100%);
    border-top: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

/* Tombol Tutup */
.stylish-btn-cancel {
    color: #212529;
    border: 1.5px solid #ccc;
    background-color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.stylish-btn-cancel:hover {
    background-color: #f8f9fa;
    border-color: #aaa;
    transform: translateY(-2px);
}

/* Tombol Reservasi */
.stylish-btn-reserve {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #212529;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.stylish-btn-reserve:hover {
    background: linear-gradient(135deg, #ffca2c, #ffb300);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 193, 7, 0.4);
}

.stylish-btn-reserve:active {
    transform: scale(0.98);
    box-shadow: 0 2px 6px rgba(255, 193, 7, 0.3);
}

/* ===== OFFER DESCRIPTION (Revised for Neat Layout) ===== */
.offer-description {
    text-align: justify;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #f1f1f1;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
    max-height: 350px;
    overflow-y: auto;
    font-size: 1rem;
    line-height: 1.75;
    color: #2d3748;
    text-transform: none !important;
}

/* Headings inside description (e.g. RF SINESON, COOL PLUS) */
.offer-description strong,
.offer-description b {
    font-weight: 600;
    color: #d4af37 !important;;
    font-size: 1.05rem;
    text-transform: uppercase;
}

.offer-description p,
.offer-description li,
.offer-description span {
    text-transform: none !important;
}

/* Paragraph & Lists */
/* === List Formatting dalam Deskripsi === */
.offer-description ul,
.offer-description ol {
    padding-left: 30px; /* beri jarak yang pas dari kiri */
    margin-bottom: 12px;
}

.offer-description li {
    margin-bottom: 8px;
    line-height: 1.6;
    text-align: justify;
}

/* Supaya nomor dan teks sejajar rapi (tidak turun ke bawah angka) */
.offer-description ol {
    list-style-position: outside; /* nomor di luar teks */
    padding-left: 25px;
}

.offer-description ol li {
    padding-left: 5px; /* jarak kecil antara nomor dan teks */
    text-indent: 0;
}

/* Untuk bullet list juga tetap rapi */
.offer-description ul {
    list-style-position: outside;
    padding-left: 25px;
}

.offer-description ul li {
    padding-left: 5px;
    text-indent: 0;
}

/* Jika teks panjang, buat rata kiri-kanan agar rapi */
.offer-description p,
.offer-description li {
    text-align: justify;
}

/* Scrollbar styling */
.offer-description::-webkit-scrollbar {
    width: 6px;
}

.offer-description::-webkit-scrollbar-thumb {
    background: #f9cc44;
    border-radius: 6px;
}

.offer-description::-webkit-scrollbar-track {
    background: #fafafa;
}

/* ===== BUTTON STYLES ===== */
.btn-reservation {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-reservation:hover {
    background: linear-gradient(45deg, #ff5252, #ff7b7b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-outline-secondary {
    border-radius: 12px;
    padding: 10px 20px;
    border: 2px solid #cbd5e0;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    border-color: #a0aec0;
    background-color: #f7fafc;
}

/* Tombol Tutup dengan efek hover halus */
.stylish-btn-cancel {
    background: #fff;
    border: 1.5px solid #d1d5db;
    color: #333;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.25s ease;
}
.stylish-btn-cancel:hover {
    background-color: #f8f9fa;
    border-color: #aaa;
    transform: translateY(-2px);
}

/* Tombol Reservasi dengan gradasi elegan */
.stylish-btn-reserve {
    background: linear-gradient(135deg, #f9cc44, #ffd84d);
    color: #212529;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 24px;
    box-shadow: 0 4px 8px rgba(249, 204, 68, 0.3);
    transition: all 0.3s ease;
}
.stylish-btn-reserve:hover {
    background: linear-gradient(135deg, #ffd84d, #ffca2c);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(249, 204, 68, 0.4);
}


/* ===== EMPTY STATE ===== */
.no-offers {
    padding: 60px 20px;
    text-align: center;
    color: #888;
}

.no-offers i {
    opacity: 0.5;
}

/* === FIX: CLEANUP SUMMERNOTE INLINE STYLES === */
.offer-description * {
    font-family: "Jost", "Poppins", sans-serif !important;
    font-size: 1.2rem !important;
    color: #2d3748 !important;
    line-height: 1.75 !important;
}

.offer-description p {
    margin-bottom: 12px !important;
    text-align: justify !important;
}

.offer-description ul,
.offer-description ol {
    margin-left: 20px !important;
    padding-left: 5px !important;
}

.offer-description li {
    margin-bottom: 8px !important;
    text-align: justify !important;
}

/* Buat elemen span hasil Summernote jadi ikut format umum */
.offer-description span {
    color: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
}


/* ===== RESPONSIVE DESIGN FIXED FOR IMAGE SPACING & MODAL ===== */
/* Laptop/Desktop Medium */
@media (max-width: 1200px) {
    .card-image-wrapper {
        height: auto;
        margin: 0;
        padding: 0;
        border-radius: 16px 16px 0 0;
        overflow: hidden;
    }

    .card-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-radius: 0;
        margin: 0;
    }
}

/* Tablet Landscape */
@media (max-width: 992px) {
    .card-image-wrapper {
        height: auto;
        margin: 0;
        padding: 0;
        border-radius: 14px 14px 0 0;
        overflow: hidden;
    }

    .card-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        margin: 0;
    }

    .stylish-btn-reserve {
        font-size: 1rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        padding: 10px 20px;
        min-width: 150px;
    }
}

/* Tablet Portrait / HP besar */
@media (max-width: 768px) {
    #special-offer {
        padding: 40px 0;
    }

    #special-offer .lead {
        color: #666;
        font-size: 0.9rem;
    }

    .card-image-wrapper {
        height: auto;
        margin: 0 0 15px 0; /* tambahkan jarak bawah antara gambar & deskripsi */
        padding: 0;
        border-radius: 12px 12px 0 0;
        overflow: hidden;
    }

    .card-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-radius: 0;
        margin: 0;
    }

    .card-content {
        padding: 16px;
    }

    .offer-title {
        font-size: 1.2rem;
    }

    /* Fix scroll modal */
    .modal-dialog {
        margin: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .modal-content {
        max-height: 90vh;
        display: flex;
        flex-direction: column;
    }

    .modal-body {
        flex: 1 1 auto;
        max-height: calc(100vh - 180px);
        overflow-y: auto;
        padding: 20px;
    }

    /* Footer tetap muncul dan tombol bisa diklik */
    .modal-footer {
        font-size: 1rem;
        flex-wrap: wrap;
        gap: 10px;
        position: sticky;
        bottom: 0;
        background-color: #fff;
        z-index: 50;
        padding-top: 14px;
        padding-bottom: 14px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    }

    .modal-footer button,
    .modal-footer .btn {
        width: 100%;
        font-size: 1rem;
        padding: 14px 12px;
        white-space: normal;
        line-height: 1.5;
    }
}

/* HP kecil */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 8px;
    }

    .modal-content {
        max-height: 90vh;
        display: flex;
        flex-direction: column;
    }

    .modal-body {
        flex: 1 1 auto;
        max-height: calc(100vh - 170px);
        overflow-y: auto;
        padding: 16px;
    }

    .modal-footer {
        position: sticky;
        bottom: 0;
        background-color: #fff;
        z-index: 50;
        padding: 12px 16px;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
    }

     .modal-footer .btn {
        width: 100%;
        margin: 10px 0;
        font-size: 1rem; /* diperbesar */
        font-weight: 600;
        padding: 16px 14px; /* tombol jadi tinggi dan enak diklik */
        border-radius: 12px; /* agak membulat */
        white-space: normal;
        line-height: 1.5;
    }

    .card-image-wrapper {
        margin: 0 0 18px 0; /* jarak gambar ke deskripsi */
        padding: 0;
        border-radius: 10px 10px 0 0;
        overflow: hidden;
    }
    
    .offer-description {
        margin-top: 20px;
    }

    .card-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .card-content {
        padding: 14px;
    }
}


/* ===== LOADING ANIMATION ===== */
.card-special-offer.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Features Section Card */
.card-vlog {
    border: 1.5px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(255, 234, 132, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.card-vlog:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-vlog iframe {
    width: 100%;
    height: 315px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card-content {
    padding: 10px 0;
}

@media (max-width: 767px) {
    .card-vlog iframe {
        height: 250px;
    }

    .vlog-title {
        font-size: 1rem;
    }
}

/*-------------------------------------
		12.card
--------------------------------------*/
.card {
    width: 250px;
    margin-top: 10px;
    height: 300px;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.card h2 {
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: 2rem;
}

.card p {
    font-size: 1rem;
    color: #666;
}

.card0 {
    width: 200px;
    height: 250px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-container {
    width: 100%;
    overflow-x: auto;
}

.menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
}

.menu li {
    margin-right: 15px;
}

.menu li:last-child {
    margin-right: 0;
}

.menu a {
    text-decoration: none;
    color: #000;
    padding: 10px;
    display: flex;
    justify-content: center;
}

/*-------------------------------------
		13. Location Card
--------------------------------------*/

.location-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 20px;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 234, 132, 0.15);
}

.container-location {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(300px, 1fr)
    ); /* Auto-fit for better responsiveness */
    gap: 20px;
    padding: 0 10px; /* Added padding to ensure proper alignment */
}

/* Title Styling */
.location-title {
    font-size: 2rem; /* Use rem for responsive text */
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Address and Info Styling */
.location-info {
    color: #555;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.location-info i {
    margin-right: 5px;
    color: #dc3545;
}

/* Social Media Icons Styling */
.footer-social a {
    color: #555;
    margin: 0 10px;
}

.footer-social a:hover {
    transform: translateY(-5px);
}

.footer-social i {
    font-size: 30px;
}

/* Styling untuk resolusi lebih dari 1366px */
@media (min-width: 1367px) {
    .container-location {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .location-card {
        min-width: 320px;
    }
}

/* Styling untuk resolusi antara 1024px sampai 1366px */
@media (min-width: 1024px) and (max-width: 1366px) {
    .container-location {
        grid-template-columns: repeat(3, 1fr);
    }

    .location-card {
        margin-bottom: 20px;
        min-width: 280px;
    }

    .card {
        width: 60%;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .card img {
        width: 100%;
    }
}

/* Styling untuk perangkat dengan resolusi lebih kecil dari 768px */
@media (max-width: 768px) {
    .container-location {
        grid-template-columns: repeat(1, 1fr);
    }

    .location-card {
        margin-bottom: 20px;
        min-width: 80%;
    }

    .card {
        width: 60%;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .card img {
        width: 100%;
    }

    .footer-social a {
        margin: 0 5px;
    }
}

/*-------------------------------------
		13. Popup
--------------------------------------*/
/*p {*/
/*    font-size: 17px;*/
/*    text-align: center;*/
/*}*/
/*.box a {*/
/*    display: inline-block;*/
/*    background-color: #fff;*/
/*    padding: 15px;*/
/*    border-radius: 3px;*/
/*}*/

/* .modal {
    align-items: center;
    display: flex;
    justify-content: center;
    z-index: 1042;
    position: fixed;
    margin-top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    overflow-y: scroll;
} */

/* .modal:target {
    visibility: visible;
    opacity: 1;
} */

.content {
    position: relative;
    background: white;
    max-width: 90%;
    padding: 1em 2em;
    border-radius: 4px;
    margin-top: 0;
}
.box-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fe0606;
    text-decoration: none;
    font-size: 30px;
}
.custom-img {
    max-width: 30%;
    height: auto;
    float: left;
    margin-right: 10px;
}

.custom-img1 {
    margin-top: 15%;
    max-width: 30%;
    height: auto;
    float: right;
    margin-right: 10px;
}

.custom-img2 {
    max-width: 30%;
    height: auto;
    float: left;
    margin-right: 10px;
}

.custom-text {
    font-size: 90%;
}

.popup {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.popup_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -55px;
    display: block;
}

.popup_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup_btn {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f2db7d;
    border: 1px solid #b59e50;
    font-size: 18px;
    transition: background-color 0.3s ease-in-out;
    margin-top: 15px;
    width: 100%;
    margin-left: 1%;
    border-radius: 9px;
}
.popup_btn:hover {
    background-color: #b59e50;
}
#popup:target {
    opacity: 1;
    visibility: visible;
}

#popup:target .popup_content {
    opacity: 1;
}
.popup1 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.popup1_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup1_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup1_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup1_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup1_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup1_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup1:target {
    opacity: 1;
    visibility: visible;
}

#popup1:target .popup1_content {
    opacity: 1;
}

.popup2 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.popup2_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup2_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup2_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup2_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup2_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup2_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup2:target {
    opacity: 1;
    visibility: visible;
}

#popup2:target .popup2_content {
    opacity: 1;
}

.popup3 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.popup3_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup3_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup3_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup3_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup3_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup3_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup3:target {
    opacity: 1;
    visibility: visible;
}

#popup3:target .popup3_content {
    opacity: 1;
}

.popup4 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.popup4_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup4_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup4_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup4_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup4_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup4_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup4:target {
    opacity: 1;
    visibility: visible;
}

#popup4:target .popup4_content {
    opacity: 1;
}

.popup5 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.popup5_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup5_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup5_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup5_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup5_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup5_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup5:target {
    opacity: 1;
    visibility: visible;
}

#popup5:target .popup5_content {
    opacity: 1;
}

.popup6 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.popup6_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup6_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup6_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup6_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup6_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup6_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup6:target {
    opacity: 1;
    visibility: visible;
}

#popup6:target .popup6_content {
    opacity: 1;
}

.popup7 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.popup7_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup7_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup7_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup7_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup7_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup7_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup7:target {
    opacity: 1;
    visibility: visible;
}

#popup7:target .popup7_content {
    opacity: 1;
}

.popup8 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.popup8_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup8_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup8_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup8_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup8_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup8_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup8:target {
    opacity: 1;
    visibility: visible;
}

#popup8:target .popup8_content {
    opacity: 1;
}

.popup9 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.popup9_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup9_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup9_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup9_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup9_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup9_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup9:target {
    opacity: 1;
    visibility: visible;
}

#popup9:target .popup9_content {
    opacity: 1;
}

.popup10 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.popup10_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup10_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup10_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup10_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup10_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup10_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup10:target {
    opacity: 1;
    visibility: visible;
}

#popup10:target .popup10_content {
    opacity: 1;
}

.popup11 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.popup11_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup11_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup11_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup11_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup11_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup11_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup11:target {
    opacity: 1;
    visibility: visible;
}

#popup11:target .popup11_content {
    opacity: 1;
}

.popup12 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.popup12_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup12_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup12_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup12_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup12_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup12_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup12:target {
    opacity: 1;
    visibility: visible;
}

#popup12:target .popup12_content {
    opacity: 1;
}

.popup13 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.popup13_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup13_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup13_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup13_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup13_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup13_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup13:target {
    opacity: 1;
    visibility: visible;
}

#popup13:target .popup13_content {
    opacity: 1;
}

.popup14 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.popup14_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup14_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup14_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup14_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup14_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup14_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup14:target {
    opacity: 1;
    visibility: visible;
}

#popup14:target .popup14_content {
    opacity: 1;
}

.popup15 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.popup15_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup15_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup15_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup15_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup15_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup15_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup15:target {
    opacity: 1;
    visibility: visible;
}

#popup15:target .popup15_content {
    opacity: 1;
}

.popup16 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.popup16_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup16_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup16_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup16_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup16_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup16_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup16:target {
    opacity: 1;
    visibility: visible;
}

#popup16:target .popup16_content {
    opacity: 1;
}

.popup17 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.popup17_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup17_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup17_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup17_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup17_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup17_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup17:target {
    opacity: 1;
    visibility: visible;
}

#popup17:target .popup17_content {
    opacity: 1;
}

.popup18 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.popup18_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup18_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup18_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup18_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup18_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup18_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup18:target {
    opacity: 1;
    visibility: visible;
}

#popup18:target .popup18_content {
    opacity: 1;
}

.popup19 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.popup19_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup19_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup19_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup19_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup19_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup19_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup19:target {
    opacity: 1;
    visibility: visible;
}

#popup19:target .popup19_content {
    opacity: 1;
}

.popup20 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.popup20_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup20_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup20_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup20_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup20_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup20_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup20:target {
    opacity: 1;
    visibility: visible;
}

#popup20:target .popup20_content {
    opacity: 1;
}

.popup21 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.popup21_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup21_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup21_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup21_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup21_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup21_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup21:target {
    opacity: 1;
    visibility: visible;
}

#popup21:target .popup21_content {
    opacity: 1;
}

.popup22 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.popup22_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup22_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup22_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup22_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup22_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup22_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup22:target {
    opacity: 1;
    visibility: visible;
}

#popup22:target .popup22_content {
    opacity: 1;
}

.popup23 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.popup23_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup23_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup23_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup23_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup23_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup23_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup23:target {
    opacity: 1;
    visibility: visible;
}

#popup23:target .popup23_content {
    opacity: 1;
}

.popup24 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1042;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.popup24_content {
    border-radius: 1.5%;
    margin: 2rem auto;
    width: 40rem;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    opacity: 0;
    padding: 2rem;
}

.popup24_img {
    width: 100%;
    display: inline-block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.popup24_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.popup24_header {
    text-align: center;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 9px;
    margin-top: -60px;
    display: block;
}

.popup24_text {
    margin-top: -7%;
    padding: 30px 10px;
    display: block;
    text-align: center;
}

.popup24_btn {
    background-color: gold;
    margin-top: 30px;
}

#popup24:target {
    opacity: 1;
    visibility: visible;
}

#popup24:target .popup24_content {
    opacity: 1;
}
/*-------------------------------------
		14. card
--------------------------------------*/

.container1 {
    display: flex;
    width: 100%;
    padding: 4% 2%;
    box-sizing: border-box;
}

.box {
    flex: 1;
    overflow: hidden;
    transition: 0.5s;
    margin: 0 2%;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    line-height: 0;
}

.box > img {
    height: calc(100% - -2vh);
    object-fit: cover;
    transition: 0.5s;
}

.box:hover {
    flex: 1 1 50%;
}
.box:hover > img {
    width: 100%;
    height: 100%;
}

.container .card {
    position: relative;
}

.container .card .face {
    width: 300px;
    height: 200px;
}

.container .card .face .face1 {
    position: relative;
    background: #333;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
}

.container .card:hover .face .face1 {
    transform: translateY(0);
    box-shadow: inset 0 0 60px whitesmoke, inset 20px 0 80px #f0f,
        inset -20px 0 80px #0ff, inset 20px 0 300px #f0f,
        inset -20px 0 300px #0ff, 0 0 50px #fff, -10px 0 80px #f0f,
        10px 0 80px #0ff;
}

.container .card .face .face1 {
    opacity: 0.2;
    transition: 0.5s;
    text-align: center;
}

.container .card .face .face1 .content a {
    transition: 0.5s;
}

.container .card .face .face2 {
    position: relative;
    background: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(-100px);
}

.container .card:hover .face .face2 {
    transform: translateY(0);
}

.container .card:hover .face .face2 p,
a {
    font-size: 10pt;
}

.btn-warning {
    background-color: #dadada;
    border: 3px solid #f2db7d;
    color: black;
    display: block;
    float: left;
    height: auto;
    width: 50%;
}
.btn-warning:hover {
    background-color: #f2db7d;
}
/*===============================
    Scroll Top
===============================*/
* {
    box-sizing: border-box;
}

/* Wrapper */
.fab-wrapper {
    position: fixed;
    bottom: 20px;
    right: 30px;
    padding: 30px;
    z-index: 999;
}

/* FAB Checkbox */
.fab-checkbox {
    display: none;
}

/* FAB Button */
.fab {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #dfc669;
    border-radius: 50%;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.fab:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(185, 172, 58, 0.4);
}

/* Dots Animation - Horizontal */
.fab-dots {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}

.fab-dots-1 {
    left: 25%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: blink 2s infinite ease-in-out;
}

.fab-dots-2 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: blink 2s infinite ease-in-out 0.5s;
}

.fab-dots-3 {
    left: 75%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: blink 2s infinite ease-in-out 1s;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

/* Wheel */
.fab-wheel {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    transform-origin: bottom right;
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
    padding: 10px;
    width: 250px;
    z-index: 999;
}

/* Close Button */
.fab-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #333;
}

.fab-close:hover {
    transform: translateY(-3px);
}

.fab-checkbox:checked ~ .fab-wheel {
    transform: scale(1);
}

/* List Items */
.fab-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fab-list li {
    margin-bottom: 10px;
}

.fab-list li a {
    display: block;
    color: #333;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.3s;
}

.fab-list li a:hover {
    background-color: #e3cd7f;
    transform: translateY(-3px);
}

#box {
    width: 200px;
    height: 350px;
    bottom: 35px;
    right: 35px;
    background-color: white;
    border-radius: 10px;
    overflow-y: scroll;
}

#box ul {
    margin: 20px;
    padding: 0;
    list-style: none;
    color: white;
}

#box ul h4 a {
    color: black;
    font-family: "Montserrat", sans-serif;
    line-height: 1.5;
}

.feature1 .btn {
    background-color: #dadada;
    margin-top: -4%;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    border: 1px solid #b59e50;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.feature1 .btn:hover {
    background-color: #f2db7d;
}

.feature1 .btn:focus {
    outline: none;
}

.feature1 .btn img {
    width: 30px;
    margin-right: 10px;
}

/* Base styles for all screen sizes */
.container {
    max-width: 100%;
}

.single-populer-product-img img {
    max-width: 100%;
    height: auto;
}

/* Colour Text */
.text-white {
    color: #fff;
}

a.cta_button {
    -moz-box-sizing: content-box !important;
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box !important;
    vertical-align: middle;
}

.hs-breadcrumb-menu {
    list-style-type: none;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.hs-breadcrumb-menu-item {
    float: left;
    padding: 10px 0px 10px 10px;
}

.hs-breadcrumb-menu-divider:before {
    content: "›";
    padding-left: 10px;
}

.hs-featured-image-link {
    border: 0;
}

.hs-featured-image {
    float: right;
    margin: 0 0 20px 20px;
    max-width: 50%;
}

.announce__module_16431099515295 {
    padding-top: 14px;
    padding-bottom: 14px;
}

@media (max-width: 991px) {
    .announce__module_16431099515295 {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

@media (max-width: 767px) {
    .announce__module_16431099515295 {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

.hero__widget_1628652385716 {
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero__widget_1628652385716 .bg img {
    object-position: top right;
    -o-object-position: top right;
    object-fit: contain;
    -o-object-fit: contain;
}

.hero__widget_1628652385716 h1 {
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .hero__widget_1628652385716 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .hero__widget_1628652385716 {
        padding-top: 100px;
        padding-bottom: 50px;
    }
}

.whatWeDo__widget_1629238004840 .bg img {
    object-position: center center;
    -o-object-position: center center;
}

.widget_1629238004840 .col-container {
    background: rgba(5, 56, 191, 0.85);
    /*       #0538bf; */
}

.whoWeAreSlider__widget_1629243946759 {
    padding-top: 75px;
    padding-bottom: 75px;
}

.whoWeAreSlider__widget_1629243946759 .bg {
    height: 100%;
}

.whoWeAreSlider__widget_1629243946759 .bg img {
    object-position: center center;
    -o-object-position: center center;
}

@media (max-width: 991px) {
    .whoWeAreSlider__widget_1629243946759 {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero__widget_1628652385716 .bg img {
        display: none;
    }
}

@media (max-width: 767px) {
    .whoWeAreSlider__widget_1629243946759 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.widget_1629243946759 .whoWeAreSlider__copy h2 {
    margin-bottom: -20px;
}

.widget_1629243946759 .item-copy li::marker {
    content: "• ";
}

.widget_1629243946759 .item-copy li,
.widget_1629243946759 .item-copy ul {
    font-size: 21px;
    font-weight: 500;
    color: #44474c;
}

.widget_1629243946759 .item-copy > p {
    max-width: 470px;
}

.widget_1629243946759 .item-copy h6,
.widget_1629243946759 .item-copy .text-uppercase {
    color: #6f7375 !important;
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.widget_1629243946759 .item-copy a {
    color: #096ed6;
}

.contentCardsv2__widget_1629253496955 {
    padding-top: 80px;
    padding-bottom: 100px;
}

.contentCardsv2__widget_1629253496955 .bg img {
    object-position: center center;
    -o-object-position: center center;
}

@media (max-width: 991px) {
    .contentCardsv2__widget_1629253496955 {
        padding-top: 50px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .contentCardsv2__widget_1629253496955 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.widget_1629253496955 .contentCardsv2__item-desc-inner > p {
    display: inline-block;
}

.widget_1629253496955 .item-subtitle {
    margin-top: 12px;
    font-size: 18px;
    letter-spacing: 0;
}

.widget_1629253496955 .contentCardsv2__copy h2 {
    margin-bottom: 5px !important;
}

.content-img-Careers__widget_1629266546864 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.content-img-Careers__widget_1629266546864 .bg img {
    object-position: center center;
    -o-object-position: center center;
}

@media (max-width: 991px) {
    .content-img-Careers__widget_1629266546864 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .content-img-Careers__widget_1629266546864 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.widget_1629266546864 .card-row {
    border-radius: 15px;
    background: #fff;
}

.widget_1629266546864 .item-category {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.widget_1629266546864 .container {
    max-width: 1300px;
}

.widget_1629266546864 .content-img-Careers__copy-copy > p {
    font-size: 15px !important;
    margin-bottom: 10px;
}

.widget_1629266546864 h2 {
    letter-spacing: 0.5px !important;
    font-size: 30px;
}

.widget_1629266546864 .image-tag {
    background: #3f0c59;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    padding: 5px 20px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 2;
    border-radius: 0px 5px 0px 15px;
}

@media (max-width: 992px) {
    .widget_1629266546864 .image-tag {
        border-radius: 0px 5px 0px 0px;
    }
}

.widget_1629266546864 .author-section {
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.widget_1629266546864 .author-section img {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    display: inline-block;
}

.widget_1629266546864 .author-section a {
    color: #096ed6;
}

.simpleVideo__widget_1629283512805 {
    padding-top: 150px;
    padding-bottom: 30px;
}

.simpleVideo__widget_1629283512805 .bg img {
    object-position: center center;
    -o-object-position: center center;
}

@media (max-width: 991px) {
    .simpleVideo__widget_1629283512805 {
        padding-top: 150px;
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .simpleVideo__widget_1629283512805 {
        padding-top: 50px;
        padding-bottom: 30px;
    }
}

.oembed_container {
    display: inline-block;
    height: 100%;
    position: relative;
    width: 100%;
}

.oembed_container .iframe_wrapper > * {
    height: 100%;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.iframe_wrapper {
    height: 0;
    padding-bottom: 56.25%;
    padding-top: 25px;
    position: relative;
}

.colLinkIcon__widget_1629282567643 {
    padding-bottom: 30px;
}

.colLinkIcon__widget_1629282567643 .bg {
    height: 100%;
}

.colLinkIcon__widget_1629282567643 .bg img {
    object-position: center center;
    -o-object-position: center center;
}

@media (max-width: 991px) {
    .colLinkIcon__widget_1629282567643 {
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .colLinkIcon__widget_1629282567643 {
        padding-bottom: 30px;
    }
}

.widget_1629282567643 .container {
    max-width: 992px !important;
}

.simpleEmbed__widget_1629303309473 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.simpleEmbed__widget_1629303309473 .bg img {
    object-position: center center;
    -o-object-position: center center;
}

@media (max-width: 991px) {
    .simpleEmbed__widget_1629303309473 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .simpleEmbed__widget_1629303309473 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.widget_1629303309473 .main-title {
    color: #2dc3d0;
    font-weight: 600;
    font-size: 50px;
}

.widget_1629303309473 .copy > p,
.widget_1629303309473 .copy {
    color: #eeeeee;
    font-size: 22px;
    font-weight: 300;
}

.widget_1629303309473 .section-footer a {
    font-weight: 500;
    color: #fff;
}

.widget_1629303309473 .section-footer > p,
.widget_1629303309473 .section-footer {
    color: #eee;
    font-size: 22px;
    font-weight: 300;
}

.widget_1629303309473 .col-embed {
    margin-top: 40px;
    padding-top: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #bebebe;
    border-bottom: 1px solid #bebebe;
}

.iframe_wrapper {
    height: 0;
    padding-bottom: 56.25%;
    padding-top: 25px;
    position: relative;
}

.embed_container {
    display: inline-block;
    height: 100%;
    position: relative;
    width: 100%;
}

.embed_container iframe {
    left: 0;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.contentImg__widget_1634711788289 {
    padding-top: 83px;
    padding-bottom: 109px;
}

.contentImg__widget_1634711788289 .bg {
    height: 100%;
}

.contentImg__widget_1634711788289 .bg img {
    object-position: center center;
    -o-object-position: center center;
}

@media (max-width: 991px) {
    .contentImg__widget_1634711788289 {
        padding-top: 83px;
        padding-bottom: 109px;
    }
}

@media (max-width: 767px) {
    .contentImg__widget_1634711788289 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.logoItems__widget_1634708381501 {
    padding-top: 50px;
    padding-bottom: 60px;
}

.logoItems__widget_1634708381501 .bg {
    height: 100%;
}

.logoItems__widget_1634708381501 .bg img {
    object-position: center center;
    -o-object-position: center center;
}

@media (max-width: 991px) {
    .logoItems__widget_1634708381501 {
        padding-top: 50px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .logoItems__widget_1634708381501 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.hero__copy-copy {
    line-height: 1.4em !important;
    max-width: 510px;
}

.hero__cta h3.btn {
    font-weight: 600 !important;
    padding: 17px !important;
    min-width: 200px !important;
    background-color: #eee;
    border: 2px solid black;
}

@media (min-width: 1200px) {
    .hero__copy {
        padding-left: 50px;
    }
}

.col-lg-13 {
    color: black;
}

.text-dark {
    color: black;
}

.careersTestimonial__inner {
    position: relative;
    /*padding: 60px 85px;*/
    border-radius: 8px;
    border: 3px solid black;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
    background-color: #eee;
    max-width: 1084px;
    margin: 0px auto;
    color: #fff;
}

@media (max-width: 568px) {
    .hs-featured-image {
        float: none;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
}

.hs-screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
}

@media (max-width: 420px) {
    .feature1 .btn img {
        display: none;
    }
}

@media (max-width: 576px) {
    .col-md-4 {
        width: 100%;
        padding: 5px;
    }

    .single-populer-products {
        text-align: center;
    }

    .feature1 .btn {
        margin: 1%;
        margin-left: 25%;
        font-size: 10px;
    }

    .feature1 .btn img {
        width: 10%;
    }

    .artipop {
        margin-top: 25%;
    }

    .artikelkanan {
        margin-top: 3%;
    }
}

@media (min-width: 769px) {
    .col-md-4 {
        width: 33.33%;
    }

    .artipop {
        margin-top: 15%;
    }

    .artikelkanan {
        margin-top: 3%;
    }
}

/* Media query for screens up to 480px (smartphones) */
@media screen and (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .header-area {
        padding: 8px;
    }
    
    .article-title {
        margin-bottom: 10px;
        margin-top: 10px;    
    }

     .btn {
        padding: 6px 12px;
        width: 120px;
    }

    .hidden-on-smartphone {
        display: none;
    }
}

/*========================Thank you=================*/
