@keyframes loader-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}

@-webkit-keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@-moz-keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@-ms-keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@-o-keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

/*== heartBeat ==*/

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  40% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    -o-transform: scale(1.04);
    transform: scale(1.04);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes cluster-animation {
  0%,
  100% {
    -webkit-box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  }
  50% {
    -webkit-box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
  }
}

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

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a {
  color: rgb(1, 161, 255);
}
a,
a:hover,
a:focus {
  text-decoration: none;
}

input:focus,
button,
button:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #333f57;
}

p {
  margin: 0;
}

body {
  font-size: 16px;
  line-height: 24px;
  font-family: "Work Sans", sans-serif;
  color: #808996;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500;
}

/*---------------- container ----------------*/

.container {
  max-width: 1200px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1360px) {
  .container {
    max-width: 98%;
  }
}

.opacity-8 {
  opacity: 0.8 !important;
}

.top-0 {
  top: 0 !important;
}

.right-0 {
  right: 0 !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.left-0 {
  left: 0 !important;
}

.rounded-12 {
  -webkit-border-radius: 12px !important;
  -moz-border-radius: 12px !important;
  border-radius: 12px !important;
}

.rounded-30 {
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
}

/*----------- z-index ----------------*/

.z-index-0 {
  z-index: 0 !important;
}

.z-index-2 {
  z-index: 2 !important;
}

.z-index-3 {
  z-index: 3 !important;
}

/*----------- hover effects ----------------*/

.hover-y {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.hover-y:hover {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

/*---------------- text color ----------------*/

.text-gray {
  color: #808996 !important;
}

.text-black {
  color: #333f57 !important;
}

/*---------------- border color ----------------*/

.border-gray {
  border-color: rgba(128, 137, 150, 0.1) !important;
}

.border-top-gray {
  border-top-color: rgba(128, 137, 150, 0.1) !important;
}

.border-right-gray {
  border-right-color: rgba(128, 137, 150, 0.1) !important;
}

.border-bottom-gray {
  border-bottom-color: rgba(128, 137, 150, 0.1) !important;
}

.border-left-gray {
  border-left-color: rgba(128, 137, 150, 0.1) !important;
}

/*---------------- fonts ----------------*/

.font-size-100 {
  font-size: 100px !important;
}

.font-size-50 {
  font-size: 50px !important;
}

.font-size-45 {
  font-size: 45px !important;
}

.font-size-40 {
  font-size: 40px !important;
}

.font-size-35 {
  font-size: 35px !important;
}

.font-size-30 {
  font-size: 30px !important;
}

.font-size-28 {
  font-size: 28px !important;
}

.font-size-27 {
  font-size: 27px !important;
}

.font-size-26 {
  font-size: 26px !important;
}

.font-size-25 {
  font-size: 25px !important;
}

.font-size-24 {
  font-size: 24px !important;
}

.font-size-23 {
  font-size: 23px !important;
}

.font-size-22 {
  font-size: 22px !important;
}

.font-size-21 {
  font-size: 21px !important;
}

.font-size-20 {
  font-size: 20px !important;
}

.font-size-19 {
  font-size: 19px !important;
}

.font-size-18 {
  font-size: 18px !important;
}

.font-size-17 {
  font-size: 17px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.font-size-15 {
  font-size: 15px !important;
}

.font-size-14 {
  font-size: 14px !important;
}

.font-size-13 {
  font-size: 13px !important;
}

.font-size-12 {
  font-size: 12px !important;
}

.font-size-11 {
  font-size: 11px !important;
}

/*---------------- font-weight ----------------*/

.font-weight-thin {
  font-weight: 200 !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-regular {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

/* .font-weight-semi-bold {
    font-weight: 600 !important;
} */
/* 
.font-weight-bold {
    font-weight: 700 !important;
} */

/*---------------- line-height ----------------*/

.line-height-30 {
  line-height: 30px !important;
}

.line-height-28 {
  line-height: 28px !important;
}

.line-height-26 {
  line-height: 26px !important;
}

.line-height-25 {
  line-height: 25px !important;
}

.line-height-24 {
  line-height: 24px !important;
}

.line-height-22 {
  line-height: 22px !important;
}

.line-height-20 {
  line-height: 20px !important;
}

.line-height-18 {
  line-height: 18px !important;
}

/*---------------- spacing ----------------*/

.padding-top-200px {
  padding-top: 200px;
}

.padding-top-190px {
  padding-top: 190px;
}

.padding-top-180px {
  padding-top: 180px;
}

.padding-top-170px {
  padding-top: 170px;
}

.padding-top-160px {
  padding-top: 160px;
}

.padding-top-150px {
  padding-top: 150px;
}

.padding-top-140px {
  padding-top: 140px;
}

.padding-top-130px {
  padding-top: 130px;
}

.padding-top-120px {
  padding-top: 120px;
}

.padding-top-110px {
  padding-top: 110px;
}

.padding-top-100px {
  padding-top: 100px;
}

.padding-top-95px {
  padding-top: 95px;
}

.padding-top-90px {
  padding-top: 90px;
}

.padding-top-85px {
  padding-top: 85px;
}

.padding-top-80px {
  padding-top: 80px;
}

.padding-top-70px {
  padding-top: 70px;
}

.padding-top-60px {
  padding-top: 60px;
}

.padding-top-50px {
  padding-top: 50px;
}

.padding-top-50px {
  padding-top: 50px;
}

.padding-top-45px {
  padding-top: 45px;
}

.padding-top-40px {
  padding-top: 40px;
}

.padding-top-35px {
  padding-top: 35px;
}

.padding-top-30px {
  padding-top: 30px;
}

.padding-top-20px {
  padding-top: 20px;
}

.padding-top-10px {
  padding-top: 10px;
}

.padding-bottom-200px {
  padding-bottom: 200px;
}

.padding-bottom-190px {
  padding-bottom: 190px;
}

.padding-bottom-180px {
  padding-bottom: 180px;
}

.padding-bottom-170px {
  padding-bottom: 170px;
}

.padding-bottom-160px {
  padding-bottom: 160px;
}

.padding-bottom-150px {
  padding-bottom: 150px;
}

.padding-bottom-140px {
  padding-bottom: 140px;
}

.padding-bottom-130px {
  padding-bottom: 130px;
}

.padding-bottom-120px {
  padding-bottom: 120px;
}

.padding-bottom-110px {
  padding-bottom: 110px;
}

.padding-bottom-100px {
  padding-bottom: 100px;
}

.padding-bottom-95px {
  padding-bottom: 95px;
}

.padding-bottom-90px {
  padding-bottom: 90px;
}

.padding-bottom-85px {
  padding-bottom: 85px;
}

.padding-bottom-80px {
  padding-bottom: 80px;
}

.padding-bottom-70px {
  padding-bottom: 70px;
}

.padding-bottom-60px {
  padding-bottom: 60px;
}

.padding-bottom-50px {
  padding-bottom: 50px;
}

.padding-bottom-45px {
  padding-bottom: 45px;
}

.padding-bottom-40px {
  padding-bottom: 40px;
}

.padding-bottom-35px {
  padding-bottom: 35px;
}

.padding-bottom-30px {
  padding-bottom: 30px;
}

.padding-bottom-20px {
  padding-bottom: 20px;
}

.padding-bottom-10px {
  padding-bottom: 10px;
}

.padding-right-100px {
  padding-right: 100px;
}

.padding-right-95px {
  padding-right: 95px;
}

.padding-right-90px {
  padding-right: 90px;
}

.padding-right-85px {
  padding-right: 85px;
}

.padding-right-80px {
  padding-right: 80px;
}

.padding-right-70px {
  padding-right: 70px;
}

.padding-right-60px {
  padding-right: 60px;
}

.padding-right-55px {
  padding-right: 55px;
}

.padding-right-50px {
  padding-right: 50px;
}

.padding-right-45px {
  padding-right: 45px;
}

.padding-right-40px {
  padding-right: 40px;
}

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

.padding-left-100px {
  padding-left: 100px;
}

.padding-left-95px {
  padding-left: 95px;
}

.padding-left-90px {
  padding-left: 90px;
}

.padding-left-85px {
  padding-left: 85px;
}

.padding-left-80px {
  padding-left: 80px;
}

.padding-left-70px {
  padding-left: 70px;
}

.padding-left-60px {
  padding-left: 60px;
}

.padding-left-55px {
  padding-left: 55px;
}

.padding-left-50px {
  padding-left: 50px;
}

.padding-left-45px {
  padding-left: 45px;
}

.padding-left-40px {
  padding-left: 40px;
}

.padding-left-30px {
  padding-left: 30px;
}

/*===== margin ====*/

.margin-top-200px {
  margin-top: 200px;
}

.margin-top-190px {
  margin-top: 190px;
}

.margin-top-180px {
  margin-top: 180px;
}

.margin-top-160px {
  margin-top: 160px;
}

.margin-top-150px {
  margin-top: 150px;
}

.margin-top-140px {
  margin-top: 140px;
}

.margin-top-130px {
  margin-top: 130px;
}

.margin-top-120px {
  margin-top: 120px;
}

.margin-top-110px {
  margin-top: 110px;
}

.margin-top-100px {
  margin-top: 100px;
}

.margin-top-95px {
  margin-top: 95px;
}

.margin-top-90px {
  margin-top: 90px;
}

.margin-top-85px {
  margin-top: 85px;
}

.margin-top-80px {
  margin-top: 80px;
}

.margin-top-70px {
  margin-top: 70px;
}

.margin-top-60px {
  margin-top: 60px;
}

.margin-top-55px {
  margin-top: 55px;
}

.margin-top-50px {
  margin-top: 50px;
}

.margin-top-45px {
  margin-top: 45px;
}

.margin-top-40px {
  margin-top: 40px;
}

.margin-top-35px {
  margin-top: 35px;
}

.margin-top-30px {
  margin-top: 30px;
}

.margin-top-20px {
  margin-top: 20px;
}

.margin-top-10px {
  margin-top: 10px;
}

.margin-bottom-200px {
  margin-bottom: 200px;
}

.margin-bottom-190px {
  margin-bottom: 190px;
}

.margin-bottom-180px {
  margin-bottom: 180px;
}

.margin-bottom-170px {
  margin-bottom: 170px;
}

.margin-bottom-160px {
  margin-bottom: 160px;
}

.margin-bottom-150px {
  margin-bottom: 150px;
}

.margin-bottom-140px {
  margin-bottom: 140px;
}

.margin-bottom-130px {
  margin-bottom: 130px;
}

.margin-bottom-120px {
  margin-bottom: 120px;
}

.margin-bottom-110px {
  margin-bottom: 110px;
}

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

.margin-bottom-95px {
  margin-bottom: 95px;
}

.margin-bottom-90px {
  margin-bottom: 90px;
}

.margin-bottom-85px {
  margin-bottom: 85px;
}

.margin-bottom-80px {
  margin-bottom: 80px;
}

.margin-bottom-70px {
  margin-bottom: 70px;
}

.margin-bottom-60px {
  margin-bottom: 60px;
}

.margin-bottom-50px {
  margin-bottom: 50px;
}

.margin-bottom-55px {
  margin-bottom: 55px;
}

.margin-bottom-45px {
  margin-bottom: 45px;
}

.margin-bottom-40px {
  margin-bottom: 40px;
}

.margin-bottom-35px {
  margin-bottom: 35px;
}

.margin-bottom-30px {
  margin-bottom: 30px;
}

.margin-bottom-20px {
  margin-bottom: 20px;
}

.margin-bottom-10px {
  margin-bottom: 10px;
}

/*---------------- bg ----------------*/

.bg-gray {
  background-color: #f5f7fc !important;
}

.bg-1 {
  background-color: #8c43ff !important;
}

.bg-2 {
  background-color: #28d5a7 !important;
}

.bg-3 {
  background-color: #f9b851 !important;
}

.bg-4 {
  background-color: #cc08e9 !important;
}

.bg-5 {
  background-color: #2877b5 !important;
}

.bg-6 {
  background-color: #1da1f2 !important;
}

/*=== theme-btn ====*/

.theme-btn {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  padding: 12px 24px;
  background-color: #0d1b2a;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
}

.theme-btn:hover {
  background-color: #0d1b2a;
  color: #fff;
}

/*==== theme-btn-sm ====*/

.theme-btn-sm {
  padding: 6px 20px;
}

/*==== theme-btn-gray ====*/

.theme-btn-gray {
  background-color: #eee;
  color: #333f57;
}

.theme-btn-gray:hover {
  background-color: #ddd;
  color: #333f57;
}

/*==== btn-link ====*/

.btn-link {
  color: #808996;
  font-weight: 500;
  text-decoration: none;
}

.btn-link:hover {
  color: #0d1b2a;
}

/*==== collapse-btn ====*/

.collapse-btn i {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.collapse-btn[aria-expanded="true"] .collapse-icon-show {
  display: none;
}

.collapse-btn[aria-expanded="true"] .collapse-icon-hide {
  display: inline-block;
}

.collapse-icon-hide {
  display: none;
}

/*===== close btn =====*/

.modal-container .close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  background: none !important;
}

.section-padding {
  /* padding-top: 100px; */
  /* padding-bottom: 100px; */
}

.section--padding {
  /* padding-top: 100px;
    padding-bottom: 70px; */
}

.before-none:before,
.after-none:after {
  display: none !important;
}

.cd-words-wrapper b {
  font-weight: 700;
}

/*========= preloader ==========*/

.loader-container {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 99999;
}

.loader-container .loader-ripple {
  position: relative;
  width: 64px;
  height: 64px;
  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%);
}

.loader-container .loader-ripple div {
  position: absolute;
  border: 4px solid #0d1b2a;
  opacity: 1;
  border-radius: 50%;
  animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-container .loader-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

/*========= section-heading ======*/

.sec__title {
  font-size: 36px;
  font-weight: 700;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .sec__title {
    font-size: 30px;
  }
}

.sec__desc {
  font-size: 18px;
  line-height: 28px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sec__title br,
  .sec__desc br {
    display: none;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .sec__title br,
  .sec__desc br {
    display: none;
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .sec__title br,
  .sec__desc br {
    display: none;
  }
}

/*========= select ==========*/

.select-picker.show .btn {
  background-color: transparent !important;
  border-color: rgba(128, 137, 150, 0.6);
}

.select-picker .btn {
  padding: 12px 20px;
  border: 1px solid rgba(128, 137, 150, 0.3);
  background-color: transparent;
}

.select-picker .btn .filter-option-inner-inner {
  white-space: nowrap;
  text-overflow: ellipsis;
}

.select-picker .btn:focus {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
  background-color: transparent !important;
  border-color: rgba(128, 137, 150, 0.6);
}

.select-picker .dropdown-item.active {
  background-color: #0d1b2a;
}

.select-picker .dropdown-item.active:hover {
  color: #fff;
}

/*========= select-picker-sm ==========*/

.select-picker-sm .btn {
  padding: 6px 20px;
}

/*======= daterangepicker ========*/

.daterangepicker:before,
.daterangepicker:after {
  display: none;
}

.daterangepicker thead {
  color: #333f57;
}

.daterangepicker tbody td.available {
  color: #333f57;
  font-weight: 600;
}

.daterangepicker tbody td.available:hover {
  color: #333f57;
}

.daterangepicker tbody td.off {
  color: #808996;
}

.daterangepicker tbody td.active {
  color: #fff;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #0d1b2a;
  color: #fff;
}

/*======= pagination-list ========*/

.pagination-list .page-item.active .page-link {
  background-color: #0d1b2a;
}

.pagination-list .page-item.active .page-link:hover {
  color: #fff;
}

.pagination-list .page-item:first-child .page-link {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-list .page-item:last-child .page-link {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-list .page-link {
  margin-left: 3px;
  border: 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  color: #808996;
}

.pagination-list .page-link:hover {
  color: #333f57;
}

/*======= filter-nav ========*/

.filter-nav li {
  display: inline-block;
}

.filter-nav li a:not(.active) {
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  color: #333f57;
}

.filter-nav li a.active:hover {
  color: #fff;
}

/*======= social-icons ========*/

.social-icons a {
  display: inline-block;
  color: #333f57;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background-color: rgba(128, 137, 150, 0.1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.social-icons a:hover {
  background-color: #0d1b2a;
  color: #fff;
}

/*======= info-list ========*/

.info-list li {
  display: block;
  font-size: 15px;
  color: #808996;
  font-weight: 500;
  margin-bottom: 6px;
}

.info-list li:last-child {
  margin-bottom: 0;
}

.info-list li a {
  color: #808996;
}

.info-list li .icon {
  display: inline-block;
  color: #0d1b2a;
  margin-right: 2px;
  font-size: 14px;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 107, 107, 0.1);
  line-height: 30px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.info-list li:hover a {
  color: #0d1b2a;
}

.info-list li:hover .icon {
  background-color: #0d1b2a;
  color: #fff;
}

/*======== stroke-shape =========*/

.stroke-shape {
  height: 3px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #0d1b2a;
  position: relative;
  width: 45px;
}

.stroke-shape:after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 100%;
  right: 10px;
  width: 4px;
  background-color: #fff;
}

/*======== owl-theme =========*/

.owl-theme .owl-dots .owl-dot:hover span,
.owl-theme .owl-dots .owl-dot.active span {
  background-color: #0d1b2a;
}

.owl-theme .owl-nav [class*="owl-"] {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: #fff !important;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  color: #333f57 !important;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: #0d1b2a !important;
  color: #fff !important;
}

/*======== img-boxes =========*/

.img-boxes img {
  width: 100%;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .img-boxes .img-box-item.mt-4 {
    margin-top: 0 !important;
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .img-boxes .img-box-item.mt-4 {
    margin-top: 0 !important;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .img-boxes .img-box-item {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .img-boxes .img-box-item {
    margin-bottom: 20px;
  }
}

.mobile-img img {
  width: 100%;
}

/*======= list-items ========*/

.list-items li {
  margin-bottom: 7px;
  font-weight: 500;
  color: #808996;
  font-size: 15px;
}

.list-items li:last-child {
  margin-bottom: 0;
}

.list-items li a {
  color: #808996;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.list-items li a:hover {
  color: #0d1b2a;
}

/*======= list-items-underline ========*/

.list-items-underline li a {
  position: relative;
}

.list-items-underline li a:before {
  position: absolute;
  content: "";
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #0d1b2a;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.list-items-underline li a:hover:before {
  right: auto;
  left: 0;
  width: 100%;
}

/*====== tip ======*/

.tip {
  display: inline-block;
  cursor: pointer;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  font-size: 11px;
  line-height: 21px;
  width: 20px;
  height: 20px;
  text-align: center;
  background-color: rgba(128, 137, 150, 0.2);
  color: #808996;
}

blockquote {
  padding: 10px 20px;
  border-left: 5px solid #eee;
}

pre {
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #eee;
  border: 1px solid rgba(128, 137, 150, 0.2);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 5px 10px;
}

/*====== summernote ======*/

.note-editable ul {
  list-style-type: disc;
}

.note-editable ul,
.note-editable ol {
  padding-left: 30px;
}

.note-editor.note-airframe,
.note-editor.note-frame {
  border-color: rgba(128, 137, 150, 0.3);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.note-editor.note-airframe:hover,
.note-editor.note-frame:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.note-toolbar {
  background: rgba(128, 137, 150, 0.1);
}

.note-editor.note-airframe .note-statusbar,
.note-editor.note-frame .note-statusbar {
  background-color: rgba(128, 137, 150, 0.1);
}

.note-btn-group .note-btn {
  border: 1px solid rgba(128, 137, 150, 0.3);
}

.note-color .dropdown-menu {
  padding-left: 0;
  padding-right: 0;
}

/*====== qtyBtn ======*/

.qtyBtn {
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 16px;
  background-color: #fff;
  color: #333f57;
  text-align: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.qtyBtn:hover {
  color: #0d1b2a;
}

/*====== qtyInput ======*/

.qtyInput {
  width: 40px;
  border: 0;
  text-align: center;
  color: #333f57;
  font-weight: 500;
  pointer-events: none;
  font-size: 16px;
  background-color: transparent;
}

/*======== back to top =========*/

#back-to-top {
  position: fixed;
  right: -150px;
  bottom: 40px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
  -moz-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
  box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
  color: #333f57;
  font-size: 20px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

#back-to-top:hover {
  background-color: #ea5555;
  color: #fff;
  border-color: #ea5555;
}

#back-to-top.show-back-to-top {
  right: 30px;
  opacity: 1;
  visibility: visible;
}

/*========== mobile-feature-list ========*/

.mobile-feature-list {
  display: flex;
  flex-wrap: wrap;
}

.mobile-feature-list li {
  width: 50%;
}

/*========== media ========*/

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

/*===== input-group-append =====*/

.input-group .form-icon {
  z-index: 6;
}

.input-group .form--control {
  border-top-left-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
}

.input-group .input-group-append {
  margin-left: -1px;
  display: flex;
}

.input-group .input-group-append .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.note-btn.dropdown-toggle:after {
  content: none;
}

.note-editor .note-toolbar .note-color-all .note-dropdown-menu,
.note-popover .popover-content .note-color-all .note-dropdown-menu {
  min-width: 342px;
}

.note-modal .note-modal-body label {
  padding: 0;
  display: inline-flex;
  gap: 10px;
}

.note-modal-footer {
  height: 50px;
}

/*== rate-progress-bar ==*/

.rate-progress-bar {
  background-color: #f9b851;
}

.rating-total {
  font-size: 60px;
  font-weight: 600;
  color: #333f57;
}

/*====== leave-rating ========*/

.leave-rating {
  display: table;
  border: 1px solid rgba(128, 137, 150, 0.2);
  padding: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.leave-rating input[type="radio"] {
  display: none;
}

.leave-rating input[type="radio"]:hover ~ label:before,
.leave-rating input[type="radio"]:checked ~ label:before {
  color: #f9b851;
  font-weight: 700;
}

.leave-rating label {
  float: right;
  letter-spacing: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 0;
  font-size: 22px;
}

.leave-rating label:before {
  color: #d2d0d0;
  font-weight: 400;
}

/*===== my-tabs ====*/

.my-tabs {
  border-bottom: 0;
}

.my-tabs .nav-item {
  margin-bottom: 0;
  margin-right: 6px;
}

.my-tabs .nav-link {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.my-tabs .nav-link:hover,
.my-tabs .nav-link.active {
  color: #0d1b2a;
  background-color: #fff;
}

/*===== my-tabs-2 ====*/

.my-tabs-2 .nav-link {
  background-color: #eee;
  color: #333f57;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.my-tabs-2 .nav-link:hover,
.my-tabs-2 .nav-link.active {
  color: #fff;
  background-color: #0d1b2a;
}

/* .icon-element {
    display: inline-block;
    width: 75px;
    height: 75px;
    line-height: 50px;
    text-align: center;
    background-color: #0d1b2a;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    font-size: 18px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
} */

.icon-element-lg {
  width: 85px;
  height: 85px;
  line-height: 85px;
  font-size: 30px;
}

.icon-element-sm {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
}

/* .icon-element-bg-slim-1 {
    background-color: rgba(255, 107, 107, 0.1);
    color: #0d1b2a;
} */

.icon-element-bg-slim-2 {
  background-color: rgba(64, 204, 111, 0.1);
  color: #40cc6f;
}

.icon-element-bg-slim-3 {
  background-color: rgba(140, 67, 255, 0.1);
  color: #8c43ff;
}

.icon-element-bg-slim-4 {
  background-color: rgba(40, 213, 167, 0.1);
  color: #28d5a7;
}

.icon-element-bg-slim-5 {
  background-color: rgba(249, 184, 81, 0.1);
  color: #f9b851;
}

.icon-element-bg-slim-6 {
  background-color: rgba(204, 8, 233, 0.1);
  color: #cc08e9;
}

.icon-element-bg-slim-7 {
  background-color: rgba(255, 42, 7, 0.1);
  color: #ff8c2a;
}

.icon-element-bg-slim-8 {
  background-color: rgba(156, 206, 9, 0.1);
  color: #9cce09;
}

.icon-element-bg-slim-9 {
  background-color: rgba(59, 89, 152, 0.1);
  color: #3b5998;
}

.icon-element-bg-slim-10 {
  background-color: rgba(29, 61, 242, 0.1);
  color: #1da1f2;
}

.icon-element-bg-slim-11 {
  background-color: rgba(255, 48, 108, 0.1);
  color: #e1306c;
}

.icon-element-bg-slim-12 {
  background-color: rgba(40, 109, 81, 0.1);
  color: #2877b5;
}

/*====================================================
    contact-form-action
 ====================================================*/

.alert-message {
  display: none;
}

.form-group,
.input-group {
  position: relative;
  margin-bottom: 16px;
}

.form-icon {
  position: absolute;
  top: 17px;
  left: 15px;
  color: #808996;
  z-index: 4;
}

.label-text {
  font-size: 14px;
  color: #333f57;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
}

.form--control {
  height: 50px;
  padding-left: 40px;
  font-size: 15px;
  color: #333f57;
  border: 1px solid rgba(128, 137, 150, 0.3);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.form--control:focus {
  border-color: rgba(128, 137, 150, 0.6);
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
}

.input-group .theme-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: 0;
}

/*====== subscriber-box =======*/

.subscriber-box {
  position: relative;
  padding: 30px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  z-index: 1;
}

.subscriber-box:before,
.subscriber-box:after {
  position: absolute;
  color: rgba(128, 137, 150, 0.2);
  font-family: "Font Awesome 5 Pro";
  font-size: 160px;
  z-index: -1;
}

.subscriber-box:before {
  content: "\f0e0";
  top: 45px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.subscriber-box:after {
  content: "\f040";
  right: 0;
  bottom: 0;
}

/*===== custom-checkbox ====*/

.custom-control-label {
  cursor: pointer;
  font-weight: 400;
}

/*=========== toggle-password =============*/

.toggle-password {
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
}

.toggle-password:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.toggle-password:hover {
  color: #0d1b2a;
}

.toggle-password .eye-off {
  display: none;
}

.toggle-password.active .eye-off {
  display: block;
}

.toggle-password.active .eye-on {
  display: none;
}

/*======== bootstrap-tagsinput =======*/

.bootstrap-tagsinput {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #333f57;
  border-color: rgba(128, 137, 150, 0.3);
  width: 100%;
  font-size: 14px;
  padding: 12px 16px;
}

.bootstrap-tagsinput.focus {
  border-color: rgba(128, 137, 150, 0.6);
}

.bootstrap-tagsinput .tag {
  font-size: 12px;
}

/*======== payment-method =======*/

.payment-method .payment-method-label {
  margin-bottom: 0;
  color: #333f57;
  position: relative;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 30px;
  display: block;
  cursor: pointer;
}

.payment-method .payment-method-label input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.payment-method .payment-method-label:before {
  border: 2px solid #eee;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.payment-method .payment-method-label:after {
  background-color: #0d1b2a;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  content: "";
  position: absolute;
  left: 5px;
  top: 23px;
  width: 8px;
  height: 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.payment-method li {
  background-color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 8px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 1px 8px rgba(82, 85, 90, 0.1);
  box-shadow: 0 1px 8px rgba(82, 85, 90, 0.1);
  margin-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
}

.payment-method li.active .payment-method-label:before {
  border-color: #0d1b2a;
}

.payment-method li.active .payment-method-label:after {
  background-color: #0d1b2a;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.payment-method li.active .expanded-payment-method {
  display: block;
}

.expanded-payment-method {
  display: none;
  font-weight: 400;
  padding-bottom: 14px;
}

.expanded-payment-method p {
  font-size: 15px;
}

.blockquote-item {
  border-left: none;
  background-image: url(../images/video-img.jpg);
  background-size: cover;
  background-position: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  z-index: 1;
  padding: 40px;
  position: relative;
}

.blockquote-item .blockquote__icon {
  position: absolute;
  right: 30px;
  bottom: 20px;
  font-size: 100px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.1);
}

.blockquote-item .blockquote__text {
  line-height: 30px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
}

.blockquote-item .blockquote__meta {
  font-weight: 500;
  margin-top: 16px;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 22px;
}

.blockquote-item .blockquote__meta span {
  color: #808996;
  font-size: 18px;
  margin-left: 5px;
}

.blockquote-item:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333f57;
  opacity: 0.9;
  z-index: -1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/*====================================================
    breadcrumb-area
 ====================================================*/

/* .bread-bg {
    background-image: url("../images/bread-bg.jpg");
} */
.bread-bg {
  position: relative;
  overflow: hidden;
}

.bread-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-image: url(""); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: bgZoom 15s ease-in-out infinite;
  transform-origin: center;
}

/* Gradient overlay */
.bread-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.6),
    /* top color */ rgba(0, 0, 0, 0.3) /* bottom color */
  );
  z-index: 1;
}

.breadcrumb-content {
  position: relative;
  z-index: 2; /* content above overlay */
}

/* Background zoom animation */
@keyframes bgZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.bread-bg-2 {
  background-image: url(../images/bread-bg2.jpg);
}

.breadcrumb-area {
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .breadcrumb-area {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}

/*===== bread-svg =====*/

.bread-svg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

.bread-svg svg {
  width: 100%;
  height: 100px;
  stroke: none;
  fill: #fff;
}

/*===== bread-list =====*/

.bread-list li {
  display: inline-block;
  text-transform: capitalize;
  position: relative;
  padding-right: 22px;
  color: #fff;
}

.bread-list li:last-child {
  padding-right: 0;
}

.bread-list li:last-child:after {
  display: none;
}

.bread-list li a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}

.bread-list li a:hover {
  color: #0d1b2a;
}

.bread-list li:after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Pro", sans-serif;
  top: 0;
  right: 5px;
}

/*===== bread-list-black =====*/

.bread-list-black li {
  color: #808996;
}

.bread-list-black li a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #333f57;
}

/*========= listing-info ========*/

.listing-info li {
  margin-right: 2px;
  display: inline-block;
}

.listing-info li .average-symbol {
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.listing-info li .listing-tag {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
}

.video-play-btn {
  position: relative;
}

.video-play-btn .icon-element-lg {
  font-size: 20px;
}

.video-play-btn:before,
.video-play-btn:after {
  position: absolute;
  content: "";
  top: -20px;
  left: -20px;
  bottom: -20px;
  right: -20px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: play-button-pulse 1.8s linear infinite;
  -moz-animation: play-button-pulse 1.8s linear infinite;
  animation: play-button-pulse 1.8s linear infinite;
  opacity: 0;
  z-index: -1;
}

.video-play-btn:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

/*======= header-area ========*/

.header-area {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1010;
}

.header--area {
  position: relative;
  top: auto;
}
.main-header {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

/*======= main-header =======*/

.main-header.fixed-top {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  background-color: #000;
}

.main-header.fixed-top.unfixed {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
}

/*======= main-header-action-wrap =======*/

.main-header-action-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

/*======= logo =======*/

.logo {
  z-index: 2;
}
.logo a img {
  width: 100%;
  height: 75px;
}

/*======== main-menu =========*/

@media (max-width: 1199px) {
  .main-menu {
    display: none;
  }
}

.main-menu > ul > li {
  display: inline-block;
  margin-right: 25px;
  position: relative;
}

.main-menu > ul > li:last-child {
  margin-right: 0;
}

.main-menu > ul > li > a {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  padding-bottom: 28px;
  margin-bottom: -28px;
}

.main-menu > ul > li > a .fa-angle-down {
  font-size: 13px;
}

.main-menu > ul > li > a:hover {
  color: #0d1b2a;
}

.main-menu > ul > li .dropdown-menu-item {
  position: absolute;
  top: 45px;
  left: 0;
  width: 200px;
  background-color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

.main-menu > ul > li .dropdown-menu-item li {
  display: block;
}

.main-menu > ul > li .dropdown-menu-item li a {
  color: #808996;
  display: block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: capitalize;
  padding: 5px 25px;
  font-weight: 500;
  position: relative;
  font-size: 15px;
}

.main-menu > ul > li .dropdown-menu-item li a:hover {
  color: #0d1b2a;
  padding-left: 30px;
}

.main-menu > ul > li:hover .dropdown-menu-item {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.main-menu-black ul li a {
  color: #333f57;
}

/*======== nav-right-content =========*/

.nav-right-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .nav-right-content {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 1199px) {
  .nav-right-content .author-access-list {
    display: none;
  }
}

.author-access-list a {
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 600;
}

.author-access-list a:hover {
  color: #0d1b2a;
}

.author-access-list-black a {
  color: #333f57;
}

/*======== side-menu-open =======*/

.side-menu-open {
  width: 40px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-align: center;
  font-size: 22px;
}

@media (max-width: 1199px) {
  .side-menu-open {
    display: block;
  }
}

.side-menu-open-black {
  background-color: rgba(128, 137, 150, 0.2);
  color: #333f57;
}

/*===== off-canvas =====*/

.off-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100vh;
  background-color: #fff;
  overflow-x: hidden;
  z-index: 1034;
  -webkit-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  -ms-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  -webkit-box-shadow: 0 0 10px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 10px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 10px rgba(82, 85, 90, 0.1);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  padding: 20px;
}

.off-canvas.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

/*===== off-canvas-menu ======*/

.off-canvas-menu li a {
  color: #808996;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 7px;
  padding-bottom: 7px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  text-transform: capitalize;
}

.off-canvas-menu li a:hover {
  color: #0d1b2a;
}

.off-canvas-menu li .off-canvas-sub-menu {
  display: none;
  padding-left: 20px;
}

.off-canvas-menu li .off-canvas-sub-menu li a {
  padding-top: 4px;
  padding-bottom: 4px;
}

.off-canvas-menu li.active .sub-menu-toggler {
  background-color: #0d1b2a;
  color: #fff;
}

.off-canvas-menu li.active .sub-menu-toggler::before {
  content: "\f106";
}

/*===== off-canvas-close =====*/

.off-canvas-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: #333f57;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.off-canvas-close:hover {
  color: #0d1b2a;
}

/*===== sub-menu-toggler =====*/

.sub-menu-toggler {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background-color: rgba(128, 137, 150, 0.12);
  display: block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.sub-menu-toggler:hover {
  background-color: #0d1b2a;
  color: #fff;
}

.modal-container.fade .modal-dialog {
  -webkit-transform: scale(0.8) translate(0, 0);
  -moz-transform: scale(0.8) translate(0, 0);
  -ms-transform: scale(0.8) translate(0, 0);
  -o-transform: scale(0.8) translate(0, 0);
  transform: scale(0.8) translate(0, 0);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

/* modal container */

.note-modal .modal-content,
.modal-container .modal-content {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.note-modal .modal-header,
.modal-container .modal-header {
  border-bottom-color: rgba(128, 137, 150, 0.1);
}

.note-modal .modal-title,
.modal-container .modal-title {
  font-size: 18px;
  font-weight: 600;
}

.note-modal button,
.modal-container button {
  border: none;
}

.modal-container .modal-dialog {
  -webkit-transform: scale(0.8) translate(0, 0);
  -moz-transform: scale(0.8) translate(0, 0);
  -ms-transform: scale(0.8) translate(0, 0);
  -o-transform: scale(0.8) translate(0, 0);
  transform: scale(0.8) translate(0, 0);
}

.modal-container.show {
  display: block;
}

.modal-container.show .modal-dialog {
  -webkit-transform: scale(1) translate(0, 0);
  -moz-transform: scale(1) translate(0, 0);
  -ms-transform: scale(1) translate(0, 0);
  -o-transform: scale(1) translate(0, 0);
  transform: scale(1) translate(0, 0);
}

/*====== copy-to-clipboard =======*/

.copy-to-clipboard {
  position: relative;
  z-index: 1;
}

/*====== text-success-message=======*/

.text-success-message {
  background-color: #40cc6f;
  color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 3px 6px;
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  font-size: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.text-success-message.active {
  top: -40px;
  opacity: 1;
  visibility: visible;
}

.text-success-message:after {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  background-color: #40cc6f;
  width: 8px;
  height: 8px;
}

/*====================================================
    pricing-area
 ====================================================*/

.price-item {
  text-align: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 30px;
}

.price-item:hover .price-head:before {
  bottom: -120px;
}

.price-item:hover .price-head:after {
  left: -170px;
}

/*=== price-head ====*/

.price-head {
  background-color: #0d1b2a;
  padding: 46px 0 43px 0;
  position: relative;
  color: #fff;
  overflow: hidden;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.price-head .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  font-size: 15px;
}

.price-head .price__icon {
  font-size: 60px;
}

.price-head .price__title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.price-head:before,
.price-head:after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -60px;
  width: 200px;
  height: 200px;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  opacity: 0.1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.price-head:after {
  bottom: 20px;
  right: auto;
  left: -200px;
  width: 300px;
  height: 300px;
}

/*=== price-content ====*/

.price-content {
  padding: 0 30px 30px 30px;
}

.price-content .price-number {
  position: relative;
  padding-top: 70px;
}

.price-content .price-number .price__value {
  color: #333f57;
  font-size: 50px;
  margin-bottom: 15px;
  font-weight: 600;
}

.price-content .price-number .price__value sup {
  color: #808996;
  font-size: 30px;
}

.price-content .price-number .price__subtitle {
  font-size: 15px;
}

.price-content .price-number:before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  width: 30px;
  height: 30px;
  margin-top: -15px;
  background-color: #0d1b2a;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*=== pricing-active ====*/

.pricing-active .price-head,
.pricing-active .theme-btn,
.pricing-active .price-content .price-number:before {
  background-color: #40cc6f;
}

.pricing-active:hover .price-head,
.pricing-active:hover .price-number:before {
  background-color: #40cc6f;
}

.my-accordion .card {
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  border-radius: 6px !important;
  margin-bottom: 15px;
}

.my-accordion .card-header {
  border-bottom-color: rgba(128, 137, 150, 0.1);
  background-color: transparent;
  padding: 0;
}

.my-accordion .card-header .btn {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: #333f57;
  font-size: 18px;
}

.my-accordion .card-header .btn[aria-expanded="true"] .accordion-icon::before {
  content: "\f068";
}

.my-accordion .card-body {
  font-weight: 400;
}

/*====================================================
    hero-wrapper
 ====================================================*/

.hero-bg {
  background-image: url("../images/hero-bg.jpg");
}

.hero-bg-2 {
  background-image: url("../images/hero-bg2.jpg");
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: #0000007d;
  opacity: 0.6;
  z-index: -1;
}

.hero-wrapper {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 140px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-wrapper {
    padding-top: 130px;
    padding-bottom: 140px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-wrapper {
    padding-top: 130px;
    padding-bottom: 140px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .hero-wrapper {
    padding-top: 130px;
    padding-bottom: 115px;
  }
}

.hero-svg-content {
  position: absolute;
  bottom: -37px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 210px;
  height: 90px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/hero-shape.png");
  color: #333f57;
  font-size: 28px;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

/*====================================================
    hero-wrapper4
 ====================================================*/

.hero-wrapper5 {
  position: relative;
}

.hero-wrapper5:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-color: #f5f7fc;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.hero-heading .sec__title {
  font-size: 45px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-heading .sec__title {
    font-size: 32px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-heading .sec__title {
    font-size: 32px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .hero-heading .sec__title {
    font-size: 26px;
  }
}

.hero-heading .sec__desc {
  font-size: 22px;
  margin-top: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-heading .sec__desc {
    font-size: 18px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-heading .sec__desc {
    font-size: 18px;
    line-height: 27px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .hero-heading .sec__desc {
    font-size: 18px;
    line-height: 27px;
  }
}

/*====================================================
    hiw-area
 ====================================================*/

.hiw-area {
  position: relative;
  z-index: 1;
}

.add-business-item {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -15%;
  width: 33%;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px dashed #eee;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .add-business-item {
    width: 50%;
    bottom: -10%;
  }
}

.add-business-item a {
  display: block;
  width: 100%;
  padding: 35px 20px 27px 20px;
}

.add-business-item a span {
  font-size: 40px;
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin-bottom: 20px;
  background-color: rgba(128, 137, 150, 0.2);
  color: #808996;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.add-business-item a p {
  color: #808996;
  font-size: 16px;
  font-weight: 500;
}

.add-business-item:hover {
  -webkit-transform: translateX(-50%) scale(1.02);
  -moz-transform: translateX(-50%) scale(1.02);
  -ms-transform: translateX(-50%) scale(1.02);
  -o-transform: translateX(-50%) scale(1.02);
  transform: translateX(-50%) scale(1.02);
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .add-business-item:hover {
    -webkit-transform: translateX(0) scale(1.02);
    -moz-transform: translateX(0) scale(1.02);
    -ms-transform: translateX(0) scale(1.02);
    -o-transform: translateX(0) scale(1.02);
    transform: translateX(0) scale(1.02);
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .add-business-item:hover {
    -webkit-transform: translateX(0) scale(1.02);
    -moz-transform: translateX(0) scale(1.02);
    -ms-transform: translateX(0) scale(1.02);
    -o-transform: translateX(0) scale(1.02);
    transform: translateX(0) scale(1.02);
  }
}

/*====================================================
   error-area
 ====================================================*/

.error-area {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.error-area:before,
.error-area:after {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  top: 15px;
  left: 16px;
  background-image: url("../images/dots.png");
  background-size: cover;
  background-position: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.1;
}

.error-area:after {
  left: auto;
  right: 15px;
  bottom: 10px;
  top: auto;
}

.card-svg-shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 120px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  fill: #fff;
  stroke: none;
}

/*======= card ========*/

.card {
  border: 0;
  -webkit-box-shadow: 0 1px 15px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 1px 15px rgba(82, 85, 90, 0.1);
  box-shadow: 0 1px 15px rgba(82, 85, 90, 0.1);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;

  position: relative;
}

.card .icon-element {
  position: relative;
}

.card .icon-element .info-number {
  position: absolute;
  right: -5px;
  top: 0;
  width: 30px;
  height: 30px;
  line-height: 27px;
  background-color: #0d1b2a;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 15px;
}

/*======= card-pattern =====*/

.card-pattern {
  position: relative;
  z-index: 1;
}

.card-pattern:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23333f57' fill-opacity='0.4'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/*======= card-image =====*/

.card-image {
  position: relative;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.card-image .card-img-top {
  width: 100%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.card-image .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  font-weight: 600;
}

.card-cat {
  font-size: 14px;
  color: #808996;
  display: block;
}

.card-cat .icon-element-sm {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
}

.card-cat:hover {
  color: #0d1b2a;
}

.card-title {
  font-size: 14px;
  /* font-weight: 600; */
}

.card-title a {
  color: #333f57;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.card-title a:hover {
  color: #0d1b2a;
}

.author-img {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 4px solid #fff;
  -webkit-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
  -moz-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
  box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
  position: absolute;
  right: 20px;
  top: 0;
  margin-top: -30px;
}

.author-img img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

/*====== post-author ======*/

.post-author a {
  color: #808996;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.post-author a:hover {
  color: #0d1b2a;
}

.post-author img {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 3px solid #fff;
  margin-right: 2px;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

.card-meta a {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  color: #808996;
}

.card-meta a:hover {
  color: #0d1b2a;
}

/*=== card-carousel =====*/

.card-carousel .owl-item {
  padding: 10px;
}

/*=== card-hover-effect =====*/

.card-hover-effect {
  z-index: 1;
  position: relative;
}

.card-hover-effect .card-title,
.card-hover-effect .card-text {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.card-hover-effect:before,
.card-hover-effect:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.card-hover-effect:before {
  background-size: cover;
  background-position: center;
  background-image: url("../images/img4.jpg");
}

.card-hover-effect:after {
  background-color: #000;
}

.card-hover-effect:hover .card-title,
.card-hover-effect:hover .card-text {
  color: #fff;
}

.card-hover-effect:hover:before {
  opacity: 1;
  visibility: visible;
}

.card-hover-effect:hover:after {
  opacity: 0.5;
  visibility: visible;
}

/*=== card-flex =====*/

.card-flex {
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (max-width: 575px) {
  .card-flex {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.card-flex .card-image {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: block;
  border-top-right-radius: 0;
  border-bottom-left-radius: 6px;
}

@media (max-width: 575px) {
  .card-flex .card-image {
    border-top-right-radius: 6px;
    border-bottom-left-radius: 0;
  }
}

.card-flex .card-image img {
  object-fit: cover;
  height: 100%;
}

.card-flex .card-image img.card-img-top {
  border-top-right-radius: 0;
  border-bottom-left-radius: 6px;
}
   .social-contact-div {
      display: flex;
   }

   .social-contact-divul li {
      list-style: none;
   }

   .social-contact-div li a {
      background-color: #f7593761;
      text-align: center;

      font-size: 25px;
      margin: 0 10px;
      display: block;
      border-radius: 50%;
      position: relative;
      overflow: hidden;
      border: 3px solid #fff;
      z-index: 1;
   }

   .social-contact-div li a .icon {
      position: relative;
      transition: .5s;
      z-index: 3;
      color: #fff;
   }

   .social-contact-div li a:hover .icon {
      color: #fff;
      transform: rotateY(360deg);
   }

   .social-contact-divli a:before {
      content: "";
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: #f00;
      transition: .5s;
      z-index: 2;
   }

   .social-contact-div li a:hover:before {
      top: 0;
   }

   .social-icon {
      margin: 5px;
      font-size: 24px;
      color: #000;
      /* black */
      text-decoration: none;
   }

   .social-icon:hover {
      color: #444;
      /* darker black/grey on hover */
   }

   .social-icon i {
      font-size: 24px;
      /* same size for all */
      color: #000;
      /* black color */
   }

   .social-icon:hover i {
      color: #444;
      /* hover effect */
   }

@media (max-width: 575px) {
  .card-flex .card-image img.card-img-top {
    border-top-right-radius: 6px;
    border-bottom-left-radius: 0;
  }
  .share-profile-div{
    text-align: center;
  }
   .social-contact-div li a {
      background-color: #f7593761;
      text-align: center;

      font-size: 15px;
     
   }
}

.card-flex .card-body {
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

/*===== fs-container ====*/

@media (max-width: 1199px) {
  .fs-container {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

/*===== fs-container-item ====*/

@media (max-width: 1199px) {
  .fs-container-item {
    width: 100% !important;
  }
}

@media (max-width: 1199px) {
  .fs-container-item-map {
    height: 400px !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
  }
}

.media-card img {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.media-card .media-title {
  font-size: 16px;
  font-weight: 600;
}

.media-card .media-title a {
  color: #333f57;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.media-card .media-title a:hover {
  color: #0d1b2a;
}

.posts-nav li a {
  position: relative;
  display: inline-block;
  color: #333f57;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.posts-nav li a span {
  display: block;
  color: #808996;
  font-size: 15px;
  margin-bottom: 1px;
  font-weight: 400;
}

.posts-nav li a:after {
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-size: 22px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  -o-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.posts-nav li a:hover {
  color: #0d1b2a;
}

.posts-nav li.prev-post a {
  padding-left: 30px;
}

.posts-nav li.prev-post a:after {
  left: 0;
  content: "\f104";
}

.posts-nav li.prev-post a:hover:after {
  -webkit-transform: translate3d(-5px, -50%, 0);
  -moz-transform: translate3d(-5px, -50%, 0);
  -ms-transform: translate3d(-5px, -50%, 0);
  -o-transform: translate3d(-5px, -50%, 0);
  transform: translate3d(-5px, -50%, 0);
}

.posts-nav li.next-post a {
  padding-right: 30px;
}

.posts-nav li.next-post a:after {
  right: 0;
  content: "\f105";
}

.posts-nav li.next-post a:hover:after {
  -webkit-transform: translate3d(5px, -50%, 0);
  -moz-transform: translate3d(5px, -50%, 0);
  -ms-transform: translate3d(5px, -50%, 0);
  -o-transform: translate3d(5px, -50%, 0);
  transform: translate3d(5px, -50%, 0);
}

/*====================================================
    funfact-area
 ====================================================*/

.funfact-pattern {
  position: relative;
  overflow: hidden;
}

.funfact-pattern:before,
.funfact-pattern:after {
  position: absolute;
  content: "";
  top: -5px;
  left: -10px;
  width: 20%;
  height: 50%;
  background-image: url("../images/dots.png");
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.funfact-pattern:after {
  left: auto;
  right: -10px;
  top: auto;
  bottom: -5px;
}

.fun-bg1 {
  background-color: #28d5a7 !important;
}

.fun-bg2 {
  background-color: #f9b851 !important;
}

.fun-bg3 {
  background-color: #cc08e9 !important;
}

.fun-bg4 {
  background-color: #ff8c2a !important;
}

/*===== counter-item =====*/

.counter-item {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.counter-item .counter-number {
  width: 135px;
  height: 135px;
  line-height: 135px;
  background-color: #eee;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
}

.counter-item .counter-number span {
  font-size: 30px;
  font-weight: 700;
}

.counter-item .counter__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.counter-item.counter-item-layout-2 {
  background-color: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.counter-item.counter-item-layout-2 .counter-number {
  width: auto;
  height: auto;
  line-height: inherit;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
  padding-top: 25px;
  padding-bottom: 25px;
}

.counter-item.counter-item-layout-2 .theme-btn {
  background-color: rgba(51, 63, 87, 0.1);
  color: #333f57;
}

.counter-item.counter-item-layout-2:hover .theme-btn {
  background-color: #333f57;
  color: #fff;
}

/*====== highlight-category ======*/

/* .highlight-category {
    margin: 0 5px 5px 5px;
    display: block;
    color: #333f57;
 
    padding: 18px 12px 12px 12px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    width: 120px;
    text-align: center;
} */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .highlight-category {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .highlight-category {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .highlight-category {
    margin-bottom: 10px;
  }
}

/* .highlight-category:hover {
    background-color: #0d1b2a;
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
    color: #fff;
} */

/* .highlight-category:hover .icon-element {
    color: #0d1b2a;
    background-color: #fff;
} */

/*====== highlight-category-2 ======*/

.highlight-category-2 {
  width: auto;
  padding: 10px 18px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.highlight-category-2 span {
  color: #0d1b2a;
}

.highlight-category-2:hover span {
  color: #fff;
}

/*====== highlight-category-3 ======*/

.highlight-category-3 {
  width: auto;
  /* -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1); */
  margin: 0 0 12px 0;
  padding: 10px;
  font-size: 15px;
}

.highlight-category-3 .badge {
  padding: 5px 10px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  background-color: #0d1b2a;
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}

.highlight-category-3 .highlight-cat-title {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 500;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 25px;
  font-size: 13px;
}

.highlight-category-3:hover {
  border: 1px solid #00000040;
  border-radius: 10px;
}

/* .highlight-category-3:hover .icon-element {
    background-color: #0d1b2a;
    color: #fff;
} */

/* .highlight-category-3:hover .highlight-cat-title {
    opacity: 0;
    visibility: hidden;
}

.highlight-category-3:hover .badge {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
} */

/*======= category-item ==========*/

.category-item {
  margin-bottom: 30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  text-align: center;
  z-index: 1;
}

.category-item .overlay {
  z-index: 1;
}

.category-item .overlay,
.category-item .category-img {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.category-item .category-img {
  width: 100%;
}

.category-item .category-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.category-item .category-content-inner {
  position: absolute;
  width: 100%;
  bottom: -30px;
  left: 0;
  padding-left: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.category-item .cat-title {
  font-size: 18px;
  color: #fff;
}

.category-item .badge {
  padding: 6px 11px;
  border: 2px solid #0d1b2a;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.category-item .badge-2 {
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.1);
}

.category-item:hover .category-content-inner {
  bottom: 20px;
}

.category-item:hover .badge {
  background-color: #0d1b2a;
}

/*===== cat-list =======*/

.cat-list li {
  display: inline-block;
  margin-right: 25px;
  position: relative;
  color: #fff;
}

.cat-list li span {
  margin-right: 2px;
  font-weight: 700;
}

.cat-list li::after {
  position: absolute;
  content: "-";
  top: -2px;
  right: -19px;
  font-size: 24px;
}

.cat-list li:last-child {
  margin-right: 0;
}

.cat-list li:last-child::after {
  display: none;
}

/*====================================================
    cta-area
 ====================================================*/

.symble-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.symble-img:nth-child(1) {
  left: 5%;
  top: 5%;
}

.symble-img:nth-child(2) {
  left: 10%;
  top: auto;
  bottom: 8%;
}

.symble-img:nth-child(3) {
  left: auto;
  right: 8%;
  top: 5%;
}

.symble-img:nth-child(4) {
  left: auto;
  right: 11%;
  top: auto;
  bottom: 2%;
}

/*====================================================
    cta-area3
 ====================================================*/

.cta-area3 {
  position: relative;
  z-index: 2;
}

.cta-area3:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23ffffff' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/*====================================================
    dashboard-nav
 ====================================================*/

/*===== edit-profile-photo ======*/

.edit-profile-photo .profile-img {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 200px;
}

/*====================================================
   clientlogo-area
 ====================================================*/

.client-logo-item {
  display: inline-block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px 20px;
}

.client-logo-item img {
  opacity: 0.4;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.client-logo-item:hover {
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
}

.client-logo-item:hover img {
  opacity: 1;
}

.comment-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}

.comment-title a {
  color: #333f57;
}

.comment-meta {
  font-size: 15px;
}

.comment-desc,
.comment-meta {
  font-weight: 400;
}

/*===== review-photos =====*/

.review-photos {
  margin-bottom: 5px;
}

.review-photos a {
  width: 15%;
  margin-right: 10px;
  margin-bottom: 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.review-photos a img {
  width: 100%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/*===== feedback-box =====*/

.feedback-box .theme-btn {
  border: 1px solid rgba(128, 137, 150, 0.3);
  color: #808996;
  margin-right: 6px;
  background-color: transparent;
  font-weight: 500;
}

.feedback-box .theme-btn:hover {
  background-color: rgba(128, 137, 150, 0.1);
  color: #333f57;
}

.feedback-box:last-child {
  margin-right: 0;
}

/*===== comment-reply =====*/

.comment-reply {
  width: calc(100% - 85px);
  border-left: 2px solid rgba(128, 137, 150, 0.3);
  padding-left: 20px;
  margin-left: auto;
}

/*===== badge-pill =====*/

.badge-pill {
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 160px;
}

/*===== label =====*/

label {
  display: inline-block;
  margin-bottom: 8px;
}

/*===== page-link =====*/

.active > .page-link {
  color: #fff;
}

/*===== textarea =====*/

textarea {
  height: 100px !important;
}

#particles-js {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/*======= file upload ========*/

.file-upload-wrap {
  position: relative;
}

.file-upload-wrap .file-upload-input {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 100%;
  border: 2px dashed rgba(128, 137, 150, 0.2);
  height: 170px;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-indent: -99999px;
}

.file-upload-wrap .file-upload-input:hover {
  border-color: rgba(128, 137, 150, 0.5);
  background-color: rgba(128, 137, 150, 0.04);
}

.file-upload-wrap .file-upload-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  line-height: 170px;
  text-align: center;
  font-size: 18px;
  color: rgba(128, 137, 150, 0.9);
  font-weight: 500;
}

.file-upload-wrap .MultiFile-list {
  margin-top: 20px;
}

.file-upload-wrap .MultiFile-list > .MultiFile-label {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: rgba(128, 137, 150, 0.06);
  display: inline-block;
  border: 2px solid rgba(128, 137, 150, 0.1);
  padding: 16px;
  position: relative;
  width: 100%;
}

.file-upload-wrap .MultiFile-list > .MultiFile-label + .MultiFile-label {
  margin-top: 20px;
}

.file-upload-wrap .MultiFile-list > .MultiFile-label > span {
  display: flex;
  flex-wrap: wrap;
}

.file-upload-wrap .MultiFile-list span.MultiFile-label {
  box-shadow: 0 0.2rem 0.7rem 0 rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  margin: 10px;
  width: 30%;
}

.file-upload-wrap .MultiFile-list .MultiFile-remove {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  background-color: #fff;
  color: #333f57;
  width: 30px;
  height: 30px;
  text-align: center;
  top: -16px;
  right: -16px;
  z-index: 1;
}

.file-upload-wrap .MultiFile-list .MultiFile-remove:hover {
  color: #0d1b2a;
}

.file-upload-wrap .MultiFile-list .MultiFile-title {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.file-upload-wrap .MultiFile-list .MultiFile-preview {
  max-width: 100% !important;
  max-height: 100% !important;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  height: 100px;
  object-fit: cover;
}

/*======== file-upload-wrap-layout-2 =======*/

.file-upload-wrap-layout-2 .file-upload-input {
  width: 170px;
  border: 1px solid rgba(128, 137, 150, 0.1);
  height: 50px;
  background-color: rgba(128, 137, 150, 0.04);
}

.file-upload-wrap-layout-2 .file-upload-text {
  line-height: 50px;
  font-size: 16px;
  width: auto;
  padding-left: 20px;
}

/*======== file-upload-wrap-3 =======*/

.file-upload-wrap-3 .file-upload-input {
  width: 30px;
  border: 0;
  height: 25px;
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.file-upload-wrap-3 .file-upload-input:hover {
  background-color: transparent;
}

.file-upload-wrap-3 .file-upload-text {
  line-height: 27px;
  font-size: 18px;
}

.file-upload-wrap-3 .MultiFile-list {
  position: absolute;
  right: 0;
  width: 1000px;
  bottom: 55px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .file-upload-wrap-3 .MultiFile-list {
    width: 310px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .file-upload-wrap-3 .MultiFile-list {
    width: 310px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .file-upload-wrap-3 .MultiFile-list {
    width: 310px;
  }
}

.file-upload-wrap-3 .MultiFile-list > .MultiFile-label {
  background-color: #fff;
  -webkit-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 10px 40px rgba(82, 85, 90, 0.1);
}

/*======== file-upload-wrap-3 =======*/

.file-upload-wrap-4 .file-upload-input {
  height: 100px;
}

.file-upload-wrap-4 .file-upload-text {
  line-height: 100px;
  font-size: 16px;
}

/*====== edit-profile-photo =======*/

.edit-profile-photo .file-upload-wrap .MultiFile-list .MultiFile-preview {
  max-width: 10rem !important;
  max-height: 10rem !important;
}

.random-img {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 10px 30px rgba(255, 77, 121, 0.1);
  -moz-box-shadow: 0 10px 30px rgba(255, 77, 121, 0.1);
  box-shadow: 0 10px 30px rgba(255, 77, 121, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .random-img {
    display: none;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .random-img {
    display: none;
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .random-img {
    display: none;
  }
}

.random-img:nth-child(1) {
  top: 4%;
  left: 2%;
}

.random-img:nth-child(2) {
  top: 47%;
  left: 6%;
}

.random-img:nth-child(3) {
  top: auto;
  bottom: 10%;
  left: 20%;
}

.random-img:nth-child(4) {
  top: -10px;
  left: auto;
  right: -20px;
}

.random-img:nth-child(5) {
  top: 33%;
  left: auto;
  right: 20%;
}

.random-img:nth-child(6) {
  top: auto;
  left: auto;
  right: 5%;
  bottom: 15%;
}

/*========= testimonial-item =========*/

.testimonial-item .testi__img {
  width: 90px !important;
  height: 90px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
}

.testimonial-item .testi__img img {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.testimonial-item .testi-comment {
  background-color: #fff;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  position: relative;
  padding: 30px;
  margin-bottom: 42px;
}

.testimonial-item .testi-comment .testi__desc {
  font-size: 18px;
  line-height: 30px;
}

.testimonial-item .testi-comment:before {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  width: 18px;
  height: 18px;
  background-color: #fff;
}

.testimonial-item .tesi__title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 17px;
  margin-bottom: 15px;
}

.testimonial-item .testi__meta {
  font-size: 14px;
  text-transform: capitalize;
  padding: 6px 17px;
  border: 1px solid #eee;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.user-avatar {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  object-fit: cover;
}

/*===== user-module-list =====*/

.user-module-list {
  border-top: 1px solid rgba(128, 137, 150, 0.1);
  border-bottom: 1px solid rgba(128, 137, 150, 0.1);
}

.user-module-list li {
  font-size: 14px;
  padding: 6px 15px;
}

.user-module-list li:not(:last-child) {
  border-right: 1px solid rgba(128, 137, 150, 0.1);
}

.user-module-list li span {
  display: block;
  color: #333f57;
  margin-bottom: 2px;
}

.height-100vh {
  height: 100vh;
}

.height-500 {
  height: 500px;
}

.height-300 {
  height: 300px;
}

/*==== zoom-control ====*/

.zoom-control {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

.zoom-control div:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.zoom-control div:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom: 0;
}

.zoom-in,
.zoom-out {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  text-align: center;
  color: #333f57;
  cursor: pointer;
  font-size: 16px;
}

.zoom-in:hover,
.zoom-out:hover {
  background-color: #eee;
}

/*======= popup-box ========*/

.popup-box {
  background-color: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  position: relative;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.popup-box:after {
  position: absolute;
  content: "";
  bottom: -12px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #fff;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*===== close-button =====*/

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: #fff;
  text-align: center;
  line-height: 25px;
  color: #333f57;
  font-size: 15px;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.close-button:hover {
  color: #0d1b2a;
}

/*===== popup-box-img-container =====*/

.popup-box-img-container img {
  width: 100%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

/*===== popup-box-content =====*/

.popup-box-content {
  padding: 15px;
}

.popup-box-content h3 {
  font-size: 20px;
  margin-bottom: 3px;
  font-weight: 600;
}

.popup-box-content h3 a {
  color: #333f57;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.popup-box-content h3 a:hover {
  color: #0d1b2a;
}

.popup-box-content p {
  font-size: 15px;
  margin-bottom: 3px;
}

.popup-box-content .star-rating {
  font-size: 14px;
}

/*===== popup-box-status =====*/

.popup-box-status {
  font-size: 14px;
  margin-top: 8px;
}

/* star rating */

.star-rating {
  line-height: 18px;
}

.star-rating .star {
  display: inline-block;
  padding: 0;
  float: left;
  margin-right: 4px;
  position: relative;
}

.star-rating .star.half::after,
.star-rating .star::before {
  font-family: "Font Awesome 5 Pro", sans-serif;
  content: "\f005";
  display: block;
  color: #f9b851;
}

.star-rating .star.half::before {
  color: #ddd;
}

.star-rating .star.half::after {
  color: #f9b851;
  position: absolute;
  top: 0;
  width: 50%;
  display: block;
  height: 100%;
  overflow: hidden;
}

.star-rating .star.empty::before {
  color: #ddd;
}

/* rating-counter */

.rating-counter {
  color: #808996;
  padding-left: 5px;
  display: inline-block;
  font-size: 14px;
  position: relative;
  top: -1px;
}

/*== cluster ===*/

.cluster div {
  height: 31px;
  background: #333f57;
  color: #fff;
  font-weight: 600;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.5);
  border: 2px solid #333f57;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  animation: cluster-animation 1.5s infinite;
}

.cluster div:hover {
  background-color: #808996;
}

.tag-list li {
  display: inline-block;
  text-transform: capitalize;
  margin-bottom: 6px;
}

.tag-list li a {
  border: 1px solid rgba(128, 137, 150, 0.2);
  color: #808996;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  padding: 6px 20px;
  display: block;
}

.tag-list li:hover a {
  background-color: #0d1b2a;
  color: #fff;
  border-color: #0d1b2a;
}

.gallery-carousel {
  position: relative;
}

.gallery-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-item img {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/*====== Custom-cotrol  ========*/

.custom-control {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.custom-control::after {
  display: block;
  clear: both;
  content: "";
  box-sizing: border-box;
}

.custom-control .custom-control-input {
  margin-left: -1.5em;
  width: 1em;
  height: 1em;
  margin-top: 0.3em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  float: left;
  border: 1px solid #adb5bd;
  border-radius: 4px;
}

/*====== CheckBox  ========*/

.custom-checkbox .custom-control-input:checked {
  background-image: url("../images/after-right.svg");
  background-color: #307cf3;
  border-color: #307cf3;
}

/*====== Radio  ========*/

.custom-radio .custom-control-input {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked {
  background-image: url("../images/after-dot.svg");
  background-color: #307cf3;
  border-color: #307cf3;
}

.top-bottom-left-radius-5 {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

/*-========= select02 style  ==========-*/

.select2-dropdown .select2-search {
  padding: 8px;
}

.select2-dropdown .select2-search__field {
  border-radius: 5px;
}

.select2-dropdown .select2-results__option--highlighted {
  background-color: initial !important;
  color: #0d1b2a !important;
}

.select2-dropdown .select2-results__option--selected {
  background: #0d1b2a !important;
  color: #fff !important;
}

.select2-container--default {
  width: auto !important;
  background-color: #fff;
  color: #333f57;
  border-radius: 6px;
}

.select2-container--default .select2-dropdown {
  border-color: rgba(127, 136, 151, 0.2);
  z-index: 99 !important;
}

.select2-container--default .select2-dropdown .select2-search__field {
  border-color: rgba(127, 136, 151, 0.2);
}

.select2-container--default .selection .select2-selection--single {
  background-clip: padding-box !important;
  border: 1px solid rgba(128, 137, 150, 0.3);
  padding: 6px 12px;
  position: relative;
  height: 38px;
  background: none;
  border-radius: 6px;
  font-size: 15px;
  align-items: center;
  justify-content: space-between;
  display: flex;
}

.select2-container--default .selection .select2-selection__rendered {
  color: #808996;
  font-weight: 400;
  font-size: 15px;
}

.select2-container--default .selection .select2-selection__arrow {
  position: relative;
}

.select2-container--open {
  z-index: 9999 !important;
}

.select2-container--open .select2-selection--single {
  border: 1px solid #0d1b2a !important;
}

/*========= select2-full-wrapper =========*/

.select2-container-wrapper .select2-container--default {
  width: 100% !important;
  height: 50px !important;
}

.select2-container-wrapper
  .select2-container--default
  .selection
  .select2-selection--single {
  height: 50px;
}

/*====== pattern-bg =======*/

.pattern-bg {
  position: relative;
  z-index: 1;
}

.pattern-bg:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg1.png");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
}

/*======== footer-item ========*/

.footer-item {
  margin-bottom: 30px;
}

.footer-item .footer__title {
  font-size: 18px;
  font-weight: 600;
}

.bounce-anim {
  animation: heartBeat 1000ms infinite linear;
}

/*======== copy-right ========*/

.copy-right {
  font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copy-right {
    justify-content: center !important;
    flex-direction: column;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .copy-right {
    justify-content: center !important;
    flex-direction: column;
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .copy-right {
    justify-content: center !important;
    flex-direction: column;
  }
}

.copy__desc span,
.copy__desc a {
  color: #0d1b2a;
}

.copy__desc a:hover {
  color: #333f57;
}

.top-12 {
  top: 1px;
  font-size: 10px;
}

.top-12 {
  top: 12px;
  margin: 6px;
}

.alphabet-grid .alpha-letter {
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.alpha-letter:hover {
  background: none;
  color: #0d1b2a;
  transform: scale(1.1);
  cursor: pointer;
}
.alpha-letter.active {
  background: none;
  color: #0d1b2a;
  transform: scale(1.1);
}

.bg-orange {
  background-color: #0d1b2a;
  color: #fff;
}

.bg-orange:hover {
  background-color: #0d1b2a;
  color: #fff;
}

.text-orange {
  color: #0d1b2a;
}
.fontsize {
  font-size: 10px !important;
}

.pricing-card {
  border-radius: 1rem;
  overflow: hidden;
  color: #333;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.plan-basic {
  border-top: 5px solid #6c757d;
}

.plan-pro {
  border-top: 5px solid #0d6efd;
}

.plan-enterprise {
  border-top: 5px solid #0d1b2a;
}

.badge-top {
  top: 15px;
  right: 15px;
}

.login-box {
  max-width: 600px;
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: auto;
}

.logo-img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-tabs .nav-link.active {
  background: #0d1b2a;
  color: #fff;
}

.send-btn {
  background: #0d1b2a;
  color: #fff;
  font-weight: 500;
}

.send-btn:hover {
  background: #e05500;
  color: #fff !important;
}

.demo-mode {
  background: #e9f2ff;
  border: 1px solid #cce0ff;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.step-form {
  max-width: 1000px;
  width: 100%;
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin: auto;
}

.progressbar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
}

.progressbar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ddd;
  z-index: 0;
  transform: translateY(-50%);
  border-radius: 4px;
}

.progress-step {
  width: 35px;
  height: 35px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: #555;
  font-weight: bold;
}

.progress-step.active,
.progress-step.complete {
  background: #0d1b2a;
  color: #fff;
}

.progressbar .progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  background: #0d1b2a;
  z-index: 0;
  transform: translateY(-50%);
  border-radius: 4px;
  transition: width 0.4s;
}

.form-control,
.form-select {
  border-radius: 0.5rem;
}

.btn-orange {
  background: #0d1b2a;
  color: #fff;
}

.btn-orange:hover {
  background: #415a77;
  color: #fff;
}

.alphabet-grid {
  /* max-width: 800px; */
  margin: auto;
  padding: 10px 10px;
}

.search-container #searchField {
  padding: 16px 14px;
}

.profile-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.profile-card img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 20px;
}

.badge-orange {
  background: #0d1b2a;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
}

.btn-group-custom .btn {
  margin: 5px;
  min-width: 130px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-orange {
  /* #ff7f50 */
  background-color: #0d1b2a;
  color: #fff;
  border-radius: 30px;
}

.text-orange {
  color: #0d1b2a;
}

.highlight-badge {
  background-color: #ffe6cc;
  color: #333;
  border-radius: 20px;
  padding: 5px 15px;
  margin: 5px 5px 5px 0;
  display: inline-block;
}

.section-title {
  border-bottom: 2px solid #ddd;
  padding-bottom: 8px;
  margin-bottom: 15px;
  font-weight: bold;
}
.information-divv {
  border-bottom: 2px solid #ddd;
}
.section-title-2 {
  color: #0d1b2a;
  padding-bottom: 8px;

  font-weight: bold;
}

.breadcrumb-slider .owl-nav {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 14px;
}

.breadcrumb-slider .owl-nav button {
  z-index: 999;
  position: relative;
}

.nav-link {
  color: #0d1b2a;
}
.business-tabs {
  overflow: auto;
  /* max-height: 1000px; */
}

.business-tabs .list-group-item {
  border: none;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 8px 10px;
  background-color: #fff;
  font-size: 15px;
}

.business-tabs .list-group-item:hover {
  background-color: #ff922233;
  border-left: 4px solid #0d1b2a;
}

.business-tabs .list-group-item.active {
  background-color: #ff922233;
  border-left: 4px solid #0d1b2a;
  color: #0d1b2a;
  font-weight: 600;
}

.business-tabs .list-group-item i {
  width: 20px;
}
.owl-stage-outer{
  width: 100% !important;
}
.tab-content {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 10px;
  border-radius: 10px;
}

.tab-section img {
  /* height: 100% !important; */
  object-fit: cover;
}

.business-tabs {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
}

.accordion-body {
  background: #fff;
  border-top: 1px solid #ddd;
}
.card-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.card {
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  /* padding: 0.5rem; */
  background: white;
  /* text-align: center; */
  transition: transform 0.3s;
  display: flex;
  justify-content: center;
}
.card-height {
  height: 250px;
}
.card:hover {
  transform: translateY(-5px);
}
.quick-actions .btn {
  min-width: 220px;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.your-listings {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
}
.icon-large {
  font-size: 3rem;
  color: #0d1b2a;
}
h3,
h5 {
  color: #0d1b2a;
}
.btn-orange,
.btn-success {
  border-radius: 30px;
}

.profile-form {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

}

.tag {
  display: inline-block;
  background: #e7f1ff;
  color: #0d1b2a;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 4px 4px 4px 0;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.tag .remove {
  margin-left: 8px;
  cursor: pointer;
  color: #0d1b2a;
}

.footer-item img {
  width: 100%;
  max-width: 130px;
}

.category-carousel .owl-nav {
  position: absolute;
  display: flex;
  justify-content: space-between;

}
@media (max-width: 992px) {
  .alphabet-grid {
    display: none !important;
  }
}

/* Fixed Feedback Button */
#feedbackBtn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1050;
  background-color: #0d1b2a;
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: bold;
  box-shadow: 0 4px 12px #0d1b2a;
  transition: all 0.3s ease;
  border: none;
}

#feedbackBtn i {
  margin-right: 8px;
}

#feedbackBtn:hover {
  background-color: #0d1b2a;
}

.modal-header {
  /* background: #0d1b2a; */
  color: white;
}
#businessPreviewModal .modal-dialog{
  margin: 10% auto !important;
}
.form-control:focus {
  box-shadow: none;
  border-color: lightgray;
}

.owl-theme .owl-nav {
  width: 100%;
  margin-top: 10px;
  display: flex !important;
  justify-content: space-between;
  /* position: absolute;
  bottom: 35%; */
}
.card-img-top {
  border-radius: 5px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  display: none;
}
@media (max-width: 767.98px) {
  .category-carousel {
    display: flex !important;
    flex-wrap: wrap;
    gap: 15px;
  }
  .category-carousel .item {
    flex: 0 0 calc(25% - 12px);
    max-width: calc(25% - 12px);
  }
  .category-carousel .item.hidden-mobile {
    display: none !important;
  }
  #categorySearch {
    font-size: 14px;
    border-radius: 0.375rem;
  }
  .input-group-text {
    background: #f8f9fa;
    border-right: 0;
  }
  .form-control {
    border-left: 0;
  }
}
.highlight-category img {
  display: block;
  width: 100%;
  max-width: 60px;
  margin: auto;
  position: relative;
  top: 19px;
  height: 45px;
  object-fit: contain;
}

.review-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 15px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.review-card h4 {
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.form-control,
textarea.form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  box-shadow: none;
}

.star-ratinginfo {
  display: flex;
  font-size: 35px;
  margin: 5px 0;
}

.star-ratinginfo .star {
  cursor: pointer;
  color: #778da9;
  transition: color 0.2s;
}

.star-ratinginfo .star.active {
  color: #0d1b2a;
}

.btn-submit {
  background-color: #0d1b2a;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  font-weight: bold;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: #415a77;
}

.success-message {
  display: none;
  text-align: center;
  margin-top: 15px;
  color: green;
  font-weight: 500;
}

.offer-slider-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.section-title {
  /* font-size: 2.5rem; */
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

.offer-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 10px;
  position: relative;
}

/* .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        } */

.offer-content {
  /* background-image: linear-gradient(
      135deg,
      rgba(255, 107, 157, 0.9) 0%,
      rgb(255 138 155 / 0%) 100%
    ),
    url(https://static.vecteezy.com/system/resources/thumbnails/034/952/802/small/man-thumb-up-and-smile-copy-space-photo.jpg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 30px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.offer-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.offer-text {
  position: relative;
  z-index: 2;
}

.offer-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-btn {
  background: white;
  color: #333;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.offer-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background: #f8f9fa;
}

.offer-image {
  flex-shrink: 0;
  margin-left: 20px;
  position: relative;
  z-index: 2;
}

.offer-image img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
}

/* Different gradient overlays for variety */
.offer-card:nth-child(2) .offer-content {
  background-image: linear-gradient(
      135deg,
      rgba(255, 107, 157, 0.9) 0%,
      rgb(255 138 155 / 0%) 100%
    ),
    url(https://static.vecteezy.com/system/resources/thumbnails/034/952/802/small/man-thumb-up-and-smile-copy-space-photo.jpg);
}

.offer-card:nth-child(3) .offer-content {
  background-image: linear-gradient(
      135deg,
      rgba(255, 107, 157, 0.9) 0%,
      rgb(255 138 155 / 0%) 100%
    ),
    url(https://static.vecteezy.com/system/resources/thumbnails/034/952/802/small/man-thumb-up-and-smile-copy-space-photo.jpg);
}

.offer-card:nth-child(4) .offer-content {
  background-image: linear-gradient(
      135deg,
      rgba(255, 107, 157, 0.9) 0%,
      rgb(255 138 155 / 0%) 100%
    ),
    url(https://static.vecteezy.com/system/resources/thumbnails/034/952/802/small/man-thumb-up-and-smile-copy-space-photo.jpg);
}

.offer-card:nth-child(5) .offer-content {
  background-image: linear-gradient(
      135deg,
      rgba(255, 107, 157, 0.9) 0%,
      rgb(255 138 155 / 0%) 100%
    ),
    url(https://static.vecteezy.com/system/resources/thumbnails/034/952/802/small/man-thumb-up-and-smile-copy-space-photo.jpg);
}

.offer-card:nth-child(5) .offer-text h3 {
  color: #333;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .offer-content {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .offer-image {
    margin-left: 0;
    margin-top: 20px;
  }

  .offer-text h3 {
    font-size: 1.5rem;
  }

}

@media (max-width: 576px) {
  .offer-content {
    min-height: 200px;
  }

  .offer-text h3 {
    font-size: 1.3rem;
  }

  .offer-btn {
    font-size: 0.8rem;
    padding: 10px 20px;
  }
}

.cate {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.cate h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cate p {
  font-size: 1.2rem;
  opacity: 0.9;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.category-card {
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
  width: 75px;
  height: 75px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 1;
}

.category-card h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

.category-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.business-count {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
}

.stats-section {
  background: #f8f8f8;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
  color: #333;
  border: 1px solid #eee;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cate h1 {
    font-size: 2rem;
  }

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

  .category-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .cate h1 {
    font-size: 1.8rem;
  }
}

.floating-action {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.floating-action:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.page-header {
  text-align: center;
  margin-bottom: 50px;
  color: #333;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Business Listing Cards Grid */
.business-listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.business-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.business-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #f0f0f0;
}

.business-card-image img {
  width: 100%;
  height: 200px;
  border-radius: 15px 15px 0 0;
}

.sponsored-badge {
  position: absolute;
  top: 15px;
  left: 0;
  background-color: #ffc107; /* Yellow */
  color: #333;
  padding: 5px 15px;
  border-radius: 0 10px 10px 0;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.rating-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 10;
}

.rating-badge i {
  color: #ffeb3b; /* Star color */
}

.business-card-content {
  padding: 15px;
}

.business-card-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.business-meta {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}

.business-meta i {
  margin-right: 8px;
  color: #667eea;
}

.trusted-badge {
  font-size: 0.85rem;
  color: #e91e63; /* Pink */
  font-weight: 500;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.trusted-badge i {
  color: #e91e63;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  .business-listings-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }
  .business-listings-grid {
    grid-template-columns: 1fr;
  }
  .business-card {
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
  }
}

.card-carousel img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.card-carousel1 img {
  width: 100%;
  height: 170px !important;
  object-fit: cover;
}
/* Fixed Feedback Button */
#faq {
  position: fixed;
  bottom: 150px;
  right: 20px;
  z-index: 1050;
  background-color: #0d1b2a;
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: bold;
  box-shadow: 0 4px 12px #0d1b2a;
  transition: all 0.3s ease;
  border: none;
}
#faq i {
  margin-right: 8px;
}
#faq:hover {
  background-color: #0d1b2a;
}
#city-business-list .business-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 per row */
  gap: 12px;
  max-height: 350px; /* ~5 rows */
  overflow-y: auto;
  padding: 10px;
}

/* Business card */
#city-business-list .business-item {
  background: #ffffff; /* white card */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* soft shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect */
#city-business-list .business-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Business name */
#city-business-list .business-item h5 {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 600;
}

/* Business name link */
#city-business-list .business-item h5 a {
  color: #007bff;
  text-decoration: none;
}

#city-business-list .business-item h5 a:hover {
  text-decoration: underline;
}

/* City / phone */
#city-business-list .business-item p {
  margin: 0;
  font-size: 12px;
  color: #555;
}
/* #search-results {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 15px;
  max-height: 5 * 180px; 
  overflow-y: auto;
  padding: 10px 0;
} */
.paid-plan img {
	width: 100%;
	margin-bottom: 20px;
  height: 160px;
  object-fit: contain;
}
/* Style for business items */
.search-business-item {
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
#category-all-business-btn {
  margin-top: 15px;
  margin-right: 15px;
}
.search-business-item h5 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #333;
}
.card-2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  min-height: 273px;
  text-align: center;
}
.card-2 h2 {
  font-size: 18px;
}
.card-2 span {
  font-size: 13px;
}
.card-2 h6 {
  font-size: 12px;
}

.card-2 .top-47 {
  top: -47px;
  margin: 6px;
}
.category-carousel .owl-item {
  margin-right: 0px !important;
}
.card-carousel1 .owl-stage-outer {
  padding: 10px 0px !important;
}
.breadcrumb-content {
  padding: 0px 60px;
}

/* user profile css */
.profile-contact i {
  color: #0d1b2a;
}
.custm-btn {
  background: #0d1b2a;
  color: #fff;
}
.custm-btn:hover {
  background: #415a77;
  color: #fff;
}

.read-more-global {
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
}
.read-more-global:hover {
  text-decoration: underline;
}
.d-none {
  display: none;
}

.star {
  font-size: 20px;
  cursor: pointer;
  color: #ccc;
}
.star.active {
  color: gold;
}
.section-box {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #e4e4e4;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 5px;
}
.section-title {
  margin-bottom: 15px;
  font-weight: 400;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-box {
  display: flex;
  align-items: center;
  background-color: #fff6eb;
  border: 1px solid #ff9a3c;
  padding: 8px 14px;
  border-radius: 8px;
  color: #111;
  font-weight: 500;
  min-width: 160px;
}
.dot-icon {
  height: 10px;
  width: 10px;
  background-color: #ff7a00;
  border-radius: 50%;
  margin-right: 8px;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 12px;
}
.business-detailss {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.business-detailss p {
  display: flex;
  align-items: center;
  gap: 5px;
}
.business-detailss p span {
  color: #000;
}
.package-offers {
  font-size: 12px;
  line-height: 18px;
  padding: 3px;
}
.phone-call-text {
  font-size: 13px;
}
.view-detail-text {
  font-size: 14px;
}
  .profile-card {
        background: #0d0e2aab;
        color: #fff;
        padding: 10px;
        border-radius: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: space-between;
    }

    .profile-image {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .profile-card img {
        border-radius: 50%;
        margin: 0;
        border: 3px solid #fff;
    }

    .cateogry-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .cateogry-box i {
        font-size: 35px;
    }
    .user-profile-div h4{
      color: #fff;
    }
.user-contact {
  display: flex;
  flex-wrap: wrap;
}
@media(max-width:767px){
  .profile-card{
    padding: 20px;
  }
  .profile-image{
    text-align: end;
  }
   .view-price-div {
  width: 100%;
 

}
  .view-price-div a{
  width: 100%;
  margin-top: 10px;
}
.user-contact {
  display: block;
  text-align: end;
}
}
@media (max-width: 425px) {
  .profile-image{
    display: block;
  }
   .profile-image img{
    margin-bottom: 10px;
  }
  .profile-image{
    text-align: center;
  }
    .user-contact {
    display: block;
    text-align: start;
  }
  .business-card-image img {
    height: 150px;
  }
  .business-card-content h4 {
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: #333;
  }
  .business-meta {
    font-size: 0.8rem;
  }
}
 .social-media-entry {
            display: block !important;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        .social-media-preview-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background-color: #f8f9fa;
            max-width: 300px;
        }

        .social-media-preview-item img {
            max-width: 40px;
            max-height: 40px;
            border-radius: 5px;
            object-fit: cover;
        }

        .social-media-preview-item a {
            color: #0d6efd;
            text-decoration: none;
            word-break: break-all;
        }

        .social-media-preview-item a:hover {
            text-decoration: underline;
        }

        .icon-preview {
            max-width: 40px;
            max-height: 40px;
            border-radius: 5px;
            object-fit: cover;
        }

        .profile-form label {
            margin-bottom: 5px;
            font-size: 14px;
        }

        .profile-form input ,textarea {
            margin-bottom: 5px;
            font-size: 14px;
        }
          .profile-form textarea {
            font-size: 14px;
        }

        .profile-buttons-div {
            display: flex;
            align-items: center;
            justify-content: space-between;
            
        }

        @media(max-width:767px) {
            .profile-buttons-div {
                display: block;

            }
            .profile-buttons-div button {
                margin: 2px;
                
            }
            .update-btnn {
                margin-top: 10px;
            }
        }
        .btn-icon {
            position: fixed;
            bottom: 200px;
            right: 20px;
            z-index: 1050;
            background-color: #0d1b2a;
            color: white;
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: bold;
            box-shadow: 0 4px 12px #0d1b2a;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-icon:hover {
            background: #1a2b3c;
            text-decoration: none;
            color: #fff;
        }

        .btn-icon i {
            font-size: 14px;
        }

        .off-canvas {
            position: fixed;
            top: 0;
            left: -100%;
            width: 280px;
            height: 100%;
            background: #fff;
            z-index: 9999;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .off-canvas.active {
            left: 0;
        }

        .side-menu-open {
            cursor: pointer;
        }

        .ads-header-section {
            max-width: 400px;
            width: 240px;
        }

        .ads-header-section img {
            max-width: 400px;
            width: 240px;
            height: 60px;
        }

        .ads-header-section marquee {
            font-size: 12px;
        }

        .ads-header-mobile {
            display: none;
        }

     

        .aads-header-mobile img {
            max-width: 400px;
            width: 240px;
            height: 60px;
        }

        .ads-header-mobile marquee {
            font-size: 12px;
        }
        @media(max-width:575px){
            .ads-header-section {
            display: none;
        }
         .ads-header-mobile {
            display: block;
        }
        }

          .social-icon-preview ul li a {
   color: #fff;
   }
   .owl-carousel .preview-card-img {
   display: block;
   width: 100%;
   height: 50px !important;
   border-radius: 4px;
   }
   .social-contact-div li a {
   font-size: 15px;
   }
   .section-box {
   border-radius: 0px 0px 10px 10px;
   }
   .overlay {
   border-radius: 10px 10px 0px 0px;
   }
   .profile-assets-section .share-profile-box {
  background: #fff;
  border: 1px solid #f57c00;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.profile-assets-section .section-label {
  color: #f57c00;
  font-weight: 600;
  margin-bottom: 12px;
}

.profile-assets-section .share-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-assets-section .qr-code {
  width: 80px;
  border: 2px dashed #f57c00;
  border-radius: 12px;
  padding: 5px;
  background: #fff;
}

.profile-assets-section .btn-action {
  background: #fff;
  border: 1px solid #f57c00;
  color: #f57c00;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
  text-align: center;
}

.profile-assets-section .btn-action:hover {
  background: #f57c00;
  color: #fff;
}

.profile-assets-section .section-title {
  font-weight: 600;
  margin-bottom: 12px;
  color: #444;
}

.profile-assets-section .assets-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.profile-assets-section .asset-link {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.profile-assets-section .asset-link:hover {
  background: #f57c00;
  color: #fff;
  border-color: #f57c00;
}

.profile-assets-section .copy-section {
  display: flex;
  flex-direction: column;
}

.profile-assets-section .copy-msg {
  color: green;
  font-weight: 500;
  margin-top: 5px;
}
.dash-card .owl-nav{
    display: none !important;
}
.referral-section .card {
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.referral-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Referral card */
.referral-section .referral-card {
  border-left: 4px solid #f57c00;
  background: linear-gradient(135deg, #fff, #fff8f1);
}

.referral-section .referral-text {
  color: #555;
  font-size: 15px;
  margin-bottom: 18px;
}

/* Stats card */
.referral-section .stats-card {
  background: linear-gradient(135deg, #f57c00, #ff9800);
  color: #fff;
  border: none;
}

.referral-section .stats-label {
  font-size: 14px;
  opacity: 0.9;
}

.referral-section .counter-number {
  font-size: 2.2rem;
  margin-top: 8px;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .referral-section {
    flex-wrap: wrap;
  }
}



    .category-slider-wrapper .prev {
        display: none;
    }

    .category-slider-wrapper .next {
        display: none;
    }

    @media (max-width: 768px) {
        .category-slider-wrapper {
            position: relative;
        }

        #category-list {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            flex-wrap: nowrap;
            padding: 10px 0;
            -webkit-overflow-scrolling: touch;
        }

        #category-list a {
            flex: 0 0 auto;
            margin-right: 10px;
            white-space: nowrap;
            border-radius: 6px;
            border: 1px solid #ccc;
            min-width: fit-content;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        #category-list::-webkit-scrollbar {
            display: none;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            font-size: 20px;
            padding: 5px 10px;
            cursor: pointer;
        }

        .slider-btn.prev {
            display: block;
            left: 0;
            width: 30px;
            height: 30px;
            background-color: #fff !important;
            color: #333f57 !important;
            box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-btn.next {
            display: block;
            right: 0;
            width: 30px;
            height: 30px;
            background-color: #fff !important;
            color: #333f57 !important;
            box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
         .slider-btn.prev:hover {
            background-color: #0d1b2a !important;
            color: #fff !important;
            }
        

        .slider-btn.next:hover {
            background-color: #0d1b2a !important;
            color: #fff !important;

        }
        
    }
    .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    position: relative;
    bottom: 110px;
}