/* Temporary CSS for testing div visibility 
div {
  outline: 1px dashed red;
  background-color: rgba(255, 0, 0, 0.1); 
  color: black;
  padding: 0px;
  margin: 0px;
}
*/

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
/*DEV*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-default);
    background-color: var(--background-color);
    position: relative; /* Required for pseudo-element positioning */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    min-height: 100vh; /* Ensure body covers at least the full viewport height */
    overflow: auto; /* Allow scrolling */
}

body::before {
    content: ""; /* Required for pseudo-element */
    background-size: cover;
    background-repeat: no-repeat; /* Changed to no-repeat for better effect */
    background-position: center top;
    background-attachment: fixed;
    position: fixed; /* Use fixed instead of absolute to avoid gaps */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place it behind the content */
}
a {
  color: var(--db-links);
}

a:hover {
  color: var(--db-links-hover);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}
#main {
  margin-top: 0px;
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 0;
}
.section-header {
  padding-top: 20px;
  padding-bottom: 20px;
}
.section-header h2 {
  color: rgba(var(--contrast-color-rgb), 0.8);
  font-family: var(--heading-font);
}
.section-header h5 {
  color: rgba(var(--contrast-color-rgb), 0.8);
  font-size: 16px;
}
.section-header h2::after {
  background: #5bd9a9;
}
.section-header p {
  font-family: var(--font-default);
  color: var(--contrast-color);
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  background: var(--color-primary);
}
#preloader:before, #preloader:after {
  border: 4px solid var(--contrast-color);
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  /* background: var(--color-primary) IN THE HEADER>PHP*/
  border: 0px solid;
}
.header.sticked {
  background: var(--db-header-color);
  box-shadow: 0px 2px 20px rgba(var(--contrast-color-rgb), 0.1);
}
.header .logo h2 {
  color: var(--db-header-text-color);
  font-family: var(--header-font);
  /* text-transform: uppercase; */
  font-weight: 400;
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.1);
  max-width: 600px;
/*   white-space: nowrap;
  overflow: hidden; 
  text-overflow: ellipsis; */
  font-size: clamp(1.2rem, 3vw, 2.5rem); /* Adjust font size dynamically */
  display: inline-block; /* Keep the text inline */
}

.header .logo h2 span {
  color: var(--db-header-text-color-span);
  /* Inherit the font size from h1 or adjust separately if needed */
}
  .wave-text {
  display: flex;
  gap: 0.1em;
}

.wave-text span {
  display: inline-block;
  animation: wave-bounce 1s ease-out forwards;
  animation-delay: calc(var(--i) * 0.1s);
  opacity: 0;
}
.wave-logo-img {
  height: 1em;
  width: auto;
  vertical-align: middle;
}
@keyframes wave-bounce {
  0%   { transform: translateY(0); opacity: 0; }
  20%  { transform: translateY(-20px); opacity: 1; }
  40%  { transform: translateY(0); }
  100% { opacity: 1; }
}
.header .logo img {
  max-height: 40px;
  margin-right: 8px;
}
@media (max-width: 480px) {
	.header .logo img {
	  display:none;
	}
	.header .logo h1 {
	  font-size: 25px;
	}
	.header .logo h1 span {
	  font-size: 25px;
	}
	.header .btn-getstarted,
	.header .btn-getstarted:focus {
	  padding: 3px 3px;
	  font-size: 12px;
	}
}
.header .header-social-links a {
  color: rgba(var(--color-white-rgb), 0.5);
}
.header .header-social-links a:hover {
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Desktop Navigation Colors
--------------------------------------------------------------*/
@media (min-width: 1280px) {

  .navbar a,
  .navbar a:focus {
    color: rgba(var(--color-white-rgb), 1);
  }

  .navbar>ul>li>a:before {
    content: "";
    background-color: var(--color-primary);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    background: var(--color-secondary);
  }

  .navbar .dropdown ul a {
    color: rgba(var(--color-white-rgb), 0.5);
  }
  
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-white);
    background: var(--color-primary);
  }

}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
  }

  .navbar ul {
    background: rgba(var(--color-secondary-rgb), 0.9);
  }

  .navbar a,
  .navbar a:focus {
    color: rgba(var(--color-white-rgb), 0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }


  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-white);
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active .navbar:before {
    background: rgba(var(--color-secondary-rgb), 0.8);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .fst-italic {
	color: rgba(var(--color-black-rgb), 0.6);
}
 .about h2 {
    font-size: 42px;
	font-weight:600;
	font-family: var(--font-primary);
  }
@media (max-width: 768px) {
  .about h2 {
    font-size: 28px;
  }
}
.about h3 {
  color: rgba(var(--color-default-rgb), 0.8);
  font-family: var(--font-default);
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .about h3 {
    font-size: 22px;
  }
}
.about h5 {
  color: rgba(var(--color-default-rgb), 0.8);
  font-family: var(--font-default);
  font-size: 22px;
}
.about p {
  color: rgba(var(--color-default-rgb), 0.8);
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}
.about ul {
  color: rgba(var(--color-default-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 18px;
  font-weight: 400;
}
.about .btn-hero {
  margin:5px;
  font-family: var(--font-default);
  font-size: 20px;
  display: inline-block;
  background: var(--db-button-hero);
  color: var(--color-white);
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25);
  line-height: 1;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}
.about .btn-hero:hover {
  border-color: rgba(var(--color-white-rgb), 0.5);
  background: rgba(var(--db-button-hero-rgb), 0.5);
  color: rgba(var(--color-white-rgb), 1);
}
.about .btn-learn-more {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  -webkit-animation: fadeInUp 1s both 0.6s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  margin-bottom: 20px;
}
.about .btn-learn-more:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
	width: 100%;
    min-height: 100vh; 
	padding: 100px 0 30px;
	margin: 40px 0 -80px 0;
    /* background: url('../img/hero-bg.webp'); 
    background-size: cover;*/
    background-position: center;
	background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background-color: rgba(var(--color-primary-rgb), 0.8); /* Adjustable transparency */
    pointer-events: none; /* Ensures the overlay doesn't block any interactions */
}
.hero ul li{
	display: inline-block;
}
@media (max-width: 640px) {
  .hero .container {
    padding: 0 30px;
  }
}
.hero h2 {
  color: rgba(var(--color-white-rgb), 1); 
  /*color: var(--color-white);*/
  font-family: var(--font-primary);
  font-size: 46px;
  font-weight:200;
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25);
}
.hero h2 span {
  color: var(--color-primary);
}
.hero h3 {
  color: rgba(var(--color-white-rgb), 1);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 100;
  line-height: 34px;
  margin-bottom: 20px;
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25);
}
.hero h4 {
  margin:20px 0;
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 20px;
  line-height: 34px;
  font-weight: 800;
}
@media (max-width: 768px) {
	.hero .input-group-text {
     padding: 0.475rem 0.25rem;
	 font-size: 12px;
    }
	.hero .input-text {
    font-size: 12px;
	}
	.hero {
	/* height: 190vh; */
	}
	.hero h2 {
	font-size: 30px;
	text-align:center;
	}
	.hero h3 {
	font-size: 16px;
	line-height: 24px;
	}
	.hero p {
	font-size: 16px;
	}
}
.hero p {
  color: rgba(var(--color-white-rgb), 1);
  animation: fadeInDown 1s both 0.4s;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 40px;
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25);
}
.hero a {
  color: var(--color-primary);
}
.hero a:hover {
  color: var(--color-secondary);
}
.hero .card {
  background: rgba(var(--color-white-rgb), 0.5);
  z-index:100;
}
.hero .img {
  margin-bottom: 40px;
  animation: fadeInDownLite 1s both;
}
.hero .button-text p {
	text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25)
}
/* The button for the insert*/
.hero .btn-hero {
  margin:5px;
  font-family: var(--font-default);
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  color: rgba(var(--color-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25);
  background: var(--db-button-hero);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--color-white-rgb), 0.5);
}
.hero .btn-hero:hover {
  border-color: rgba(var(--color-white-rgb), 0.5);
  background: rgba(var(--db-button-hero-rgb), 0.85);
  color: rgba(var(--color-white-rgb), 1);
}
.hero .btn-get-search {
  font-family: var(--font-default);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 15px;
  color: rgba(var(--color-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25);
  background: var(--db-button-hero);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--color-white-rgb), 0.5);
}
.hero .btn-get-search:hover {
  border-color: rgba(var(--color-white-rgb), 0.5);
  background: rgba(var(--db-button-hero-rgb), 0.85);
  color: rgba(var(--color-white-rgb), 1);
} 
.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  -webkit-animation: fadeInUp 1s both 0.6s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.hero .btn-get-started:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
@media (max-width: 640px) {
  .hero .btn-hero {
  font-size: 12px;
  padding: 4px 5px;
}
}
.hero .form-label{
	font-size: 20px;
}

.hero .btn-info {/* insert guide */
  font-family: var(--font-default);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  color: rgba(var(--color-white-rgb), 1);
  background: var(--color-primary);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--color-white-rgb), 0.5);
  margin:0 auto;
}

/* Animated Hero Section (hero 1)*/
.hero-animated {
  width: 100%;
  min-height: 50vh;
  /* background: url("../img/hero-bg.png"); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;*/
  position: relative;
  padding: 120px 0 0px;
  margin: 40px 0 -80px 0;
}
.hero-animated h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-white);
  font-family: var(--font-default);
}
.hero-animated h2 span {
  color: var(--color-primary);
}
.hero-animated .card {
  background: rgba(var(--color-white-rgb), 0.5);
  z-index:100;
}
.hero-animated p {
  color: rgba(var(--color-white-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.hero-animated .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 45%;
  }
}
@media (max-width: 991px) {
  .hero-animated .animated {
    max-width: 60%;
  }
}
@media (max-width: 575px) {
  .hero-animated .animated {
    max-width: 80%;
  }
}
.hero-animated .btn-info {
  font-family: var(--font-default);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  color: rgba(var(--color-black-rgb), 1);
  background: var(--color-secondary);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--color-white-rgb), 0.5);
  margin:0 auto;
}
.hero-animated .btn-hero {
  margin:5px;
  font-family: var(--font-default);
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  color: rgba(var(--color-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25);
  background: var(--db-button-hero);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--color-white-rgb), 0.5);
}
.hero-animated .btn-hero:hover {
  border-color: rgba(var(--color-white-rgb), 0.5);
  background: rgba(var(--db-button-hero-rgb), 0.85);
  color: rgba(var(--color-white-rgb), 1);
}
.hero-animated .btn-get-search {
  font-family: var(--font-default);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 15px;
  color: rgba(var(--color-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25);
  background: var(--db-button-hero);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--color-white-rgb), 0.5);
}
.hero-animated .btn-get-search:hover {
  border-color: rgba(var(--color-white-rgb), 0.5);
  background: rgba(var(--db-button-hero-rgb), 0.85);
  color: rgba(var(--color-white-rgb), 1);
} 
.hero-animated .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-default);
  color: var(--color-secondary);
  font-weight: 600;
}
.hero-animated .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-animated .btn-watch-video:hover {
  color: var(--color-primary);
}
.hero-animated .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
  .hero-animated h2 {
    font-size: 32px;
  }
  .hero-animated p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero-animated .btn-get-started, .hero-animated .btn-watch-video {
    font-size: 14px;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.hero .carousel-control-prev {
  justify-content: start;
}
@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}
.hero .carousel-control-next {
  justify-content: end;
}
@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}
.hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--color-primary-rgb), 0.4);
  color: rgba(var(--color-white-rgb), 0.98);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .carousel-control-next-icon {
  padding-left: 3px;
}
.hero .carousel-control-prev-icon {
  padding-right: 3px;
}
.hero .carousel-control-prev, .hero .carousel-control-next {
  transition: 0.3s;
}
.hero .carousel-control-prev:focus, .hero .carousel-control-next:focus {
  opacity: 0.5;
}
.hero .carousel-control-prev:hover, .hero .carousel-control-next:hover {
  opacity: 0.9;
}
.hero .carousel-indicators li {
  cursor: pointer;
  background: rgba(var(--color-secondary-rgb), 0.5);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--color-primary);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/* Fullscreen Hero Section */
#hero-fullscreen {
  position: relative;
  overflow: hidden;
}
.hero-fullscreen {
    position: relative;
	width: 100%;
	margin-bottom:30px;
    min-height: 100vh; 
	padding: 100px 0 30px;

    /* background: url('../img/hero-bg.webp'); 
    background-size: cover;*/
    background-position: center;
	background-repeat: no-repeat;
}

.hero-fullscreen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--color-primary-rgb), 0.8); /* Adjustable transparency */
    pointer-events: none; /* Ensures the overlay doesn't block any interactions */
}
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Place the video behind other content */
}
.video-wrapper video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-fullscreen h1 {
  color: rgba(var(--color-white-rgb), 1);
  font-size: 40px;
  font-family: var(--heading-font);
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25);
  text-align: center;
}
.hero-fullscreen h2 {
  color: rgba(var(--color-white-rgb), 1);
  font-size: 36px;
  font-family: var(--heading-font);
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25);
  text-align: center;
}
.hero-fullscreen h2 span {
  color: var(--color-primary);
  font-family: var(--heading-font);
}
.hero-fullscreen h3 {
  color: rgba(var(--color-white-rgb), 1);
  font-family: var(--font-default);
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25)
}
.hero-fullscreen h3 span {
  color: var(--color-primary);
}
.hero-fullscreen p {
  color: rgba(var(--color-white-rgb), 1);
  font-size: 26px;
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25);
  text-align: center;
}
.hero-fullscreen .card{
  background: rgba(var(--color-white-rgb), 0.2);
  z-index:100;
}
.hero-fullscreen .btn-hero {
  margin:5px;
  font-family: var(--font-default);
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  color: rgba(var(--color-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.35);
  background: var(--color-primary);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--color-white-rgb), 0.5);
}
.hero-fullscreen .btn-hero:hover {
  border-color: rgba(var(--color-white-rgb), 0.5);
  background: rgba(var(--color-white-rgb), 0.5);
  color: #ffffff;
}
.hero-fullscreen .btn-get-search {
  font-family: var(--font-default);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 25px;
  color: rgba(var(--color-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25);
  background: var(--color-primary);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--color-white-rgb), 0.5);
}
.hero-fullscreen .btn-get-search:hover {
  border-color: rgba(var(--color-white-rgb), 0.5);
  background: rgba(var(--color-white-rgb), 0.1);
  color: rgba(var(--color-white-rgb), 1);
} 
.hero-fullscreen .btn-get-started {
  color: rgba(var(--color-white-rgb), 1);
  background: var(--color-primary);
  font-family: var(--font-default);
}
.hero-fullscreen .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
.hero-fullscreen .btn-info {
  font-family: var(--font-default);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  color: rgba(var(--color-white-rgb), 1);
  background: var(--color-primary);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--color-white-rgb), 0.5);
  margin:0 auto;
}
.hero-fullscreen .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-default);
  color: var(--color-secondary);
  font-weight: 600;
}
.hero-fullscreen .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-fullscreen .btn-watch-video:hover {
  color: var(--color-primary);
}
.hero-fullscreen .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
  .hero-fullscreen h2 {
    font-size: 32px;
  }
  .hero-fullscreen p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero-fullscreen .btn-get-started, .hero-fullscreen .btn-watch-video {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Primary Buttons  (cookie button)
--------------------------------------------------------------*/
 .btn-primary {
     background: var(--color-primary);
     border: 2px solid var(--color-primary);
	 max-height:60px;
	 margin:5px;
}
 .btn-primary:hover {
     background: none;
     color: var(--color-primary);
	 border: 2px solid var(--color-primary);
}
/*--------------------------------------------------------------
# Secondary Buttons 
--------------------------------------------------------------*/
 .btn-secondary {
     background: var(--color-primary);
     border: 2px solid var(--color-primary);
	 max-height:60px;
	 margin:5px;
	 color: var(--color-primary-dark);
}
 .btn-secondary:hover {
     background: none;
     color: var(--color-primary);
	 border: 2px solid var(--color-primary);
}
/* Sponsors Section */
.links  {
  margin-top:40px;
}
.links .link-wrap {
  padding-left: 10px;
}
.links .swiper-slide .link-item .link-img {
  max-height: 140px;
  width: auto; /* Ensure images maintain aspect ratio */
  background-color:white;
}
.links .link-item {
  box-sizing: content-box;
  padding: 20px;
  margin: 0px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: rgba(var(--contrast-color-rgb), 0.2);
  border-radius: 10px;
}
.links .link-item .link-img {
  width: 90%;
  border-radius: 10px;
  margin-right: 0px;
}
.links .link-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: rgba(var(--color-white-rgb), 1);
}
.links .link-item h4 {
  font-size: 14px;
  color: rgba(var(--color-white-rgb), 1);
  margin: 0;
}
.links .link-item .stars {
  margin: 10px 0;
}
.links .link-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}
.links .link-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align:center;
  font-style: italic;
  margin: 15px auto 15px auto;
}
.links .swiper-slide img {
  transition: 0.3s;
}
.links .swiper-slide img:hover {
  transform: scale(1.1);
}
.links .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.links .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--contrast-color);
  opacity: 1;
}
.links .link-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}
.links .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
@media (max-width: 767px) {
  .links .link-wrap {
    padding-left: 0;
  }
  .links .link-item {
    padding: 30px;
    margin: 15px;
  }
  .links .link-item .link-img {
    position: static;
    left: auto;
  }
}
/*--------------------------------------------------------------
# Post Section
--------------------------------------------------------------*/
.post {
  width: 100%;
  margin: 100px 0 0 0px;

}
/*background of the post image*/
.post .bg {
	background: rgba(var(--color-secondary-rgb), 0);/* 0.3);*/
}
 /*  background: url(../img/hero-bg.jpg) top center no-repeat;
  background-size: cover; */
.post h2 {
  margin: 0;
  font-size: 30px;
  font-family: var(--font-default);
  font-weight: 700;
  color: var(--contrast-color);
}
.post p {
  margin-bottom: 0;
  color: var(--contrast-color); /* Dark Grey */
  line-height: 1.5 ;
}
.post h3 {
  color: var(--color-secondary);
  font-size: 26px;
  margin: 5px 0 15px 0;
}
.post h5 {
  color: var(--contrast-color);
  font-size: 18px;
  margin: 15px 0 15px 0;
}
.post .created {
  text-transform: uppercase;
  font-family: var(--font-default);
  font-weight: 800;
  font-size: 16px;
  color: var(--contrast-color);
}
/* General styling for the button */
.post .btn-get-started {
  margin-top: 10px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0px 4px 10px 0px rgba(var(--color-black-rgb), 0.5);
}

/* Text styling */
.post .btn-get-started span {
  font-family: var(--font-default);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Media query for mobile view */
@media (max-width: 576px) {
  .post .btn-get-started {
    padding: 15px 5px;
  }
  .bi-arrow-right {
	  display:none;
  }
  .post .btn-get-started span {
    font-size: 12px; /* Decrease font size */
  }
}
/* Animate button when clicked */
.post .btn-get-started.clicked {
  background-color: var(--color-secondary); /* Change color to indicate action */
  transform: scale(1.05); /* Slightly increase size */
}

/* Add a spinner icon */
.post .btn-get-started.clicked::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.post .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
.post .btn-get-started:hover i {
  transform: translateX(5px);
}
.post .hero-img {
  text-align: right;
}
.post .read-more {
	margin: 15px 0;
}
.post .read-more a {
  display: inline-block;
  background: #e03a3c;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.post .read-more a:hover {
  background: #e35052;
}
@media (min-width: 1024px) {
  .post {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  
  #post .mainpage {
	margin-top: -40px;
	}
  .post {
    height: auto;
    padding: 40px 0 20px 0;
  }
  .post .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .post .hero-img img {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .post {
    text-align: center;
  }
  .post h1 {
    font-size: 32px;
  }
  .post h2 {
    font-size: 24px;
  }
  .post .hero-img img {
    width: 100%;
  }
}
.post .social {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.post .social a {
  color: #a2a2a2;
  transition: 0.3s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bbbbbb;
}
.post .social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.post  .social i {
  font-size: 18px;
  margin: 0 2px;
}
.post .ftc {
	color: rgba(var(--contrast-color-rgb), 0.45);
	margin: 10px 0;
}
.post .referral-link {
	margin:40px;
}
.btn-clipboard{
	/* position:absolute; */
	margin:5px;
	z-index:10;
	display:block;
	padding:.25rem .15rem;
	font-size:.55em;
	color:var(--color-primary);
	background-color: var(--color-white);
	border:1px solid;
	border-radius:.25rem;
	width:55px;
	}

.btn-clipboard:hover,.btn-clipboard:focus{
	color:#fff;
	background-color:var(--color-primary);
	}

/*--------------------------------------------------------------
# portfolio
--------------------------------------------------------------*/
 #portfolio {
    padding: 5px;
	border: 0px solid black;
	margin: auto;
	/* background: url('../img/bg.webp') center center; */
}
 #portfolio .content {
      min-height: 200vh; /* Ensure the parent has enough height */
    }

 #portfolio .featuredclip {
     position: relative;
	 float:left;
}
 #portfolio .featured-overlay {
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: all ease-in-out 0.4s;
}
 #portfolio .portfolio-item {
     overflow: hidden;
     position: relative;
     padding: 10px;
	 margin: 0px;
	 border: 0px solid black;
	 background: rgba(var(--contrast-color-rgb), 0);
	 background-clip: content-box;
}
 #portfolio .portfolio-item img {
	transition: all ease-in-out 0.4s;
	width: 100%;
	position: relative;
	border: 0px solid rgba(var(--color-white-rgb), 0);
	overflow: hidden;
	z-index: 0;
}
 #portfolio .square-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* This ensures a square aspect ratio */
}
 #portfolio .square-image {
  position: absolute;
  width: 100%;
  height: 160%;
  object-fit: cover; /* This ensures the image covers the entire square */
}
 #portfolio .box .portfolio-item:hover img {
     transform: scale(1.1);
	 border: 0px solid var(--color-secondary);
}
 #portfolio .portfolio-item:hover .featured-overlay {
     opacity: 1;
     background: rgba(var(--color-black-rgb), 0.8);
	 border-radius:10px;
}
 #portfolio .post-box {
	border: 0px black solid;
	padding:0 10px 20px 10px;
 }
 
 #portfolio .post-box .meta-top {
  margin-top: 20px;
  color: var(--color-gray);

}
 #portfolio .post-box .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
 #portfolio .post-box .meta-top ul li + li {
  padding-left: 20px;
}
 #portfolio .post-box .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--color-primary-rgb), 0.8);
}
 #portfolio .post-box .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
 #portfolio .post-box .meta-top .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}

/* Remove absolute positioning for the stars */
#portfolio .portfolio-item .bi-star-fill {
  position: absolute;
  bottom: 10px; /* Adjust this value to position the star vertically */
  left: 10px; /* Adjust this value to position the star horizontally */
  z-index: 2; /* Ensure the star appears above the image */
}

/* Adjust the positioning of the stars within the video container */
#portfolio .box .bi-star-fill {
  /* Adjust these values as needed */
  top: 0px;
  left: 0px;
}

/* Remove absolute positioning for the stars */
#portfolio .portfolio-item .bi-emoji-frown {
  position: absolute;
  bottom: 10px; /* Adjust this value to position the star vertically */
  left: 10px; /* Adjust this value to position the star horizontally */
  z-index: 2; /* Ensure the star appears above the image */
}

/* Adjust the positioning of the stars within the video container */
#portfolio .box .bi-emoji-frown {
  /* Adjust these values as needed */
  top: 0px;
  left: 0px;
}


@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0)
{ @media {
    /*
      Define here the CSS styles applied only to Safari browsers
      (any version and any device)
     */
	 #portfolio .portfolio-item {
	 max-height:215px;
	 }
}}
 #portfolio .portfolio-item h3 {
     color: var(--color-white);
     font-size: 16px;
     margin: 0;
     text-transform: capitalize;
     font-weight: 700;
     /* text-shadow: 2px 2px #000000; */
}

/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/
#portfolio .box {
  margin: 5px 0;
  padding: 15px;
  box-shadow: 2px 2px 15px  rgba(1, 41, 112, 0.09);
  text-align: center;
  transition: 0.3s;
  height: 95%;
}
#portfolio .box iframe {
  padding: 10px 20px;
  transition: 0.5s;
  transform: scale(1.1);
}
#portfolio .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}
#portfolio .box:hover iframe {
  transform: scale(1);
}
#portfolio h5 {
     color: var(--contrast-color);
     font-size: 16px;
     margin: 5px;
	 text-align:center;
     font-weight: 700;
	 /* text-shadow: 2px 2px #000000; */
}
 #portfolio .featured-text {
	 display:true;
     color: var(--contrast-color);
     font-size: 14px;
     margin: 5px;
	 text-align:center;
     font-weight: 200;
	 border: 0px solid black;
}

 #portfolio .box .portfolio-item:hover img {
     transform: scale(1.1);
	 border: 0px solid var(--color-secondary);
}
 #portfolio .portfolio-item:hover .featured-overlay {
     opacity: 1;
     background: rgba(var(--color-black-rgb), 0.8);
}
 #portfolio .featured-info {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
}
#portfolio .btn-more {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
#portfolio .btn-more:hover {
  border-color: rgba(var(--color-white-rgb), 0.5);
}
/* List Format */
#portfolio .list {
  position: relative;
  width:95%;
  margin: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
  background: rgba(var(--contrast-color-rgb), 0);
  box-shadow: 0px 5px 25px 0px rgba(var(--contrast-color-rgb), 0.1);
  transition: 0.5s;
}
@media (max-width: 640px) {
  #portfolio .list {
    padding: 10px;
	width:90%;
  }
}
#portfolio .list .created {
  text-transform: uppercase;
  font-family: var(--font-default);
  font-weight: 800;
  font-size: 16px;
  color: var(--contrast-color);
}
#portfolio .date_text {
  text-align:center;
  font-size: 11px;
  color: var(--contrast-color);
}
#portfolio .list .pic {
  overflow: hidden;
  width: 180px;
  /* border-radius: 50%; */
}
#portfolio .list .pic img {
  transition: ease-in-out 0.3s;
}
#portfolio .list:hover {
  transform: translateY(-10px);
}
#portfolio .list .list-info {
  width:80%;
  padding-left: 30px;
}
#portfolio .list h4 {
  font-family: var(--font-default);
  font-weight: 900;
  margin-bottom: 5px;
  font-size: 26px;
  color: var(--contrast-color);
}
#portfolio .list a {
  color: var(--color-primary);
  font-size: 18px;
}
#portfolio .list a:hover {
  color: var(--color-secondary);
}
#portfolio .list span {
  display: block;
  font-family: var(--font-default);
  font-size: 18px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 800;
}
#portfolio .list span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}
#portfolio .list p {
  margin: 10px 0 0 0;
  font-size: 15px;
  color: var(--contrast-color);
}
#portfolio .list .social {
  margin-top: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#portfolio .list .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
}
#portfolio .list .social a i {
  color: rgba(var(--color-white-rgb), 5);
  font-size: 16px;
  margin: 0 2px;
}
#portfolio .list .social a:hover {
  background: var(--color-secondary);
}
#portfolio .list .social a:hover i {
  color: var(--contrast-color);
}
#portfolio .list .social a+a {
  margin-left: 8px;
}
@media (max-width: 576px) {
    .list {
      flex-direction: column;
    }
    .portfolio-item {
      order: 1;
    }
    .list-info {
      order: 2;
    }
  }
  /* For the 2-column template */
#portfolio .list .two-column-template {
  display: flex;
  flex-direction: row;
}
/* Image column */
#portfolio .list .image-column {
  padding: 10px; /* Add appropriate padding */
  display: flex;
  align-items: flex-start; /* Align content at the top */
}
#portfolio .list .image-column img {
  max-width: 100%; /* Ensure the image doesn't exceed its container's width */
  max-height: 100%; /* Maintain the image's aspect ratio */
  height: auto; /* Allow the height to adjust automatically */
}
/* Text column */
#portfolio .list .text-column {
  flex: 1;
  padding: 0 20px; /* Add appropriate padding */
}
/* For the right column */
#portfolio .list .right-column {
  /* Add styling for the right column */
}
/* Media query for collapsing at 576px */
@media (max-width: 576px) {
#portfolio .list   .two-column-template {
    flex-direction: column;
  }
 #portfolio .list  .image-column,
  .text-column {
    /* width: 100%; Make both columns take full width */
  }
}
/* Media query for collapsing at 576px */
@media (max-width: 576px) {
#portfolio .list   .two-column-template {
    flex-direction: column;
  }
#portfolio .list   .image-column,
  .text-column {
    width: 100%; /* Make both columns take full width */
  }
#portfolio .list   .image-column img {
    max-width: 100%; /* Allow image to take full width */
  }
}
#portfolio  .uniform-height {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container without stretching */
}
/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: var(--color-black) url('');
}
.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}
.cookiealert a {
    text-decoration: underline
}
.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
/* Insert */
.input-text {
	display:true;
    color: var(--contrast-color);
    font-size: 14px;
    font-weight: 400;
}
.input-group-text {
	padding: 0.350rem 0.35rem;
	background-color: var(--color-primary);
	color: var(--color-white);
}
span.red {
	color: #ff0000;
	font-weight: 400;
}
span.yellow {
	color: #fdf503;
	font-weight: 400;
	/*background: var(--color-black);*/
}
/* AdBrands Section */
#adbrands .adbrands {
	margin: 20px;
	padding: 20px;
	width:90%;
	text-align:center;
	vertical-align: top;
	background: rgba(var(--color-secondary-rgb), 0.1);
	border-radius: 20px;
}
#adbrands .link-img {
  margin-top: 10px;
}
#adbrands .fixed {
      position: fixed;
      top: 80px; /* Adjust top offset if needed */
      z-index: 1000;
      width: calc(33.333% - 110px); /* Maintain the width and compensate for padding/margin */
    }
#adbrandsContainer {
	margin: 10px 0;
}
#adbrands h5 {
     color: var(--color-primary);
	 font-family: var(--font-default);
     font-size: 20px;
	 text-align:center;
     font-weight: 400;
	 /* text-shadow: 2px 2px #000000; */
}
@media (max-width: 678px) {
#adbrands .adbrands{
	padding: 20px 20px;
	text-align:center;
	
}
#adbrands .fixed {
	position: static; /* Remove fixed positioning on small screens */
	width: 100%; /* Maintain the width */
  }
}
#adbrands .btn-hero {
  margin:5px;
  font-family: var(--font-default);
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  color: rgba(var(--color-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--color-black-rgb), 0.25);
  background: var(--db-button-hero);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--color-white-rgb), 0.5);
}
#adbrands .btn-hero:hover {
  border-color: rgba(var(--color-white-rgb), 0.5);
  background: rgba(var(--db-button-hero-rgb), 0.85);
  color: rgba(var(--color-white-rgb), 1);
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/

.cta {
  margin:20px 0 60px 0;
  padding: 0;
}
.cta .container {
  padding: 40px;
  background: rgba(var(--color-black-rgb), 0.1);
  border-radius: 15px;
}
.cta .content h3 {
  color: rgba(var(--color-black-rgb), 0.6);
  font-size: 36px;
  font-weight: 700;
}
.cta .content p {
  color: rgba(var(--color-black-rgb), 0.6);
  font-weight: 400;
  font-size: 16px;
}
.cta  a {
  font-size: 15px;
  color: var(--color-primary);
}
.cta  a:hover {
  font-size: 15px;
  color: rgba(var(--color-default-rgb), 0.7);
}
/* General styling for the button */
.cta .btn-get-started {
  margin-top: 10px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0px 4px 10px 0px rgba(var(--color-black-rgb), 0.5);
}

/* Text styling */
.cta .btn-get-started span {
  font-family: var(--font-default);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Media query for mobile view */
@media (max-width: 576px) {
  .cta .btn-get-started {
    padding: 15px 5px;
  }
  .bi-arrow-right {
	  display:none;
  }
  .cta .btn-get-started span {
    font-size: 12px; /* Decrease font size */
  }
}

.cta .btn-get-started:hover {
  background: rgba(var(--color-secondary-rgb), 0.5);
}
/* Animate button when clicked */
.cta .btn-get-started.clicked {
  background-color: var(--color-secondary); /* Change color to indicate action */
  transform: scale(1.05); /* Slightly increase size */
}

/* Add a spinner icon */
.cta .btn-get-started.clicked::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--db-scroll-top);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}
.scroll-top:hover {
  background: rgba(var(--db-scroll-top-hover), 0.85);
  color: var(--color-white);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/

/* General styling for the button */
.blog .btn-get-started {
  margin-top: 10px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0px 4px 10px 0px rgba(var(--color-black-rgb), 0.5);
}

/* Text styling */
.blog .btn-get-started span {
  font-family: var(--font-default);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Media query for mobile view */
@media (max-width: 576px) {
  .blog .btn-get-started {
    padding: 15px 5px;
  }
  .bi-arrow-right {
	  display:none;
  }
  .blog .btn-get-started span {
    font-size: 12px; /* Decrease font size */
  }
}
/* Animate button when clicked */
.blog .btn-get-started.clicked {
  background-color: var(--color-secondary); /* Change color to indicate action */
  transform: scale(1.05); /* Slightly increase size */
}

/* Add a spinner icon */
.blog .btn-get-started.clicked::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.blog .tab-pane ul {
  /* list-style: none; */
  padding: 0;
  margin-left:20px;
}

.blog .tab-pane ul li {
  padding-bottom: 10px;
}

.blog .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}
.blog .mainpage blockquote {
  overflow: hidden;
  background-color: rgba(var(--color-secondary-rgb), 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.blog .mainpage {
	border: 0px solid black;
	margin-top: 40px;
}
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0);
  padding: 20px;
  height: 100%;
}
.blog .posts-list article + article {
  margin-top: 60px;
}
.blog .posts-list .post-img {
  max-height: 300px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}
.blog .posts-list .title {
  font-size: 34px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-primary);
}
.blog .posts-list .title a {
  color: var(--color-primary);
  transition: 0.3s;
}
.blog .posts-list .title a:hover {
  color: var(--color-secondary);
}
.blog .posts-list .blog-content {
  margin-top: 20px;
}
.blog .posts-list .blog-content p {
  font-size: 20px;
  color: var(--color-gray);
}
.blog .posts-list .social {
  margin-top: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.blog .posts-list .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
}
.blog .posts-list .social a i {
  color: rgba(var(--color-white-rgb), 5);
  font-size: 16px;
  margin: 0 2px;
}
.blog .posts-list .social a:hover {
  background: var(--color-secondary);
}
.blog .posts-list .social a:hover i {
  color: var(--contrast-color);
}
.blog .posts-list .social a+a {
  margin-left: 8px;
}
/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0);
  padding: 10px;
}
.blog .blog-details .post-img {
  margin: 10px 0px 20px 0px;
  overflow: hidden;
}
.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-primary);
}
.blog .blog-details .mainpage {
  margin-top: 20px;
}
.blog .blog-details .mainpage h2 {
  font-size: 34px;
  font-weight: bold;
  color: var(--color-primary);
}
.blog .blog-details .mainpage h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog .blog-details .social {
  margin-top: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.blog .blog-details .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: var(--color-secondary);
}
.blog .blog-details .social a i {
  color: rgba(var(--color-white-rgb), 5);
  font-size: 16px;
  margin: 0 2px;
}
.blog .blog-details .social a:hover {
  background: var(--color-secondary);
}
.blog .blog-details .social a:hover i {
  color: var(--contrast-color);
}
.blog .blog-details .social a+a {
  margin-left: 8px;
}
.blog .blog-details .btn-get-started {
  margin-top: 10px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0px 4px 10px 0px rgba(var(--color-black-rgb), 0.5);
}
.blog .blog-details .btn-get-started span {
  font-family: var(--font-default);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}
.blog .blog-details .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
.blog .blog-details .btn-get-started:hover i {
  transform: translateX(5px);
}
.blog .blog-details .post-box .meta {
  margin-top: 15px;
}
.blog .blog-details  .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-primary);
}
.blog .blog-details .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}
/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
#sidebar .sidebar {
  margin: 20px;
  padding: 20px;
  width:100%;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}
#sidebar .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-contrast);
}
#sidebar .sidebar .sidebar-item + .sidebar-item {
  margin-top: 40px;
}
#sidebar .sidebar .search-form form {
  background: var(--color-white);
  border: 1px solid rgba(var(--color-black-rgb), 0.3);
  padding: 3px 10px;
  position: relative;
}
#sidebar .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}
#sidebar .sidebar .search-form form input[type=text]:focus {
  outline: none;
}
#sidebar .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
#sidebar .sidebar .search-form form button i {
  line-height: 0;
}
#sidebar .sidebar .search-form form button:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
#sidebar .sidebar .categories ul {
  list-style: none;
  padding: 0;
}
#sidebar .sidebar .categories ul li + li {
  padding-top: 10px;
}
#sidebar .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}
#sidebar .sidebar .categories ul a:hover {
  color: var(--color-default);
}
#sidebar .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}
#sidebar .sidebar .recent-posts .post-item {
  display: flex;
}
#sidebar .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
#sidebar .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}
#sidebar .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}
#sidebar .sidebar .recent-posts h4 a {
  color: var(--color-contrast);
  transition: 0.3s;
}
#sidebar .sidebar .recent-posts h4 a:hover {
  color: var(--color-secondary);
}
#sidebar .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}
#sidebar .sidebar .tags {
  margin-bottom: -10px;
}
#sidebar .sidebar .tags ul {
  list-style: none;
  padding: 0;
}
#sidebar .sidebar .tags ul li {
  display: inline-block;
}
#sidebar .sidebar .tags ul a {
  color: var(--color-secondary-light);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--color-secondary-light-rgb), 0.8);
  display: inline-block;
  transition: 0.3s;
}
#sidebar .sidebar .tags ul a:hover {
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}
#sidebar .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(var(--color-secondary-light-rgb), 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/

.recent-blog-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-contrast);
}
.recent-blog-posts .post-box .post-title {
  font-size: 24px;
  color: var(--color-contrast);
  font-weight: 700;
  transition: 0.3s;
}
.recent-blog-posts .post-box p {
  margin: 15px 0 0 0;
  color: rgba(var(--color-secondary-dark-rgb), 0.7);
}
.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}
.recent-blog-posts .post-box .readmore i {
  font-size: 18px;
}
.recent-blog-posts .post-box:hover .post-title {
  color: var(--color-primary);
}
.recent-blog-posts .square-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* This ensures a square aspect ratio */
}

.recent-blog-posts .square-image {
  position: relative;
  width: 100%;
  height: 160%;
  object-fit: cover; /* This ensures the image covers the entire square */
}
.recent-blog-posts .uniform-height {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container without stretching */
}
.recent-blog-posts .btn-get-started {
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0px 4px 10px 0px rgba(var(--color-black-rgb), 0.5);
}
.recent-blog-posts .btn-get-started span {
  font-family: var(--font-default);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}
.recent-blog-posts .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
.recent-blog-posts .btn-get-started:hover i {
  transform: translateX(5px);
}
.modal 
	h2 {
    font-size: 42px;
	font-weight:600;
	color: var(--color-black);
	font-family: var(--font-primary);
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: rgba(var(--color-white-rgb), 5);
  font-size: 14px;
}
.footer .footer-content {
  background: var(--db-footer-content-color);
  /* background-image: linear-gradient(var(--content-color) 60%, rgba(var(--color-primary-rgb), 9)); */
  margin-top:25px;
  padding: 60px 0 30px 0;
}
.footer .footer-content .footer-info img {
  max-width: 200px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  color: rgba(var(--color-white-rgb), 5);
  font-family: var(--font-default);
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-default);
  color: rgba(var(--color-white-rgb), 5);
}
.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--color-white-rgb), 5);
  font-family: var(--font-default);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.footer .footer-content .footer-links {
  margin-bottom: 30px;
}
.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: rgba(var(--color-white-rgb), 1);
  font-size: 12px;
  line-height: 1;
}
.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  color: rgba(var(--color-white-rgb), 1);
  display: flex;
  align-items: center;
}
.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.8);
  /* color: var(--color-primary); */
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-content .footer-links ul a:hover {
  color: rgba(var(--color-white-rgb), 5);
}
.footer .footer-content .footer-newsletter p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-default);
  color: rgba(var(--color-white-rgb), 5);
}
.footer .footer-content .footer-newsletter h3 {
  color: rgba(var(--color-white-rgb), 5);
}
.footer .footer-newsletter a {
  color: rgba(var(--color-white-rgb), 0.9);
}
.footer .footer-newsletter a:hover {
  color: rgba(var(--color-white-rgb), 5);
}
 /* Footer Newsletter Button overlays content background color */
.footer .btn-get-started {
  margin: 0 0 10px 0;
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--color-white-rgb), 0.1);
}
.footer .btn-get-started:hover {
  border-color: rgba(var(--color-white-rgb), 0.5);
}
.footer .footer-legal {
  padding: 30px 0;
  background: var(--db-footer-legal-color);
  margin-bottom: -60px;
}
.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--db-footer-legal);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.footer .footer-legal .social-links a:hover {
  background: rgba(var(--db-footer-legal-rgb), 0.85);
  text-decoration: none;
  color: var(--color-white);
}
.footer .copyright {
  text-align: left;
  color: rgba(var(--color-white-rgb), 8);
}
.footer .copyright a {
  color: var(--db-footer-copyright);
}
.footer .copyright a:hover {
  color: rgba(var(--color-white-rgb), 1);
}

 .mood-marker {
  z-index: 2; 
  color: rgba(var(--color-primary-rgb), 1);
} 

.text-positive, .text-negative {
	margin: 0;
	white-space: nowrap;
    padding: 0px 0px 0px 5px;
}

.text-positive i, .text-negative i {
  margin-right: 0 !important;
}
/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
#projects {
	margin: 40px 0 0 0;
}
.projects .nav-tabs {
  border: 0;
}

.projects .nav-link {
  border: 0;
  padding: 25px 20px;
  color: var(--color-secondary);
  box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.projects .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.projects .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: var(--color-secondary);
}

.projects .nav-link:hover {
  color: var(--color-primary);
}

.projects .nav-link.active {
  transition: 0.3s;
  background: var(--color-secondary) linear-gradient(rgba(var(--color-primary-rgb), 0.95), rgba(var(--color-primary-rgb), 0.6));
  border-color: var(--color-primary);
}

.projects .nav-link.active h4 {
  color: var(--color-white);
}

.projects .nav-link.active i {
  color: var(--color-white) !important;
}

.projects .tab-content {
  margin-top: 30px;
}

.projects .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.projects .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  color: var(--color-secondary);
}

.projects .tab-pane ul {
  list-style: none;
  padding: 0;
}

.projects .tab-pane ul li {
  padding-bottom: 10px;
}

.projects .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}

.projects .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 0 0 20px 0;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

#pricing {
	margin: 40px 0 0 0;
}
#contact {
	margin: 40px 0 0 0;
}
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/

#featured-services2 {
	margin: 40px 0 0 0;
}
.featured-services2 .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
  height: 100%;
  border: dashed grey 1px;

}
.featured-services2 .service-item .icon {
  margin-bottom: 10px;
}
.featured-services2 .service-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}
.featured-services2 .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}
.featured-services2 .service-item h4 a {
  color: var(--color-secondary);
  transition: ease-in-out 0.3s;
}
.featured-services2 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.featured-services2 .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
}
.featured-services2 .service-item:hover h4 a {
  color: var(--color-primary);
}

#featured-services3 {
	margin: 40px 0 0 0;
}
.featured-services3 .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
  height: 100%;
  border: dashed grey 1px;

}
.featured-services3 .service-item .icon {
  margin-bottom: 10px;
}
.featured-services3 .service-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}
.featured-services3 .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}
.featured-services3 .service-item h4 a {
  color: var(--color-secondary);
  transition: ease-in-out 0.3s;
}
.featured-services3 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.featured-services3 .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
}
.featured-services3 .service-item:hover h4 a {
  color: var(--color-primary);
}
#get-started  h1 {
    color: var(--color-primary);
	font-size: 50px;
	font-weight:600;
	font-family: var(--font-primary);
  }
@media (max-width: 768px) {
  #get-started  h1 {
    font-size: 28px;
  }
}
/* Base mobile logo text */
.wave-text-static {
  color: var(--db-header-text-color) !important;   /* WHITE */
}

/* Accent part */
.wave-text-static .wave-text-accent {
  color: var(--color-primary) !important;   /* TEAL */
}
