@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");



/*===========================
  COMMON css 
===========================*/
:root {
  --font-family: "Inter", sans-serif;
  --primary: #011329;
  --primary-dark: #1c3ab6;
  --primary-light: #08203d;
  --accent: #00d4d7;
  --accent-dark: #00bac1;
  --accent-light: #dff9f8;
  --success: #13d527;
  --success-dark: #00ae11;
  --success-light: #eafbe7;
  --secondary: #8f15d5;
  --secondary-dark: #6013c7;
  --secondary-light: #f4e5fa;
  --info: #15b2d5;
  --info-dark: #0f8ca8;
  --info-light: #e0f5fa;
  --caution: #dbbb25;
  --caution-dark: #d58f15;
  --caution-light: #fbf9e4;
  --error: #e6185e;
  --error-dark: #bf1257;
  --error-light: #fce4eb;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --gradient-1: linear-gradient(180deg, #155bd5 0%, #1c3ab6 100%);
  --gradient-2: linear-gradient(180deg, #155bd5 13.02%, #00d4d7 85.42%);
  --gradient-3: linear-gradient(180deg, #155bd5 0%, #8f15d5 100%);
  --gradient-4: linear-gradient(180deg, #155bd5 0%, #13d527 100%);
  --gradient-5: linear-gradient(180deg, #155bd5 0%, #15bbd5 100%);
  --gradient-6: linear-gradient(180deg, #155bd5 0%, #dbbb25 100%);
  --gradient-7: linear-gradient(180deg, #155bd5 0%, #e6185e 100%);
  --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
  --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #155bd5 85.42%);
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08),
    0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04),
    0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04),
    0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04),
    0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08),
    0px 20px 32px rgba(96, 97, 112, 0.24);
}

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

body {
  font-family: var(--font-family);
  color: var(--black);
  font-size: 16px;
}

@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
}

a {
  display: inline-block;
}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--white);
  margin: 0px;
}

h1,
.h1 {
  font-size: 2em;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: 1.75em;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 1.25em;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 1em;
  line-height: 1.25;
}

h5,
.h5 {
  font-size: 0.85em;
  line-height: 1.25;
}

h6,
.h6 {
  font-size: 0.675em;
  line-height: 1.25;
}

.display-1 {
  font-size: 5.5em;
  line-height: 1.25;
}

.display-2 {
  font-size: 4.75em;
  line-height: 1.25;
}

.display-3 {
  font-size: 4em;
  line-height: 1.25;
}

.display-4 {
  font-size: 3.25em;
  line-height: 1.25;
}

p {
  font-size: 0.85em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-3);
  margin: 0px;
}

.text-small {
  font-size: 0.875em;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.15em;
  line-height: 1.5;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (min-width:250px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.btn {
  font-weight: bold;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
}

.btn:hover {
  color: inherit;
}

.btn:focus {
  box-shadow: none;
  outline: none;
}

.btn.btn-lg {
  font-size: 1.15em;
  padding: 16px 24px;
}

.btn.btn-sm {
  padding: 8px 16px;
}

.btn.square {
  border-radius: 0px;
}

.btn.semi-rounded {
  border-radius: 12px;
}

.btn.rounded-full {
  border-radius: 50px;
}

.btn.icon-left span,
.btn.icon-left i {
  margin-right: 8px;
}

.btn.icon-right span,
.btn.icon-right i {
  margin-left: 8px;
}

.btn.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 48px;
}

.btn.icon-btn.btn-lg {
  width: 56px;
  height: 56px;
  line-height: 56px;
}

.btn.icon-btn.btn-sm {
  width: 40px;
  height: 40px;
  line-height: 40px;
}


/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.active.primary-btn,
.primary-btn:hover,
.primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.active.primary-btn-outline,
.primary-btn-outline:hover,
.primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}

.deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}


/* One Click Scrool Top Button*/
.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 5px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: var(--dark-1);
}

/*===========================
  Section Title Five CSS
===========================*/
.section-title-five {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five {
    margin-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .section-title-five {
    margin-bottom: 35px;
  }
}

.section-title-five h6 {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 30px;
  padding: 8px 30px;
}

.section-title-five h2 {
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}

@media (max-width: 767px) {
  .section-title-five h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}

.section-title-five p {
  color: var(--dark-3);
}

.made-in-ayroui {
  position: fixed;
  left: 5px;
  bottom: 5px;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.made-in-ayroui:hover {
  transform: translateY(-5px);
}


/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR NINE =====*/
.navbar-area.navbar-nine {
  background: var(--white);
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}

.sticky {
  position: fixed !important;
  z-index: 99 !important;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
  width: 100%;
}

@media only screen and (min-width:100px) and (max-width:1400px) {
  .navbar-toggler {
    margin-left: 90%;
  }
}



@media only screen and (min-width: 767x) and (max-width: 991px) {
  .navbar-area.navbar-nine {
    padding: 10px 0;
  }
}

.navbar-area.navbar-nine .navbar-brand {
  margin: 0;
}

.navbar-area.navbar-nine .navbar {
  position: relative;
  padding: 0;
}

.navbar-area.navbar-nine .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--primary);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}


/* MUNCULKAN NAVBAR JIKA KECIL RESOLUSI  */
/* @media only screen and (min-width: 768px) and (max-width: 1200px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-collapse {
    position: absolute;
    top: 116%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 8;
    padding: 10px 16px;
  }
} */

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-left: 550px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-right: 0;
  }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  color: var(--primary);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: 14px 0;
  opacity: 0.7;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover {
  opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
    padding: 10px 0;
    display: block;
    border: 0;
    margin: 0;
    color: var(--primary);
  }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
  opacity: 1;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
  font-size: 12px;
  font-weight: 700;
  padding-left: 7px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
    position: relative;
    top: -5px;
  }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  left: 0;
  top: 130%;
  width: 230px;
  background-color: var(--white);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-nav-toggler {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: relative;
  color: var(--dark-2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  margin: 0 0;
  z-index: 5;
  opacity: 1;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-weight: 700;
  font-size: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
  color: var(--white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
    color: var(--primary);
  }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a {
  color: var(--primary);
  padding-left: 22px;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a i {
  color: var(--primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a {
    color: var(--primary);
  }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a::after {
  opacity: 1;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a::before {
  opacity: 1;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 115%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
}

.navbar-area.navbar-nine .navbar .navbar-btn {
  margin-top: 6px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 70px;
    top: 7px;
  }
}

@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 7px;
  }
}

.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar {
  font-size: 22px;
  position: relative;
  overflow: hidden;
  color: var(--primary);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgb(1, 18, 40);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar:hover {
  border-color: transparent;
  color: #011329;
  background-color: #ccc;
}

/*===== SIDEBAR ONE =====*/
.sidebar-left {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--white);
  height: 100%;
  width: 350px;
  padding-top: 80px;
  z-index: 999;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
  text-align: left;
}

.sidebar-left.open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

@media (max-width: 767px) {
  .sidebar-left {
    width: 250px;
  }
}

.sidebar-left .sidebar-close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.sidebar-left .sidebar-close .close {
  font-size: 18px;
  color: var(--black);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.sidebar-left .sidebar-close .close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sidebar-left .sidebar-content {
  padding: 0px 30px;
}

.sidebar-left .sidebar-content .sidebar-menu {
  margin-top: 30px;
}

.sidebar-left .sidebar-content .sidebar-menu .menu-title {
  font-size: 18px;
  font-weight: 600;
}

.sidebar-left .sidebar-content .sidebar-menu ul {
  margin-top: 15px;
}

.sidebar-left .sidebar-content .sidebar-menu ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 0;
  color: var(--dark-3);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: block;
}

.sidebar-left .sidebar-content .sidebar-menu ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.sidebar-left .sidebar-content .text {
  margin-top: 20px;
}

.sidebar-left .sidebar-content .sidebar-social {
  margin-top: 30px;
}

.sidebar-left .sidebar-content .sidebar-social .social-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.sidebar-left .sidebar-content .sidebar-social ul li {
  display: inline-block;
  margin-right: 5px;
}

.sidebar-left .sidebar-content .sidebar-social ul li:last-child {
  margin: 0;
}

.sidebar-left .sidebar-content .sidebar-social ul li a {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 50%;
  font-size: 18px;
  color: #666;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sidebar-left .sidebar-content .sidebar-social ul li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}

.overlay-left {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99;
}

.overlay-left.open {
  display: block;
}

/* ===== Buttons Css ===== */
.header-eight .primary-btn {
  background-image: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.header-eight .active.primary-btn,
.header-eight .primary-btn:hover,
.header-eight .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.header-eight .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-eight {
  position: relative;
  padding: 160px 0 100px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)),
    url('assets/images/gallery-backup/RCP-002-scaled.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.header-product {
  position: relative;
  padding: 160px 0 100px 0;
  background-image: url('assets/images/header/header-product.jpeg');
  background-size: cover;
  /* Ensure the image covers the entire background */
  background-position: center center;
  /* Center the background image */
  background-repeat: no-repeat;
  /* Prevent the image from repeating */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight {
    padding: 130px 0 80px 0;
  }
}

@media (max-width: 767px) {
  .header-eight {
    padding: 100px 0 60px 0;
  }
}

.header-eight .header-image img {
  width: 100%;
  border-radius: 15px;
}

.header-product {
  padding: 130px 0 80px 0;
}
}

@media (max-width: 767px) {
  .header-product {
    padding: 100px 0 60px 0;
  }
}

.header-product .header-image img {
  width: 100%;
  border-radius: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .header-eight .header-image {
    margin-top: 40px;
  }
}

.header-eight .header-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}

.header-eight .header-content h1 {
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  font-size: 32px;
}

.header-product .header-content h3 {
  font-weight: 800;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
  margin: 0px 0px 0px 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .header-product .header-image {
    margin-top: 40px;
  }
}

.header-product .header-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}

.header-product .header-content h1 {
  font-weight: 700;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
  font-size: 26px;
}

.header-product h2 {
  font-size: 25px;
  color: #fff;
  padding: 100px;
}

.header-product .header-content h3 {
  font-weight: 700;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
  margin: 0px 0px 0px 80px;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight .header-content h1 {
    font-size: 35px;
    line-height: 45px;
    padding-top: 25px;
  }
}

@media (max-width: 768px) {
  .header-eight .header-content h1 {
    font-size: 30px;
    line-height: 42px;
    padding-top: 25px;
  }
}

.header-eight .header-content h1 span {
  display: block;
}

.header-eight .header-content p {
  margin-top: 30px;
  color: var(--white);
  opacity: 0.7;
}

.header-eight .button {
  margin-top: 40px;
}

.header-eight .primary-btn {
  margin-right: 12px;
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid transparent;
}

.header-eight .primary-btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.header-eight .video-button {
  display: inline-flex;
  align-items: center;
}

/* header product  */


@media (max-width: 767px) {
  .header-eight .video-button {
    margin-top: 20px;
  }
}

.header-eight .video-button .text {
  display: inline-block;
  margin-left: 15px;
  color: var(--white);
  font-weight: 600;
}

.header-eight .video-button .icon-btn {
  background: var(--white);
  color: var(--primary);
}



/*======================================
    header Area CSS
========================================*/
.header-eight-pd {
  position: relative;
  padding: 160px 0 100px 0;
  background-image: url('assets/images/header/banner-pd.png');
  /* Path to your background image */
  background-size: cover;
  /* Ensure the image covers the entire background */
  background-position: center center;
  /* Center the background image */
  background-repeat: no-repeat;
  /* Prevent the image from repeating */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight-pd {
    padding: 10px 0 80px 0;
  }
}

@media (max-width: 767px) {
  .header-eight-pd {
    padding: 100px 0 60px 0;
  }
}

.header-eight-pd .header-image img {
  width: 100%;
  border-radius: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .header-eight-pd .header-image {
    margin-top: 20px;
  }
}

.header-eight-pd .header-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}

.header-eight-pd .header-content h1 {
  font-weight: 700;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
  font-size: 36px;
}

.header-eight-pd .header-content h3 {
  font-weight: 700;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
  margin-left: 65px;
  font-size: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight-pd .header-content h1 {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .header-eight-pd .header-content h1 {
    font-size: 30px;
    line-height: 42px;
  }
}

.header-eight-pd .header-content h1 span {
  display: block;
}

.header-eight-pd .header-content p {
  margin-top: 30px;
  color: var(--white);
  opacity: 0.7;
}

.header-eight-pd .button {
  margin-top: 40px;
}

.header-eight-pd .primary-btn {
  margin-right: 12px;
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid transparent;
}

.header-eight-pd .primary-btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.header-eight-pd .video-button {
  display: inline-flex;
  align-items: center;
}

.header-eight-pd .video-button .text {
  display: inline-block;
  margin-left: 15px;
  color: var(--white);
  font-weight: 600;
}

.header-eight-pd .video-button .icon-btn {
  background: var(--white);
  color: var(--primary);
}

/*===========================
  about-05 css
===========================*/
.about-five {
  background-color: var(--light-3);
  padding-top: 60px;
  padding-bottom: 50px;
}

.about-five img {
  border-radius: 20px;
}

.about-five .container {
  height: 500px;
}

@media only screen and (min-width: 768px) and (max-width: 1190px) {
  .about-five {
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .about-five-content {
    padding-left: 0;
  }
  .about-image-five {
    margin-bottom: 70px;
    padding-left: 30px;
  }
}

@media only screen and (min-width: 1190px) and (max-width: 1366px) {
  .about-five {
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .about-five-content {
    padding-left: 0;
  }
  .about-image-five {
    margin-bottom: 70px;
    padding-left: 30px;
  }
}


@media (max-width: 767px) {
  .about-five {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .about-five-content {
    padding-left: 0;
  }
}

.about-five-content .small-title {
  position: relative;
  padding-left: 30px;
  color: var(--primary);
}

.about-five-content .small-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  background-color: var(--primary);
  height: 2px;
  width: 20px;
  margin-top: -1px;
}

.about-five-content .main-title {
  margin-top: 20px;
  color: var(--primary);
}

.about-five-content .about-five-tab {
  margin-top: 20px;
}

.about-five-content .about-five-tab nav {
  border: none;
  background-color: var(--light-1);
  padding-top: 50px;
  padding-left: 40px;
  border-radius: 5px;
}

.about-five-content .about-five-tab nav .nav-tabs {
  border: none;
}

.about-five-content .about-five-tab nav button {
  border: none;
  color: var(--dark-1);
  font-weight: 600;
  padding: 0;
  margin-right: 20px;
  position: relative;
  background-color: var(--white);
  padding: 10px 12px;
  border-radius: 4px;
  text-transform: capitalize;
}


@media (max-width: 540px) {
  .about-five-content .about-five-tab nav button {
    padding: 10px 18px;
  }

  .about-five-content .about-five-tab nav {
    border: none;
    background-color: var(--light-1);
    padding-top: 50px;
    padding-left: 0px;
    border-radius: 5px;
  }
}

@media (max-width: 767px) {
  .about-five-content .about-five-tab nav button {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .about-five-content .about-five-tab nav button:last-child {
    margin: 0;
  }

  .about-five-content .small-title {
    padding-right: 60%;
  }
}

@media (max-width: 767px) {
  .about-five-content .about-five-tab nav button {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .about-five-content .about-five-tab nav button:last-child {
    margin: 0;
  }

  .about-five-content .small-title {
    padding-right: 60%;
  }
}

.about-five-content .about-five-tab nav button:hover {
  color: var(--primary);
}

.about-five-content .about-five-tab nav button.active {
  background-color: var(--primary);
  color: var(--white);
}

.about-five-content .about-five-tab nav button:last-child {
  margin-right: 0;
}

.about-five-content .about-five-tab .tab-content {
  border: none;
  padding-top: 30px;
}

.about-five-content .about-five-tab .tab-content p {
  margin-bottom: 20px;
}

.about-five-content .about-five-tab .tab-content p:last-child {
  margin: 0;
}

.about-image-five {
  padding-left: 60px;
  position: relative;
  z-index: 2;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 1023px) {
  .about-image-five {
    padding-left: 0;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 1.5rem;
    color: var(--primary);
  }

  .row.align-items-center {
    flex-direction: column-reverse;
  }

  h6.small-title {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}



.about-image-five .shape {
  position: absolute;
  left: 30px;
  top: -30px;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five .shape {
    left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five::before {
    right: -15px;
    bottom: -15px;
  }
}

@media (max-width: 768px) {
  .about-image-five::before {
    display: none;
  }
}

.about-image-five img {
  width: 100%;
  z-index: 2;
}


/*===========================
  services css 
===========================*/
.services-eight {
  padding-top: 50px;
  padding-bottom: 50px;
  background: var(--primary);
}

.services-eight .single-services {
  padding: 40px 30px;
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.services-eight .single-services:hover {
  box-shadow: var(--shadow-4);
}

.services-eight .single-services:hover .service-icon {
  color: var(--primary);
  border-color: transparent;
  background: var(--white);
}

.services-eight .single-services:hover .service-icon::after {
  opacity: 1;
  visibility: visible;
}

.services-eight .single-services .service-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin-bottom: 25px;
  background: var(--primary);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
}

.services-eight .single-services .service-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background: var(--primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid transparent;
}

.services-eight .single-services .service-content h4 {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.services-eight .single-services .service-content p {
  color: var(--white);
}

.services-eight p {
  color: #dbdbdb;
}

@media (max-width:767px){
  .services-eight {
    margin-top: 250px;
  }
}

@media only screen and (min-width:768px) and (max-width:1023px){
  .services-eight {
    margin-top: 400px;
  }
}

@media only screen and (min-width:1024px) and (max-width:1400px){
  .services-eight {
    margin-top: 130px;
  }
}


.services-product {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media only screen and (min-width: 200px) and (max-width: 991px) {
  .services-product {
    padding: 80px 50px;
  }
}

@media (max-width: 767px) {
  .services-product {
    padding: 60px 0 30px 0;
  }

  .single-services {
    flex-direction: row;
  }

  .service-content h4 {
    font-size: 16px;
  }
}

.services-product .single-services {
  padding: 40px 30px;
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.services-product .single-services:hover {
  box-shadow: var(--shadow-4);
}

.services-product .single-services:hover .service-icon {
  color: var(--primary);
  border-color: transparent;
  background: var(--white);
}

.services-product .single-services:hover .service-icon::after {
  opacity: 1;
  visibility: visible;
}

.services-product .single-services .service-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin-bottom: 25px;
  background: var(--primary);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
}

.services-product .single-services .service-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background: var(--primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid transparent;
}


/* CAREERS  */

/*===========================
  services css 
===========================*/
.careers-eight {
  position: relative;
  padding: 100px 20px;
  background-image: url("assets/images/gallery-backup/IMG-20241112-WA0016.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.careers-eight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  background-repeat: inherit;
  filter: blur(3px);
  z-index: 1;
  opacity: 1;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  .careers-eight {
    padding: 80px 0 50px 0;
  }
}

@media (max-width: 767px) {
  .careers-eight {
    padding: 60px 0 30px 0;
  }
}

.careers-eight .single-services {
  padding: 40px 30px;
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.careers-image {
  display: flex;
  justify-content: center;
  /* Centers the image horizontally */
  padding: 20px 0;
  /* Optional: adds vertical padding */
}

.careers-image img {
  max-width: 100%;
  /* Ensures the image is responsive */
  height: auto;
  /* Maintains aspect ratio */
}



/*===========================
  careers Title Five CSS
===========================*/
.careers-title-five {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
  padding: 40px;
}

.careers-title-five .content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  max-width: 600px;
}

.careers-title-five::before {
  content: "";
  position: absolute;
  top: 10px;
  /* Jarak dari atas */
  left: 10px;
  /* Jarak dari kiri */
  right: 10px;
  /* Jarak dari kanan */
  bottom: 10px;
  /* Jarak dari bawah */
  background: rgba(0, 0, 0, 0.6);
  /* Overlay hitam transparan */
  border-radius: 15px;
  /* Membuat sudut overlay melengkung */
  z-index: 1;

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .careers-title-five {
    margin-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .careers-title-five {
    margin-bottom: 35px;
  }
}

.careers-title-five h6 {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 30px;
  padding: 8px 30px;
}

.careers-title-five h2 {
  margin-bottom: 15px;
  color: var(--white);
  border-bottom: 3px solid var(--white);
  padding-bottom: 5px;
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .careers-title-five h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}

@media (max-width: 767px) {
  .careers-title-five h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}

.careers-title-five p {
  color: var(--light-3);
}

.email-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: var(--primary);
  /* Warna tombol biru */
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.email-button:hover {
  color: var(--primary);
  background-color: var(--white);
}

.email-button:active {
  background-color: #002a5a;
  /* Warna tombol saat ditekan */
}



/* GALLERY */
.gallery-eight {
  position: relative;
  padding: 100px 100px 100px 100px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.gallery-eight h2 {
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
  padding-bottom: 5px;
  display: inline-block;
}


@media only screen and (min-width: 100px) and (max-width: 1023px) {

  .gallery-eight {
    padding: 20px 20px;
  }
  .gallery-area {
    margin-top: 350px;
    padding-top: 100px;
  }

  .gallery-eight .single-services .img-fluid {
    width: 100%; 
    height: auto; 
    max-width: none; 
    max-height: none; 
    object-fit: contain; 
  }

  /* Mengubah ukuran kolom */
  .row .col-lg-4, .row .col-md-6 {
    flex: 0 0 100%; 
    max-width: 150%; 
  }
}


@media only screen and (min-width: 1024px) and (max-width:1366px) {
  .gallery-eight {
    padding: 20px 20px;
  }
  .gallery-area {
    margin-top: 20px;
    padding-top: 100px;
  }

  .gallery-eight .single-services .img-fluid {
    width: 100%; 
    height: auto; 
    max-width: none; 
    max-height: none; 
    object-fit: contain; 
  }

  /* Mengubah ukuran kolom */
  .row .col-lg-4, .row .col-md-6 {
    flex: 0 0 100%; 
    max-width: 150%; 
  }
}


.gallery-eight .single-services {
  padding: 40px 30px;
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.gallery-eight .carousel-item {
  padding: 20px;
}

.gallery-eight .single-services img {
  max-width: 350px;
  max-height: 350px;
  width: auto;
  height: auto;
  border-radius: 10px;
  -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin: 0 auto;
}

.gallery-eight .single-services {
  text-align: center;
  padding: 20px;
}

.gallery-eight .single-services:hover img {
  transform: scale(1.05);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.gallery-title {
  position: absolute;
  top: 10px;
  left: 50%;
  padding-top: 20px;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--primary);
}

.gallery-area {
  position: relative;
}




.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  /* Sesuaikan lebar area klik */
  position: absolute;
  top: 50%;
  /* Tempatkan di tengah secara vertikal */
  transform: translateY(-50%);
  z-index: 2;
  /* Pastikan tombol berada di atas konten */
}

.gallery-title {
  position: absolute;
  top: 10px;
  left: 50%;
  padding-top: 20px;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--primary);
}

.gallery-area {
  position: relative;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
  /* Geser tombol ke kanan */
}

/* Tambahkan gaya untuk ikon */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  /* Ukuran ikon */
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  /* Warna latar ikon */
  border-radius: 50%;
  /* Membuat ikon bulat */
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: rgba(0, 0, 0, 0.7);
  /* Hover effect */
}

@media (max-width: 768px) {

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 480px) {

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

/*===== VIDEO ONE =====*/
.video-one {
  background-color: var(--light-3);
  padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-one {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .video-one {
    padding: 60px 0;
  }
}

.video-one .video-title h5 {
  font-weight: 600;
  color: var(--primary);
}

.video-one .video-title h2 {
  font-weight: 700;
  color: var(--black);
  margin-top: 10px;
}

.video-one .video-title .text-lg {
  margin-top: 24px;
  color: var(--dark-3);
}

.video-one .video-content {
  position: relative;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.video-one .video-content img {
  border-radius: 8px;
}

.video-one .video-content a {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding-left: 3px;
}

@media (max-width: 767px) {
  .video-one .video-content a {
    width: 68px;
    height: 68px;
    line-height: 68px;
    font-size: 20px;
  }
}

.video-one .video-content a:hover {
  background-color: var(--white);
  color: var(--primary);
}


/*===== PRICING THIRTEEN =====*/
.pricing-fourteen {
  padding: 100px 0;
  background-color: var(--light-3);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fourteen {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .pricing-fourteen {
    padding: 60px 0;
  }
}

.pricing-style-fourteen {
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-top: 30px;
  background-color: var(--white);
  transition: all 0.4s ease;
  padding: 50px 35px;
  text-align: center;
  z-index: 0;
}

.pricing-style-fourteen:hover {
  box-shadow: var(--shadow-4);
}

.pricing-style-fourteen.middle {
  box-shadow: var(--shadow-4);
}

.pricing-style-fourteen.middle .title {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.pricing-style-fourteen .title {
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--primary);
  padding: 8px 20px;
  border: 2px solid var(--primary);
  display: inline-block;
  border-radius: 30px;
  font-size: 16px;
}

.pricing-style-fourteen .table-head p {
  color: var(--dark-3);
}

.pricing-style-fourteen .price {
  padding-top: 30px;
}

.pricing-style-fourteen .amount {
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-left: 15px;
  font-size: 55px;
}

.pricing-style-fourteen .currency {
  font-weight: 400;
  color: var(--dark-3);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing-style-fourteen .duration {
  display: inline-block;
  font-size: 18px;
  color: var(--dark-3);
  font-weight: 400;
}

.pricing-style-fourteen .light-rounded-buttons {
  margin: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.pricing-style-fourteen .table-list li {
  position: relative;
  margin-bottom: 10px;
  color: var(--dark-3);
  text-align: left;
}

.pricing-style-fourteen .table-list li:last-child {
  margin: 0;
}

.pricing-style-fourteen .table-list li i {
  color: var(--primary);
  font-size: 16px;
  padding-right: 8px;
}

.pricing-style-fourteen .table-list li i.deactive {
  color: var(--dark-3);
}




/* ===== Buttons Css ===== */
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.call-action .inner-content .light-rounded-buttons .active.primary-btn-outline,
.call-action .inner-content .light-rounded-buttons .primary-btn-outline:hover,
.call-action .inner-content .light-rounded-buttons .primary-btn-outline:focus {
  background: var(--white);
  color: var(--primary);
  border-color: transparent;
}

.call-action .inner-content .light-rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== call action four =====*/
.call-action {
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .call-action {
    padding: 60px 0;
  }
}

.call-action:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #011329;
  /* background-image: url("assets/images/call-action/overlay.png"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}

.call-action .inner-content {
  text-align: center;
}

.call-action .inner-content h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
}

.call-action .inner-content p {
  color: var(--white);
}

.call-action .inner-content .light-rounded-buttons {
  margin-top: 45px;
  display: block;
}

.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}






/*===== latest-news-area =====*/
.latest-news-area {
  background: var(--white);
  padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-news-area {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .latest-news-area {
    padding: 60px 0;
  }
}

.latest-news-area .single-news {
  margin-top: 30px;
}

.latest-news-area .single-news .image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.latest-news-area .single-news .image img {
  height: 100%;
  width: 100%;
  transition: all 0.4s ease;
}

.latest-news-area .single-news .image .meta-details {
  display: inline-block;
  padding: 6px 15px 6px 7px;
  border-radius: 30px;
  background-color: var(--primary);
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.latest-news-area .single-news .image .meta-details img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: inline-block;
}

.latest-news-area .single-news .image .meta-details span {
  color: var(--white);
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 500;
}

.latest-news-area .single-news .content-body .title {
  margin: 30px 0 20px 0;
}

.latest-news-area .single-news .content-body .title a {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.latest-news-area .single-news .content-body .title a:hover {
  color: var(--primary);
}

.latest-news-area .single-news .content-body p {
  color: var(--dark-3);
}

.latest-news-area .single-news:hover .image .thumb {
  transform: scale(1.1) rotate(1deg);
}


/*======================================
    Brand CSS
========================================*/
.brand-area {
  padding: 100px 0;
  background: var(--white);
}

.brand-area h6 {
  color: var(--primary);
  border-color: var(--primary);
}

.brand-area h2 {
  color: var(--primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .brand-area {
    padding: 60px 0;
  }
}

.brand-area .clients-logos {
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}

.navbar-brand .logo {
  width: 300px;
}


.brand-area .clients-logos .single-image {
  display: inline-block;
  margin: 13px 10px;
  background-color: var(--white);
  line-height: 100px;
  padding: 8px 25px;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  border: 1px solid #eee;
}

.brand-area .clients-logos .single-image:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.096);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}

.brand-area .clients-logos img {
  max-width: 170px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

/* ===== Buttons Css ===== */
.contact-form-wrapper .contact-form .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.contact-form-wrapper .contact-form .active.primary-btn,
.contact-form-wrapper .contact-form .primary-btn:hover,
.contact-form-wrapper .contact-form .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.contact-form-wrapper .contact-form .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}





/*======================================
	Contact CSS
========================================*/
.contact-section {
  position: relative;
  z-index: 3;
  padding: 60px 15px;
}

@media only screen and (min-width: 200px) and (max-width: 991px) {
  .contact-section {
    padding-top: 80px;
  }
}



.contact-section .contact-item-wrapper .contact-item {
  display: flex;
  border: 1px solid var(--gray-4);
  border-radius: 10px;
  background: var(--white);
  margin-bottom: 30px;
  padding: 20px 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.contact-section .contact-item-wrapper .contact-item:hover {
  box-shadow: var(--shadow-4);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item {
    padding: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}

.contact-section .contact-item-wrapper .contact-item .contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.contact-section .contact-item-wrapper .contact-item .contact-content {
  margin-left: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}

.contact-section .contact-item-wrapper .contact-item .contact-content h4 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-content p {
  font-size: 14px;
}

.contact-form-wrapper {
  padding: 50px 40px;
  background: var(--white);
  border: 1px solid var(--gray-4);
  margin-left: 0px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.contact-form-wrapper:hover {
  box-shadow: var(--shadow-4);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-wrapper {
    margin-left: 30px;
  }
}

.contact-form-wrapper .section-title {
  margin-bottom: 30px;
}

.contact-form-wrapper .section-title span {
  font-size: 15px;
  color: var(--primary);
  font-weight: 700;
}

.contact-form-wrapper .section-title h2 {
  margin-bottom: 10px;
  font-size: 25px;
}

.contact-form-wrapper .section-title p {
  color: var(--dark-3);
  font-size: 12px;
}

.contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
  padding: 15px 25px;
  border-radius: 30px;
  border: 1px solid var(--gray-4);
  margin-bottom: 25px;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {

  .contact-form-wrapper .contact-form input,
  .contact-form-wrapper .contact-form textarea {
    padding: 12px 25px;
  }
}

.contact-form-wrapper .contact-form input:focus,
.contact-form-wrapper .contact-form textarea:focus {
  border-color: var(--primary);
}

.contact-form-wrapper .contact-form textarea {
  border-radius: 18px;
}

.map-style-9 {
  margin-top: -130px;
}


/* Footer eleven css */
.footer-eleven {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--primary);
  position: relative;
}

.footer-widget .logo {
  background-color: #fff;
  width: 300px;
  border-radius: 20px;
  padding: 10px;
}


@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-eleven {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-eleven .footer-widget {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .footer-eleven .footer-widget {
    margin-top: 40px;
  }
}

.footer-eleven .footer-widget h5 {
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-eleven .footer-widget h5 {
    margin-bottom: 25px;
  }
}

.footer-eleven .f-about {
  padding-right: 30px;
}

@media (max-width: 767px) {
  .footer-eleven .f-about {
    padding: 0;
  }
}



.footer-eleven .f-about p {
  color: var(--light-1);
  margin-top: 20px;
}

.footer-eleven .f-about .copyright-text {
  color: var(--light-1);
  margin-top: 40px;
}

.footer-eleven .f-about .copyright-text span {
  display: block;
}

@media (max-width: 767px) {
  .footer-eleven .f-about .copyright-text {
    margin-top: 20px;
  }
}

@media (max-width:1366px) {
  .footer-eleven .footer-widget h5 {
    margin-top: 20px;
  }
}

.footer-eleven .f-about .copyright-text a {
  color: var(--primary);
}

.footer-eleven .f-about .copyright-text a:hover {
  color: var(--primary-dark);
}

.footer-eleven .f-link li {
  display: block;
  margin-bottom: 12px;
  font-size: 0.75rem;
}

.footer-eleven .f-link li:last-child {
  margin: 0;
}

.footer-eleven .f-link li a {
  color: var(--light-1);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.footer-eleven .f-link li a:hover {
  color: var(--dark-3);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
  .footer-eleven {
    padding-left: 10%;
  }
}

/* .footer-eleven .newsletter p {
  color: var(--light-1);
} */

.footer-eleven p {
  color: var(--light-1);
}


.footer-eleven .newsletter-form {
  margin-top: 30px;
  position: relative;
}

.footer-eleven .newsletter-form input {
  height: 55px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--gray-4);
  box-shadow: none;
  text-shadow: none;
  padding-left: 18px;
  padding-right: 65px;
  transition: all 0.4s ease;
}

.footer-eleven .newsletter-form input:focus {
  border-color: var(--primary);
}

.footer-eleven .newsletter-form .button {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-eleven .newsletter-form .sub-btn {
  height: 42px;
  width: 42px;
  border-radius: 6px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  line-height: 42px;
  border: none;
  box-shadow: none;
  text-shadow: none;
  font-size: 17px;
  transition: all 0.4s ease;
}

.footer-eleven .newsletter-form .sub-btn:hover {
  color: var(--white);
  background-color: var(--primary-dark);
}




/* PRODUCT  */

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

.product-header {
  text-align: center;
  margin-bottom: 40px;
}

.product-header h2 {
  font-size: 1.5rem;
  color: var(--primary);
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 10px;
  margin-top: 20px;
}

.product-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  width: 250px;
  transition: transform 0.3s;
}

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

.product-card img {
  width: 100%;
  height: auto;
}

.product-card h3 {
  color: #002060;
  font-size: 1.2em;
  margin: 15px 0 5px;
}

.product-card p {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.product-card a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
}

.product-card a:hover {
  text-decoration: underline;
}

.product-card {
  display: inline-block;
  margin: 10px 10px;
  background-color: var(--white);
  line-height: 30px;
  padding: 20px 20px;
  border-radius: 10px;
  transition: all 0.4s ease-out 0s;
  border: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product-card:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.096);
  transform: translateY(-5px);
}

.product-card img {
  max-width: 100%;
  border-radius: 8px 8px 0 0;
}

.product-card h3 {
  margin: 10px 0;
  text-align: left;
  color: #011329;
}

.product-card p {
  font-size: 1rem;
  /* Font size for the product description */
  color: #011329;
  /* Text color for the description */
  text-align: left;
}

.product-card a {
  margin: 0px 100px 30px 0px;
}

@media (max-width: 1200px) {
  .product-card a {
    margin: 0px 0px 0px 0px;
  }
}

@media only screen and (min-width: 200px) and (max-width: 768px) {
  .product-grid {
    padding-top: 70px;
  }
  .product-card {
    display: inline-block;
    margin: 10px 10px;
    background-color: var(--white);
    line-height: 30px;
    padding: 0px 20px;
    border-radius: 10px;
    /* Border-radius dari contoh pertama */
    transition: all 0.4s ease-out 0s;
    /* Transition dari contoh pertama */
    border: 1px solid #eee;
    /* Border color dari contoh pertama */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Shadow effect dari contoh kedua */
    text-align: center;
    /* Text alignment dari contoh kedua */
  }

  .product-card p {
    font-size: 15px;
  }
}

.check-detail {
  text-decoration: none;
  transition: transform 0.3s;
}

.check-detail:hover {
  transform: translateX(5px);
}


.view-all-container {
  text-align: right;
  margin-top: 20px;
}

.view-all-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.70rem;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.view-all-btn-white {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--light-1);
  color: var(--primary);
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.view-all-btn-white:hover {
  background-color: var(--primary);
  color: var(--light-1);
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.search-bar {
  margin-right: 40px;
}

.search-bar input[type="text"] {
  padding: 5px 10px;
  font-size: 14px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  width: 200px;
}

.search-bar .search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  /* Allows clicks to pass through to the input */
}

.search-bar-product input[type="text"] {
  padding: 10px 15px;
  font-size: 18px;
  border: 1px solid var(--primary);
  border-radius: 10px;
  width: calc(100% - 1px);
}

.search-bar-product {
  padding-top: 20px;
  margin-right: 20px;
  margin-left: 20px;

}

/* search bar css  */
/* .search-bar-all {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.search-bar-all input[type="text"] {
  width: 100%;
  max-width: 400px;
  padding: 10px 20px;
  font-size: 1em;
  border: 2px solid #ddd;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.search-bar-all input[type="text"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.search-bar-all input[type="text"]::placeholder {
  color: #aaa;
  font-style: italic;
}

.search-bar-all input[type="text"]:hover {
  border-color: var(--primary-hover); 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
} */

.sidebar {
  width: 250px;
  background-color: var(--primary);
  padding: 15px;
  position: fixed;
  right: -250px;
  top: 0;
  height: 100%;
  transition: right 0.3s;
  z-index: 1000;
}

.sidebar.open {
  right: 0;
}

.sidebar.open~.pagination {
  display: none;
  /* Hide the pagination completely */
}

.sidebar.open~.pagination .pagination-button-prev,
.sidebar.open~.pagination .pagination-button-next {
  visibility: hidden;
  /* Optionally, use visibility: hidden if you still want to reserve space */
  pointer-events: none;
  /* Prevent clicking while hidden */
}

/* Close button inside the sidebar */

/* Sidebar links */
.sidebar-menu a {
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: 10px;
}

.sidebar-menu a:hover {
  color: var(--primary);
  background-color: var(--white);
}

/* Navbar links */
.nav-links a {
  color: white;
  text-decoration: none;
  padding: 0 15px;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Login button text color */
.login-btn {
  background: none;
  border: none;
  color: white;
  /* Login button color to white */
  cursor: pointer;
}

/* Search bar */
.nav-right input[type="text"] {
  color: black;
  /* Keep text inside search bar black for readability */
  background-color: white;
  padding: 5px;
  border-radius: 5px;
  border: none;
}

.dropdown-area {
  background: var(--white);
  padding: 20px 0;
  position: absolute;
  left: 0;
  top: 280px;
  width: 100%;
  z-index: 9;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-bar {
    margin: 10px 0;
  }

  .search-bar input[type="text"] {
    width: calc(100% - 20px);
    font-size: 14px;
    margin: 0 auto;
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 932px) {
  .search-bar {
    margin: 10px 0;
  }

  .search-bar input[type="text"] {
    width: calc(100% - 20px);
    font-size: 14px;
    margin: 0 auto;
    display: block;
  }
}

@media only screen and (min-width: 250px) and (max-width: 1200px) {
  .search-bar {
    margin: 10px 0;
  }

  .search-bar input[type="text"] {
    width: calc(100% - 1px);
    font-size: 14px;
    margin: 0 auto;
    display: block;
  }
}


.counter {
  color: var(--white);
}


.loading-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  /* Hidden by default */
}

/* The spinner */
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

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

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



.block-right-light-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.block-right-light-flex__left {
  flex: 1;
}

.block-right-light-flex__left__title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Arial Narrow Bold', sans-serif;
}

.block-right-light-flex__left__title-description {
  margin-bottom: 20px;
  font-size: 10px;
}


/* .block-right-light-flex__left__description {
  margin-bottom: 20px;
  font-weight: 700;
} */

.block-right-light-flex__left__btn {
  margin-bottom: 20px;
}

.block-right-light-flex__left__btn--action {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
}

.block-right-light-flex__left__btn--action:hover {
  color: var(--primary);
  background-color: #ebeaea;
}

.block-right-light-white-flex__left__btn--action {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--light-1);
  color: var(--primary);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
}

.block-right-light-white-flex__left__btn--action:hover {
  color: var(--light-1);
  background-color: var(--primary);
}

.block-right-light-flex__right {
  flex: 1;
}

.block-right-light-flex__right__image {
  width: 100%;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .block-right-light-flex {
    flex-direction: column;
    text-align: center;
  }

  .block-right-light-flex__right {
    order: -1;
    margin-top: 20px;
  }

  .block-right-light-flex__right__image {
    width: 100%;
  }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .175);
}


.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #000000;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff;
  text-decoration: none;
  background-color: #00ccff;
  border-radius: .25rem;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #22d0fc;
}

.dropdown-menu {
  transition: opacity 0.3s ease;
  opacity: 0;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
}

.product-banner {
  padding: 40px 0;
  background-color: var(--white);
}

.product-banner .container {
  height: 50%;
}

.product-text {
  padding-right: 30px;
}

.product-text h2 {
  margin-bottom: 20px;
  color: var(--primary);
}

.product-text p {
  margin-bottom: 20px;
}

.product-text .btn {
  padding: 10px 20px;
}

.product-image {
  display: block;
  margin: 0 auto;
  border-radius: 25px;
  max-width: 550px;
  max-height: 550px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .row .align-items-center .about-image-five {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-five .col-lg-6:nth-child(2) {
    order: 1;
  }

  .about-five .col-lg-6:nth-child(1) {
    order: 2;
  }

  .product-text p {
    padding: 0;
  }

  .product-banner .container {
    margin-bottom: 400px;
  }

  .product-image {
    max-width: 100%;
  }

  .product-banner .container {
    height: 150px;
  }
}

@media (max-width: 1024px) {
  .row .align-items-center .about-image-five {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .about-five-content .about-five-tab .nav-tabs .nav-link{
    font-size: 16px;
  }

  .product-text p {
    padding: 0;
  }

  .product-banner .container {
    margin-bottom: 100px;
  }

  .product-image {
    max-width: 100%;
  }

  .product-banner .container {
    height: 150px;
  }
}

@media only screen and (min-width:540px) and (max-width:720px) {
  .about-five-content .about-five-tab .nav-tabs .nav-link {
    margin-right: 30px;
  }
}

@media (max-width: 1400px) {
  .row .align-items-center .about-image-five {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .about-five-content .about-five-tab .nav-tabs .nav-link{
    font-size: 16px;
  }

  .product-text p {
    padding: 0;
  }

  .product-banner .container {
    margin-bottom: 100px;
  }

  .product-image {
    max-width: 100%;
  }

  .product-banner .container {
    height: 150px;
  }
}



.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-light);
  min-width: 230px;
  box-shadow: 0px 8px 16px 0px rgba(150, 150, 150, 0.2);
  border-radius: 4px;
  z-index: 1;
  max-height: 300px;
  overflow-y: auto;
}

.dropdown .dropdown-content a {
  padding: 12px 16px;
  color: var(--primary);
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}


.dropdown-content a:hover {
  background-color: var(--caution);
}

.nav-item:hover .dropdown {
  display: block;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 20px;
  margin-top: 20px;
  flex-wrap: nowrap;
  position: relative;
  max-width: 100%;
}

.pagination button {
  margin: 20px;
  padding: 8px 20px;
  border-radius: 4px;
  background-color: var(--primary);
  color: #fff;
  font-size: 0.9em;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
  text-align: center;
  white-space: nowrap;
}

.pagination .pagination-button-prev {
  margin-left: 75%;
  border-radius: 4px;
  background-color: var(--primary);
  color: #fff;
  font-size: 0.9em;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
  text-align: center;
}

.pagination .pagination-button-next {
  margin-left: 90%;
  padding: 8px 15px;
  border-radius: 4px;
  background-color: var(--primary);
  color: #fff;
  font-size: 0.9em;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
  text-align: center;
}
@media only screen and (min-width:250px) and (max-width:1200px) {
  .pagination {
    flex-direction: column;
    align-items: center;
  }
  .product-grid {
    padding-top:70px;
  }

  .pagination .pagination-button-prev {
    margin: 0px 70px;
    width: 100%;
    max-width: none;
  }

  .pagination .pagination-button-next {
    margin: 70px 0;
    width: 100%;
    max-width: none;
  }

  .sidebar.open~.pagination .pagination-button-prev,
  .sidebar.open~.pagination .pagination-button-next {
    display: none;
  }
  .page-number{
    margin-bottom: 100px;
  }
}

@media (max-width:1366px){
  .product-grid {
    padding-top:70px;
  }
}


.pagination button:hover {
  background-color: #004494;
  /* transform: scale(1.05); */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pagination button:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

.pagination button.active {
  background-color: #003d7a;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pagination .dots {
  display: flex;
  align-items: center;
  font-size: 1em;
  color: var(--primary);
  margin: 0 4px;
}

/* PRODUCT CARD  */

.products-section {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.products-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.products-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.products-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 16px;
}

.products-card h2 {
  color: #000000;
  font-size: 1.5rem;
  margin: 8px 0;
}

.products-card h3 {
  font-size: 1rem;
  color: #555;
  margin: 4px 0;
}

.products-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 8px 0 16px;
}

.products-card a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.products-card a:hover {
  color: #0056b3;
}

.contact-section {
  padding: 50px;
  background-color: var(--primary);
}

.contact-item {
  padding: 8px;
}

.contact-label {
  display: block;
  /* Make the label a block element */
  font-weight: bold;
}

.contact-value {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 80%;
  margin: 0 auto;
  flex-wrap: wrap;
  color: var(--white);
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  margin-bottom: 10px;
}

.contact-info p {
  margin: 10px 0;
  color: var(--white);
}

.contact-info strong {
  font-weight: bold;
}

.buttons {
  margin-top: 20px;
}

.chat-btn,
.quote-btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.chat-btn {
  background-color: var(--white);
  color: var(--primary);
}

.chat-btn:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--white);
}

.quote-btn {
  background-color: #f1f1f1;
  color: #333;
}

.quote-btn:hover {
  background-color: #ddd;
}

.map-container {
  flex: 1;
  max-width: 50%;
}

.map-container iframe {
  height: 350px !important;
}

@media only screen and (min-width:250px) and (max-width: 768px) {
  .map-container {
    flex: 1;
    max-width: 100%;
  }
  
  .map-container iframe {
    height: 350px !important;
  }
}


iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #ddd;
}


.slider {
  position: relative;
  max-width: 800px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: calc(100% * 10);
  /* Adjust based on the number of images */
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

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

button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

button:focus {
  outline: none;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.privacy-area {
  padding-top: 20px;
  padding-bottom: 60px;
}

.privacy-area h2 {
  font-size: 24px;
  color: var(--black);
  margin-top: 60px;
}

.privacy-area p {
  font-size: 16px;
  padding-top: 10px;
  color: var(--dark-1);
}

.privacy-area ul {
  font-size: 14px;
  color: var(--dark-3);
}