.customer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.slide {
  padding: 20px;
  display: flex;
  justify-content: center;
}

.testimonial-item {
  text-align: center;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.author-name {
  font-weight: bold;
  color: #333;
}

.owl-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.owl-dots li button {
  background-color: #fff;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border: none;
}

.owl-dots li.owl-active button {
  background-color: #3498db;
}

.owl-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.owl-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.owl-list:focus {
  outline: none;
}

.owl-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.owl-slider .owl-track,
.owl-slider .owl-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.owl-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.owl-track:before,
.owl-track:after {
  display: table;
  content: "";
}

.owl-track:after {
  clear: both;
}

.owl-loading .owl-track {
  visibility: hidden;
}

.owl-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .owl-slide {
  float: right;
}

.owl-slide img {
  display: block;
}

.owl-slide.owl-loading img {
  display: none;
}

.owl-slide.dragging img {
  pointer-events: none;
}

.owl-initialized .owl-slide {
  display: block;
}

.owl-loading .owl-slide {
  visibility: hidden;
}

.owl-vertical .owl-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.owl-arrow.owl-hidden {
  display: none;
}

/* Footer-social-media-icons */
.social-links {
  margin-top: 10px;
}
.social-links li {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  width: 40px;
  text-align: center;
}

.social-links li a i {
  color: #000;
  font-size: 18px;
}

.social-links li:hover {
  background-color: #fd880a;
  transition: 0.3s ease-in;
}

.social-links li:hover a i {
  color: #fff;
  font-size: 18px;
}

/*  */
#listing-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

/* 3 Slider */
.owl-slider {
  display: flex;
  justify-content: space-between;
}

.element {
  padding: 10px;
  /* background-color: #fff; */
  border-radius: 10px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.element img {
  width: 100%;
  border-radius: 10px;
}

.element .listing-info {
  margin-top: 10px;
}

.element .rating-area {
  margin-top: 15px;
}

.element .btn-group {
  margin-top: 15px;
  text-align: center;
}

/* Custom styles for the Slick Slider arrows */
.owl-prev,
.owl-next {
  font-size: 20px; /* Set the size of the arrows */
  color: #fd880abe; /* Set the arrow color */
  background-color: #fff; /* Dark background */
  border-radius: 50%; /* Round arrows */
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40%; /* Vertically center the arrows */
  transform: translateY(-50%);
  z-index: 10;
  border: 1px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}


/* Left arrow positioning */
.owl-prev {
  left: -5%; /* Position the left arrow */
}

/* Right arrow positioning */
.owl-next {
  right: -5%; /* Position the right arrow */
}

/* Optional: Add hover effect for the arrows */
.owl-prev:hover,
.owl-next:hover {
  background-color: rgba(255, 255, 255, 0.808); /* Darker background on hover */
}

/* Optional: Change the arrow icon on hover */
.owl-prev:hover::before,
.owl-next:hover::before {
  color: #f0f0f0; /* Change icon color on hover */
} 



/* Custom left and right arrow icons */
.owl-prev::before,
.owl-next::before {
  content: "";
  display: inline-block;
  font-size: 30px;
  color: white;
}

.owl-carousel.version-3 .owl{
  display: none !important; 
}

/* IMAGE PREVIEW IN FILE */
#img-preview {
  display: none;
  width: 100px;
  border: 2px dashed #333;
  margin-bottom: 20px;
}
#img-preview img {
  width: 100px;
  height: auto;
  display: block;
}
[type="file"] {
  height: 0;
  width: 0;
  overflow: hidden;
}
[type="file"] + label { 
  background: #f44336;
  padding: 10px 30px;
  border: 2px solid #f44336;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
[type="file"] + label:hover {
  background-color: #fff;
  color: #f44336;
}

/* -------------------------------------*/
/* General Styling for the Filter Section */
.filter-item-inner {
  padding: 15px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

.filter-item-inner-heading {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

/* Styling for the filter items */
.filter-attribute-list-inner {
  display: flex;
  flex-wrap: wrap;
}

.filter-attribute-item {
  width: 100%;
}

/* Checkbox and label styling */
.filter-attribute-checkbox {
  margin-right: 8px;
  cursor: pointer;
}

.filter-attribute-label {
  font-size: 1em;
  color: #555;
  cursor: pointer;
}

/* Styling for the "Show More" Button */
.show-more-btn {
  color: #fff;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  width: 100%;
  text-align: center;
}

/* Add some padding to the button when it's clicked */
.show-more-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.5);
}

/* Transition Effect for the Filter Items */
.filter-attribute-item {
  transition: opacity 0.5s ease;
}

/* Initially hide the extra items */
.filter-attribute-item[style="display: none;"] {
  opacity: 0;
}

/* Styling for the list of attributes (Colour, Size, etc.) */
.filter-attribute-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* Responsiveness: Make sure the filter items are in a single column for smaller screens */
@media (max-width: 600px) {
  .filter-attribute-item {
    width: 100%;
  }

  .show-more-btn {
    width: 100%;
  }
}

/*  */
.filter-widget {
  border: 1px solid #ccc;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 350px; 
}

.widget-title h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.filter-section {
  margin-bottom: 2rem;
}

.filter-heading {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.filter-list {
  list-style: none;
  padding-left: 0;
}

.filter-list li {
  margin-bottom: 0.4rem;
}

label {
  cursor: pointer;
}

.show-more-btn {
  background-color: transparent;
  border: none;
  color: #fd880a;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}

.show-more-btn:hover {
  text-decoration: underline;
}


/*  */
.contact-section {
  position: relative;
  background: url(./images/my-images/banner.jpg) no-repeat center center/cover;
  overflow: hidden;
}

.contact-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.contact-section .content {
  position: relative;
  z-index: 1;
  color: white;
}

/* contact form */

.inner-container {
  width: 100%;
  margin: 80px auto;
  background-color: white;
  border-radius: 12px;
  padding: 30px;
}

.tile1-heading {
  background: -webkit-linear-gradient(#0aa6bd, #f126bd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 1.5em;
}

.form-row {
  padding: 20px 0px 0px 0px;
}

.form-field {
  border-radius: 4px;
  width: 100%;
  padding: 15px;
  background-color: #f5f4fa;
  border: 0px;
}

.contact-image {
  padding: 10px;
  border-radius: 35px;
  border: 1px solid #a8a4a4;
  vertical-align: middle;
  margin-right: 20px;
  width: 16px;
  height: 16px;
}

textarea {
  height: 100px; 
}

.btn {
  color: white;
  background: linear-gradient(to right, #0aa6bd, #f126bd);
}

.tile2-image img {
  width: 321px;
  height: 211px;
}

#menu-icon {
  display: none;
  float: right;
}

@media all and (max-width: 900px) {
  .inner-container {
    width: auto;
    display: block;
    margin: 30px auto;
  }
  .header-content {
    width: auto;
  }
  .tile1 {
    width: 100%;
  }
  .tile2 {
    padding: 0px;
  }
  .tile2-image img {
    width: 100%;
    height: auto;
  }
}

@media all and (max-width: 540px) {
  #header-right-menu {
    float: none;
    display: none;
  }
  #header-right-menu a {
    display: block;
    padding: 10px 0px;
  }

  #menu-icon {
    display: block;
    float: right;
  }
}

@media screen and (max-width: 480px) {
  /* Left arrow positioning */
  .owl-prev {
    left: -3%; /* Position the left arrow */
  }

  /* Right arrow positioning */
  .owl-next {
    right: -3%; /* Position the right arrow */
  }
}

/*  */
.version-1 img {
  height: 50px;
  object-fit: cover;
}

.version-2 .post-thumb img {
  height: 200px;
  object-fit: cover;
}

.theme-card-1 .post-details #listing-card {
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fd880a2d;
}

.popular-listing-post .post-details {
  -webkit-box-shadow: -1px 2px 19px -2px rgba(195, 194, 194, 0);
  -moz-box-shadow: -1px 2px 19px -2px rgba(195, 194, 194, 0);
  box-shadow: -1px 2px 19px -2px rgba(195, 194, 194, 0);
}

/*  */
.main-header-section:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  left: 0;
  bottom: 0;
  background: url(../assets/img/cloud.svg) #fff0;
  background-size: cover;
}

/*  */
#login-steps {
  background: #fff;
  text-align: center;
  padding: 25px 20px 27px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 9px -4px #0000008f;
  border-radius: 15px;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
#login-steps:hover {
  top: -10px;
  transition: 1s ease-in;
}

#login-steps img {
  width: 50px;
}
#login-steps .btn2 {
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 12px;
  border: 1px dashed #fff;
  /* box-shadow: 0 0 0 3px #151f31; */
  color: #fff;
  background-color: #fd880a;
}

.version-2 .item .popular-listing-post {
  border: 1px solid #fd880a;
}

.version-2 .item .post-meta {
  background-color: #fd880a38;
}

 
.footer-widget a:hover {
  color: #fd880a !important;
}

/*  */
#float-banner {
  margin-top: 30px; /* adds 30px gap above the whole banner */
  width: 100%;
  height: 150px;
  background: url(../images/my-images/city-bg.png) repeat-x;
  background-size: auto 150px;
  animation: slide-bg 10s linear infinite;
}

@keyframes slide-bg {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 100%;
  }
}


.nav-mobile{
  display: none !important;
}

@media screen and (max-width:768px) {
  .nav-desktop{
    display: none;
  }
  
.nav-mobile{
  display: flex !important;
  background: #fff !important;
}

.nav-mobile a{
  color: #252525 !important;
}

}
 



/* Megamenu */

/*  */
/* .navbar-nav .active {
  color: #fd880a !important;
}
 */
#hover-tabs-border li {
  border-radius: 10px;
  margin-left: 10px;
}

.nav-pills .nav-item.show .nav-link,
.nav-pills .nav-link {
  margin-left: 5px;
  color: #000 !important;
}

.nav-pills .nav-item.show .nav-link,
.nav-pills .nav-link.active {
  color: #fd880a !important;
  background-color: #fff !important;
}

#hover-tabs-border {
  border-right: 1px solid #1313133b;
}
#hover-tabs-border li {
  /* border-bottom: 1px solid #13131313;  */
}

#hover-tabs-border-sub {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100px;
}

#hover-tabs-border-sub li {
  width: 40%;
  /* border-bottom: 1px solid #13131313; */
  padding-bottom: 5px;
}
#hover-tabs-border-sub li a {
  color: #303030;
}

.border-bottom {
  border-bottom: 1px solid #13131313 !important;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: inline !important;
}

@media screen and (max-width:1300px) {
  #hover-tabs-border-sub li {
  width: 40%;
  /* border-bottom: 1px solid #13131313; */
  padding-bottom: 5px;
}
#hover-tabs-border-sub {
  height: auto;
}
#my-btn-explore {
  padding: 0px 0;
}
}



#my-megamenu {
  width: 1400px !important;
  height: auto;
  margin-top: 25px;
}

@media screen and (max-width: 1600px) {
  /* Megamenu */
  #my-megamenu {
    width: 1200px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 100000;
    margin-left: -50px;
  }
}

@media screen and (max-width: 1440px) {
  /* Megamenu */
  #my-megamenu {
    width: 1200px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 100000;
    margin-left: -150px;
  }
}


@media screen and (max-width: 1350px) {
  /* Megamenu */
  #my-megamenu {
    width: 1100px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 100000;
    margin-left: -80px;
  }
}
 

@media screen and (max-width: 1300px) {
  /* Megamenu */
  #my-megamenu {
    width: 1100px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 100000;
    margin-left: -160px;
  }
}

@media screen and (max-width: 1250px) {
  /* Megamenu */
  #my-megamenu {
    width: 1100px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 100000;
    margin-left: -250px;
  }
}

@media screen and (max-width: 1200px) {
  /* Megamenu */
  #my-megamenu {
    width: 1100px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 100000;
    margin-left: -250px;
  }
}

@media screen and (max-width: 1150px) {
  /* Megamenu */
  #my-megamenu {
    width: 1100px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 100000;
    margin-left: -280px;
  }
}

@media screen and (max-width: 1100px) {
  /* Megamenu */
  #my-megamenu {
    width: 1000px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 100000;
    margin-left: -230px;
  }
}


@media screen and (max-width: 1060px) {
  /* Megamenu */
  #my-megamenu {
    width: 900px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 100000;
    margin-left: -200px;
  }
}


@media screen and (max-width: 1024px) {
  /* Megamenu */
  #my-megamenu {
    width: 900px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 100000;
    margin-left: -180px;
  }
}


@media screen and (max-width: 966px) {
  /* Megamenu */
  #my-megamenu {
    width: 850px !important;
    overflow-y: scroll;
    z-index: 100000;
    margin-left: -180px;
  }
}

@media screen and (max-width: 920px) {
  /* Megamenu */
  #my-megamenu {  
    margin-left: -200px;
  }
}


@media screen and (max-width: 900px) {
  /* Megamenu */
  #my-megamenu {
    width: 800px !important;
    overflow-y: scroll;
    z-index: 100000;
    margin-left: -200px;
  }
}





@media screen and (max-width: 768px) {
  /* Megamenu */
  #my-megamenu {
    width: 1200px !important;
    overflow-y: scroll;
    height: 50vh;
    z-index: 100000;
    padding: 0 60px;
  }
}



/*  */ 
@media screen and (max-width:320px) {
  #how-work{
    display: flex;
    flex-direction: column; 
    
  }
   #how-work a{
       display: flex;
      justify-content: center;  
    } 
  #download-btn{
    flex-direction: column; 
  }
    #download-btn a{
      display: flex;
      justify-content: center;
      padding-top: 20px;
    }
}


/*  */
#other-page-card{
  border: 1px solid #fd880a;
}


/*  */
.scribble {
	 position: relative;
	 background-image: none;
	 background-color: transparent;
	 color: #ff9400;
}
 .scribble::after {
	 content: '';
	 position: absolute;
	 bottom: -10%;
	 left: 0;
	 height: 30%;
	 mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='247' height='22' fill='none'%3E%3Cmask id='a' width='246' height='23' x='0' y='1' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 1h246v23H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%2300a661' d='M.225 13.987c40.77-3.247 81.218-6.304 122.486-5.61 40.217.68 80.07 3.493 119.823 8.284 4.828.577 4.966-4.727.193-5.301-40.597-4.886-82.029-7.082-123.059-6.436-39.896.627-80.713 2.548-119.53 8.822-.233.04-.132.263.087.25v-.009z'/%3E%3C/g%3E%3C/svg%3E");
	 mask-repeat: no-repeat;
	 mask-size: 95%;
	 width: 100%;
	 background-image: linear-gradient(to right, currentcolor 40%, transparent 50%);
	 background-repeat: no-repeat;
	 animation: background-size-300 0.4s 1.5s ease-in both;
	 background-size: 300%;
}
 
@keyframes background-size-300 {
  from {
    background-size: 0%;
  }

  to {
    background-size: 300%;
  }
} 
  

/*  */
.scribble-green {
	 position: relative;
	 background-image: none;
	 background-color: transparent;
	 color:  rgb(34 197 94);
}
 .scribble-green::after {
	 content: '';
	 position: absolute;
	 bottom: -10%;
	 left: 0;
	 height: 30%;
	 mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='247' height='22' fill='none'%3E%3Cmask id='a' width='246' height='23' x='0' y='1' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 1h246v23H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%2300a661' d='M.225 13.987c40.77-3.247 81.218-6.304 122.486-5.61 40.217.68 80.07 3.493 119.823 8.284 4.828.577 4.966-4.727.193-5.301-40.597-4.886-82.029-7.082-123.059-6.436-39.896.627-80.713 2.548-119.53 8.822-.233.04-.132.263.087.25v-.009z'/%3E%3C/g%3E%3C/svg%3E");
	 mask-repeat: no-repeat;
	 mask-size: 95%;
	 width: 100%;
	 background-image: linear-gradient(to right, currentcolor 40%, transparent 50%);
	 background-repeat: no-repeat;
	 animation: background-size-300 0.4s 1.5s ease-in both;
	 background-size: 300%;
}
 
@keyframes background-size-300 {
  from {
    background-size: 0%;
  }

  to {
    background-size: 300%;
  }
} 
  

/*  */
.scribble-white {
	 position: relative;
	 background-image: none;
	 background-color: transparent;
	 color:  rgb(202, 171, 153);
}
 .scribble-white::after {
	 content: '';
	 position: absolute;
	 bottom: -10%;
	 left: 0;
	 height: 30%;
	 mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='247' height='22' fill='none'%3E%3Cmask id='a' width='246' height='23' x='0' y='1' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 1h246v23H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%2300a661' d='M.225 13.987c40.77-3.247 81.218-6.304 122.486-5.61 40.217.68 80.07 3.493 119.823 8.284 4.828.577 4.966-4.727.193-5.301-40.597-4.886-82.029-7.082-123.059-6.436-39.896.627-80.713 2.548-119.53 8.822-.233.04-.132.263.087.25v-.009z'/%3E%3C/g%3E%3C/svg%3E");
	 mask-repeat: no-repeat;
	 mask-size: 95%;
	 width: 100%;
	 background-image: linear-gradient(to right, currentcolor 40%, transparent 50%);
	 background-repeat: no-repeat;
	 animation: background-size-300 0.4s 1.5s ease-in both;
	 background-size: 300%;
}
 
@keyframes background-size-300 {
  from {
    background-size: 0%;
  }

  to {
    background-size: 300%;
  }
} 
  


/*  */
.section-title h2{
  text-align: left;
}
.section-title p{
  text-align: left;
}


/*  */
#login-steps-home{
  border: 0;  
  text-align: center;
  padding: 25px 2px 10px;
  position: relative;
  overflow: hidden; 
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
#login-steps-home img{
  width: 50px;
  padding-bottom: 20px;
}
#login-steps-home h4{
  color: #111111 !important;
  font-weight: 600;
}

#login-steps-home p{
  color: rgb(99,99,99);
  width: 100%;
  line-height: 22px;
  font-weight: 300;
  font-size: 13px;
}
#login-steps-home:hover{
  transition: all 1s ;
  margin-top: -7px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}


/* Table Desing Idea */ 
.table-center {
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
}

@media screen and (max-width:480px) { 
.table-center { 
  overflow-x: scroll;
}

}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  text-align: center;
  border: 1px solid rgb(233, 233, 233);
}

th {
  background: #ff9400;
  color: #ffffff;
  font-size: 16px;
}

td {
  font-size: 16px;
  color: #333;
}

tbody tr:nth-child(even) {
  background: #f4f7fc;
}

.scroll-container {
  max-height: 200px;
  overflow: auto;
}

.action-phone {
  display: inline-flex;
  color: #001d3d;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.action-phone:hover {
  color: #009495;
  text-decoration: underline;
}
.action-mail {
  display: inline-flex;
  color: #003566;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.action-mail:hover {
  color: #009495;
  text-decoration: underline;
}
.dept {
  display: inline-flex;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 5px;
  color: #fff;
  margin-top: 2px;
  margin-bottom: 2px;
}
.color-1 {
  background-color: #ef476f;
}
.color-2 {
  background-color: #ff9400;
  color: #000;
}
.color-3 {
  background-color: #06d6a0;
  color: #000;
}
.color-4 {
  background-color: #118ab2;
}
.color-5 {
  background-color: #073b4c;
}
td::before {
  content: attr(data-label);
  font-weight: bold;
  display: none;
  margin-right: 10px;
} 


/*  */
.owl-carousel.version-1 .owl-next{
  display: none;
}
.owl-carousel.version-1 .owl-prev{
  display: none;
}

.owl-dot i {
    color: #ccc;
    transition: color 0.3s ease;
    font-size: 14px;
    padding: 0 2px;
}

.owl-dot.active-dot i {
    color: #ff95008f; /* Active color */
}



/*  */
#horizontal-line{
  padding-left: 10px;
}

/*  */
.cookie-card {
  max-width: 100%;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, .05);
}

.title {
  font-weight: 600;
  color: rgb(31 41 55);
}

.description {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(75 85 99);
}

.description a {
  --tw-text-opacity: 1;
  color: rgb(59 130 246);
}

.description a:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  flex-shrink: 0;
}

.pref {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(31 41 55 );
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background-color: transparent;
}

.pref:hover {
  color: rgb(156 163 175);
}

.pref:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.accept {
  font-size: 0.75rem;
  line-height: 1rem;
  background-color: rgb(17 24 39);
  font-weight: 500;
  border-radius: 0.5rem;
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  border: none;
  transition: all .15s cubic-bezier(0.4, 0, 0.2, 1);
}

.accept:hover {
  background-color: rgb(55 65 81);
}

.accept:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

#leads-package{
  display: flex;
  gap: 0 20px; 
} 
#leads-package li{
  color: rgb(75 85 99);
} 