/*--------------------------------------------------------------
# General
# Main Colors
#9478fc - Purple (Primary)
#242422 - Black (Dark)
#f28954 - Orange (Secondary)
#50cd89 - Green (Tertiary)
--------------------------------------------------------------*/
body {
  font-family: "Roobert", sans-serif;
  color: #242422;
  background: #fff;
  font-weight: 200;
}

a {
  color: #242422;
  text-decoration: none;
}

a:hover {
  color: #008bd9;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Suisse Works", sans-serif;
  font-weight: 300;
}

p {
  font-family: "Roobert", sans-serif;
  font-weight: 100;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #242422;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #f28954;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 60px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  padding: 30px 0 30px 0;
  border-top: 1px solid #242422;
  border-bottom: 1px solid #242422;
}

@media screen and (max-width: 648px) {
  #header {
    padding: 15px 0 15px 0;
    height: 45px;
  }
}

@media screen and (max-width: 648px) {
  #header h1 {
    font-size: 26px;
  }
}

#header.scrolled {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  padding-left: 20px;
  margin: 10px 20px;
  border-radius: 18px;
  background-color: #fff;
  opacity: 0.6;
  box-shadow: 0 4px 16px 0 rgba(36, 36, 34, 0.12), 0 1.5px 0 0 #e5e5e5;
}

#header .logo h1 {
  font-size: 25px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  font-family: "Suisse Works", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #181c32;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
  max-width: 250px;
}

/* Announcement Bar */
.announcement-bar {
  font-size: 12px;
  background-color: #f4f4f4;
  color: #181c32;
  height: 20px;
  padding: 10px 0;
  text-align: center;
  z-index: 998;
  position: fixed;
  width: 100%;
  top: 0;
}

.announcement-bar a {
  font-family: "Roobert", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #181c32;
}

.announcement-bar .container {
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.announcement-bar p {
  padding: 0px;
  margin: -10px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  font-family: "Roobert", sans-serif;
  font-weight: 300;
  position: relative;
}

.navbar a,
.navbar a:focus {
  font-family: "Roobert", sans-serif;
  font-weight: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #242422;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #242422;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  font-family: "Roobert", sans-serif;
  font-weight: 300;
  background: #242422;
  color: #fff;
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 0px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  transform: translate(-0.25rem, -0.25rem);
  box-shadow: 6px 6px #00000075;
  color: #fff;
  background: #242422;
  border: 1px solid #242422;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #242422;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #242422;
  font-size: 30px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #242422;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
    min-height: 90vh;
  }
}

.navbar-mobile {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
  display: flex; /* Use flexbox to manage items */
  flex-direction: column; /* Stack navbar items vertically */
  height: 100vh; /* Ensure the navbar takes full screen height */
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #242422;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 0px;
  overflow-y: auto;
  transition: 0.5s ease-in-out;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  font-family: "Suisse Mono", sans-serif;
  padding: 10px 20px;
  font-size: 18px; /* Reduced from 20px for better mobile readability */
  font-weight: 400; /* Changed from 600 to 400 for better readability */
  color: #242422;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #242422;
}

.navbar-mobile .getstarted {
  color: #ffffff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  font-family: "Suisse Mono", sans-serif;
  font-weight: 400; /* Changed from 500 to 400 for consistency */
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 28px;
  transition: 0.5s;
  margin-top: 20px;
  color: #fff;
  background: #242422;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: transparent;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  font-family: "Suisse Mono", sans-serif;
  font-weight: 400; /* Added explicit font weight for consistency */
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #242422;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  padding-bottom: 100px;
  background-color: transparent;
  position: relative;
}

@media (max-width: 991px) {
  #hero {
    min-height: 100vh !important;
    height: 100vh !important;
  }
}

@media (max-width: 600px) {
  #hero {
    min-height: 100vh !important;
    height: 100vh !important;
  }
}

@media (max-width: 575px) {
  #hero {
    min-height: 100vh !important;
    height: 100vh !important;
  }
}

#hero::before {
  content: "";
  background-color: #242422;
  mix-blend-mode: color;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

#hero::after {
  content: "";
  background-image: url("../img/perspective.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

#hero > * {
  position: relative;
  z-index: 2;
}

#hero h1 {
  letter-spacing: -0.05em;
  font-family: "Suisse Works", sans-serif;
  font-size: 68px;
  font-weight: 400;
  color: #242422;
}

#hero h1 span {
  font-family: "Suisse Works", sans-serif;
  font-weight: 400;
  margin: 0;
  font-size: 68px;
  color: #242422;
}

#hero .highlight {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  color: #242422;
}

#hero h2 {
  color: #92929f;
  margin: 15px 0 0 0;
  font-size: 28px;
  line-height: 40px;
  font-weight: 400;
}

#hero h5 {
  font-family: "Suisse Mono", sans-serif;
  font-weight: 400;
  margin: 0;
  font-size: 16px;
  color: #242422;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.btn-get-started {
  font-family: "Suisse Mono", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 0px;
  transition: 0.5s;
  margin-top: 10px;
  background: #242422;
  color: #fff;
  border: 1px solid #242422;
  transform: translate(-0.25rem, -0.25rem);
  box-shadow: 6px 6px #00000075;
  overflow: hidden;
}

.btn-get-started::before,
.buy-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* Start from the left, outside of the button */
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%); /* The shine effect */
  /* run animation for 1s with a 5s break inbetween */
  animation: shine-animation 8s infinite;
}

@keyframes shine-animation {
  0% {
    left: -100%;
  }
  8.33%,
  100% {
    /* Calculation: (1 / (11 + 1) * 100%) = 8.33% */
    left: 100%;
  }
}

.btn-get-started:hover {
  transform: translate(0, 0);
  box-shadow: none;
  color: #fff;
  background: #9478fc;
  border: 1px solid #9478fc;
}

@media (max-width: 991px) {
  #hero .container {
    /* height: 100vh; */
    padding-top: 15%;
  }

  #hero h1 {
    font-size: 48px;
    line-height: 48px;
  }

  #hero .highlight {
    font-size: 48px;
    line-height: 48px;
  }

  #hero h2 {
    font-size: 26px;
    line-height: 30px;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 95%;
  }
}

@media (max-width: 600px) {
  #hero .container {
    /* height: 100vh; */
    padding-top: 15%;
  }

  #hero h1 {
    font-size: 42px;
    line-height: 48px;
  }

  #hero .highlight {
    font-size: 28px;
    line-height: 28px;
  }

  #hero h2 {
    font-size: 24px;
    line-height: 28px;
  }

  #hero h5 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 95%;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* Text Type Animation */
.text-type-animation {
  text-transform: none;
}
.txt-rotate {
  margin: 0;
  color: #242422;
}

#hero .img-fluid {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 575px) {
  #hero .img-fluid {
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  #hero .targets {
    max-width: 50px;
    max-height: 100%;
  }
}

#hero .form-control {
  font-family: "Suisse Mono", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 0px;
  transition: 0.5s;
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

#hero .targets {
  max-width: 80px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  section {
    padding: 20px 0;
    overflow: hidden;
  }
}

.section-bg {
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}

.section-title p {
  font-family: "Suisse Works", sans-serif;
  font-weight: 400;
}

.section-title h2 {
  font-family: "Suisse Works", sans-serif;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 0;
  line-height: 24px;
  margin-bottom: 15px;
  color: #92929f;
}

.section-title p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #242422;
}

.section-title p::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #242422;
  bottom: 0;
  left: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #ffffff;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
  background-color: #fff;
}

.about h3 {
  font-family: "Suisse Works", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #242422;
}

.about h4 {
  font-size: 25px;
  font-weight: 700;
  margin-top: 5px;
  color: #242422;
}

.about i {
  font-size: 34px;
  margin-top: 12px;
}

.about p {
  font-size: 15px;
  font-family: "Roobert", sans-serif;
  font-weight: 100;
  color: #5a6570;
}

@media (max-width: 991px) {
  .about .about-img img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .about .about-img img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about h4 {
    font-size: 22px;
  }
}

@media screen and (max-width: 480px) {
  .about h3 {
    font-size: 30px;
  }

  .about h4 {
    font-size: 20px;
  }

  .about i {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Trust
--------------------------------------------------------------*/

.trust {
  background-color: #fff;
}

.trust h3 {
  font-weight: 400;
  font-size: 38px;
  color: #242422;
}

.trust h4 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 5px;
  color: #242422;
}

.trust i {
  font-size: 48px;
  margin-top: 15px;
  color: #50cd89;
}

.trust p {
  font-size: 15px;
  color: #5a6570;
}

@media (max-width: 991px) {
  .trust .trust-img img {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .trust .trust-img img {
    max-width: 90%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services {
  background-color: #f9f9f9;
}

.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  border: 1px solid #181c32;
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.services .icon-box:hover {
  transform: translate(-0.25rem, -0.25rem);
  box-shadow: 6px 6px #9578fc;
}

.services .icon i {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 15px;
  color: #181c32;
}

.services .title {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .title a {
  font-family: "Suisse Works", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #242422;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #242422;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(122, 105, 96, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #242422;
  margin: 0 4px;
  line-height: 0;
  background-color: #fff;
  padding-top: 6px;
  padding-right: 1px;
  border-radius: 3px;
  text-align: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  line-height: 0;
  font-size: 20px;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #242422;
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
  left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 16px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #242422;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #242422;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: none;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
section#faq.faq.section-bg {
  background-color: #00a2ff0f;
}

.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eae7e5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: "Suisse Mono", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #242422;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: #343a40;
}

.faq .faq-list .collapsed:hover {
  color: #242422;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

@media screen and (max-width: 480px) {
  .faq {
    padding: 40px 0;
  }

  .faq .faq-list {
    padding: 0;
    list-style: none;
  }

  .faq .faq-list li {
    border-bottom: 1px solid #eae7e5;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .faq .faq-list .question {
    display: block;
    position: relative;
    font-family: "Suisse Mono", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: #242422;
    transition: 0.3s;
  }

  .faq .faq-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
  }

  .faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
  }

  .faq .faq-list .icon-show {
    display: none;
  }

  .faq .faq-list .collapsed {
    color: #343a40;
  }

  .faq .faq-list .collapsed:hover {
    color: #242422;
  }

  .faq .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
  }

  .faq .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 400;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(78, 64, 57, 0.6);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #242422;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(78, 64, 57, 0.95) 0%, rgba(78, 64, 57, 0.95) 15%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
section#clients.clients.section-bg {
  box-shadow: none;
}

.clients .clients-slider .swiper-slide img {
  opacity: 1;
  transition: 0.3s;
  height: 100px;
}

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

.clients .clients-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #242422;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #242422;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #242422;
  border-bottom: 3px solid #242422;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: none;
}

.contact .info i {
  font-size: 20px;
  color: #242422;
  float: left;
  width: 44px;
  height: 44px;
  background: #fdf1ec;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #242422;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #ab9d95;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #242422;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #242422;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #242422;
  border-bottom: 3px solid #242422;
  padding: 30px;
  background: #fff;
  box-shadow: none;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 400;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 400;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #242422;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 0px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #f28954;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  width: 100%;
  min-height: auto;
  padding-bottom: 100px;
  background-color: transparent;
  position: relative;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  background: #242422;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #ffffff;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  color: #fff;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 0px;
  box-shadow: none;
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #242422;
  color: #fff;
  transition: 0.3s;
  border-radius: 0px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #242422;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #242422;
  color: #fff;
  z-index: 20;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 400;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Suisse Mono", sans-serif;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f28954;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #f28954;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #242422;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  color: #f28954;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #242422;
}

#footer .disclaimer {
  font-size: 8px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}

#footer h3 {
  font-family: "Suisse Works", sans-serif;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
}

#footer .social-links {
  list-style-type: none; /* Remove default list styling */
  margin: 0;
  padding: 0;
}

.social-links li {
  display: inline-block; /* Display list items inline */
  margin-right: 0px; /* Add some space between icons */
  padding: 0;
}

.social-links li i {
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

#pricing {
  background: radial-gradient(rgba(0, 0, 0, 0.1) 8%, transparent 12%);
  background-position: 0% 0%;
  background-size: 15px 15px;
}

.pricing .row {
  padding-top: 0px;
}

.pricing .box {
  padding: 40px 30px;
  border: 1px solid #242422;
  background: #fff;
  height: 100%;
  border-radius: 0px;
  position: relative;
}

.pricing .section-title p::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #242422;
  bottom: 0;
  left: calc(50% - 30px);
}

#pricing .section-title p {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 5px;
}

.pricing .section-title h2 {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 0;
  line-height: 24px;
  margin-bottom: 15px;
  color: #92929f;
}

.pricing h1 {
  font-family: "Suisse Works", sans-serif;
  font-weight: 200;
  margin-bottom: 15px;
  font-size: 46px;
  color: #242422;
}

.pricing h2 {
  font-family: "Suisse Works", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 36px;
  color: #242422;
}

.pricing h3 {
  font-family: "Suisse Works", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 34px;
  color: #242422;
}

.pricing h4 {
  font-size: 48px;
  color: #242422;
  font-weight: 400;
  font-family: "Suisse Works", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 sub {
  color: #f28954;
  font-size: 18px;
  display: block;
}

.pricing .display-6 {
  font-family: "Suisse Works", sans-serif;
  font-weight: 400;
}

.pricing .card-text {
  font-family: "Suisse Mono", sans-serif;
  font-size: 16px;
  color: #242422;
  font-weight: 400;
  line-height: 20px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #4e4039;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-family: "Roobert", sans-serif;
  font-size: 16px;
  color: #242422;
  font-weight: 100;
  line-height: 20px;
}

.pricing ul i {
  color: #f28954;
  font-size: 24px;
  position: absolute;
  left: 0;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing ul.nav > li.nav-item {
  padding: 0px;
  margin: 10px 10px;
}

.pricing .buy-btn {
  font-family: "Roobert", sans-serif;
  font-size: 16px;
  font-weight: 400;
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 35px;
  border-radius: 0px;
  background-color: #242422;
  color: #fff;
  transition: 0.3s;
  border: 1px solid #242422;
  transform: translate(-0.25rem, -0.25rem);
  box-shadow: 6px 6px #00000075;
  overflow: hidden;
}

.pricing .buy-btn:hover {
  transform: none;
  box-shadow: none;
  background-color: #9478fc;
  color: #fff;
  border: 1px solid #9478fc;
}

.pricing .featured {
  border: 1px solid #242422;
  background-color: #f9f9f9;
  transition: all 0.3s ease-in-out;
}

.pricing .featured:hover {
  transition: 0.3s;
  box-shadow: 0px 0px 25px 10px #9478fc6f;
}

.pricing .benefits {
  border: 1px solid #242422;
  background-color: #f9f9f9;
  /* box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5); */
}

.pricing .secondary {
  border: 1px solid #242422;
  background-color: #fff;
  color: #242422;
}

.pricing .secondary:hover {
  background-color: #9578fc;
  color: #fff;
}

@media (max-width: 992px) {
  .pricing .box {
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing h1 {
    margin-bottom: 10px;
  }

  .pricing h2 {
    font-weight: 400;
    margin: 15px 0 15px 0;
    font-size: 28px;
    color: #242422;
  }

  .pricing .box {
    max-width: 100%;
    margin: 0 auto 10px auto;
    padding: 10px 10px 10px 10px;
  }

  .pricing ul.nav > li.nav-item {
    padding: 0px;
    margin: 10px 10px -10px 10px;
  }

  .pricing ul li {
    padding: 10px 0 10px 30px;
    position: relative;
  }
}

.pricing .nav-link {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 0px;
  color: #242422;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Suisse Intl", sans-serif;
  transition: 0.3s;
  border: 1px solid #242422;
}

.pricing .nav-link.active {
  background: #242422;
  color: #fff;
}

.pricing .form-control {
  font-family: "Suisse Intl", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 8px;
  border-radius: 0px;
  transition: 0.5s;
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.pricing .best-deal-badge {
  font-family: "Suisse Mono", sans-serif;
  position: absolute;
  top: -15px;
  left: 10px;
  border-radius: 0px;
  border: 1px solid #242422;
  background-color: #f28954;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 10px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 60px 0;
  background: #e4e6ea;
}

.counts .counters span {
  font-family: "Suisse Works", sans-serif;
  font-size: 48px;
  display: block;
  color: #242422;
  font-weight: 400;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 5px 0;
  font-family: "Suisse Intl", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.row.counters i {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Suisse Intl", sans-serif;
  font-size: 34px;
  font-weight: 400;
}

@media screen and (max-width: 480px) {
  .counts .counters span {
    font-size: 36px;
  }

  .counts .counters p {
    font-size: 12px;
  }

  .row.counters i {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Featured On
--------------------------------------------------------------*/
.featured-on {
  padding-top: 20px;
  background-color: #242422;
}

@media screen and (max-width: 480px) {
  .featured-on a img {
    max-height: 60px; /* Adjusted from 20px for better visibility */
    width: auto;
    margin: 10px; /* Simplified margin specification */
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
  background-color: #e4e6ea;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
  background-color: #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e4e6ea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-family: "Roobert", sans-serif;
  font-weight: 100;
  font-size: 16px;
  color: #242422;
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: white;
  position: relative;
  border-radius: 0px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #242422;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #242422;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #242422;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Suisse Intl", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 0px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #242422;
  border-color: #242422;
}

/*--------------------------------------------------------------
# CODE SCROLLER
--------------------------------------------------------------*/

.editor {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.editor .code {
  width: 480px;
  height: fit-content;
  position: absolute;
  left: 0;
  top: 30px;
  overflow-x: hidden;
  padding: 0 10px 10px 10px;
  font-family: "Suisse Intl", sans-serif;
  font-size: 15px;
  line-height: 1.4em;
  z-index: 0;
  transform: translateY(0px);
  animation: marquee 40s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}

.editor .code > span {
  width: 480px;
  background-color: transparent !important;
  overflow-wrap: break-word;
  padding: 0 !important;
}

.editor .code > span span {
  display: inline-block;
}

/*--------------------------------------------------------------
# TOP SITES
--------------------------------------------------------------*/

.top-sites-editor {
  top: 40px;
  width: 100%;
  height: 30vh;
  background: #242422;
  border-radius: 6px;
  overflow-y: auto;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.top-sites-editor .code {
  width: 480px;
  height: fit-content;
  position: absolute;
  left: 0;
  top: 30px;
  overflow-x: hidden;
  padding: 0 10px 10px 10px;
  font-family: "Suisse Intl", sans-serif;
  font-size: 15px;
  line-height: 1.4em;
  z-index: 0;
  color: #fff;
}

/*--------------------------------------------------------------
# Comparison
--------------------------------------------------------------*/
.comparison section {
  padding: 60px 0;
}

.comparison .card {
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

.comparison .card-body {
  border: none;
  box-shadow: none;
}

.comparison .section-title p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 32px;
  font-weight: 400;
  color: #242422;
}

.comparison {
  background-color: #f9f9f9;
}

.comparison h3 {
  font-weight: 400;
  font-size: 34px;
  color: #242422;
}

.comparison th {
  font-weight: 400;
  font-size: 18px;
  color: #242422;
}

.comparison td {
  font-size: 15px;
  color: #5a6570;
}

.comparison i {
  font-size: 32px;
  margin-top: 15px;
}

i.collapse-icon {
  font-size: 12px;
  margin-top: 15px;
}

.comparison p {
  font-size: 32px;
  color: #5a6570;
}

.comparison .logo img {
  max-width: 200px;
}

@media (max-width: 468px) {
  .comparison i {
    font-size: 22px;
  }
  .comparison p {
    font-size: 16px;
  }

  i.collapse-icon {
    font-size: 10px;
  }

  .comparison th {
    font-weight: 400;
    font-size: 14px;
    color: #242422;
  }

  .comparison td {
    font-size: 14px;
    color: #5a6570;
  }

  .comparison .logo img {
    max-width: 120px;
  }
}

.mobile-table-container {
  overflow-x: auto;
}

.mobile-table-container .logo,
.mobile-table-container .competitor {
  position: sticky;
  left: 0;
  background-color: #f9f9f9;
  z-index: 1;
}

.mobile-table-container .table th {
  white-space: wrap;
  min-width: 150px;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Custom Styles
--------------------------------------------------------------*/

.box,
.editor {
  border-radius: 18px;
}

.carousel-item {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.text-underline::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #242422;
  left: calc(50% - 30px);
  bottom: -10px;
}

/*--------------------------------------------------------------
# DROP SHADOW BUBBLE
--------------------------------------------------------------*/

.drop-shadow-bubble {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.drop-shadow-hover {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.drop-shadow-hover:hover {
  transform: translate(-0.25rem, -0.25rem);
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
}

/*--------------------------------------------------------------
# COMIC BACKGROUNDS
--------------------------------------------------------------*/

.comic-purple {
  background: #2424227d;
}

/*--------------------------------------------------------------
# Image Fade
--------------------------------------------------------------*/

.image-fade {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .image-fade {
    height: 400px;
  }
}

.fade-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: opacity 1s; /* Duration of fade effect */
}

/* Initially, we'll set the opacity of the second image to 0 (hidden) */
.image-fade img:last-child {
  opacity: 0;
}

/* On hover, we'll fade in the second image by changing its opacity to 1 */
.image-fade:hover img:last-child {
  opacity: 1;
}

/*--------------------------------------------------------------
# Score Bar
--------------------------------------------------------------*/

.progress-container {
  position: relative;
}

.progress-labels span {
  font-size: 0.9rem;
}

.score-badge {
  position: absolute;
  top: 20%;
  transform: translateX(-50%) translateY(-150%);
  background-color: #f28954;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
}

.score-badge::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #f28954; /* Bootstrap success color */
}

/*--------------------------------------------------------------
Timer
--------------------------------------------------------------*/

#countdown {
  font-family: "Suisse Intl", sans-serif;
  text-align: center;
  padding: 20px;
}

h2,
h3 {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.time {
  display: inline-block;
  margin: 10px;
}

.time span {
  display: block;
  font-size: 24px;
  font-weight: bold;
}

.label {
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .time {
    margin: 5px;
  }

  .time span {
    display: block;
    font-size: 20px;
    font-weight: bold;
  }

  .label {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Marquee
--------------------------------------------------------------*/

/* General Styling for Swiper */
.marquee-swiper-container {
  width: 100%;
  height: 50px;
  overflow: hidden;
  position: relative;
}

.marquee-swiper-wrapper {
  display: flex;
  width: auto;
}

.marquee-swiper-slide {
  text-align: center;
  font-size: 24px;
  white-space: nowrap;
  padding: 0 50px;
}

@media screen and (max-width: 468px) {
  .marquee-swiper-slide {
    padding: 0 20px; /* Spacing between slides */
  }
}

.marquee-swiper-container .marquee-swiper-wrapper {
  animation: marqueeSwiper 60s linear infinite;
}

@media screen and (max-width: 768px) {
  .marquee-swiper-container .marquee-swiper-wrapper {
    animation: marqueeSwiper 60s linear infinite;
  }
}

/* Keyframes for top and bottom animations */
@keyframes marqueeSwiper {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-300%, 0, 0);
  }
}

@media screen and (max-width: 768px) {
  @keyframes marqueeSwiper {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-1000%, 0, 0);
    }
  }
}

/* Keyframes for reversed marquee effect */
@keyframes marqueeSwiperReverse {
  from {
    transform: translate3d(-300%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media screen and (max-width: 768px) {
  @keyframes marqueeSwiperReverse {
    from {
      transform: translate3d(-1000%, 0, 0);
    }
    to {
      transform: translate3d(0, 0, 0);
    }
  }
}

/* Apply the reversed animation to a specific container */
.reverse-marquee-container .marquee-swiper-wrapper {
  animation: marqueeSwiperReverse 60s linear infinite;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
/* Main blog container */
#main #blog {
  background-color: #f8f9fa; /* light background for the blog section */
  color: #333; /* dark text for readability */
  font-family: "Suisse Intl", sans-serif; /* a clean, readable font */
}

/* Card styling */
#blog .card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* subtle shadow for depth */
  background-color: white; /* white background for the card */
  border-radius: 8px; /* rounded corners for the card */
}

.card-body {
  padding: 20px; /* spacing inside the card */
}

/* Typography */
#blog h1 {
  color: #242422; /* a primary color for the main title */
  margin-bottom: 15px; /* space below the title */
  font-size: 36px; /* slightly larger font size for headings */
  font-weight: 400;
}

#blog .section-title {
  font-size: 36px;
  font-weight: 400;
  font-family: "Geist Mono", monospace !important;
  text-transform: uppercase;
}

#blog p.text-muted {
  color: #242422;
  font-size: 14px;
}

#blog h2 {
  color: #242422;
  margin-top: 30px;
  font-size: 30px; /* slightly larger font size for headings */
  font-weight: 400;
}

#blog h3 {
  color: #242422; /* a slightly lighter color for subheadings */
  margin-top: 20px; /* space above h3 headings */
  font-size: 24px; /* slightly larger font size for headings */
  font-weight: 400;
}

#blog h4 {
  color: #242422; /* a slightly lighter color for subheadings */
  margin-top: 20px; /* space above h3 headings */
  font-size: 20px; /* slightly larger font size for headings */
  font-weight: 400;
}

#blog h5 {
  color: #242422; /* a slightly lighter color for subheadings */
  margin-top: 20px; /* space above h3 headings */
  font-size: 16px; /* slightly larger font size for headings */
  font-weight: 400;
}

#blog p {
  line-height: 1.6; /* enhanced line-height for readability */
  margin-top: 10px; /* space above paragraphs */
}

/* Responsive design adjustments */
@media (max-width: 768px) {
  #blog .card-body {
    padding: 15px; /* smaller padding on smaller screens */
  }

  #blog h1.fs-3,
  #blog h2,
  #blog h3 {
    margin-left: 10px; /* adjust heading alignment on smaller screens */
  }
}

/*--------------------------------------------------------------
# Toggle Switch
--------------------------------------------------------------*/

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #242422;
}

input:focus + .toggle-slider {
  box-shadow: 0 0 1px #242422;
}

input:checked + .toggle-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Optional: styles for a label associated with the toggle switch */
.toggle-switch-label {
  font-family: "Suisse Intl", sans-serif;
  color: #242422;
  font-weight: 400;
  padding-left: 10px;
}

/*--------------------------------------------------------------
# Login Button
--------------------------------------------------------------*/

@-webkit-keyframes dot-keyframes {
  0% {
    opacity: 0.4;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 0.4;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes dot-keyframes {
  0% {
    opacity: 0.4;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 0.4;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.loading-dots {
  text-align: center;
  width: 100%;
}
.loading-dots--dot {
  -webkit-animation: dot-keyframes 3s infinite ease-in-out;
  animation: dot-keyframes 3s infinite ease-in-out;
  background-color: #9478fc;
  border-radius: 10px;
  display: inline-block;
  height: 10px;
  width: 10px;
}
.loading-dots--dot:nth-child(2) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.loading-dots--dot:nth-child(3) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.loading-dots--dot:nth-child(4) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

/*--------------------------------------------------------------
# Blury Blobs
--------------------------------------------------------------*/

.blob-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Ensures the blob is behind the content */
}

.blob-container svg {
  width: 50%;
  height: auto;
  filter: blur(80px);
  fill: #ffc8001a;
  transform: scale(1.2);
  /* Ensure the SVG fills the container */
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%) scale(1.2); /* Center and scale the blob */
}

.blob-container svg.right {
  width: 50%;
  height: auto;
  filter: blur(80px);
  fill: #6e42c13d;
  transform: scale(1.2);
  /* Ensure the SVG fills the container */
  position: absolute;
  top: 50%;
  left: 90%;
  transform: translate(-50%, -50%) scale(1.2); /* Center and scale the blob */
}

.about .container,
.about .row,
.about .col-lg-6 {
  position: relative;
  z-index: 1; /* Higher than the blob's z-index */
}
