/* ===================================
    Crafto - Hosting
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* variable */
:root {      
    --alt-font: 'Poppins', sans-serif;
    --primary-font: 'Poppins', sans-serif;
    --main-color: #009d46; 
    --second-color: #9AB202;
    --dark-gray: #181b31;
    --green: #0fc978;
    --medium-gray: #6e7982;
}

.bg-base-color-transparent {
  background-color: rgb(3, 122, 33, 0.2);
}
.bg-base-color-very-transparent {
  background-color: rgb(3, 122, 33, 0.05);
}
/* reset */
::-webkit-input-placeholder {
    color: #6e7982 !important;
    text-overflow: ellipsis; 
}
::-moz-placeholder {
    color: #6e7982 !important;
    text-overflow: ellipsis;
    opacity: 1; 
}
:-ms-input-placeholder {
    color: #6e7982 !important;
    text-overflow: ellipsis;
    opacity: 1; 
}
body{
    line-height: 30px;
}

.top-bar-mobile {
    z-index: 10000;
}

.top-bar-mobile span {
    font-size: 10px !important;
}

@media (max-width: 768px) {
    header .navbar{
        margin-top: 30px !important;
    }
    header.sticky .navbar{
        margin-top: 0 !important;
    }
}

.readmore-container {
  position: relative;
}

.readmore-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px; 
  background: linear-gradient(to bottom, rgba(247, 247, 247, 0) 0%, #f7f7f7 100%);
  pointer-events: none;
}

.badge-subheading {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .badge-subheading {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 11px;
    }
}

.card-2-title {
    font-size: 17px;
    line-height: 20px;
}

@media (max-width: 768px) {
    .card-2-title {
        font-size: 14px;
    }
}

/* condensed spacing */
.condensed-spacing {
    line-height: 1.7;
    text-align: justify;
    margin-top: 0.5em; 
    margin-bottom: 0.5em; 
    padding: 0; 
    overflow-wrap: break-word; 
    word-spacing: -0.05em; 
}

.footer-ckeditor ul {
  padding-left: 20px;
}

.footer-ckeditor ul li{
  list-style: initial;
  opacity: 0.75;
}

.icon-excluded {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px; 
  border-radius: 50%;
  text-align: center;
  line-height: 25px; 
  background-color: #FAE8EB;
  border: none; 
  color: #C81E3A;
  padding: 0; 
}

.icon-included {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px; 
  border-radius: 50%;
  text-align: center;
  line-height: 25px; 
  background-color: #E9F6EC;
  border: none; 
  color: #60A244;
  padding: 0; 
}


/* ckeditor list */
.description-list a{
    color: var(--main-color); 
}

.description-list h1,
.description-list h2,
.description-list h3,
.description-list h4,
.description-list h5,
.description-list h6 {
    all: unset; /* Menghapus semua properti CSS yang telah diterapkan */
    font-size: revert; /* Mengembalikan ukuran font ke default HTML */
    font-weight: revert; /* Mengembalikan ketebalan font ke default HTML */
    color: revert; /* Mengembalikan warna font ke default HTML */
    margin: revert; /* Mengembalikan margin ke default HTML */
    padding: revert; /* Mengembalikan padding ke default HTML */
}

.description-list ul li{
    list-style: initial;
}

@media (max-width: 768px) {
  .table-responsive1 {
    display: flex;
    flex-wrap: wrap;
  }
}

.description-list table {
  width: 100% !important;
  color: var(--dark-gray);
  border: 1px solid #ddd;
  font-size: 14px;
}

.description-list table th,
.description-list table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.description-list table th {
  background-color: rgb(0, 157, 70, 0.05);
  font-weight: bold;
  border-bottom: 2px solid #ddd;
}

.description-list table td {
  background-color: #fff;
}

.description-list table tr:nth-child(odd) td {
  background-color: rgb(0, 157, 70, 0.05);
}

.description-list table caption {
  caption-side: bottom;
  font-style: italic;
  margin-top: 10px;
}

.table-responsive1 table td:first-child {
    min-width: 150px; /* Set the width you need */
    flex: 0 0 auto;
  }

@media (max-width: 768px) {
  .description-list table {
      font-size: 12px;
    }
}


.hidden {
  display: none;
}


@keyframes bounce {
    0%, 25%, 50%, 75%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-12px);
    }
}


@keyframes rotateBounceButton {
    0% {
        transform: rotate(0deg) scale(1) translateY(0);
    }

    20% {
        transform: rotate(0deg) scale(1) translateY(-20px); /* Bounce up */
    }

    40% {
        transform: rotate(0deg) scale(1) translateY(-12px); /* Bounce higher */
    }

    50% {
        transform: rotate(0deg) scale(1) translateY(0); /* Bounce back down */
    }

    60% {
        transform: rotate(0deg) scale(1) translateY(0); /* Continue neutral */
    }

    80% {
        transform: rotate(45deg) scale(1) translateY(0); /* Start rotating */
    }

    100% {
        transform: rotate(0deg) scale(1) translateY(0); /* Finish rotation */
    }
}

.sticky-button {
    position: fixed;
    background-color: #25d366;
    bottom: 20px;
    left: 20px;
    border-radius: 50px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    z-index: 20;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    animation: rotateBounceButton 1s infinite ease-in-out;
}

.chat-menu:checked ~ .sticky-button {
    animation: none; 
}

.sticky-button svg {
  margin: auto;
  fill: #fff;
  width: 35px;
  height: 35px;
}

.sticky-button a,
.sticky-button label {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.sticky-button label svg.close-icon {
  display: none;
}

.sticky-chat {
  position: fixed;
  bottom: 70px;
  left: 20px;
  width: 320px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
}

.sticky-chat a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: #505050;
}

.sticky-chat svg {
  width: 35px;
  height: 35px;
}

.sticky-chat .chat-content {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #25d366;
  overflow: hidden;
}

.sticky-chat .chat-header:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 75px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 70px 0 5px 0;
}

.sticky-chat .chat-header svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  fill: #fff;
}

.sticky-chat .chat-header .title {
  padding-left: 15px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

.sticky-chat .chat-header .title span {
  font-size: 11px;
  font-weight: 400;
  display: block;
  line-height: 1.58em;
  margin: 0;
  color: #f4f4f4;
}

.sticky-chat .chat-text {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 20px;
  font-size: 12px;
}

.sticky-chat .chat-text span {
  display: inline-block;
  margin-right: auto;
  padding: 10px;
  background-color: #f0f5fb;
  border-radius: 0px 15px 15px;
}

.sticky-chat .chat-text span:after {
  content: "just now";
  display: inline-block;
  margin-left: 2px;
  font-size: 9px;
  color: #989b9f;
}

.sticky-chat .chat-text span.typing {
  margin: 15px 0 0 auto;
  padding: 10px;
  border-radius: 15px 0px 15px 15px;
}

.sticky-chat .chat-text span.typing:after {
  display: none;
}

.sticky-chat .chat-text span.typing svg {
  height: 13px;
  fill: #505050;
}

.sticky-chat .chat-button {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-button .custom-icon {
  width: 35px;
  height: 35px;
  margin-left: auto;
  background-color: #25d366;
}

.sticky-chat .chat-button .custom-icon i {
  font-size: 20px;
}

.chat-menu:checked + .sticky-button label {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.chat-menu:checked + .sticky-button label svg.chat-icon {
  display: none;
}

.chat-menu:checked + .sticky-button label svg.close-icon {
  display: table-cell;
}

.chat-menu:checked + .sticky-button + .sticky-chat {
  bottom: 90px;
  opacity: 1;
  visibility: visible;
}

.bg-stripped {
    background-color: #F7F9FC;
}
/* header */
.header-icon .icon > a {
    font-size: 15px;
}
.header-transparent .header-button .btn {
    background-color: var(--main-color);
    color: var(--white);
}
.header-transparent .header-button .btn:hover {
    border-color: var(--main-color);
}
/* bg background color */
.bg-midnight-dark-blue {
    background-color: #191d3c;
}
.bg-arsenic-grey {
    background-color: #3c414a !important; 
}
.bg-transparent-white-light {
    background-color: rgba(255, 255, 255, .1) !important;
}
/* btn */
.btn { 
    text-transform: initial;
    letter-spacing: 0px;
}
.btn i,
.btn.btn-hover-animation-switch .btn-icon {
    margin-left: 6px;
}
/* button type */  
.btn.btn-switch-text.btn-extra-large > span {
    font-size: 17px; 
    padding: 16px 36px;
}
.btn.btn-switch-text.btn-large > span {
    font-size:15px;
    padding: 14px 34px;
}
.btn.btn-switch-text.btn-medium > span {
    font-size: 14px;
    padding: 12px 28px;
}
.btn.btn-switch-text.btn-small > span {
    font-size: 13px;
    padding: 8px 20px;
}
.btn.btn-switch-text.btn-very-small > span {
    font-size: 12px;
    padding: 6px 20px;
}
.btn.btn-link {
    padding: 0 0 2px;
}
.btn-yellow {
    background-color: var(--yellow);
    color: var(--dark-gray);
}
.btn-yellow:hover { 
    background-color: transparent;
    border-color: var(--yellow);
    color: var(--yellow); 
}
.btn.btn-box-shadow.btn-yellow:hover {
    background-color: var(--yellow) !important;
    color: var(--dark-gray) !important;
}
.btn-green {
    background-color: var(--green);
    color: var(--white);
}
.btn-green:hover { 
    background-color: var(--white);
    border-color: var(--white);
    color: var(--dark-gray); 
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 25px;
}
/* page title */
.page-title-extra-small h2 {
    font-size: 3.25rem;
    line-height: 3.425rem;
}
/* checkbox */
.form-check-input:checked {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}
.form-check-input:focus {
    outline: none;
    box-shadow: none;
}

.custom-toast-container {
    z-index: 9999 !important;
}

.custom-toast-container .swal2-title {
    line-height: 1.2;
}

.icon-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 2px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.icon-mark {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px; 
  border-radius: 50%;
  text-align: center;
  line-height: 30px; 
  background-color: rgb(15,206,177, 0.2);
  border: none; 
  padding: 0; 
}

.icon-mark i {
  font-size: 16px; 
  margin: 0; 
}

.icon-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px; 
    border-radius: 50%;
    text-align: center;
    line-height: 40px; 
    background-color: var(--main-color);
    border: none; 
    color: white;
    padding: 0; 
    flex-shrink: 0;
}

.icon-link i {
    font-size: 16px; 
    margin: 0; 
}

.map-container {
  overflow: hidden;
}

@media (max-width: 768px) {
  .map-container {
    max-height: 300px;
  }
}


.bg-safe-success {
    background-color: #E5F6F3;
    color: #11AE9A;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.bg-warn-danger {
    background-color: #E5F6F3;
    color: #FE0701;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.col.icon-with-text-style-07 .feature-box {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.col.icon-with-text-style-07 .feature-box::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  opacity: 0.2;
  z-index: -1;
  border-radius: 50%;
}

.col.icon-with-text-style-07 .feature-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 20px;
  height: 4px;
  background-color: var(--main-color);
  opacity: 0.2;
  z-index: -1;
}


.image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .image-container {
        width: 100%;
        height: 350px;
    }
    
    .image-container img {
        width: 100%;
        height: 350px;
    }
}


.image-container-col-full {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container-col-full img {
  width: 100%;
  min-height: 230px;
  height: auto;
}

@media (max-width: 768px) {
  .image-container-col-full {
      width: 100%;
      height: 270px;
  }
  
  .image-container-col-full img {
      width: 100%;
      min-height: 270px;
      height: auto;
  }
}


.image-container-col-category {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container-col-category img {
  width: 100%;
  min-height: 260px;
  height: auto;
}

@media (max-width: 768px) {
  .image-container-col-category {
      width: 100%;
      height: 165px;
  }
  
  .image-container-col-category img {
      width: 100%;
      min-height: 165px;
      height: auto;
  }
}

.image-container-col-2-full {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container-col-2-full img {
  width: 100%;
  min-height: 270px;
  height: auto;
}

@media (max-width: 768px) {
  .image-container-col-2-full {
      width: 100%;
      height: 180px;
  }
  
  .image-container-col-2-full img {
      width: 100%;
      min-height: 180px;
      height: auto;
  }
}


.image-container-col-3-full {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container-col-3-full img {
  width: 100%;
  min-height: 270px;
  height: auto;
}

@media (max-width: 768px) {
  .image-container-col-3-full {
      width: 100%;
      height: 300px;
  }
  
  .image-container-col-3-full img {
      width: 100%;
      min-height: 300px;
      height: auto;
  }
}

.image-container-slide-product {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container-slide-product img {
  width: 100%;
  min-height: 150px;
  height: auto;
}

@media (max-width: 768px) {
  .image-container-slide-product {
      width: 100%;
      height: 80px;
  }
  
  .image-container-slide-product img {
      width: 100%;
      min-height: 80px;
      height: auto;
  }
}

.image-container-col-full {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container-col-full img {
    width: 100%;
    min-height: 230px;
    height: auto;
}

@media (max-width: 768px) {
    .image-container-col-full {
        width: 100%;
        height: 270px;
    }
    
    .image-container-col-full img {
        width: 100%;
        min-height: 270px;
        height: auto;
    }
}

.image-container-slide-4 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container-slide-4 .image {
    width: 100%;
    min-height: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .image-container-slide-4 {
        width: 100%;
        height: 250px;
    }
    
    .image-container-slide-4 .image {
        width: 100%;
        min-height: 250px;
        height: auto;
    }
}

.image-container-detail {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container-detail .image {
    width: 100%;
    min-height: auto;
    height: auto;
}

@media (max-width: 768px) {
    .image-container-detail {
        width: 100%;
        height: auto;
    }
    
    .image-container-detail .image {
        width: 100%;
        min-height: auto;
        height: auto;
    }
}

.image-container-slide-product {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container-slide-product .image {
  width: 100%;
  min-height: 90px;
  height: auto;
}

@media (max-width: 768px) {
  .image-container-slide-product {
      width: 100%;
      height: 100px;
  }
  
  .image-container-slide-product .image {
      width: 100%;
      min-height: 100px;
      height: auto;
  }
}


.btn-shopee-color:hover,
.btn-tokped-color:hover,
.btn-tiktok-color:hover,
.btn-whatsapp-color:hover {
    transform: translateY(-5px);
}

.btn-shopee-color,
.btn-tokped-color,
.btn-tiktok-color,
.btn-whatsapp-color {
    transition: 0.3s;
}

.btn-whatsapp-color {
    border: 2px solid #24CC63 !important;
    color: #24CC63 !important; 
}

.btn-shopee-color {
    border: 2px solid #FF6600 !important; 
    color: #FF6600 !important; 
}

.btn-tokped-color {
    border: 2px solid #03ac0e !important; 
    color: #03ac0e !important;
}

.btn-tiktok-color {
    border: 2px solid #010101 !important;
    color: #010101 !important;
}


.page-title {
    font-size: 50px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 30px !important;
    }
}

ul.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.pagination li.pagination-item {
    margin: 0 5px;
}

ul.pagination li.pagination-item a.pagination-link {
    display: block;
    padding: 8px 16px;
    color: var(--main-color);
    text-decoration: none;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

ul.pagination li.pagination-item a.pagination-link:hover,
ul.pagination li.pagination-item a.pagination-link:focus {
    background-color: var(--main-color);
    color: #fff;
}

ul.pagination li.pagination-item.pagination-active a.pagination-link {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
    cursor: default;
}

ul.pagination li.pagination-item.pagination-disabled a.pagination-link {
    color: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
    pointer-events: none; 
}

ul.pagination li.pagination-item.pagination-disabled span.pagination-link {
    background-color: #f8f9fa; 
    border-color: #e9ecef; 
}

.icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background-color: #e7ebf3; 
    color: #BABFC1; 
    border-radius: 50%;
    font-size: 16px; 
}


.hero-title {
    font-size: 40px;
}

.hero-subtitle {
    font-size: 23px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

/* footer */
.footer-bg {
  background-color: #0e5426;
}

footer {
    padding-top: 100px;
}

.footer-dark a:hover {
    color: var(--white);
}
footer ul li {
    margin-bottom: 0;
}

.copyright span,  .copyright p{
    font-size: 11px;
}

@media (max-width: 768px) {
    footer p, footer .footer-desc{
        /* font-size: 14px; */
    }
    .copyright span, .copyright p{
        font-size: 8px;
    }
}

.footer-bottom .navigation .footer-navbar {
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-bottom .navigation .footer-navbar {
        font-size: 10px;
    }
}


.page-title-medium h1 {
  position: relative;
  z-index: 1;
}

.page-title-medium h1::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--main-color);
  opacity: 0.8;
  z-index: -1;
  bottom: -2px;
  right: -10px;
}

.layer-background-second {
  position: relative;
  z-index: 1;
}

.layer-background-second::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(217, 193, 121, 0.9), rgba(217, 193, 121, 0));
}

.layer-background-second-half {
  position: relative;
  z-index: 1;
}

.layer-background-second-half::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 70%;
  background: linear-gradient(to right, rgba(217, 193, 121, 0.9), rgba(217, 193, 121, 0));
}


.layer-background-dark {
    position: relative;
}

.layer-background-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(0, 0, 0, 0.5);
    z-index: 1;
}

.layer-background-dark-main-from-left {
  position: relative;
}

.layer-background-dark-main-from-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(0, 157, 70, 0.55), rgb(0, 157, 70, 0.2));
  z-index: 1;
  border-radius: 6px;
}

.layer-background-dark-from-left {
  position: relative;
}

.layer-background-dark-from-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.layer-background-dark-from-left-very-light {
  position: relative;
}

.layer-background-dark-from-left-very-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2));
  z-index: 1;
}


.custom-overlay {
    position: relative;
}
.custom-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(44, 49, 144, .55);
}

.dark-overlay {
    position: relative;
    z-index: 2;
}
.dark-overlay::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5); 
}

.gray-overlay {
  position: relative;
  z-index: 2;
}
.gray-overlay::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(112, 111, 111, 0.6); 
}


.very-dark-overlay {
    position: relative;
    z-index: 2;
}
.very-dark-overlay::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.9); 
}


/* background image custom */
.section-background2 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}


.section-background2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f7f7f7;
    z-index: -1;
}

.section-background2::after {
  /* content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/section-background2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -2; */
}

.section-background1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-background1::before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/section-background1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    z-index: -1; */
}

.breadcumb-background {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.breadcumb-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/breadcumb-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.breadcumb-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(12, 109, 2, 0.95);
    z-index: -1;
}


.services-box-style-01:hover .title {
    color: var(--main-color);
}

.services-box-style-01 .title::before {
  content: '';
  display: block;
  width: 0;
  height: 2px; 
  background-color: var(--main-color); 
  transition: width 0.3s ease;
  margin-bottom: 5px;
}

.services-box-style-01:hover .title::before {
  width: 100%; 
}


.custom-hover-translate {
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.custom-icon {
  color: white;
  border-radius: 50%;
  width: 17px; 
  height: 17px; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  font-size: 12px;
  flex-shrink: 0;
}


.custom-hover-translate:hover {
  transform: translateY(-5px);
}

.custom-hover-scale img {
  /* display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease; */
}

.custom-hover-scale:hover img {
  /* transform: scale(1.05); */
}

.custom-hover-scale .image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(217, 193, 121, 0.5); 
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 1; 
}

.custom-hover-scale:hover .image::before {
  opacity: 1;
}

.custom-hover-scale a {
  position: relative;
  z-index: 2; 
  display: block;
}



.custom-hover-image .image {
    transition: .3s;
}
.custom-hover-image:hover .image {
    transform: scale(1.05);
}


/* slider */

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
}

picture {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0; 
    padding: 0; 
}

@media (max-width: 767px) {
    .swiper-slide {
        height: auto;
    }
    .slide-image {
        height: auto;
        object-fit: contain; 
    }
}

.hover-brightness img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.hover-brightness img:hover {
    filter: grayscale(0);
}


/* welcome text */

.section-title {
  position: relative;
  z-index: 1;
}

.section-title::before {
    /* content: '';
    position: absolute;
    top: -5px;
    left: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--main-color);
    opacity: 0.3;
    z-index: -1; */
}


.about-image::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80%;
  height: 80%;
  border-radius: 6px;
  background-color: var(--main-color);
  z-index: -1; 
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 80%;
  height: 80%;
  border-radius: 6px;
  background-color: #D4D4D4;
  z-index: -1; 
}


.section-heading {
    font-size: 28px !important;
    line-height: 35px;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 23px !important;
    }
}

@media (max-width: 768px) {
    .subs-heading {
        text-align: center;
    }
    
    .subs-sub-heading {
        text-align: center;
    }
}

.section-subheading {
    font-size: 16px !important;
    line-height: 22px;
}

@media (max-width: 768px) {
    .section-subheading {
        font-size: 14px !important;
    }
}

.custom-hover-scale-img {
    transition: 0.3s;
}
.custom-hover-scale-img .image {
    transition: .3s;
}
.custom-hover-scale-img:hover {
    transform: translateY(-10px);
}
.custom-hover-scale-img:hover .image {
    transform: scale(1.05);
}

/* contact-btn */
.floating_btn {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    z-index: 1000;
  }
  
  @keyframes pulsing {
    to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
  }
  
  .contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size:30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
  }

.subscribe-section {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.subscribe-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(22, 140, 214, 0.6);
  z-index: -1;
}

@media (max-width: 768px) {
    .subscribe-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .subscribe-section .feature-box .feature-box-content {
        text-align: center;
    }
    .subscribe-section .feature-box .feature-box-content h5{
        font-size: 22px !important;
    }
    .subscribe-section .feature-box .feature-box-content p {
        font-size: 15px !important;
        line-height: 20px;
    }
}


/* media query responsive */
@media (max-width: 991px) {
    [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner {
        background-color: var(--main-color);
    }
}
@media (max-width: 1199px) {
    .btn.btn-switch-text.btn-small > span {
        padding: 6px 18px;
    }
    footer {
        padding-top: 80px;
    }
    .btn.btn-switch-text.btn-extra-large > span { 
        padding: 16px 30px;
    }
    .btn.btn-switch-text.btn-large > span { 
        padding: 14px 30px;
    }
}
@media (max-width: 767px) {
    footer {
        padding-top: 50px;
    }
}
  
  .categories-slider.owl-carousel .owl-item.active .cs-item .cs-text h4 {
    opacity: 0;
  }
  
  .categories-slider.owl-carousel .owl-item.active .cs-item .cs-text span {
    opacity: 0;
  }