/* ===================================

    Crafto - Hosting

====================================== */

/* font */

/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=National+Park:wght@200..800&display=swap");

/* variable */

:root {
  --alt-font: "Mulish", sans-serif;

  --primary-font: "National Park", sans-serif;

  --main-color: #0097b8;

  --second-color: #0097b8;

  --dark-gray: #181b31;

  --green: #0fc978;

  --medium-gray: #6e7982;
}

/* 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;
}

.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;
  }
}

body {
  line-height: 30px;
}

/* datatable */

#dataTable {
  width: 100%;

  border-collapse: collapse;
}

#dataTable thead th {
  background-color: #f8f9fa;

  color: #333;

  text-align: center;

  font-weight: bold;
}

#dataTable tbody tr {
  border-bottom: 1px solid #ddd;
}

#dataTable tbody td {
  text-align: center;

  vertical-align: middle;
}

#dataTable img {
  border-radius: 5px;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;

  margin-bottom: 10px;
}

.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_filter label {
  margin-bottom: 0;
}

.dataTables_wrapper .dataTables_length select {
  margin-left: 5px;

  margin-right: 5px;

  width: auto;

  display: inline-block;
}

.dataTables_wrapper .dataTables_length select {
  padding: 3px !important;
}

.dataTables_wrapper .dataTables_filter input {
  margin-left: 5px !important;

  width: auto;

  display: inline-block;
}

.dataTables_wrapper .dataTables_paginate.paging_simple_numbers {
  display: flex;

  justify-content: center;

  align-items: center;

  margin-top: 10px;

  margin-bottom: 10px;
}

.dataTables_wrapper
  .dataTables_paginate.paging_simple_numbers
  .paginate_button {
  padding: 5px 10px !important;

  margin: 0 3px !important;

  border-radius: 3px !important;

  border: 1px solid #ddd !important;

  background-color: #f8f9fa !important;

  color: #333 !important;

  text-decoration: none !important;

  cursor: pointer !important;

  transition: background-color 0.3s, color 0.3s !important;
}

.dataTables_wrapper
  .dataTables_paginate.paging_simple_numbers
  .paginate_button.disabled {
  background-color: #e9ecef !important;

  color: #6c757d !important;

  cursor: not-allowed !important;
}

@media screen and (max-width: 768px) {
  #dataTable {
    font-size: 12px;
  }
}

@media screen and (max-width: 600px) {
    
  .sticky-desktop{
    position: sticky;
  }    
    
  #dataTable thead th:nth-child(3),
  #dataTable tbody td:nth-child(3),
  #dataTable thead th:nth-child(5),
  #dataTable tbody td:nth-child(5) {
    display: none;
  }

  #dataTable {
    font-size: 11px;
  }
}

.card-2-sub-title {
  font-size: 13px;
}

@media (max-width: 768px) {
  .card-2-sub-title {
    font-size: 11px;
  }
}

.card-2-title {
  font-size: 16px;

  line-height: 20px;
}

@media (max-width: 768px) {
  .card-2-title {
    font-size: 12px;
  }
}

/* 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;

  color: #000000;
}

/* ckeditor list */

.content.description-list ul li {
  list-style: disc;
}

/* whatsapp float */

.cbh-phone {
  display: block;

  position: fixed;

  left: -50px;

  bottom: -55px;

  visibility: hidden;

  background-color: transparent;

  width: 200px;

  height: 200px;

  cursor: pointer;

  z-index: 999;

  -webkit-backface-visibility: hidden;

  -webkit-transform: translateZ(0);

  -webkit-transition: visibility 0.5s;

  -moz-transition: visibility 0.5s;

  -o-transition: visibility 0.5s;

  transition: visibility 0.5s;
}

.cbh-phone.cbh-show {
  visibility: visible;
}

.cbh-phone.cbh-static1 {
  opacity: 0.6;
}

.cbh-phone.cbh-hover1 {
  opacity: 1;
}

.cbh-ph-circle {
  width: 110px;

  height: 110px;

  top: 40px;

  left: 40px;

  position: absolute;

  background-color: transparent;

  -webkit-border-radius: 100%;

  -moz-border-radius: 100%;

  border-radius: 100%;

  border: 2px solid rgba(30, 30, 30, 0.4);

  opacity: 0.1;

  -webkit-animation: cbh-circle-anim 1.2s infinite ease-in-out;

  -moz-animation: cbh-circle-anim 1.2s infinite ease-in-out;

  -ms-animation: cbh-circle-anim 1.2s infinite ease-in-out;

  -o-animation: cbh-circle-anim 1.2s infinite ease-in-out;

  animation: cbh-circle-anim 1.2s infinite ease-in-out;

  -webkit-transition: all 0.5s;

  -moz-transition: all 0.5s;

  -o-transition: all 0.5s;

  transition: all 0.5s;
}

.cbh-phone.cbh-active .cbh-ph-circle1 {
  -webkit-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;

  -moz-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;

  -ms-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;

  -o-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;

  animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
}

.cbh-phone.cbh-static .cbh-ph-circle {
  -webkit-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;

  -moz-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;

  -ms-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;

  -o-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;

  animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
}

.cbh-phone.cbh-hover .cbh-ph-circle {
  border-color: rgba(0, 175, 242, 1);

  opacity: 0.5;
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle {
  border-color: rgba(117, 235, 80, 1);

  opacity: 0.5;
}

.cbh-phone.cbh-green .cbh-ph-circle {
  border-color: rgba(0, 175, 242, 1);

  opacity: 0.5;
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle {
  border-color: rgba(204, 204, 204, 1);

  opacity: 0.5;
}

.cbh-phone.cbh-gray .cbh-ph-circle {
  border-color: rgba(117, 235, 80, 1);

  opacity: 0.5;
}

.cbh-ph-circle-fill {
  width: 74px;

  height: 74px;

  top: 58px;

  left: 58px;

  position: absolute;

  background-color: #000;

  -webkit-border-radius: 100%;

  -moz-border-radius: 100%;

  border-radius: 100%;

  border: 2px solid transparent;

  opacity: 0.1;

  -webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;

  -moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;

  -ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;

  -o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;

  animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;

  -webkit-transition: all 0.5s;

  -moz-transition: all 0.5s;

  -o-transition: all 0.5s;

  transition: all 0.5s;
}

.cbh-phone.cbh-active .cbh-ph-circle-fill {
  -webkit-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;

  -moz-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;

  -ms-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;

  -o-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;

  animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
}

.cbh-phone.cbh-static .cbh-ph-circle-fill {
  -webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;

  -moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;

  -ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;

  -o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;

  animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;

  opacity: 0 !important;
}

.cbh-phone.cbh-hover .cbh-ph-circle-fill {
  background-color: rgba(0, 175, 242, 0.5);

  opacity: 0.75 !important;
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle-fill {
  background-color: rgba(117, 235, 80, 0.5);

  opacity: 0.75 !important;
}

.cbh-phone.cbh-green .cbh-ph-circle-fill {
  background-color: rgba(0, 175, 242, 0.5);

  opacity: 0.75 !important;
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle-fill {
  background-color: rgba(204, 204, 204, 0.5);

  opacity: 0.75 !important;
}

.cbh-phone.cbh-gray .cbh-ph-circle-fill {
  background-color: rgba(117, 235, 80, 0.5);

  opacity: 1 !important;
}

.cbh-ph-img-circle1 {
  width: 50px;

  height: 50px;

  top: 70px;

  left: 70px;

  position: absolute;

  background-image: url(../../../assets/public/images/whats.png);

  background-size: 40px 40px;

  background-color: rgba(30, 30, 30, 0.1);

  background-position: center center;

  background-repeat: no-repeat;

  -webkit-border-radius: 100%;

  -moz-border-radius: 100%;

  border-radius: 100%;

  border: 2px solid transparent;

  opacity: 1;

  -webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out;

  -moz-animation: cbh-circle-img-anim 1s infinite ease-in-out;

  -ms-animation: cbh-circle-img-anim 1s infinite ease-in-out;

  -o-animation: cbh-circle-img-anim 1s infinite ease-in-out;

  animation: cbh-circle-img-anim 1s infinite ease-in-out;
}

.cbh-phone.cbh-active .cbh-ph-img-circle1 {
  -webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;

  -moz-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;

  -ms-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;

  -o-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;

  animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
}

.cbh-phone.cbh-static .cbh-ph-img-circle1 {
  -webkit-animation: cbh-circle-img-anim 0 infinite ease-in-out !important;

  -moz-animation: cbh-circle-img-anim 0 infinite ease-in-out !important;

  -ms-animation: cbh-circle-img-anim 0 infinite ease-in-out !important;

  -o-animation: cbh-circle-img-anim 0 infinite ease-in-out !important;

  animation: cbh-circle-img-anim 0 infinite ease-in-out !important;
}

.cbh-phone.cbh-hover .cbh-ph-img-circle1 {
  background-color: rgba(0, 175, 242, 1);
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-img-circle1:hover {
  background-color: rgba(117, 235, 80, 1);
}

.cbh-phone.cbh-green .cbh-ph-img-circle1 {
  background-color: rgba(0, 175, 242, 1);

  background-color: rgba(0, 175, 242, 1);
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-img-circle1 {
  background-color: rgba(204, 204, 204, 1);
}

.cbh-phone.cbh-gray .cbh-ph-img-circle1 {
  background-color: rgba(117, 235, 80, 1);
}

@-moz-keyframes cbh-circle-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.5) skew(1deg);

    opacity: 0.1;

    -moz-opacity: 0.1;

    -webkit-opacity: 0.1;

    -o-opacity: 0.1;
  }

  30% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);

    opacity: 0.5;

    -moz-opacity: 0.5;

    -webkit-opacity: 0.5;

    -o-opacity: 0.5;
  }

  100% {
    -moz-transform: rotate(0deg) scale(1) skew(1deg);

    opacity: 0.6;

    -moz-opacity: 0.6;

    -webkit-opacity: 0.6;

    -o-opacity: 0.1;
  }
}

@-webkit-keyframes cbh-circle-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);

    -webkit-opacity: 0.1;
  }

  30% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);

    -webkit-opacity: 0.5;
  }

  100% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);

    -webkit-opacity: 0.1;
  }
}

@-o-keyframes cbh-circle-anim {
  0% {
    -o-transform: rotate(0deg) kscale(0.5) skew(1deg);

    -o-opacity: 0.1;
  }

  30% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);

    -o-opacity: 0.5;
  }

  100% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);

    -o-opacity: 0.1;
  }
}

@keyframes cbh-circle-anim {
  0% {
    transform: rotate(0deg) scale(0.5) skew(1deg);

    opacity: 0.1;
  }

  30% {
    transform: rotate(0deg) scale(0.7) skew(1deg);

    opacity: 0.5;
  }

  100% {
    transform: rotate(0deg) scale(1) skew(1deg);

    opacity: 0.1;
  }
}

@-moz-keyframes cbh-circle-fill-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);

    opacity: 0.2;
  }

  50% {
    -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);

    opacity: 0.2;
  }

  100% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);

    opacity: 0.2;
  }
}

@-webkit-keyframes cbh-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);

    opacity: 0.2;
  }

  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);

    opacity: 0.2;
  }

  100% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);

    opacity: 0.2;
  }
}

@-o-keyframes cbh-circle-fill-anim {
  0% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);

    opacity: 0.2;
  }

  50% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);

    opacity: 0.2;
  }

  100% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);

    opacity: 0.2;
  }
}

@keyframes cbh-circle-fill-anim {
  0% {
    transform: rotate(0deg) scale(0.7) skew(1deg);

    opacity: 0.2;
  }

  50% {
    transform: rotate(0deg) scale(1) skew(1deg);

    opacity: 0.2;
  }

  100% {
    transform: rotate(0deg) scale(0.7) skew(1deg);

    opacity: 0.2;
  }
}

@keyframes cbh-circle-img-anim {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }

  100%,
  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
}

@-moz-keyframes cbh-circle-img-anim {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }

  10% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }

  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }

  100%,
  50% {
    -moz-transform: rotate(0deg) scale(1) skew(1deg);
  }
}

@-webkit-keyframes cbh-circle-img-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
  }

  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }

  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }

  100%,
  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
  }
}

@-o-keyframes cbh-circle-img-anim {
  0% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
  }

  10% {
    -o-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20% {
    -o-transform: rotate(25deg) scale(1) skew(1deg);
  }

  30% {
    -o-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  40% {
    -o-transform: rotate(25deg) scale(1) skew(1deg);
  }

  100%,
  50% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
  }
}

.cbh-phone.cbh-green .cbh-ph-circle {
  border-color: #00f2a4;
}

.cbh-phone.cbh-green .cbh-ph-circle-fill {
  background-color: #00f2a4;
}

.cbh-phone.cbh-green .cbh-ph-img-circle1 {
  background-color: #2ecb71;
}

/* password input */

#togglePassword {
  position: absolute;

  right: 45px;

  top: 0;

  bottom: -40px;

  background-color: transparent;

  border: none;

  box-shadow: none;

  outline: none;

  padding: 0;

  cursor: pointer;
}

#togglePassword:focus,
#togglePassword:active {
  outline: none;

  box-shadow: none;

  background-color: transparent;
}

.bg-stripped {
  background-color: #f8f8f8;
}

/* 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-dark-blue {
  background-color: #0d1229;
}

.bg-arsenic-grey {
  background-color: #3c414a !important;
}

.bg-transparent-white-light {
  background-color: rgba(255, 255, 255, 0.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-link {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  width: 30px;

  height: 30px;

  border-radius: 50%;

  text-align: center;

  line-height: 30px;

  background-color: #dc3545;

  border: none;

  color: white;

  padding: 0;
}

.icon-link i {
  font-size: 14px;

  margin: 0;
}

@media (max-width: 768px) {
  .icon-link {
    width: 20px;

    height: 20px;

    line-height: 20px;
  }

  .icon-link i {
    font-size: 11px;
  }
}

.bg-safe-success {
  background-color: #e5f6f3;

  color: #11ae9a;

  border-radius: 20px;

  padding-left: 10px;

  padding-right: 10px;
}

.my-flex-container {
  display: flex;

  justify-content: flex-end;
}

@media (max-width: 768px) {
  .my-flex-container {
    justify-content: center;
  }
}

.bg-warn-danger {
  background-color: #e5f6f3;

  color: #fe0701;

  border-radius: 20px;

  padding-left: 10px;

  padding-right: 10px;
}

.category-database .category-title {
  font-size: 14px;
}

@media (max-width: 768px) {
  .category-database .category-title {
    font-size: 13px;
  }
}

.category-database .data-count {
  font-size: 15px;
}

@media (max-width: 768px) {
  .category-database .data-count {
    font-size: 13px;
  }
}

.image-container {
  position: relative;

  overflow: hidden;

  width: 100%;

  height: 200px;

  display: flex;

  justify-content: center;

  align-items: center;
}

.image-container .image {
  width: 100%;

  height: 200px;

  max-height: 100%;

  object-fit: cover;
}

@media (max-width: 768px) {
  .image-container {
    width: 100%;

    height: 150px;
  }

  .image-container .image {
    width: 100%;

    height: 150px;
  }
}

.image-container-col-full {
  position: relative;

  overflow: hidden;

  width: 100%;

  height: 250px;

  display: flex;

  justify-content: center;

  align-items: center;
}

.image-container-col-full .image {
  width: 100%;

  min-height: 250px;

  height: auto;
}

@media (max-width: 768px) {
  .image-container-col-full {
    width: 100%;

    height: 300px;
  }

  .image-container-col-full .image {
    width: 100%;

    min-height: 300px;

    height: auto;
  }
}

.image-container-col-2-full {
  position: relative;

  overflow: hidden;

  width: 100%;

  height: 220px;

  display: flex;

  justify-content: center;

  align-items: center;
}

.image-container-col-2-full .image {
  width: 100%;

  min-height: 220px;

  height: auto;
}

@media (max-width: 768px) {
  .image-container-col-2-full {
    width: 100%;

    height: 150px;
  }

  .image-container-col-2-full .image {
    width: 100%;

    min-height: 150px;

    height: auto;

    margin-bottom: 10px;
  }
}

.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 {
  padding-top: 30px;
}

.footer-dark a:hover {
  color: var(--white);
}

footer ul li {
  margin-bottom: 0;
}

.copyright p {
  font-size: 11px;
}

@media (max-width: 768px) {
  .copyright p {
    font-size: 9px;
  }
}

.layer-background-dark {
  position: relative;
}

.layer-background-dark::before {
  content: "";

  position: absolute;

  inset: 0;

  background-color: rgb(0, 0, 0, 0.6);
}

.second-overlay {
  position: relative;
}

.second-overlay::before {
  content: "";

  position: absolute;

  inset: 0;

  background-color: rgb(130, 93, 51, 0.6);
}

.custom-overlay {
  position: relative;
}

.custom-overlay::before {
  content: "";

  position: absolute;

  inset: 0;

  background: rgb(44, 49, 144, 0.55);
}

.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(30, 55, 100, 0.5);
}

/* background image custom */

.first-background-section {
  position: relative;

  z-index: 1;

  overflow: hidden;
}

.first-background-section::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: url("../images/first-background-section.webp");

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  z-index: -1;

  opacity: 0.45;
}

.second-background-section {
  position: relative;

  z-index: 1;

  overflow: hidden;
}

.second-background-section::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(rgb(47, 79, 170, 0.7), rgb(47, 79, 170, 0.7)),
    url("../images/second-background-section.webp") no-repeat center
      center/cover;

  z-index: -1;
}

/* 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;
  }
}

/* welcome text */

.about-image::before {
  content: "";

  position: absolute;

  top: -20px;

  left: -20px;

  width: 100%;

  height: 100%;

  border-radius: 6px;

  background-color: var(--main-color);

  z-index: -1;
}

.section-heading {
  font-size: 28px !important;

  line-height: 30px;
}

@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: 18px !important;

  line-height: 20px;
}

@media (max-width: 768px) {
  .section-subheading {
    font-size: 14px !important;
  }
}

.custom-hover-scale-img {
  transition: 0.3s;
}

.custom-hover-scale-img .image {
  transition: 0.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;
}

@media (max-width: 768px) {
  .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;
  }
}

.badge {
  display: inline-block;
  padding: 10px 15px;
  background: linear-gradient(to right, #0097b8, #0096b883);
  color: white;
  font-weight: 400;
  /* font-family: sans-serif; */
  font-size: 13px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.client-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.client-card img {
  max-height: 100%;
  max-width: 100%;
  height: 100px;
  object-fit: contain;  
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
}

.swiper-slide{
  background: transparent;
  /* display: flex !important; */
  justify-content: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* aspect-ratio: 1/1; */
}
/* .swiper-slide.swiper-slide-active{
  width: 45% !important;
}
.swiper-slide.swiper-slide-next{
  width: 45% !important;
} */

.client-card-mobile {
  background: white;
  /* border-radius: 10px; */
  /* padding: 10px; */
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.client-logo-mobile {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.border-content{
  border-bottom: 3px solid #0097b8;
}

.img-section{
    position:absolute;
    width:100%;
    top:0;
    left:0;
    opacity:0.5;
}

.section-divider {
  height: 1px;
  background: #eee;
  box-shadow: 0 -6px 10px 4px rgba(0, 0, 0, 0.1); /* shadow ke atas */
  margin: 40px 0;
}


.sticky-desktop{
    position: sticky;
    top: 5rem;
}


.truncate-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}


/*=================================*/
.background-1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background-image: 
    linear-gradient(to top, #ffffff, #89cacc, #ffffff), linear-gradient(to bottom, #ffffff, #89cacc, #ffffff);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  opacity: 1;
}


/*======================*/
/*Floating WA*/

.chatwpp {
    display: flex;
    flex-direction: column-reverse;
    position: fixed;
    bottom: 40px;
    left: 40px;
    text-align: left;
    gap:20px;
    z-index:99;
}
.chatwpp_icon {
  width: 50px;
  cursor: pointer;
  transition: 0.2s ease-in;
}
.chatwpp_options,
.chatwpp_options li {
  list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    width: 200px;
    margin-bottom: 5px;

}
.chatwpp_options li a {
  background: #25d366;
  border-radius: 5px;
  color: white;
  line-height: 3.3em;
  padding-left: 10px;
  text-decoration: none;
  transition: 0.2s ease-in;
}
.chatwpp_options li a:hover{
  background: #17ac4f;
    color: white;
}
.chatwpp_hidden {
  display: none
}

.dropdown-item.active, .dropdown-item:active{
    color:white;
    background-color:#25d366;
}

/* ========================
Animaion
======================== */

 .animate li {
  position: relative;
  -webkit-animation: comingIn 1s ease-in-out;
  animation: comingIn 0.9s ease-in-out forwards;
}
.animate li:nth-child(n+1) {
  opacity: 0;
}

/* Select delay for items */
.animate li:nth-child(2) {animation-delay: 0.2s;}
.animate li:nth-child(3) {animation-delay: 0.4s;}
.animate li:nth-child(4) {animation-delay: 0.6s;}
.animate li:nth-child(5) {animation-delay: 0.8s;}

/* Keyframes  */

@keyframes comingIn {
  0% {
    opacity: 0;
    right: -150px;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}

@media screen and (max-width: 600px) {
    .chatwpp {
        bottom: 20px;
        left: 20px;
    }
}