@import url('https://fonts.cdnfonts.com/css/baumans');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #75fafa;
  --theme2: #75fafa;
  --theme3: #75fafa;
  --theme5: #75fafa;
  --theme6: #75fafa;
  --header: #151518;
  --header2: #072032;
  --text: #cdcdcd;
  --text2: #5c6972;
  --border: #2a2a2a;
  --body-bg: #0d1114;
  --bg: #11161b;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  --secondary-clr: #f2f2f2;
  --accent1: #effb53;
  --accent2: #21e4bf;
}

.theme-btn {
  display: inline-block;
  vertical-align: middle;
  appearance: none;
  -webkit-appearance: none;
  outline: none !important;
  color: var(--black);
  font-size: 17px;
  font-weight: 700;
  padding: 22px 40px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  border-radius: 30px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: var(--accent1);
}
.theme-btn::after {
  content: '';
  background-color: var(--theme);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}
.theme-btn i {
  margin-left: 10px;
}
.theme-btn:hover {
  color: var(--header);
}
.theme-btn:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}
@media (max-width: 768px) {
  .theme-btn {
    padding: 20px 32px;
  }
}
@media (max-width: 768px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}
.theme-btn.theme-btn-2 {
  background-color: var(--theme2);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
}
.theme-btn.theme-btn-2::before,
.theme-btn.theme-btn-2::after {
  background-color: var(--header2);
}
.theme-btn.theme-btn-3 {
  background-color: var(--theme3);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}
.theme-btn.theme-btn-3::before,
.theme-btn.theme-btn-3::after {
  background-color: #0153cf;
}
.theme-btn.bt-white-outline {
  background-color: transparent;
  color: var(--white);
  border-radius: 100px;
}
.theme-btn.bt-white-outline:hover::after {
  background-color: var(--theme3);
}
.theme-btn.style-2 {
  border-radius: 10px;
  background-color: var(--theme);
  color: var(--header);
}
.theme-btn.style-2::before,
.theme-btn.style-2::after {
  background: #1d1d21;
}
.theme-btn.style-2:hover {
  color: var(--white);
}
.theme-btn.style-6 {
  margin-top: 48px;
  background-color: var(--theme6);
  color: var(--white);
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .theme-btn.style-6 {
    margin-top: 30px;
  }
}
.theme-btn.style-6::after {
  background: var(--header);
}
.theme-btn.style-6:hover {
  border: 1px solid var(--header);
}
.theme-btn.style-5 {
  background-color: transparent;
  color: var(--white);
}
.theme-btn.style-5::after {
  background-color: var(--theme5);
}
.theme-btn.style-5:hover {
  color: var(--white);
}
.theme-btn.style-7 {
  background-color: transparent;
  color: var(--white);
}
.theme-btn.style-7::after {
  background-color: var(--theme6);
}
.theme-btn.style-7:hover {
  color: var(--white);
}
.theme-btn.style-8 {
  background-color: transparent;
  color: var(--white);
}
.theme-btn.style-8::after {
  background-color: var(--theme3);
}
.theme-btn.style-8:hover {
  color: var(--white);
}

.link-btn {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--accent1);
}
.link-btn:hover {
  color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Rubik', sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--white);
  text-transform: none;
  transition: all 0.4s ease-in-out;
}

h6 {
  font-family: 'Baumans', sans-serif;
  margin: 0px;
  padding: 0;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 150px;
  font-weight: 900;
  line-height: 95%;
}

h2 {
  font-size: 65px;
  line-height: 116%;
  font-weight: 700;
}

@media (max-width: 1024px) {
  h2 {
    font-size: 55px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 27px;
  font-weight: 700;
  line-height: 134%;
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .about-wrapper {
    flex-wrap: wrap;
  }
}
.about-wrapper .nav {
  display: grid;
  gap: 16px;
  padding: 0;
  border-right: 1px solid rgba(207, 208, 212, 0.2);
  padding-right: 40px;
}
@media (max-width: 1400px) {
  .about-wrapper .nav {
    padding-right: 0;
    border-right: none;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
  }
  .about-wrapper .tab-content {
    width: 100%;
  }
}
.about-wrapper .nav .nav-item .nav-link {
  border-radius: 50px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #1d1d21;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  font-family: 'Rubik', sans-serif;
  padding: 35px 60px;
  line-height: 1;
  text-align: center;
}
@media (max-width: 1024px) {
  .about-wrapper .nav .nav-item .nav-link {
    font-size: 22px;
    padding: 20px 30px;
  }
}
@media (max-width: 768px) {
  .about-wrapper {
    justify-content: center;
  }
  .about-wrapper .nav {
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .about-wrapper .nav .nav-item .nav-link {
    font-size: 15px;
    padding: 15px 19px;
    white-space: nowrap;
  }
  @media (max-width: 480px) {
    .about-wrapper .nav .nav-item {
      flex: 1;
    }
    .about-wrapper .nav .nav-item .nav-link {
      font-size: 11px;
      padding: 12px 6px;
      width: 100%;
      text-align: center;
    }
  }
  .about-wrapper .tab-content {
    width: 100%;
  }
  .about-wrapper .about-items {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .about-wrapper .about-items .about-content {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .about-wrapper .about-items .about-image {
    display: none;
  }
  .about-wrapper .about-items .about-content .list-items {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}
.about-wrapper .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  color: var(--header);
}
.about-wrapper .about-items {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1024px) {
  .section-title h2 {
    font-size: 35px;
  }
  .about-wrapper .about-items {
    flex-wrap: nowrap;
    gap: 25px;
    align-items: stretch;
    width: 100%;
  }
  .about-wrapper .about-items .about-content {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
  .about-wrapper .about-items .about-image {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
  .about-wrapper .about-items .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.about-wrapper .about-items .about-content {
  max-width: 380px;
}
.about-wrapper .about-items .about-content .list-items {
  margin-top: 25px;
  margin-bottom: 10px;
}
.about-wrapper .about-items .about-content .list-items li {
  display: flex;
  align-items: flex-start;
}
.about-wrapper .about-items .about-content .list-items li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.about-wrapper .about-items .about-content .list-items li span {
  flex: 1;
  font-weight: 700;
  color: var(--white);
  padding-left: 10px;
}
.about-wrapper .about-items .about-content .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.about-wrapper .about-items .about-image {
  max-width: 542px;
}
.about-wrapper .about-items .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.about-section {
  position: relative;
  z-index: 5;
}
.about-section .bg-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.about-section .color-bg {
  position: absolute;
  left: 0;
  bottom: 25%;
  z-index: -1;
}
.about-section .color-bg-2 {
  position: absolute;
  top: -12%;
  right: -100px;
  z-index: -1;
}
.about-section .about-image-33 {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .about-section .about-image-33 {
    margin-bottom: 40px;
  }
}
.about-section .about-image-33 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .about-section.style-padding {
    padding-top: 120px;
  }
}

.counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .counter-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.counter-wrapper .counter-items {
  display: flex;
  align-items: center;
  gap: 30px;
}
.counter-wrapper .counter-items .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 200px 200px 0px 200px;
  background-color: var(--theme);
  color: var(--header);
  font-size: 42px;
  text-align: center;
}
.counter-wrapper .counter-items .content {
  border-left: 1px solid rgba(207, 208, 212, 0.3);
  padding-left: 30px;
}
@media (max-width: 1024px) {
  .counter-wrapper .counter-items .content {
    padding-left: 0;
    border-left: none;
  }
}
.counter-wrapper .counter-items .content h2 {
  font-size: 70px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .counter-wrapper .counter-items .content h2 {
    font-size: 50px;
  }
}
.counter-wrapper .counter-items .content p {
  font-size: 24px;
}
@media (max-width: 1024px) {
  .counter-wrapper .counter-items .content p {
    font-size: 20px;
  }
}
.about-split-wrapper {
  width: 100%;
}

.about-split-content {
  margin-left: 30px;
}
/* =========================================
   Privacy page: make About tabs use full width
   ========================================= */

.about-wrapper.about-wrapper--privacy-tabs {
  justify-content: flex-start; /* stop "space-between" creating the big gap */
  align-items: flex-start;
  gap: 40px; /* keep a nice separation between tabs and content */
}

/* make the right side (tab-content) actually take remaining space */
.about-wrapper.about-wrapper--privacy-tabs .tab-content {
  flex: 1;
  min-width: 0; /* prevents flex overflow weirdness */
  padding-left: 40px; /* "some padding" from the divider/tabs */
}

/* remove the 380px cap for this section only */
.about-wrapper.about-wrapper--privacy-tabs .about-items .about-content {
  max-width: none;
  width: 100%;
}

/* optional: if you want the content to feel like a wider readable block */
.about-wrapper.about-wrapper--privacy-tabs .about-items {
  width: 100%;
}

/* responsive: when your nav becomes a row (<=1399px), drop left padding */
@media (max-width: 1400px) {
  .about-wrapper.about-wrapper--privacy-tabs .tab-content {
    flex: 0 0 100%;
    padding-left: 0;
  }
}
/* =========================================
   Privacy tabs: make checklist 2 per row
   Scoped so it only affects this section
========================================= */

.about-wrapper.about-wrapper--privacy-tabs .tab-content .list-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 16px;
}

/* Each LI becomes a small flex row (icon + text) */
.about-wrapper.about-wrapper--privacy-tabs .tab-content .list-items > li {
  display: flex;
  align-items: flex-start;
}

/* Keep the icon from shrinking */
.about-wrapper.about-wrapper--privacy-tabs .tab-content .list-items > li svg {
  flex: 0 0 auto;
  margin-top: 2px; /* tiny optical alignment */
}

/* Let the text wrap nicely */
.about-wrapper.about-wrapper--privacy-tabs .tab-content .list-items > li span {
  display: inline;
  padding-left: 10px; /* you already have this, safe to keep */
  min-width: 0;
}

/* Responsive: go back to 1 column on smaller screens */
@media (max-width: 1024px) {
  .about-wrapper.about-wrapper--privacy-tabs .tab-content .list-items {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}
@media (max-width: 1024px) {
  .about-split-content {
    margin-left: 0;
  }
}
.about-split-content .accordion-item {
  border: none !important;
  background-color: transparent;
}
.about-split-content .accordion-item .accordion-header {
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
  padding-top: 10px;
  padding-bottom: 10px;
}
.about-split-content .accordion-item .accordion-header .accordion-button {
  font-weight: 700;
  color: var(--white);
  border: none !important;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  text-transform: capitalize;
  font-size: 27px;
  font-family: 'Rubik', sans-serif;
  padding-left: 0;
}
@media (max-width: 1024px) {
  .about-split-content .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
.about-split-content .accordion-item .accordion-header .accordion-button::after {
  content: '+';
  font-family: 'Font Awesome 6 Pro';
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  color: var(--white);
  font-size: 16px;
}
.about-split-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: '\f068';
  font-family: 'Font Awesome 6 Pro';
  background: transparent;
  font-weight: 500;
  color: var(--theme);
}
.about-split-content .accordion-item .accordion-header .accordion-button.collapsed {
  color: var(--white);
  background-color: transparent;
}
.about-split-content .accordion-item .accordion-collapse .accordion-body {
  background-color: transparent;
  padding-top: 25px;
  padding-bottom: 28px;
  padding-left: 15px;
  color: var(--text);
  font-size: 20px;
}
.about-split-media {
  width: 100%;
}

.about-split-media .about-split-media-inner {
  position: relative;
  width: 100%;

  /* replace fixed height behavior */
  min-height: 0;
  aspect-ratio: 16 / 10; /* change this ratio to taste */

  border-radius: 25px;
  overflow: hidden;
}

.about-split-media .about-split-media-inner .about-split-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  /* moved radius to wrapper so edges match perfectly */
  border-radius: 0;

  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.45s ease-in-out,
    visibility 0.45s ease-in-out;
}

.about-split-media .about-split-media-inner .about-split-img.is-active {
  opacity: 1;
  visibility: visible;
}

.about-wrapper-2 {
  border-radius: 20px;
  padding: 50px;
  margin-left: 50px;
  margin-right: 50px;
}
@media (max-width: 1024px) {
  .about-wrapper-2 {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.about-wrapper-2 .about-image {
  background-color: #fcfbf4;
  text-align: center;
  padding: 50px 0;
  border-radius: 30px;
}
@media (max-width: 1400px) {
  .about-wrapper-2 .about-image {
    padding: 0;
    background-color: transparent;
  }
  .about-wrapper-2 .about-image img {
    width: 100%;
    height: 100%;
  }
}
.about-wrapper-2 .about-content {
  margin-left: 70px;
}
@media (max-width: 1400px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
  .about-wrapper-2 .about-content .section-title h2 {
    font-size: 35px;
  }
}
.about-wrapper-2 .about-content .about-list {
  margin-bottom: 50px;
}
.about-wrapper-2 .about-content .about-list li {
  color: var(--text2);
}
.about-wrapper-2 .about-content .about-list li span {
  font-weight: 700;
  color: var(--header2);
  display: block;
  margin-bottom: 5px;
}
.about-wrapper-2 .about-content .about-list li:not(:last-child) {
  margin-bottom: 20px;
}

.about-wrapper-3 .section-title {
  margin-left: 200px;
}
@media (max-width: 1024px) {
  .about-wrapper-3 .section-title {
    margin-left: 0;
  }
}
.about-wrapper-3 .about-items {
  margin-top: 30px;
}
.about-wrapper-3 .about-items .about-image img {
  border-radius: 25px;
  width: 100%;
  height: 100%;
}
.about-wrapper-3 .about-items .about-content {
  max-width: 460px;
  margin-top: 35px;
}
.about-wrapper-3 .about-items .about-content h3 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .about-wrapper-3 .about-items .about-content h3 {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .about-wrapper-3 .about-items .about-content h3 {
    font-size: 36px;
  }
}
.about-wrapper-3 .about-items .about-content h3 span {
  color: var(--theme);
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
}
.about-wrapper-3 .about-image-items-2 {
  margin-top: 30px;
}
.about-wrapper-3 .about-image-items-2 .about-text {
  max-width: 768px;
  margin-left: 80px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .about-wrapper-3 .about-image-items-2 .about-text {
    margin-left: 0;
  }
}
.about-wrapper-3 .about-image-items-2 .about-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.about-wrapper-4 .about-image-items .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.about-wrapper-4 .about-image-items .about-image.style-2 {
  margin-top: 15px;
  height: 338px;
}
.about-wrapper-4 .about-content {
  margin-left: 40px;
}
@media (max-width: 1024px) {
  .about-wrapper-4 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-4 .about-content .skill-feature-items {
  margin-top: 30px;
}
.about-wrapper-4 .about-content .skill-feature-items .skill-feature:not(:last-child) {
  margin-bottom: 30px;
}
.about-wrapper-4 .about-content .skill-feature-items .skill-feature .box-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
.about-wrapper-4 .about-content .skill-feature-items .skill-feature .progress-value {
  margin-bottom: 10px;
  color: var(--header);
  text-transform: capitalize;
}
.about-wrapper-4 .about-content .skill-feature-items .skill-feature .progress {
  position: relative;
  height: 15px;
  background-color: #222226;
  border-radius: 0;
  overflow: visible;
  margin-top: 15px;
}
.about-wrapper-4 .about-content .skill-feature-items .skill-feature .progress-bar {
  background: linear-gradient(90deg, var(--theme), var(--accent2));
  height: 15px;
  margin: 0;
  border-radius: inherit;
  overflow: visible;
  position: relative;
  margin-top: 0;
}
.about-wrapper-4 .about-content .skill-feature-items .skill-feature .progress-value {
  position: absolute;
  top: -38px;
  right: -8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.about-section {
  position: relative;
}
.about-section .vector-shape {
  position: absolute;
  top: 10%;
  left: 5%;
}
.about-section .vector-shape-2 {
  position: absolute;
  top: 20%;
  right: 0;
}

.about-wrapper-6 .about-image {
  position: relative;
  max-width: 508px;
}
@media (max-width: 1024px) {
  .about-wrapper-6 .about-image {
    max-width: initial;
  }
}
.about-wrapper-6 .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.about-wrapper-6 .about-image .about-image-2 {
  max-width: 316px;
  position: absolute;
  bottom: 30px;
  right: -140px;
}
@media (max-width: 1024px) {
  .about-wrapper-6 .about-image .about-image-2 {
    max-width: 250px;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 1024px) {
  .about-wrapper-6 .about-image .about-image-2 {
    max-width: initial;
  }
}
@media (max-width: 768px) {
  .about-wrapper-6 .about-image .about-image-2 {
    max-width: 200px;
  }
}
.about-wrapper-6 .about-image .about-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.about-wrapper-6 .about-content {
  margin-left: 20px;
}
@media (max-width: 1024px) {
  .about-wrapper-6 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-6 .about-content .text {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
.about-wrapper-6 .about-content .about-content-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 35px;
}
@media (max-width: 1024px) {
  .about-wrapper-6 .about-content .about-content-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.about-wrapper-6 .about-content .about-content-item .count-item {
  display: flex;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  min-height: 192px;
}
@media (max-width: 1024px) {
  .about-wrapper-6 .about-content .about-content-item .count-item {
    writing-mode: initial;
    min-height: initial;
  }
}
.about-wrapper-6 .about-content .about-content-item .count-item h2 {
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
}
.about-wrapper-6 .about-content .about-content-item .count-item p {
  color: rgba(255, 255, 255, 0.7);
}
.about-wrapper-6 .about-content .about-content-item .about-item .about-icon-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .about-wrapper-6 .about-content .about-content-item .about-item .about-icon-item {
    flex-wrap: wrap;
  }
}
.about-wrapper-6 .about-content .about-content-item .about-item .about-icon-item .icon {
  width: 64px;
  width: 64px;
  line-height: 64px;
  background-color: var(--theme6);
  text-align: center;
  border-radius: 8px;
  color: var(--white);
}
@media (max-width: 1024px) {
  .about-wrapper-6 .about-content .about-content-item .about-item .about-icon-item .icon {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .about-wrapper-6 .about-content .about-content-item .about-item .about-icon-item .icon {
    width: 64px;
    width: 64px;
    line-height: 64px;
  }
}
.about-wrapper-6 .about-content .about-content-item .about-item .about-icon-item .content h5 {
  font-family: 'Rubik', sans-serif;
  color: var(--white);
  margin-bottom: 5px;
}
.about-wrapper-6 .about-content .about-content-item .about-item .about-icon-item .content p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 410px;
}
.about-wrapper-6 .about-content .theme-btn {
  margin-top: 48px;
  background-color: var(--theme6);
  color: var(--white);
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .about-wrapper-6 .about-content .theme-btn {
    margin-top: 30px;
  }
}
.about-wrapper-6 .about-content .theme-btn::after {
  background: var(--header);
}
.about-wrapper-6 .about-content .theme-btn:hover {
  border: 1px solid var(--header);
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}
@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.brand-title-2 {
  margin-bottom: 50px;
  position: relative;
  margin-top: -6px;
  font-size: 24px;
  font-weight: 500;
  color: #5c6972;
  z-index: 9;
}
.brand-title-2::before {
  position: absolute;
  top: 15px;
  left: 0;
  content: '';
  height: 1px;
  width: 460px;
  background-color: #e0e1e5;
  z-index: -1;
}
@media (max-width: 1400px) {
  .brand-title-2::before {
    display: none;
  }
}
.brand-title-2::after {
  position: absolute;
  top: 15px;
  right: 0;
  content: '';
  height: 1px;
  width: 460px;
  background-color: #e0e1e5;
  z-index: -1;
}
@media (max-width: 1400px) {
  .brand-title-2::after {
    display: none;
  }
}
.brand-title-2.style-2 {
  color: var(--white);
}
.brand-title-2.style-2::before {
  background-color: var(--white);
}
.brand-title-2.style-2::after {
  background-color: var(--white);
}

.brand-image {
  opacity: 0.5;
}

.brand-style4 .brand-image {
  opacity: 1;
  max-width: 170px;
  margin: 0 auto;
}
.brand-style4 .swiper-slide.swiper-slide-active .brand-image {
  filter: brightness(0);
}

.sponsor-title {
  position: relative;
  z-index: 1;
}
.sponsor-title span {
  background-color: var(--white);
  padding: 1px 10px;
}
.sponsor-title::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  z-index: -1;
  background-color: rgba(93, 96, 99, 0.24);
}

.message-items {
  position: relative;
  z-index: 8;
}
.message-items h2 {
  font-size: 100px;
  line-height: 1;
  margin-top: -15px;
}
@media (max-width: 1024px) {
  .message-items h2 {
    font-size: 55px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .message-items h2 {
    font-size: 85px;
  }
}
@media (max-width: 768px) {
  .message-items h2 {
    font-size: 55px;
  }
}
@media (max-width: 768px) {
  .message-items h2 {
    font-size: 40px;
  }
}
.message-items h2 span {
  font-weight: 400;
}
.message-items h2 span b {
  font-weight: 400;
  color: var(--theme);
}
.message-items .circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.message-items .lets-talk-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  border-top: 1px solid rgba(207, 208, 212, 0.2);
  padding-top: 30px;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 1024px) {
  .message-items .lets-talk-items {
    flex-wrap: nowrap;
    text-align: center;
  }
  .message-items .lets-circle {
    flex-shrink: 0;
    padding: 85px 62px;
  }
  .message-items .lets-talk-items p {
    flex: 1;
    min-width: 0;
    max-width: none;
  }
}
.message-items .lets-talk-items p {
  max-width: 445px;
}
.message-items .lets-circle {
  position: relative;
  max-width: 250px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 126"><path fill-rule="evenodd" clip-rule="evenodd" d="M55.9029 4.52619C59.9922 -0.78983 68.0078 -0.78983 72.0971 4.52619C75.0042 8.30537 80.1389 9.57096 84.4692 7.57565C90.5606 4.76892 97.6581 8.49399 98.8085 15.1015C99.6263 19.7987 103.585 23.3056 108.346 23.5512C115.044 23.8968 119.598 30.4936 117.546 36.8788C116.087 41.4181 117.962 46.3628 122.064 48.7932C127.834 52.2118 128.801 60.1691 124.016 64.8693C120.615 68.2107 119.978 73.4605 122.48 77.5188C126.001 83.2274 123.158 90.7222 116.738 92.6606C112.173 94.0387 109.169 98.3909 109.499 103.147C109.964 109.838 103.964 115.154 97.3777 113.886C92.6956 112.985 88.013 115.443 86.0948 119.808C83.3966 125.948 75.6138 127.866 70.3712 123.683C66.6442 120.71 61.3558 120.71 57.6288 123.683C52.3862 127.866 44.6034 125.948 41.9052 119.808C39.987 115.443 35.3044 112.985 30.6223 113.886C24.0363 115.154 18.0365 109.838 18.5008 103.147C18.8309 98.3909 15.8267 94.0387 11.2623 92.6606C4.84165 90.7222 1.99926 83.2274 5.51975 77.5188C8.02248 73.4605 7.38504 68.2107 3.98382 64.8693C-0.800531 60.1691 0.165651 52.2118 5.93581 48.7932C10.0378 46.3628 11.9131 41.4181 10.4543 36.8788C8.40231 30.4936 12.9557 23.8968 19.6537 23.5512C24.4153 23.3056 28.3737 19.7987 29.1915 15.1015C30.3419 8.49399 37.4394 4.76892 43.5308 7.57565C47.8611 9.57096 52.9958 8.30537 55.9029 4.52619Z"  /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background-color: var(--accent1);
  color: var(--header);
  font-weight: 700;
  font-size: 18px;
  padding: 85px 76px;
  display: block;
  text-align: center;
}
.message-items .lets-circle:hover {
  background-color: var(--accent2);
}
.message-items .cta-img {
  margin-top: 50px;
}
.message-items .cta-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.message-section {
  position: relative;
  z-index: 9;
}
.message-section .bg-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.login-wrapper {
  background: #222226;
}
.login-wrapper .sign-img img {
  width: 100%;
  height: 100%;
}
.login-wrapper .signin-item {
  padding: 50px 55px;
}
@media (max-width: 1024px) {
  .login-wrapper .signin-item {
    padding: 50px 40px;
  }
}
.login-wrapper .signin-item .sign-header {
  margin-bottom: 30px;
  text-align: center;
}
.login-wrapper .signin-item .sign-header p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  margin-top: 5px;
}
.login-wrapper .signin-item .social-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
@media (max-width: 1400px) {
  .login-wrapper .signin-item .social-icon {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.login-wrapper .signin-item .social-icon a {
  border-radius: 15px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #222226;
  padding: 20px 45px;
  display: block;
  text-align: center;
  line-height: 1;
}
.login-wrapper .signin-item .social-icon a i {
  font-size: 25px;
}
.login-wrapper .signin-item h5 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  text-align: center;
}
.login-wrapper .signin-item h5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  top: 9px;
  width: 26%;
  height: 1px;
  background: #cfd0d4;
  opacity: 0.2;
}
@media (max-width: 1024px) {
  .login-wrapper .signin-item h5::before {
    display: none;
  }
}
.login-wrapper .signin-item h5::after {
  position: absolute;
  content: '';
  top: 9px;
  right: 0;
  width: 26%;
  height: 1px;
  opacity: 0.2;
  background: #cfd0d4;
}
@media (max-width: 1024px) {
  .login-wrapper .signin-item h5::after {
    display: none;
  }
}
.login-wrapper .signin-item .input-item {
  position: relative;
}
.login-wrapper .signin-item .input-item span {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  display: inline-block;
  padding-bottom: 20px;
}
.login-wrapper .signin-item .input-item input {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  border: none;
  outline: none;
  padding: 20px;
  width: 100%;
  background-color: transparent;
  padding-bottom: 15px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  position: relative;
  border-radius: 10px;
}
.login-wrapper .signin-item .input-item input::placeholder {
  color: var(--text);
}
.login-wrapper .signin-item .input-item .icon {
  position: absolute;
  right: 20px;
  top: 67px;
}
.login-wrapper .signin-item .input-item .icon i {
  color: var(--theme);
}
.login-wrapper .signin-item .input-item:not(:last-child) {
  margin-bottom: 30px;
}
.login-wrapper .signin-item .form-check {
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: space-between;
}
.login-wrapper .signin-item .form-check .form-check-label {
  color: var(--text);
  margin-left: 10px;
  font-size: 17px;
  font-weight: 500;
}
.login-wrapper .signin-item .form-check span {
  font-weight: 600;
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
}
.login-wrapper .signin-item .button-items {
  margin-top: 30px;
  margin-bottom: 20px;
}
.login-wrapper .signin-item .button-items .theme-btn {
  width: 100%;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  background-color: var(--theme);
  color: var(--header);
}
.login-wrapper .signin-item .button-items .theme-btn::before,
.login-wrapper .signin-item .button-items .theme-btn::after {
  background-color: var(--white);
}
.login-wrapper .signin-item .button-items .theme-btn:hover {
  color: var(--header);
}
.login-wrapper .signin-item p {
  text-align: center;
}

.contact-wrapper .contact-image {
  margin-top: 30px;
}
.contact-wrapper .contact-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.contact-wrapper .contact-form-items-area {
  margin-top: 30px;
}
.contact-wrapper .contact-form-items-area h2 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 30px;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt {
  position: relative;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt input,
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt textarea {
  color: #cdcdcd;
  padding: 18px 20px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #222226;
  font-weight: 500;
  font-size: 16px;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt input::placeholder,
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .icon {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--theme);
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt textarea {
  padding-bottom: 150px;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select {
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #222226;
  padding: 18px 20px;
  z-index: 9;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select::after {
  height: 8px;
  width: 8px;
  right: 25px;
  top: 30px;
  border-color: var(--theme);
  border-bottom: 2px solid var(--theme);
  border-right: 2px solid var(--theme);
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select span {
  color: #cdcdcd;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select .list {
  background-color: var(--bg);
  right: 0;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select .option {
  background-color: transparent;
  font-size: 16px;
  line-height: 150%;
  padding: 10px 10px;
  min-height: initial;
  font-weight: 500;
  border: none;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select .option.disabled {
  display: none;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-message {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  min-height: 1em;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-message.success {
  color: #4caf87;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-message.error {
  color: #e05c5c;
}
.contact-wrapper .contact-form-items-area .contact-form-items .theme-btn {
  background-color: var(--accent1);
  color: var(--header);
}
.contact-wrapper .contact-form-items-area .contact-form-items .theme-btn::before,
.contact-wrapper .contact-form-items-area .contact-form-items .theme-btn::after {
  background-color: var(--theme);
}

.contact-wrapper .inquiry-form-items-area {
  margin-top: 30px;
}

.contact-wrapper .inquiry-form-items-area h2 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 30px;
}

.contact-wrapper .inquiry-form-items-area .inquiry-form-items .form-clt {
  position: relative;
}

.contact-wrapper .inquiry-form-items-area .inquiry-form-items .form-clt input {
  color: #cdcdcd;
  padding: 18px 20px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #222226;
  font-weight: 500;
  font-size: 16px;
}

.contact-wrapper .inquiry-form-items-area .inquiry-form-items .form-clt input::placeholder {
  color: var(--text);
}

.contact-wrapper .inquiry-form-items-area .inquiry-form-items .form-clt .icon {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--theme);
  pointer-events: none;
}

.contact-wrapper .inquiry-form-items-area .inquiry-form-items .interest-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 5px;
}

.contact-wrapper .inquiry-form-items-area .inquiry-form-items .interest-pills .pill {
  position: relative;
  cursor: pointer;
}

.contact-wrapper .inquiry-form-items-area .inquiry-form-items .interest-pills .pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-wrapper .inquiry-form-items-area .inquiry-form-items .interest-pills .pill span {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.25);
  background: #222226;
  color: #cdcdcd;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.contact-wrapper .inquiry-form-items-area .inquiry-form-items .interest-pills .pill:hover span {
  border-color: var(--theme);
  color: var(--white);
}

.contact-wrapper
  .inquiry-form-items-area
  .inquiry-form-items
  .interest-pills
  .pill
  input:checked
  + span {
  background: var(--theme);
  color: var(--header);
  border-color: var(--theme);
}

.contact-wrapper
  .inquiry-form-items-area
  .inquiry-form-items
  .interest-pills
  .pill
  input:focus
  + span {
  outline: 2px solid rgba(117, 250, 250, 0.4);
  outline-offset: 2px;
}

.contact-wrapper .inquiry-form-items-area .inquiry-form-items .theme-btn {
  background-color: var(--accent1);
  color: var(--header);
}

.contact-wrapper .inquiry-form-items-area .inquiry-form-items .theme-btn::before,
.contact-wrapper .inquiry-form-items-area .inquiry-form-items .theme-btn::after {
  background-color: var(--theme);
}

.map-items .googpemap iframe {
  width: 100%;
  height: 840px;
}

.contact-box-items-4 {
  border-radius: 25px;
  background: #222226;
  text-align: center;
  padding: 40px;
}
.contact-box-items-4 .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  margin: 0 auto;
  font-size: 30px;
  color: var(--header);
}
.contact-box-items-4 .content {
  margin-top: 30px;
}
.contact-box-items-4 .content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .contact-section.style-padding {
    padding-top: 120px;
  }
}

.lates-input-content {
  text-align: center;
}
.lates-input-content .text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 1091px;
  margin-top: 15px;
  font-size: 16px;
  margin-bottom: 48px;
}
.lates-input-content .latest-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 534px;
  margin: 0 auto;
}
.lates-input-content .latest-input input {
  outline: none;
  width: 100%;
  color: #5c6972;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  background: #f2f7fe;
  padding: 16px 20px;
}
.lates-input-content .latest-input input::placeholder {
  color: #5c6972 !important;
}
.lates-input-content .latest-input .theme-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--theme6);
  color: var(--white);
  border-radius: 8px;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 16px;
}
.lates-input-content .latest-input .theme-btn::after {
  background: var(--header);
}
.lates-input-content .latest-input .theme-btn:hover {
  border: 1px solid var(--header);
}

.paralax-image {
  position: relative;
  background-attachment: fixed;
}
.paralax-image img {
  width: 100%;
  height: 100%;
}
.paralax-image.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.cta-wrapper {
  margin-top: 30px;
  padding: 60px 100px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .cta-wrapper {
    padding: 60px 70px;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .cta-wrapper {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .cta-wrapper {
    padding: 40px 50px;
  }
}
@media (max-width: 768px) {
  .cta-wrapper {
    padding: 30px 40px;
  }
}
.cta-wrapper h2 {
  font-size: 55px;
  color: var(--header);
}
@media (max-width: 768px) {
  .cta-wrapper h2 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .cta-wrapper h2 {
    font-size: 40px;
  }
}
.cta-wrapper h2 span {
  font-weight: 400;
}
.cta-wrapper .theme-btn {
  background: #222226;
  color: var(--theme);
}
.cta-wrapper .theme-btn::before,
.cta-wrapper .theme-btn::after {
  background-color: var(--white);
}
.cta-wrapper .theme-btn:hover {
  color: var(--header);
}

.paralax-section-2 {
  position: relative;
  padding: 280px 0;
  background-attachment: fixed;
  margin-top: 130px;
}
@media (max-width: 768px) {
  .paralax-section-2 {
    margin-top: 95px;
  }
}
@media (max-width: 1024px) {
  .paralax-section-2 {
    margin-top: 75px;
  }
}
@media (max-width: 768px) {
  .paralax-section-2 {
    padding: 200px 0;
  }
}

.video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  text-align: center;
}
.video-text .video-btn {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  display: inline-block;
  background-color: var(--theme);
  color: var(--header);
  border-radius: 50%;
  margin: 0 auto 20px;
}
.video-text h3 {
  font-size: 24px;
  color: var(--white);
  font-weight: 500;
}

.cta-section-4 {
  position: relative;
  z-index: 9;
}
.cta-section-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  /*background-color: #1A1A1E;*/
  top: 50%;
}

.benefit-wrapper .benefit-left-content .theme-btn {
  background-color: var(--accent1);
  color: var(--header);
  margin-top: 50px;
}
.benefit-wrapper .benefit-left-content .theme-btn::before,
.benefit-wrapper .benefit-left-content .theme-btn::after {
  background-color: var(--white);
}
.benefit-wrapper .benefit-left-content .theme-btn:hover {
  color: var(--header);
}
.benefit-wrapper .benefit-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.benefit-wrapper .benefit-right-items .benefit-icon-items {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.benefit-wrapper .benefit-right-items .benefit-icon-items .icon {
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  line-height: 70px;
  background-color: var(--theme);
}
.benefit-wrapper .benefit-right-items .benefit-icon-items .content {
  flex-basis: 74%;
}
.benefit-wrapper .benefit-right-items .benefit-icon-items .content h3 {
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .benefit-wrapper .benefit-left-content {
    text-align: center;
    margin-bottom: 40px;
  }
  .benefit-wrapper .benefit-left-content .theme-btn {
    display: inline-block;
  }
}

.cta-discuss-section {
  background-attachment: fixed;
}

.cta-discuss-content {
  text-align: center;
}
.cta-discuss-content h2 {
  font-size: 65px;
}
@media (max-width: 1024px) {
  .cta-discuss-content h2 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .cta-discuss-content h2 {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .cta-discuss-content h2 {
    font-size: 40px;
  }
}
.cta-discuss-content h2 span {
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
}
.cta-discuss-content h2 span b {
  color: var(--theme);
  font-weight: 400;
}
.cta-discuss-content p {
  font-size: 24px;
  color: #cdcdcd;
  max-width: 525px;
  text-align: center;
  margin: 40px auto 0;
}
.cta-discuss-content .theme-btn {
  background-color: var(--accent1);
  color: var(--header);
  margin-top: 50px;
}
.cta-discuss-content .theme-btn::before,
.cta-discuss-content .theme-btn::after {
  background-color: var(--theme);
}
.cta-discuss-content .theme-btn:hover {
  color: var(--header);
}

.faq-wrapper .faq-image-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image-items {
    justify-content: center;
  }
}
.faq-wrapper .faq-image-items .faq-image img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
@media (max-width: 1024px) {
  .faq-wrapper .faq-image-2 img {
    width: 100%;
    height: 100%;
  }
}
.faq-wrapper .faq-image-4 img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .faq-image-4 {
    display: none;
  }
}
.faq-wrapper .faq-content {
  margin-left: 30px;
}
@media (max-width: 1024px) {
  .faq-wrapper .faq-content {
    margin-left: 0;
  }
}
.faq-wrapper .faq-content .accordion-item {
  border: none !important;
  background-color: transparent;
}
.faq-wrapper .faq-content .accordion-item .accordion-header {
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
  padding-bottom: 10px;
  padding-top: 10px;
}
.faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 700;
  color: var(--white);
  border: none !important;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  text-transform: capitalize;
  font-size: 27px;
  font-family: 'Rubik', sans-serif;
  padding-left: 0;
}
@media (max-width: 1024px) {
  .faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
.faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button::after {
  content: '+';
  font-family: 'Font Awesome 6 Pro';
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  color: var(--white);
  font-size: 16px;
}
.faq-wrapper
  .faq-content
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  content: '\f068';
  font-family: 'Font Awesome 6 Pro';
  background: transparent;
  font-weight: 500;
  color: var(--theme);
}
.faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  color: var(--white);
  background-color: transparent;
}
.faq-wrapper .faq-content .accordion-item .accordion-collapse .accordion-body {
  background-color: transparent;
  padding-bottom: 28px;
  color: var(--text);
  padding-left: 15;
  padding-top: 25px;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .faq-wrapper.style-2 .faq-content .section-title h2 {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .faq-wrapper.style-2 .faq-content .section-title h2 {
    font-size: 32px;
  }
}
.faq-wrapper.style-2 .faq-content .accordion-item .accordion-header {
  border-bottom: 1px solid #e0e1e5;
  padding-bottom: 10px;
  padding-top: 10px;
}
.faq-wrapper.style-2 .faq-content .accordion-item .accordion-header .accordion-button {
  text-transform: capitalize;
  font-size: 24px;
  font-family: 'Rubik', sans-serif;
  color: var(--header2);
}
@media (max-width: 1024px) {
  .faq-wrapper.style-2 .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
.faq-wrapper.style-2 .faq-content .accordion-item .accordion-header .accordion-button::after {
  color: var(--text2);
}
.faq-wrapper.style-2
  .faq-content
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  color: var(--theme2);
}
.faq-wrapper.style-2 .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  color: var(--header2);
  background-color: transparent;
}
.faq-wrapper.style-2 .faq-content .accordion-item .accordion-collapse .accordion-body {
  color: var(--text2);
}
.faq-wrapper.style-inner-page {
  margin-top: 50px;
}
.faq-wrapper.style-inner-page .faq-content h2 {
  font-size: 40px;
}
.faq-wrapper.style-inner-page .faq-content .accordion-item .accordion-header {
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
  padding-bottom: 10px;
  padding-top: 10px;
}
.faq-wrapper.style-inner-page .faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 400;
  font-size: 24px;
}
.faq-wrapper.style-inner-page .faq-sidebar .search-widget form {
  width: 100%;
  position: relative;
}
.faq-wrapper.style-inner-page .faq-sidebar .search-widget form input {
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: transparent;
  font-size: 16px;
  padding: 20px;
  width: 100%;
  color: var(--white);
}
.faq-wrapper.style-inner-page .faq-sidebar .search-widget form input::placeholder {
  color: var(--white);
}
.faq-wrapper.style-inner-page .faq-sidebar .search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--header);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-radius: 0 4px 4px 0;
}
.faq-wrapper.style-inner-page .faq-sidebar .search-widget form button:hover {
  background-color: var(--header);
}
.faq-wrapper.style-inner-page .faq-sidebar .contact-info-box {
  border-radius: 25px;
  background: var(--accent2);
  text-align: center;
  padding: 70px 40px;
  margin-top: 30px;
}
.faq-wrapper.style-inner-page .faq-sidebar .contact-info-box .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--black);
  margin: 0 auto 30px;
  font-size: 32px;
  color: var(--theme);
}
.faq-wrapper.style-inner-page .faq-sidebar .contact-info-box h2 {
  font-size: 55px;
  line-height: 120%;
  color: #060606;
}
@media (max-width: 768px) {
  .faq-wrapper.style-inner-page .faq-sidebar .contact-info-box h2 {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .faq-wrapper.style-inner-page .faq-sidebar .contact-info-box h2 {
    font-size: 32px;
  }
}
.faq-wrapper.style-inner-page .faq-sidebar .contact-info-box h2 span {
  font-weight: 400;
}
.faq-wrapper.style-inner-page .faq-sidebar .contact-info-box .theme-btn {
  background-color: var(--theme);
  color: var(--header);
  margin-top: 30px;
}
.faq-wrapper.style-inner-page .faq-sidebar .contact-info-box .theme-btn::before,
.faq-wrapper.style-inner-page .faq-sidebar .contact-info-box .theme-btn::after {
  background-color: var(--white);
}
.faq-wrapper.style-inner-page .faq-sidebar .contact-info-box .theme-btn:hover {
  color: var(--header);
}

.faq-no-results {
  padding: 14px 16px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  border-radius: 12px;
  background: rgba(34, 34, 38, 0.6);
}

.faq-section {
  position: relative;
}
.faq-section .color-bg {
  position: absolute;
  left: 270px;
  top: -150px;
  z-index: 0;
}
.faq-section .container {
  position: relative;
  z-index: 1;
}
.faq-section .faq-image-banner {
  margin-top: 30px;
}
.faq-section .faq-image-banner img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
@media (max-width: 1024px) {
  .faq-section.style-padding {
    padding-top: 120px;
  }
}

.faq-items-4 .faq-accordion .accordion-item {
  border: none !important;
  background: var(--white);
  margin-bottom: 20px;
  border-radius: 12px;
}
.faq-items-4 .faq-accordion .accordion-item .accordion-header {
  padding-bottom: 10px;
  padding-top: 10px;
}
.faq-items-4 .faq-accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--header);
  border: none !important;
  border-radius: 12px;
  box-shadow: none;
  background-color: transparent;
  text-transform: capitalize;
  font-size: 20px;
  font-family: 'Rubik', sans-serif;
  padding-left: 0;
  padding: 20px 32px 15px;
}
@media (max-width: 1024px) {
  .faq-items-4 .faq-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
  }
}
.faq-items-4 .faq-accordion .accordion-item .accordion-header .accordion-button::after {
  content: '+';
  font-family: 'Font Awesome 6 Pro';
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  color: var(--header);
  font-size: 16px;
}
.faq-items-4
  .faq-accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  content: '\f068';
  font-family: 'Font Awesome 6 Pro';
  background: transparent;
  font-weight: 500;
  color: var(--theme3);
}
.faq-items-4 .faq-accordion .accordion-item .accordion-header .accordion-button.collapsed {
  color: var(--header);
  background-color: transparent;
}
.faq-items-4 .faq-accordion .accordion-item .accordion-collapse .accordion-body {
  background-color: var(--white);
  padding-bottom: 28px;
  color: var(--text2);
  padding-left: 25px;
  padding-top: 15px;
}

.faq-wrapper-6 .faq-content .text {
  max-width: 597px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.faq-wrapper-6 .faq-items-6 .accordion-item {
  border: none !important;
  background: #222;
  margin-bottom: 20px;
  border-radius: 12px;
}
.faq-wrapper-6 .faq-items-6 .accordion-item .accordion-header {
  padding-bottom: 10px;
  padding-top: 10px;
}
.faq-wrapper-6 .faq-items-6 .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--white);
  border: none !important;
  border-radius: 12px;
  box-shadow: none;
  background-color: transparent;
  text-transform: capitalize;
  font-size: 20px;
  font-family: 'Rubik', sans-serif;
  padding-left: 0;
  padding: 20px 32px;
}
@media (max-width: 1024px) {
  .faq-wrapper-6 .faq-items-6 .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
  }
}
.faq-wrapper-6 .faq-items-6 .accordion-item .accordion-header .accordion-button::after {
  content: '+';
  font-family: 'Font Awesome 6 Pro';
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  color: var(--white);
  font-size: 16px;
}
.faq-wrapper-6
  .faq-items-6
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  content: '\f068';
  font-family: 'Font Awesome 6 Pro';
  background: transparent;
  font-weight: 500;
  color: var(--theme6);
}
.faq-wrapper-6 .faq-items-6 .accordion-item .accordion-header .accordion-button.collapsed {
  color: var(--white);
  background-color: transparent;
}
.faq-wrapper-6 .faq-items-6 .accordion-item .accordion-collapse .accordion-body {
  background-color: transparent;
  padding-bottom: 28px;
  color: var(--text);
  padding-left: 25px;
  padding-top: 0px;
}

.mobile-app-wrapper .mobile-thumb {
  margin-bottom: -180px;
  position: relative;
  z-index: 5;
}
@media (max-width: 1024px) {
  .mobile-app-wrapper .mobile-thumb {
    margin-bottom: 0;
  }
  .mobile-app-wrapper .mobile-thumb img {
    width: 100%;
    height: 100%;
  }
}
.mobile-app-wrapper .mobile-thumb .shape-img {
  position: absolute;
  bottom: 0;
  left: -95px;
  z-index: -1;
}
@media (max-width: 1024px) {
  .mobile-app-wrapper .mobile-thumb .shape-img {
    display: none;
  }
}
.mobile-app-wrapper .mobile-app-content p {
  font-size: 24px;
  color: var(--white);
  opacity: 0.9;
}
.mobile-app-wrapper .mobile-app-content .apps-button {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .mobile-app-wrapper .mobile-app-content .apps-button {
    flex-wrap: wrap;
  }
}

.how-it-works-items {
  margin-top: 30px;
  text-align: center;
}
.how-it-works-items .icon {
  width: 171px;
  height: 171px;
  line-height: 171px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.how-it-works-items .icon .bar-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.how-it-works-items .content {
  margin-top: 30px;
}
.how-it-works-items .content h3 {
  font-weight: 500;
  margin-bottom: 10px;
}
.how-it-works-items .content p {
  color: var(--white);
  max-width: 255px;
  margin: 0 auto;
}

.how-it-works-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1400px) {
  .how-it-works-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
.how-it-works-wrapper .arrow-shape {
  margin-top: -100px;
}
@media (max-width: 1400px) {
  .how-it-works-wrapper .arrow-shape {
    display: none;
  }
}

.platform-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .platform-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.platform-wrapper .platform-icon {
  width: 210px;
  height: 210px;
  line-height: 210px;
  border-radius: 50%;
  background-color: #ffffff;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .platform-wrapper .platform-icon {
    width: 150px;
    height: 150px;
    line-height: 150px;
  }
}
.platform-wrapper .platform-items {
  display: flex;
  align-items: center;
  gap: 229px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .platform-wrapper .platform-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.platform-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 1024px) {
  .platform-wrapper-2 {
    flex-wrap: wrap;
  }
}
.platform-wrapper-2 .platform-icon {
  width: 210px;
  height: 210px;
  line-height: 210px;
  border-radius: 50%;
  background-color: #ffffff;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .platform-wrapper-2 .platform-icon {
    width: 150px;
    height: 150px;
    line-height: 150px;
  }
}

.work-process-items {
  margin-top: 30px;
  text-align: center;
  padding: 50px 35px;
  border-radius: 25px;
  background: #1d1d21;
}
.work-process-items .icon {
  width: 62.56px;
  height: 64.4px;
  border-radius: 200px 200px 200px 0;
  background: #414146;
  text-align: center;
  line-height: 64.4px;
  margin: 0 auto;
  margin-bottom: 25px;
  position: relative;
}
.work-process-items .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 92px;
  height: 92px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  border-radius: 50%;
}
.work-process-items .number {
  color: #cdcdcd;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin: 0 auto;
  border: 1px solid rgba(207, 208, 212, 0.2);
}
.work-process-items .content {
  margin-top: 30px;
}
.work-process-items .content h3 {
  margin-bottom: 15px;
}

/**/
.section-bg2 {
  background-color: #f2f7fe;
}

.feature-item4 {
  padding: 32px;
  transition: all 0.5s;
}
.feature-item4 .serial {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(4, 28, 51, 0.24);
  font-family: 'DM Sans';
  font-size: 100px;
  font-weight: 600;
  line-height: 120px;
  color: transparent;
}
.feature-item4:hover {
  border-radius: 16px;
  background-color: var(--theme3);
}
.feature-item4:hover h4,
.feature-item4:hover a,
.feature-item4:hover p {
  color: var(--white) !important;
}
.feature-item4:hover .serial {
  -webkit-text-stroke-color: var(--white);
}

.who-thumb4 {
  position: relative;
}
.who-thumb4 .video-btn {
  background: var(--theme3) !important;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 100px;
  bottom: 170px;
}
.who-thumb4 .video-btn i {
  color: var(--white) !important;
  position: relative;
  z-index: 1;
  font-size: 26px;
}
@media (max-width: 768px) {
  .who-thumb4 .video-btn {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
  }
  .who-thumb4 .video-btn i {
    font-size: 16px;
  }
}

.cmn-pra {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #5d6063;
}

.marque-style4 .comm .textitalick {
  font-size: 64px !important;
  font-weight: 600 !important;
}
.marque-style4 img {
  width: 40px;
  filter: brightness(25);
}

.process-item4 .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--theme3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.process-item4 .icon .serial {
  position: absolute;
  background-color: var(--black);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--white);
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.5s;
}
.process-item4:hover .icon {
  background-color: var(--black);
}
.process-item4:hover .icon .serial {
  background-color: var(--theme3);
}

.why-choose-us-item-5 {
  padding: 48px 40px;
  border: 1px solid rgba(92, 105, 114, 0.24);
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .why-choose-us-item-5 {
    padding: 30px;
  }
}
.why-choose-us-item-5.style-5 {
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .why-choose-us-item-5.style-5 {
    margin-top: 30px;
  }
}
.why-choose-us-item-5 .icon {
  margin-bottom: 30px;
  position: relative;
  z-index: 9;
}
.why-choose-us-item-5 .icon::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  width: 28px;
  height: 68px;
  background: #f2f7fe;
  z-index: -1;
  left: -8px;
  transition: all 0.4s ease-in-out;
}
.why-choose-us-item-5 .content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  color: var(--header);
  margin-bottom: 10px;
}
.why-choose-us-item-5 .content p {
  max-width: 246px;
  color: var(--text2);
  font-size: 16px;
  font-weight: 400;
}
.why-choose-us-item-5:hover .icon::before {
  background-color: var(--theme5);
}

.feature-ai-wrapper-5 .feature-ai-content .text {
  margin-top: 20px;
  max-width: 629px;
  color: var(--text2);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}
.feature-ai-wrapper-5 .feature-ai-content .feature-ai-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .feature-ai-wrapper-5 .feature-ai-content .feature-ai-item {
    flex-wrap: wrap;
  }
}
.feature-ai-wrapper-5 .feature-ai-content .feature-ai-item .icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  background-color: var(--theme5);
  position: relative;
}
.feature-ai-wrapper-5 .feature-ai-content .feature-ai-item .icon::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  border: 1px solid var(--theme5);
  right: -4px;
  top: 4px;
  left: initial;
}
.feature-ai-wrapper-5 .feature-ai-content .feature-ai-item .content h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 5px;
  color: var(--header);
}
.feature-ai-wrapper-5 .feature-ai-content .feature-ai-item .content p {
  max-width: 532px;
  color: var(--text2);
  font-size: 16px;
  font-weight: 400;
}
.feature-ai-wrapper-5 .feature-ai-content .theme-btn {
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .feature-ai-wrapper-5 .feature-ai-content .theme-btn {
    margin-top: 30px;
  }
}
.feature-ai-wrapper-5 .feature-ai-content .theme-btn.style-5 {
  background-color: var(--header);
  color: var(--white);
  border-radius: 0;
}
.feature-ai-wrapper-5 .feature-ai-content .theme-btn.style-5::after {
  background-color: var(--theme5);
  border-radius: 0;
}
.feature-ai-wrapper-5 .feature-ai-content .theme-btn.style-5:hover {
  border: 1px solid var(--header);
}
.feature-ai-wrapper-5 .feature-ai-image {
  max-width: 536px;
  margin-left: 100px;
  position: relative;
}
@media (max-width: 1024px) {
  .feature-ai-wrapper-5 .feature-ai-image {
    max-width: initial;
    margin-left: 0;
  }
}
.feature-ai-wrapper-5 .feature-ai-image img {
  width: 100%;
  height: 100%;
}
.feature-ai-wrapper-5 .feature-ai-image .video-bg {
  position: absolute;
  left: -100px;
  bottom: 0;
  max-width: initial;
  border-right: 8px solid var(--white);
}
@media (max-width: 1024px) {
  .feature-ai-wrapper-5 .feature-ai-image .video-bg {
    left: 0;
  }
}
@media (max-width: 1024px) {
  .feature-ai-wrapper-5 .feature-ai-image .video-bg {
    left: 0;
    position: static;
    margin-top: 30px;
  }
}
.feature-ai-wrapper-5 .feature-ai-image .video-bg .video-content {
  padding: 48px 40px;
}
@media (max-width: 1024px) {
  .feature-ai-wrapper-5 .feature-ai-image .video-bg .video-content {
    padding: 30px;
  }
}
.feature-ai-wrapper-5 .feature-ai-image .video-bg .video-content .video-button {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: rgba(241, 99, 25, 0.24);
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .feature-ai-wrapper-5 .feature-ai-image .video-bg .video-content .video-button {
    width: 70px;
    height: 70px;
  }
}
.feature-ai-wrapper-5 .feature-ai-image .video-bg .video-content .video-button .video-btn {
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  background-color: var(--theme5);
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  font-size: 18px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.feature-ai-wrapper-5 .feature-ai-image .video-bg .video-content h3 {
  color: var(--white);
  font-size: 32px;
  font-family: 'Rubik', sans-serif;
}
.feature-ai-wrapper-5 .feature-ai-image .video-bg .video-content p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 247px;
}

.video-bg-section {
  position: relative;
  z-index: 9;
}
.video-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #1c1d21;
  bottom: -35%;
  z-index: -1;
  top: initial;
}
.video-bg-section .vector-shape {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1024px) {
  .video-bg-section .vector-shape {
    display: none;
  }
}
.video-bg-section .vector-shape img {
  width: 100%;
  height: 100%;
}
.video-bg-section .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1024px) {
  .video-bg-section .container-fluid {
    padding: 0 60px;
  }
}
@media (max-width: 1024px) {
  .video-bg-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .video-bg-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .video-bg-section .container-fluid {
    padding: 0 30px;
  }
}

.video-wrapper {
  padding: 290px 0;
}
@media (max-width: 1024px) {
  .video-wrapper {
    padding: 230px 0;
  }
}
@media (max-width: 1024px) {
  .video-wrapper {
    padding: 180px 0;
  }
}
@media (max-width: 768px) {
  .video-wrapper {
    padding: 150px 0;
  }
}
@media (max-width: 768px) {
  .video-wrapper {
    padding: 120px 0;
  }
}
.video-wrapper .video-button {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background: rgba(241, 99, 25, 0.24);
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .video-wrapper .video-button {
    width: 70px;
    height: 70px;
  }
}
.video-wrapper .video-button .video-btn {
  width: 88px;
  height: 88px;
  line-height: 88px;
  display: inline-block;
  background-color: var(--theme5);
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  font-size: 24px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.brand-wrapper-5 {
  margin-bottom: 90px;
  margin-top: 60px;
}
.brand-wrapper-5 .brand-image {
  opacity: 1;
  max-width: 170px;
  margin: 0 auto;
}
.brand-wrapper-5 .swiper-slide.swiper-slide-active .brand-image {
  filter: brightness(900);
}

.achievement-box-items {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}
.achievement-box-items .accordion-single {
  overflow: hidden;
}
.achievement-box-items .accordion-single .header-area .accordion-btn {
  padding: 30px 30px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .achievement-box-items .accordion-single .header-area .accordion-btn {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .achievement-box-items .accordion-single .header-area .accordion-btn {
    padding: 25px;
  }
}
.achievement-box-items .accordion-single .logo-item {
  display: flex;
  align-items: center;
  gap: 110px;
}
@media (max-width: 1024px) {
  .achievement-box-items .accordion-single .logo-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.achievement-box-items .accordion-single .logo-item h3 {
  color: var(--theme5);
  font-size: 24px;
}
.achievement-box-items .accordion-single .content-item {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1024px) {
  .achievement-box-items .accordion-single .content-item {
    flex-wrap: wrap;
  }
}
.achievement-box-items .accordion-single .content-item p {
  font-size: 16px;
  max-width: 512px;
  color: var(--text2);
}
.achievement-box-items .accordion-single .content-item .achievement-image {
  max-width: 232px;
  transition: all 0.6s;
  margin-bottom: -400px;
  opacity: 0;
  visibility: hidden;
  margin-right: 0;
}
.achievement-box-items .accordion-single .content-item .achievement-image img {
  width: 100%;
  height: 100%;
  max-width: 232px;
  transition: all 0.6s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
}
.achievement-box-items .accordion-single .content-item .button-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.achievement-box-items .accordion-single .content-item .button-list li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  color: var(--text2);
  white-space: nowrap;
}
.achievement-box-items .accordion-single.active .content-item {
  gap: 80px;
}
@media (max-width: 1024px) {
  .achievement-box-items .accordion-single.active .content-item {
    gap: 30px;
  }
}
.achievement-box-items .accordion-single.active .content-item .achievement-image {
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
}
.achievement-box-items .accordion-single.active .content-item .achievement-image img {
  max-height: initial;
  opacity: 1;
  visibility: visible;
}
.achievement-box-items .accordion-single.active .logo-item {
  display: block;
  gap: 0;
}
.achievement-box-items .accordion-single.active .logo-item h3 {
  display: none;
}

.scrolling-wrap-6 {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  padding: 48px 0;
  background: #111218;
}
.scrolling-wrap-6 .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  gap: 30px;
  cursor: pointer;
}
.scrolling-wrap-6 .comm .cmn-textslide {
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  text-transform: uppercase;
  color: var(--theme6);
  font-family: 'Rubik', sans-serif;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .scrolling-wrap-6 .comm .cmn-textslide {
    font-size: 50px;
  }
}
.scrolling-wrap-6 .comm .cmn-textslide i {
  font-size: 20px;
}
.scrolling-wrap-6:hover .comm {
  animation-play-state: paused;
}
@media (max-width: 1400px) {
  .scrolling-wrap-6 .comm {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .scrolling-wrap-6 {
    gap: 14px;
  }
  .scrolling-wrap-6 .comm {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .scrolling-wrap-6 .comm {
    gap: 12px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.offer-wrapper-6 {
  margin-right: -24%;
}
@media (max-width: 1024px) {
  .offer-wrapper-6 {
    margin-right: 0;
  }
}
.offer-wrapper-6 .offer-content .text {
  margin-top: 15px;
  max-width: 469px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
.offer-wrapper-6 .offer-content .array-buttons {
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .offer-wrapper-6 .offer-content .array-buttons {
    margin-top: 30px;
  }
}
.offer-wrapper-6 .offer-content .array-buttons .array-prev {
  color: var(--white);
  background: rgba(217, 217, 217, 0.06);
}
.offer-wrapper-6 .offer-content .array-buttons .array-prev:hover {
  background-color: var(--theme6);
}
.offer-wrapper-6 .offer-content .array-buttons .array-next {
  background-color: var(--theme6);
  color: var(--white);
}
.offer-wrapper-6 .offer-content .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--theme6);
}
.offer-wrapper-6 .offer-box-item-6 {
  padding: 70px 40px;
  border-radius: 8px;
  border: 1px solid rgba(92, 105, 114, 0.24);
  background: #222;
}
@media (max-width: 1024px) {
  .offer-wrapper-6 .offer-box-item-6 {
    padding: 30px;
  }
}
.offer-wrapper-6 .offer-box-item-6.style-6 {
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .offer-wrapper-6 .offer-box-item-6.style-6 {
    margin-top: 0;
  }
}
.offer-wrapper-6 .offer-box-item-6 .icon {
  width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 4px;
  background: #111218;
  transition: all 0.4s ease-in-out;
}
.offer-wrapper-6 .offer-box-item-6 .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.offer-wrapper-6 .offer-box-item-6 .content h4 {
  color: var(--white);
  font-family: 'Rubik', sans-serif;
  margin-bottom: 5px;
}
.offer-wrapper-6 .offer-box-item-6 .content p {
  max-width: 246px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
.offer-wrapper-6 .offer-box-item-6:hover .icon {
  background-color: var(--theme6);
}
.offer-wrapper-6 .offer-box-item-6:hover .icon img {
  filter: brightness(0) invert(1);
  transform: scaleX(-1) !important;
}

.funfact-wrapper-6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 70px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .funfact-wrapper-6 {
    flex-wrap: wrap;
    padding: 30px;
    margin-top: 80px;
  }
}
@media (max-width: 1024px) {
  .funfact-wrapper-6 {
    margin-bottom: 80px;
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .funfact-wrapper-6 {
    justify-content: center;
  }
}
.funfact-wrapper-6 .funfact-content {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  padding-right: 100px;
  height: 138px;
}
@media (max-width: 1024px) {
  .funfact-wrapper-6 .funfact-content {
    padding-right: 0;
    border-right: none;
  }
}
.funfact-wrapper-6 .funfact-content.style-6 {
  padding-right: 0;
  border-right: none;
}
.funfact-wrapper-6 .funfact-content h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 10px;
}
.funfact-wrapper-6 .funfact-content p {
  color: #5c6972;
  font-size: 20px;
  font-weight: 500;
}

.our-process-wrapper-6 {
  position: relative;
  z-index: 9;
}
.our-process-wrapper-6 .line-shape {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 1400px) {
  .our-process-wrapper-6 .line-shape {
    display: none;
  }
}
.our-process-wrapper-6 .our-process-item-6 {
  margin-top: 30px;
  text-align: center;
}
.our-process-wrapper-6 .our-process-item-6 .number {
  font-size: 64px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  color: rgba(255, 255, 255, 0.32);
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  background-color: #111218;
  margin: 0 auto;
  border-radius: 100%;
  border: 2px solid #1d2229;
  transition: all 0.4s ease-in-out;
}
.our-process-wrapper-6 .our-process-item-6 h3 {
  font-size: 24px;
  font-family: 'Rubik', sans-serif;
  margin-bottom: 10px;
  margin-top: 30px;
}
.our-process-wrapper-6 .our-process-item-6 p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 419px;
  font-size: 16px;
}
.our-process-wrapper-6 .our-process-item-6:hover .number {
  border: 2px solid var(--theme6);
  color: var(--theme6);
}

.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  background: #222226;
  padding: 40px 0;
}
.scrolling-wrap .comm {
  display: flex;
  align-items: center;
  animation: scroll 40s linear infinite;
  gap: 30px;
  cursor: pointer;
}
.scrolling-wrap .comm .cmn-textslide {
  font-size: 120px;
  font-weight: 900;
  line-height: 92%;
  text-transform: uppercase;
  color: var(--white);
}
.scrolling-wrap:hover .comm {
  animation-play-state: paused;
}
@media (max-width: 1024px) {
  .scrolling-wrap .comm {
    gap: 20px;
  }
  .scrolling-wrap .comm .cmn-textslide {
    font-size: 90px;
    line-height: 100px;
  }
  .scrolling-wrap .comm img {
    width: 70px;
  }
}
@media (max-width: 768px) {
  .scrolling-wrap .comm {
    gap: 20px;
  }
  .scrolling-wrap .comm .cmn-textslide {
    font-size: 60px;
    line-height: 65px;
  }
  .scrolling-wrap .comm img {
    width: 70px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
.digital-marketing {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
}
.digital-marketing .comm {
  display: flex;
  align-items: center;
  animation: scroll 40s linear infinite;
  gap: 30px;
  cursor: pointer;
}
.digital-marketing .comm .cmn-textslide {
  font-size: 80px;
  font-weight: 600;
  line-height: 110px;
  opacity: 25%;
  transition: all 0.5s;
  text-transform: capitalize;
}
.digital-marketing .comm .cmn-textslide .serial-badge {
  padding: 7px 15px;
  width: 80px;
  line-height: initial;
  font-size: 16px;
  border: 1px solid #454750;
  border-radius: 100px;
  gap: 10px !important;
  text-align: center;
}
.digital-marketing .comm .cmn-textslide .serial-badge i {
  transform: rotate(-40deg);
  color: var(--theme);
}
.digital-marketing .comm .cmn-textslide .digital-thumb {
  max-width: 330px;
  max-height: 235px;
  margin: -150px auto 0;
  transform: scale(0);
  visibility: hidden;
  transition: all 0.6s;
}
.digital-marketing .comm .cmn-textslide .digital-thumb img {
  width: 100%;
  height: 100%;
}
.digital-marketing .comm .cmn-textslide:hover {
  opacity: 1;
}
.digital-marketing .comm .cmn-textslide:hover .digital-thumb {
  transform: scale(1);
  visibility: visible;
}
@media (max-width: 1024px) {
  .digital-marketing .comm {
    display: flex;
    align-items: center;
    animation: scroll 40s linear infinite;
    gap: 30px;
    cursor: pointer;
  }
  .digital-marketing .comm .cmn-textslide {
    font-size: 48px;
    line-height: 110px;
  }
  .digital-marketing .comm .cmn-textslide .digital-thumb {
    max-width: 230px;
    max-height: 235px;
    margin: -150px auto 0;
  }
}
@media (max-width: 1024px) {
  .digital-marketing .comm {
    gap: 16px;
    cursor: pointer;
  }
  .digital-marketing .comm .cmn-textslide {
    font-size: 36px;
  }
  .digital-marketing .comm .cmn-textslide .digital-thumb {
    max-width: 170px;
    max-height: 105px;
    margin: -100px auto 0;
  }
}

.text-slie-reverse .comm {
  display: flex;
  align-items: center;
  animation: scroll 80s linear infinite;
}

.digital-software .comm .cmn-textslide {
  font-size: 40px;
  font-weight: 700;
  line-height: 58px;
}
.digital-software .comm img {
  width: 65px;
}
@media (max-width: 768px) {
  .digital-software .comm .cmn-textslide {
    font-size: 30px;
    font-weight: 700;
    line-height: 58px;
  }
  .digital-software .comm img {
    width: 55px;
  }
}

.footer-widgets-wrapper {
  padding: 90px 0 120px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1024px) {
  .footer-widgets-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 1024px) {
  .footer-widgets-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  font-weight: bold;
  color: var(--white);
  font-size: 24px;
  display: inline-block;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-content h3 {
  font-size: 55px;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 1024px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content h3 {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content h3 {
    font-size: 35px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
  outline: none;
  width: 100%;
  color: #cdcdcd;
  border: none;
  font-size: 16px;
  border-radius: 30px;
  border: 1px solid #cfd0d4;
  opacity: 0.2;
  background: rgba(217, 217, 217, 0);
  padding: 16px 30px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
  color: #cdcdcd !important;
}
.footer-widgets-wrapper .single-footer-widget .list-items li {
  text-transform: capitalize;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  display: table;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-items li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '\f061';
  font-family: 'Font Awesome 6 Pro';
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a {
  font-size: 18px;
  color: var(--text);
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover {
  background-size: 100% 1px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover::before {
  opacity: 1;
  visibility: visible;
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover a {
  padding-left: 25px;
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .footer-thumb {
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .footer-thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: var(--black);
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: visible;
}
.footer-widgets-wrapper .single-footer-widget .footer-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.footer-widgets-wrapper .single-footer-widget .footer-thumb .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: visible;
}
.footer-widgets-wrapper .single-footer-widget .footer-thumb:hover::before {
  opacity: 0.6;
  visibility: visible;
}
.footer-widgets-wrapper .single-footer-widget .footer-thumb:hover .icon {
  opacity: 1;
  visibility: visible;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .widget-head h3 {
  color: var(--header2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content p {
  font-weight: 500;
  color: var(--text2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #e8e7e4;
  color: var(--text2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a:hover {
  color: var(--white);
  background-color: var(--theme2);
}
/* Make image-based social icons behave like Font Awesome icons */
.footer-widgets-wrapper.style-2
  .single-footer-widget
  .footer-content
  .social-icon
  a.social-icon-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Size the image to match FA icon scale */
.footer-widgets-wrapper.style-2
  .single-footer-widget
  .footer-content
  .social-icon
  a.social-icon-img
  img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes it white like FA icons */
}

/* Hover state to match others */
.footer-widgets-wrapper.style-2
  .single-footer-widget
  .footer-content
  .social-icon
  a.social-icon-img:hover
  img {
  filter: brightness(0) invert(1);
}

.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .footer-input-2 {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .footer-input-2 input {
  outline: none;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e8e7e4;
  color: var(--text2);
  background-color: var(--white);
  font-size: 16px;
  padding: 20px 25px;
}
.footer-widgets-wrapper.style-2
  .single-footer-widget
  .footer-content
  .footer-input-2
  input::placeholder {
  color: var(--text2);
}
.footer-widgets-wrapper.style-2
  .single-footer-widget
  .footer-content
  .footer-input
  .newsletter-btn {
  background-color: #2a2a2a;
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  color: var(--white);
  position: absolute;
  background-color: var(--theme2);
  top: 5px;
  right: 6px;
}

.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li {
  background-image: linear-gradient(var(--theme2), var(--theme2));
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li a {
  color: var(--text2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li:hover::before {
  color: var(--theme2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li:hover a {
  color: var(--theme2);
}
.footer-widgets-wrapper.style-5 .single-footer-widget .widget-head h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--header);
}
.footer-widgets-wrapper.style-5 .single-footer-widget .footer-content h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--header);
  margin-bottom: 24px;
}
.footer-widgets-wrapper.style-5 .single-footer-widget .footer-content .footer-input-5 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}
.footer-widgets-wrapper.style-5 .single-footer-widget .footer-content .footer-input-5 input {
  outline: none;
  width: 100%;
  color: var(--text2);
  border: none;
  font-size: 16px;
  border-radius: 0;
  border: 1px solid rgba(92, 105, 114, 0.24);
  background: #f2f7fe;
  padding: 16px 20px;
}
.footer-widgets-wrapper.style-5
  .single-footer-widget
  .footer-content
  .footer-input-5
  input::placeholder {
  color: var(--text2) !important;
}
.footer-widgets-wrapper.style-5
  .single-footer-widget
  .footer-content
  .footer-input-5
  .newsletter-btn {
  color: var(--text2);
  position: absolute;
  top: 16px;
  right: 20px;
}
.footer-widgets-wrapper.style-5 .single-footer-widget .list-items li {
  font-size: 18px;
  font-weight: 400;
  background-image: linear-gradient(var(--theme5), var(--theme5));
}
.footer-widgets-wrapper.style-5 .single-footer-widget .list-items li a {
  color: var(--text2);
}
.footer-widgets-wrapper.style-5 .single-footer-widget .list-items li:hover {
  color: var(--theme5) !important;
}
.footer-widgets-wrapper.style-5 .single-footer-widget .list-items li:hover::before {
  opacity: 1;
  visibility: visible;
  color: var(--theme5) !important;
}
.footer-widgets-wrapper.style-5 .single-footer-widget .list-items li:hover a {
  padding-left: 25px;
  color: var(--theme5) !important;
}
.footer-widgets-wrapper.style-5 .single-footer-widget .contact-list li {
  color: var(--text2);
}
.footer-widgets-wrapper.style-5 .single-footer-widget .contact-list li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-widgets-wrapper.style-5 .single-footer-widget .contact-list li a {
  color: var(--text2);
}
.footer-widgets-wrapper.style-6 .single-footer-widget .widget-head h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 24px;
}
.footer-widgets-wrapper.style-6 .single-footer-widget .widget-head h3 a {
  color: var(--white);
}
.footer-widgets-wrapper.style-6 .single-footer-widget .footer-content h4 {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Rubik', sans-serif;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-widgets-wrapper.style-6 .single-footer-widget .footer-content h4 a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-widgets-wrapper.style-6 .single-footer-widget .footer-content .social-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
.footer-widgets-wrapper.style-6 .single-footer-widget .footer-content .social-profile a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  display: inline-block;
  color: var(--white);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}
.footer-widgets-wrapper.style-6 .single-footer-widget .footer-content .social-profile a:hover {
  background-color: var(--theme6);
}
.footer-widgets-wrapper.style-6 .single-footer-widget .list-items li {
  font-size: 16px;
  font-weight: 400;
  background-image: linear-gradient(var(--theme6), var(--theme6));
}
.footer-widgets-wrapper.style-6 .single-footer-widget .list-items li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-widgets-wrapper.style-6 .single-footer-widget .list-items li:hover {
  color: var(--theme6) !important;
}
.footer-widgets-wrapper.style-6 .single-footer-widget .list-items li:hover::before {
  opacity: 1;
  visibility: visible;
  color: var(--theme6) !important;
}
.footer-widgets-wrapper.style-6 .single-footer-widget .list-items li:hover a {
  padding-left: 25px;
  color: var(--theme6) !important;
}
.footer-widgets-wrapper.style-6 .single-footer-widget .newsletter-content h3 {
  font-family: 'Rubik', sans-serif;
  margin-bottom: 30px;
  font-size: 32px;
}
@media (max-width: 768px) {
  .footer-widgets-wrapper.style-6 .single-footer-widget .newsletter-content h3 {
    font-size: 28px;
  }
}
.footer-widgets-wrapper.style-6 .single-footer-widget .newsletter-content p {
  font-size: 16px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 577px;
}
.footer-widgets-wrapper.style-6 .single-footer-widget .newsletter-content .footer-input-6 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 577px;
}
.footer-widgets-wrapper.style-6 .single-footer-widget .newsletter-content .footer-input-6 input {
  outline: none;
  width: 100%;
  color: #5d6063;
  border: none;
  font-size: 16px;
  border-radius: 100px;
  background: #f2f7fe;
  padding: 16px 20px;
}
.footer-widgets-wrapper.style-6
  .single-footer-widget
  .newsletter-content
  .footer-input-6
  input::placeholder {
  color: #5d6063 !important;
}
.footer-widgets-wrapper.style-6
  .single-footer-widget
  .newsletter-content
  .footer-input-6
  .newsletter-btn {
  color: var(--white);
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 89px;
  background-color: var(--theme6);
  border-radius: 0px 100px 100px 0px;
}

.social-icon-custom {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-icon-custom a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  color: var(--white);
}
.social-icon-custom a:hover {
  color: var(--white);
  background-color: var(--theme2);
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(207, 208, 212, 0.15);
}
.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .footer-bottom .footer-bottom-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
}
.footer-bottom p {
  color: var(--text);
}
.footer-bottom p a {
  color: var(--text);
  font-weight: 400;
  text-decoration: none;
}
.footer-bottom .social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom .social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #cfd0d4;
  color: #cdcdcd;
}
.footer-bottom .social-icon a:hover {
  color: var(--theme);
}

/* Footer bottom: make image-based icon match FA icons */
.footer-bottom .social-icon a.social-icon-img {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal; /* overrides the 48px line-height centering meant for <i> */
}

.footer-bottom .social-icon a.social-icon-img img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-bottom.style-2 {
  border-top: 1px solid #e8e7e4;
}
.footer-bottom.style-2 p {
  color: #5c6972;
}
.footer-bottom.style-2 .footer-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom.style-2 .footer-menu li {
  font-size: 18px;
  color: var(--text2);
  font-weight: 500;
}
.footer-bottom.style-2 .footer-menu li a {
  color: var(--text2);
}
.footer-bottom.style-2 .footer-menu li a:hover {
  color: var(--theme2);
}
.footer-bottom.style-4 {
  border-top: 1px dashed #888a8d;
}
.footer-bottom.style-4 p {
  font-size: 16px;
  color: var(--white);
}
.footer-bottom.style-4 .online-payment {
  max-width: 356px;
}
.footer-bottom.style-4 .online-payment img {
  width: 100%;
}
.footer-bottom.style-4 ul {
  gap: 2px 24px;
}
.footer-bottom.style-4 ul li a {
  font-size: 16px;
  color: var(--white);
}

.social-icon a {
  border: unset !important;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}
.social-icon a i {
  color: var(--white);
}

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

.white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.footer-input4 {
  border-radius: 100px;
  overflow: hidden;
}
.footer-input4 input {
  padding: 12px 20px !important;
  height: 56px !important;
}
.footer-input4 button {
  width: 64px;
  height: 64px;
  top: 0 !important;
  right: 0 !important;
}

.footer-section {
  position: relative;
}
.footer-section .circle-shape {
  position: absolute;
  top: 25%;
  left: 60px;
}
@media (max-width: 1400px) {
  .footer-section .circle-shape {
    display: none;
  }
}
.footer-section .circle-shape-2 {
  position: absolute;
  top: -125px;
  right: 30px;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1400px) {
  .footer-section .circle-shape-2 {
    display: none;
  }
}

/*Footer 4*/
.batter-information {
  padding: 48px 0;
  gap: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.batter-information .line {
  width: 2px;
  height: 80px;
  opacity: 0.24;
  background: #fff;
}
@media (max-width: 1024px) {
  .batter-information {
    gap: 24px;
    padding: 25px 0;
  }
  .batter-information img {
    width: 60px;
  }
  .batter-information h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

.footer-bottom-5 {
  border-top: 1px solid rgba(92, 105, 114, 0.24);
  padding: 30px 0;
}
.footer-bottom-5 .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .footer-bottom-5 .footer-bottom-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-bottom-5 .footer-bottom-wrapper p {
  color: var(--text2);
}
.footer-bottom-5 .footer-bottom-wrapper p span {
  color: var(--header);
}
.footer-bottom-5 .footer-bottom-wrapper .footer-menu {
  gap: 30px;
}
@media (max-width: 1024px) {
  .footer-bottom-5 .footer-bottom-wrapper .footer-menu {
    flex-wrap: wrap;
  }
}
.footer-bottom-5 .footer-bottom-wrapper .footer-menu li a {
  color: var(--text2);
}
.footer-bottom-5 .footer-bottom-wrapper .footer-menu li.style-5 {
  position: relative;
}
.footer-bottom-5 .footer-bottom-wrapper .footer-menu li.style-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  width: 1.5px;
  height: 10px;
  background-color: var(--text2);
  top: 10px;
  left: -17px;
}

.footer-bottom-6 {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 30px 0;
}
.footer-bottom-6 .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-bottom-6 .footer-bottom-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-bottom-6 .footer-bottom-wrapper p {
  font-size: 16px;
  color: #cdcdcd;
}
.footer-bottom-6 .footer-bottom-wrapper p span {
  color: var(--theme6);
}

@media (max-width: 1024px) {
  .menu-thumb {
    display: none !important;
  }
}

/* =========================
   GENERAL (Generic classes)
   Replace your entire block with this
   ========================= */

/* Base container */
.general-section {
  position: relative;
}

.general-section ul {
  list-style: none;
  padding-left: 0;
}

/* List item layout */
.general-section ul li {
  position: relative;
  padding-left: 18px; /* space for dot */
  margin-bottom: 8px;
}

/* Dot indicator */
.general-section ul li::before {
  content: '';
  position: absolute;
  top: 9px; /* vertical alignment with text */
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(207, 208, 212, 0.35);
  transition: all 0.2s ease-in-out;
}

/* Hover / emphasis behavior */
.general-section ul li:hover::before {
  background: var(--theme);
}

/* ---------------------------------
   Section variants (scoped properly)
   --------------------------------- */

.general-section.general-section-alt {
  background-color: var(--bg);
}

/* Alt band spacing: wrapper only (band-level concern) */
.general-section.general-section-alt .general-section-wrapper {
  padding-top: 20px;
}

/* ---------------------------------
   Card variants (default + alt)
   --------------------------------- */

/* Default card is already defined elsewhere:
   .general-section-wrapper .general-section-content .general-card { ... }
   Leave that as-is.
*/

/* Alt card surface (white) – explicit opt-in per card */
.general-section .general-section-wrapper .general-card.general-card-alt {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px; /* matches your general-card rounding */
}

/* Typography contrast inside alt cards */
.general-section .general-section-wrapper .general-card.general-card-alt h4 {
  color: #060606; /* already used in your CSS */
}

/* Typography contrast inside alt cards */
.general-section .general-section-wrapper .general-card.general-card-alt h3 {
  color: #060606; /* already used in your CSS */
}

.general-section .general-section-wrapper .general-card.general-card-alt p,
.general-section .general-section-wrapper .general-card.general-card-alt li {
  color: rgba(0, 0, 0, 0.65);
}

/* Strong/b inside alt cards (override global content styles) */
.general-section .general-section-wrapper .general-card.general-card-alt p b,
.general-section .general-section-wrapper .general-card.general-card-alt p strong {
  color: #060606;
}

/* Links inside alt cards (override global content styles) */
.general-section .general-section-wrapper .general-card.general-card-alt a {
  color: var(--black);
  text-decoration: none;
}

.general-section .general-section-wrapper .general-card.general-card-alt a:hover {
  color: #060606;
}

/* If you use inline code / blockquotes inside cards, keep them readable on white */
.general-section .general-section-wrapper .general-card.general-card-alt code {
  background: rgba(0, 0, 0, 0.06);
  color: #060606;
}

.general-section .general-section-wrapper .general-card.general-card-alt blockquote {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.65);
  border-left-color: var(--theme);
}

/* ---------------------------------
   Options grid variant (layout only)
   Apply to WRAPPER:
   <div class="general-section-wrapper general-section-options">
   --------------------------------- */

.general-section .general-section-wrapper.general-section-options {
  padding-top: 0; /* avoid fighting other section variants */
}

/* Grid cards spacing & consistency */
.general-section .general-section-wrapper.general-section-options .general-card {
  height: 100%;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
}

/* CTA alignment at bottom of cards (exclude CTA card) */
.general-section
  .general-section-wrapper.general-section-options
  .general-card:not(.general-card-cta)
  .link-btn,
.general-section
  .general-section-wrapper.general-section-options
  .general-card:not(.general-card-cta)
  .theme-btn {
  margin-top: auto;
}

/* Featured card variant (scoped ONLY to options wrapper) */
.general-section .general-section-wrapper.general-section-options .general-card.is-featured {
  border: 2px solid var(--theme);
  transform: translateY(-6px);
}

.general-section .general-section-wrapper.general-section-options .general-card.is-featured h4 {
  color: var(--theme);
}

/* CTA card button should be normal width (within options wrapper) */
.general-section
  .general-section-wrapper.general-section-options
  .general-card.general-card-cta
  .theme-btn {
  width: auto;
  display: inline-flex;
}

.general-section .general-section-wrapper.general-section-options .general-card.general-card-cta {
  align-items: flex-start;
}

/* ---------------------------------
   CTA card (role-based)
   --------------------------------- */

.general-section .general-section-wrapper.general-section-options .general-card.general-card-cta {
  padding: 34px 32px;
}

/* CTA button should be normal width (no stretching) */
.general-section .general-section-wrapper .general-card.general-card-cta .theme-btn {
  width: auto;
  display: inline-flex;
}

/* Button link color handling:
   - Default cards keep your existing theme button styling
   - Alt cards can be managed separately here
*/

/* If your .theme-btn contains an <a>, keep default behavior */
.general-section .general-section-wrapper .general-card.general-card-cta .theme-btn a {
  color: var(--theme);
}

/* Alt card button/link control (separate management surface) */
.general-section .general-section-wrapper .general-card.general-card-alt .theme-btn {
  background-color: var(--accent1);
  color: var(--header);
  width: auto; /* protect from any global full-width button rules */
  display: inline-flex; /* consistent button sizing */
}

.general-section .general-section-wrapper .general-card.general-card-alt .theme-btn::before,
.general-section .general-section-wrapper .general-card.general-card-alt .theme-btn::after {
  background-color: var(--theme);
}

.general-section .general-section-wrapper .general-card.general-card-alt .theme-btn:hover {
  color: var(--header);
}

/* ---------------------------------
   Banner
   --------------------------------- */
.general-banner {
  margin-bottom: 30px;
}

/* ---------------------------------
   Wrapper + layout
   --------------------------------- */
.general-section-wrapper {
  position: relative;
}

/* ---------------------------------
   Card-attached callout (footer band)
   --------------------------------- */

.general-section .general-section-wrapper .general-card.general-card-callout-parent {
  overflow: hidden; /* keep rounded corners clean */
  ul {
    margin-bottom: 30px; /* match callout spacing */
  }
}

/* edge-to-edge footer band */
.general-section
  .general-section-wrapper
  .general-card.general-card-callout-parent
  .general-card-callout {
  margin-top: 30px;

  /* pull to card edges (matches .general-card padding: 18px) */
  margin-left: -18px;
  margin-right: -18px;
  margin-bottom: -18px;

  padding: 14px 18px;

  border-top: 1px solid rgba(207, 208, 212, 0.18);
  background: rgba(255, 255, 255, 0.03);

  color: rgba(207, 208, 212, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.general-section-wrapper .general-section-sidebar {
  position: sticky;
  top: 110px;
}

.general-section-wrapper .general-section-content {
  margin-left: 30px;
}

@media (max-width: 1024px) {
  .general-section-wrapper .general-section-sidebar {
    position: relative;
    top: auto;
  }
  .general-section-wrapper .general-section-content {
    margin-left: 0;
  }
}

/* ---------------------------------
   Sidebar nav
   --------------------------------- */

.general-section-wrapper .general-section-sidebar ul li::before {
  display: none;
}

.general-section-wrapper .general-section-sidebar .general-nav-title {
  font-weight: 700;
  color: var(--white);
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  margin: 0 0 12px;
}

.general-section-wrapper .general-section-sidebar .general-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.general-section-wrapper .general-section-sidebar .general-nav-list li {
  margin: 0 0 10px;
}

.general-section-wrapper .general-section-sidebar .general-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  transition: all 0.2s ease-in-out;
}

.general-section-wrapper .general-section-sidebar .general-nav-list a:hover {
  color: var(--white);
}

.general-section-wrapper .general-section-sidebar .general-nav-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(207, 208, 212, 0.35);
  flex: 0 0 8px;
}

.general-section-wrapper .general-section-sidebar .general-nav-list a:hover .dot {
  background: var(--theme);
}

/* =========================
   General section header
   ========================= */

.general-section .general-section-header .theme-btn.general-cta-offset {
  transform: translateY(25px);
}

.general-section .general-section-header .theme-btn.general-cta-offset:hover {
  transform: translateY(25px);
}

/* Button Margin
  .general-section.general-section-alt
  .general-section-header
  .theme-btn {
  margin-top: 24px;
}*/

.general-section .general-section-header {
  margin-bottom: 30px; /* matches .section-title */
}

@media (max-width: 768px) {
  .general-section .general-section-header {
    margin-bottom: 0; /* matches .section-title mobile behavior */
  }
}

.general-section .general-section-header.text-center {
  text-align: center;
}

/* Kicker / eyebrow */
.general-section .general-section-header .general-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 15px;
}

.general-section .general-section-header .general-section-kicker img {
  width: 16px;
  height: 16px;
}

.general-section .general-section-header h2 {
  margin-bottom: 80px;
  text-transform: none;
}

.general-section .general-section-header h2 b {
  color: var(--theme);
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
}

.general-section .general-section-header h2 span {
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
}

@media (max-width: 1024px) {
  .general-section .general-section-header h2 {
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  .general-section .general-section-header h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .general-section .general-section-header h2 {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .general-section .general-section-header h2 {
    font-size: 30px;
  }
}

/* ---------------------------------
   Sidebar contact box (scoped)
   --------------------------------- */
.general-section .general-section-sidebar .general-contact-box {
  border-radius: 25px;
  background: var(--accent2);
  text-align: center;
  padding: 70px 40px;
  margin-top: 30px;
}

.general-section .general-section-sidebar .general-contact-box .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--black);
  margin: 0 auto 30px;
  font-size: 32px;
  color: var(--theme);
}

.general-section .general-section-sidebar .general-contact-box .icon i {
  font-size: 32px;
  color: var(--theme);
}

.general-section .general-section-sidebar .general-contact-box h2 {
  font-size: 55px;
  line-height: 120%;
  color: #060606;
}

@media (max-width: 768px) {
  .general-section .general-section-sidebar .general-contact-box h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .general-section .general-section-sidebar .general-contact-box h2 {
    font-size: 32px;
  }
}

.general-section .general-section-sidebar .general-contact-box h2 span {
  font-weight: 400;
}

.general-section .general-section-sidebar .general-contact-box .theme-btn {
  background-color: var(--theme);
  color: var(--header);
  margin-top: 30px;
}

.general-section .general-section-sidebar .general-contact-box .theme-btn::before,
.general-section .general-section-sidebar .general-contact-box .theme-btn::after {
  background-color: var(--white);
}

.general-section .general-section-sidebar .general-contact-box .theme-btn:hover {
  color: var(--header);
}

/* ---------------------------------
   Content meta + cards (scoped)
   --------------------------------- */
.general-section-wrapper .general-section-content .general-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(207, 208, 212, 0.7);
  font-size: 14px;
  margin-bottom: 18px;
}

.general-section .general-section-wrapper .general-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(207, 208, 212, 0.18);
  border-radius: 18px;
  padding: 18px;
  margin: 0 0 16px;
}

/* Typography (base) */
.general-section .general-section-wrapper .general-card h4 {
  color: var(--white);
}

.general-section .general-section-wrapper .general-card p,
.general-section .general-section-wrapper .general-card li {
  color: var(--text);
}

/* Typography */
.general-section-wrapper .general-section-content h3 {
  color: var(--white);
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
  font-size: 26px;
  line-height: 1.25;
  margin: 24px 0 10px;
}

@media (max-width: 768px) {
  .general-section-wrapper .general-section-content h3.general-lead {
    font-size: 18px;
    line-height: 1.5;
    padding-bottom: 80px;
    margin-bottom: 0; /* optional: prevents stacked spacing if h3 already has margin */
  }
}
@media (max-width: 768px) {
  .general-section-header .general-lead {
    font-size: 20px;
    padding-bottom: 12px;
  }
}
.general-section-wrapper .general-section-content h4 {
  color: var(--white);
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  line-height: 1.3;
  margin: 18px 0 10px;
}

.general-section-wrapper .general-section-content p {
  color: var(--text);
  font-size: 16px;
  font-weight: 200;
  line-height: 1.85;
  margin: 0 0 14px;
}

.general-section-wrapper .general-section-content p b,
.general-section-wrapper .general-section-content p strong {
  color: var(--white);
}

.general-section-wrapper .general-section-content a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.general-section-wrapper .general-section-content a:hover {
  color: var(--theme);
}

.general-section-wrapper .general-section-content ul,
.general-section-wrapper .general-section-content ol {
  margin: 0 0 16px;
  padding-left: 18px;
}

.general-section-wrapper .general-section-content ul li,
.general-section-wrapper .general-section-content ol li {
  color: var(--text);
  font-size: 16px;
  font-weight: 200;
  line-height: 1.75;
  margin: 0 0 8px;
}

.general-section-wrapper .general-section-content blockquote {
  margin: 18px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--theme);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  color: var(--text);
}

.general-section-wrapper .general-section-content code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.general-section-wrapper .general-section-content pre {
  overflow: auto;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(207, 208, 212, 0.12);
}

.general-section-wrapper .general-section-content pre code {
  background: transparent;
  padding: 0;
}

/* Dividers */
.general-divider {
  height: 1px;
  background: rgba(207, 208, 212, 0.18);
  margin: 26px 0;
}

/* ---------------------------------
   404 Error
   --------------------------------- */
.general-section-content .error-404-icon {
  width: 100%;
  height: 200px;
  max-width: 320px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.general-section-content .error-404-icon .conn-404 {
  width: 100%;
  height: auto;
  display: block;
}

/* Base nodes */
.general-section-content .error-404-icon .conn-404 .conn-node {
  fill: var(--header2);
  stroke: var(--theme);
  stroke-width: 5;
}

/* Make the main node feel heavier */
.general-section-content .error-404-icon .conn-404 .node-right {
  stroke-width: 6;
}

/* Connection lines */
.general-section-content .error-404-icon .conn-404 .conn-line {
  fill: none;
  stroke: var(--theme);
  stroke-width: 8;
  stroke-linecap: round;
  opacity: 0.95;
}

/* Sparks */
.general-section-content .error-404-icon .conn-404 .conn-spark {
  fill: none;
  stroke: var(--accent1);
  stroke-width: 5;
  stroke-linecap: round;
  opacity: 0.6;
}

/* Constant pulse (smooth breathing motion) */
.general-section-content .error-404-icon .conn-404 .conn-pulse {
  fill: none;
  stroke: var(--accent2);
  stroke-width: 5;
  opacity: 0.4;
  transform-box: fill-box;
  transform-origin: center;
  animation: simpsec-conn-pulse 2.6s ease-in-out infinite;
}

/* Lines are always “reaching” */
.general-section-content .error-404-icon .conn-404 .line-left {
  animation: simpsec-conn-reach-left 2.6s ease-in-out infinite;
}
.general-section-content .error-404-icon .conn-404 .line-right {
  animation: simpsec-conn-reach-right 2.6s ease-in-out infinite;
}

/* Sparks gently shimmer */
.general-section-content .error-404-icon .conn-404 .spark-1,
.general-section-content .error-404-icon .conn-404 .spark-2,
.general-section-content .error-404-icon .conn-404 .spark-3 {
  animation: simpsec-conn-spark 2.6s ease-in-out infinite;
}

.general-section-content .error-404-icon .conn-404 .spark-2 {
  animation-delay: 0.1s;
}
.general-section-content .error-404-icon .conn-404 .spark-3 {
  animation-delay: 0.2s;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .general-section-content .error-404-icon * {
    animation: none !important;
  }
}

/* ---------- Keyframes ---------- */

/* Pulse never stops — subtle breathing */
@keyframes simpsec-conn-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.6;
  }
}

/* Left line reaches right */
@keyframes simpsec-conn-reach-left {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

/* Right line reaches left */
@keyframes simpsec-conn-reach-right {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-8px);
  }
}

/* Sparks shimmer constantly */
@keyframes simpsec-conn-spark {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.9;
  }
}

/* ---------------------------------
   Small helper text styles (generic)
   --------------------------------- */
.general-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(207, 208, 212, 0.7);
  font-size: 14px;
  margin: 0 0 10px;
}

.general-lead {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 18px;
}

@media (max-width: 768px) {
  .general-section-content .general-lead {
    font-size: 18px; /* slightly smaller for phones */
    line-height: 1.5;
    padding-bottom: 16px; /* adds breathing room before cards */
  }
}

.general-small {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(207, 208, 212, 0.7);
}

.general-muted {
  color: rgba(207, 208, 212, 0.7);
}

/* ---------------------------------
   Generic grid + media helpers
   --------------------------------- */
.general-grid {
  display: grid;
  gap: 16px;
}

.general-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .general-grid.two {
    grid-template-columns: 1fr;
  }
}

.general-media {
  border-radius: 22px;
  overflow: hidden;
}

.general-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------------------------------
   Sidebar card wrapper helpers
   --------------------------------- */
.general-sidebar-card {
  margin-top: 18px;
}

/* Keep existing behavior for contact-info-box when used inside sidebar cards */
.general-sidebar-card .contact-info-box {
  margin-top: 0;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 50px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 240px;
  background: #120f0f;
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  width: 100%;
}
.header-main .main-menu ul li .submenu li a::before {
  content: '';
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme) !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb
  .demo-button
  .theme-btn {
  padding: 14px 20px;
  color: var(--header) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0px !important;
  background-color: var(--theme);
  line-height: initial;
  font-weight: 600;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(20, 19, 19, 0)),
    to(#5e5ef6)
  );
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb:hover
  .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb:hover
  .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 35px;
}
@media (max-width: 1400px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-1 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1400px) {
  .header-1 .container-fluid {
    padding: 0 60px;
  }
}
@media (max-width: 1400px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1400px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1024px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 1024px) {
  .header-1 .join-text {
    display: none;
  }
}
.header-1 .header-left {
  display: flex;
  align-items: center;
  gap: 160px;
}
@media (max-width: 768px) {
  .header-1 .header-left .logo img {
    max-width: 170px;
    height: auto;
    gap: 80px;
  }
}

.header-1.header-style-5 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.header-1.header-style-5 .header-main .main-menu {
  background: rgba(255, 255, 255, 0.08);
  padding: 0 24px;
}
.header-1.header-style-5 .header-main .main-menu ul li a::before {
  background-color: var(--theme5);
}
.header-1.header-style-5 .header-main .main-menu ul li a:hover {
  color: var(--theme5) !important;
}
.header-1.header-style-5 .header-main .main-menu ul li .submenu {
  border-top: 6px solid var(--theme5);
}
.header-1.header-style-5 .header-main .header-right .search-icon {
  border-right: 1px solid var(--white);
  padding-right: 20px;
}
@media (max-width: 768px) {
  .header-1.header-style-5 .header-main .header-right .search-icon {
    display: none;
  }
}
.header-1.header-style-5.header-6 .header-main .main-menu {
  background: transparent;
}
.header-1.header-style-5.header-6 .header-main .main-menu ul li a::before {
  background-color: var(--theme6);
}
.header-1.header-style-5.header-6 .header-main .main-menu ul li a:hover {
  color: var(--theme6) !important;
}
.header-1.header-style-5.header-6 .header-main .main-menu ul li .submenu {
  border-top: 6px solid var(--theme6);
}
.header-1.header-style-5.header-6 .header-main .header-right .theme-btn {
  background-color: var(--white);
  padding: 15px 40px;
  color: var(--header);
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .header-1.header-style-5.header-6 .header-main .header-right .theme-btn {
    display: none;
  }
}
.header-1.header-style-5.header-6 .header-main .header-right .theme-btn::after {
  background-color: var(--theme6);
}
.header-1.header-style-5.header-6 .header-main .header-right .theme-btn:hover {
  color: var(--white);
  border: 1px solid var(--white);
}

.header-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-2 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1400px) {
  .header-2 .container-fluid {
    padding: 0 60px;
  }
}
@media (max-width: 1400px) {
  .header-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1400px) {
  .header-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1024px) {
  .header-2 .container-fluid {
    padding: 0 30px;
  }
}
.header-2 .header-main .main-menu ul li a {
  color: var(--white);
}
.header-2 .header-main .main-menu ul li a:hover {
  color: var(--white) !important;
}
.header-2 .header-main .main-menu ul li .submenu {
  background: var(--white);
  color: var(--header);
  border-top: 6px solid var(--theme2);
  box-shadow: var(--box-shadow);
}
.header-2 .header-main .main-menu ul li .submenu li a {
  font-weight: 500;
  color: var(--header);
}
.header-2 .header-main .main-menu ul li .submenu li a::before {
  background: var(--theme2);
}
.header-2 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-2 .header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme2) !important;
}
.header-2 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme2);
}
.header-2 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  color: var(--theme2);
}
.header-2 .header-main .main-menu ul li:hover > a {
  color: var(--white);
}
.header-2 .header-main .main-menu ul li:hover > a::after {
  color: var(--theme2);
}
.header-2 .header-left {
  display: flex;
  align-items: center;
  gap: 160px;
}
@media (max-width: 1400px) {
  .header-2 .header-left {
    gap: 80px;
  }
}
.header-2 .join-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--white) !important;
}
.header-2 .theme-btn {
  background-color: var(--white);
  color: var(--header);
  padding: 20px 50px;
}
@media (max-width: 1024px) {
  .header-2 .theme-btn {
    display: none;
  }
}
.header-2 .theme-btn::before,
.header-2 .theme-btn::after {
  background-color: var(--theme2);
}
.header-2 .theme-btn:hover {
  color: var(--white);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: #181818;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.header-2 {
  background-color: var(--theme2);
}

.header-style4 {
  background-color: var(--white);
}
.header-style4 .mega-menu-wrapper .search-icon,
.header-style4 .mega-menu-wrapper .sidebar__toggle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary-clr);
}
.header-style4 .mega-menu-wrapper .search-icon i,
.header-style4 .mega-menu-wrapper .sidebar__toggle i {
  color: var(--black);
}
.header-style4 .mega-menu-wrapper .main-menu ul li a {
  color: #000;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}
.header-style4 .mega-menu-wrapper .main-menu ul li a::before {
  background-color: var(--theme3);
}
.header-style4 .mega-menu-wrapper .main-menu ul li a:hover {
  color: var(--theme3) !important;
}
.header-style4 .mega-menu-wrapper .main-menu ul li .submenu {
  border-top: 6px solid var(--theme3);
}
.header-style4 .mega-menu-wrapper .main-menu ul li .submenu li a::before {
  background-color: var(--theme3);
}
.header-style4 .mega-menu-wrapper .main-menu ul li .submenu li a:hover {
  color: var(--theme3) !important;
}
@media (max-width: 1400px) {
  .header-style4 .main-menu ul li:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .header-style4 .header-logo {
    max-width: 120px;
    display: block;
  }
  .header-style4 .header-logo img {
    width: 100%;
  }
  .header-style4 .mega-menu-wrapper .search-icon,
  .header-style4 .mega-menu-wrapper .sidebar__toggle {
    width: 40px;
    height: 40px;
  }
  .header-style4 .mega-menu-wrapper .search-icon i,
  .header-style4 .mega-menu-wrapper .sidebar__toggle i {
    color: var(--black);
  }
}

.offcanvas__info {
  background: var(--bg) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: min(400px, 100vw);
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition:
    transform 0.45s ease-in-out,
    opacity 0.45s ease-in-out;
  -moz-transition:
    transform 0.45s ease-in-out,
    opacity 0.45s ease-in-out;
  transition:
    transform 0.45s ease-in-out,
    opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}
.offcanvas__info.style-4 {
  border-left: 2px solid var(--theme3) !important;
}
.offcanvas__info.style-5 {
  border-left: 2px solid var(--theme5) !important;
}
.offcanvas__info.style-6 {
  border-left: 2px solid var(--theme6) !important;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-4 {
  background-color: var(--theme3);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-4 i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-5 {
  background-color: var(--theme5);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-5 i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-6 {
  background-color: var(--theme6);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-6 i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  ul
  li
  .offcanvas__contact-icon.style-4
  i {
  color: var(--theme3);
}
.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  ul
  li
  .offcanvas__contact-icon.style-5
  i {
  color: var(--theme5) !important;
}
.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  ul
  li
  .offcanvas__contact-icon.style-6
  i {
  color: var(--theme6);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--text);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon.style-4 a:hover {
  background-color: var(--theme3) !important;
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon.style-5 a:hover {
  background-color: var(--theme5) !important;
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon.style-6 a:hover {
  background-color: var(--theme6) !important;
  color: var(--white);
}

/* Offcanvas: make image-based icon match FA icons */
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a.social-icon-img {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal; /* override 45px line-height used for <i> centering */
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a.social-icon-img img {
  width: 16px; /* matches your font-size:16px visual weight */
  height: 16px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 768px) {
  .offcanvas__info {
    width: min(300px, 100vw);
  }
}
@media (max-width: 768px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
}
.breadcrumb-wrapper .arrow-shape {
  position: absolute;
  top: 50px;
  left: 50px;
}
.breadcrumb-wrapper .circle-shape {
  position: absolute;
  top: -25%;
  right: 0;
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 170px 0 170px;
  z-index: 9;
  text-align: center;
}
@media (max-width: 1024px) {
  .breadcrumb-wrapper .page-heading {
    padding: 140px 0;
  }
}
@media (max-width: 1024px) {
  .breadcrumb-wrapper .page-heading {
    padding: 110px 0;
  }
}
@media (max-width: 768px) {
  .breadcrumb-wrapper .page-heading {
    padding: 130px 0 80px;
  }
}
@media (max-width: 768px) {
  .breadcrumb-wrapper .page-heading {
    padding: 100px 0 60px;
  }
}
.breadcrumb-wrapper .page-heading h6 {
  font-size: 16px;
  font-weight: 700;
  color: #cdcdcd;
  margin-bottom: 20px;
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 66px;
  position: relative;
  z-index: 9;
  font-weight: 600;
  text-transform: capitalize;
}
.breadcrumb-wrapper .page-heading h1 span {
  font-weight: 400;
  color: var(--theme);
  font-family: 'Rubik', sans-serif;
}
@media (max-width: 768px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 42px;
  }
}

@media (max-width: 1024px) {
  .error-section.style-padding {
    padding-top: 100px !important;
  }
}

.error-items {
  text-align: center;
}
.error-items .error-image {
  max-width: 520px;
  margin: 0 auto;
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-items h2 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 65px;
}
@media (max-width: 768px) {
  .error-items h2 {
    font-size: 36px;
  }
}
.error-items p {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
}
.error-items .theme-btn {
  background-color: var(--theme);
  color: var(--header);
}
.error-items .theme-btn::before,
.error-items .theme-btn::after {
  background-color: var(--white);
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(191, 247, 71, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 40px;
  height: 8px;
  transition: 0.6s;
  background-color: #2a2a2a;
  opacity: 1;
  border-radius: 10px;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 40px;
}

.array-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.array-buttons .array-prev {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 100px;
  text-align: center;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border: 1px solid #060606;
}
.array-buttons .array-prev:hover {
  background-color: var(--theme5);
  border: 1px solid var(--theme5);
  color: var(--white);
}
.array-buttons .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50px;
  text-align: center;
  color: var(--white);
  background-color: var(--theme5);
  transition: all 0.4s ease-in-out;
}
.array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}

@media (max-width: 768px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.nice-select {
  background-color: transparent;
  border: transparent;
  float: initial;
  overflow: initial;
  height: initial;
  padding: 0;
  display: inline-flex;
  align-items: center;
  line-height: 150%;
  width: 100%;
  border: none;
}
.nice-select:focus,
.nice-select:hover {
  border-color: transparent;
}
.nice-select::after {
  height: 8px;
  width: 8px;
  right: -25px;
  top: 15px;
  border-color: var(--header);
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
}
.nice-select .list {
  width: initial;
  background-color: var(--theme);
  box-shadow: none;
  overflow: initial;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  width: 100%;
  top: 100%;
  padding: 0;
  max-height: 50vh;
  overflow-x: auto;
  right: -50px;
}
.nice-select .list::-webkit-scrollbar {
  width: 2px;
  opacity: 1;
  display: block;
}
.nice-select .list::-webkit-scrollbar-button,
.nice-select .list::-webkit-scrollbar-thumb {
  background: var(--header);
}
.nice-select .option {
  background-color: transparent;
  font-size: 16px;
  line-height: 150%;
  padding: 4px 5px;
  min-height: initial;
  font-weight: 500;
}
.nice-select .option:hover,
.nice-select .option:focus,
.nice-select .option.selected.focus {
  background-color: transparent;
}
.nice-select .current {
  font-weight: 500;
  color: var(--header);
}

.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 50%;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 768px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers.icon {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers.icon:hover {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--header);
  border: 1px solid transparent;
}

.body-bg {
  background-color: var(--body-bg);
}

.ml-200 {
  margin-left: 200px;
}
@media (max-width: 1024px) {
  .ml-200 {
    margin-left: 0;
  }
}

.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 50%;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 768px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers.icon {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers.icon:hover {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--header);
  border: 1px solid transparent;
}

.hero-secton {
  position: relative;
  overflow: hidden;
}

/* Video behaves exactly like a background image */
.hero-secton .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Ensure content stays above video */
.hero-secton .container,
.hero-secton .hero-content {
  position: relative;
  z-index: 1;
}

.hero-1 {
  padding: 210px 0 0;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .hero-1 {
    padding: 170px 0 100px;
  }
}
@media (max-width: 1024px) {
  .hero-1 {
    padding: 170px 0 80px;
  }
}
/* Mobile: remove hero section background image */
@media (max-width: 768px) {
  .hero-1 {
    background-image: none !important;
  }
}
.hero-1 .hero-content {
  position: relative;
}
.hero-1 .hero-content .color-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.hero-1 .hero-content p {
  font-size: 27px;
  text-transform: uppercase;
  text-align: center;
  margin-left: clamp(0px, 22vw, 320px);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .hero-1 .hero-content .color-bg {
    display: none;
  }
}
@media (max-width: 1024px) {
  .hero-1 .hero-content p {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .hero-1 .hero-content p {
    font-size: 24px;
  }
}
.hero-1 .hero-content h1 {
  text-transform: uppercase;
  font-size: 145px;
}
@media (max-width: 1400px) {
  .hero-1 .hero-content h1 {
    font-size: 120px;
  }
}
@media (max-width: 1024px) {
  .hero-1 .hero-content h1 {
    font-size: 100px;
  }
}
@media (max-width: 1024px) {
  .hero-1 .hero-content h1 {
    line-height: 120%;
    text-align: center;
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .hero-1 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .hero-1 .hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .hero-1 .hero-content h1 img {
    display: none;
  }
}
.hero-1 .hero-content h1 .text {
  font-size: 24px;
  font-weight: 700;
  color: #cdcdcd;
  line-height: 134%;
}
.hero-1 .hero-content h1 b {
  color: var(--theme);
  margin-left: 280px;
}
@media (max-width: 1400px) {
  .hero-1 .hero-content h1 b {
    margin-left: 0;
  }
}
.hero-1 .hero-content h1 .text-2 {
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
}
.hero-1 .hero-image {
  margin-top: 150px;
  height: 620px;
}

@media (max-width: 1024px) {
  .hero-1 .hero-image {
    margin-left: 0;
    margin-top: 80px;
  }
}
@media (max-width: 1024px) {
  .hero-1 .hero-image {
    margin-top: 50px;
    height: 150px;
  }
}
/* Hide hero image on phones */
@media (max-width: 768px) {
  .hero-1 .hero-image {
    display: none;
  }
}
/* Hide hero image on phones */
@media (max-width: 768px) {
  .hero-1 .hero-image {
    display: none;
  }
}
.hero-1 .hero-image img {
  width: 100%;
  height: 100%;
}

.hero-2 {
  padding: 200px 0 200px;
}
.hero-2 .hero-content {
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .hero-2 .hero-content {
    text-align: center;
  }
}
.hero-2 .hero-content h1 {
  font-size: 80px;
  line-height: 113%;
  font-weight: 700;
}
/* Tablet/mobile: keep hero image tall enough */
@media (max-width: 1024px) {
  .hero-1 .hero-image {
    height: 360px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (max-width: 768px) {
  .hero-2 .hero-content h1 {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .hero-1 .hero-image {
    height: 300px; /* pick your desired mobile hero height */
    margin-top: 28px; /* optional: tighten spacing */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.hero-2 .hero-content h1 span {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
}
.hero-2 .hero-content p {
  font-size: 24px;
  color: var(--white);
  line-height: 142%;
  margin-top: 25px;
}
@media (max-width: 1024px) {
  .hero-2 .hero-content p {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .hero-2 .hero-content p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .hero-2 .hero-content p {
    font-size: 18px;
  }
}
.hero-2 .hero-content .theme-btn {
  margin-top: 40px;
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
}
.hero-2 .hero-content .theme-btn::before,
.hero-2 .hero-content .theme-btn::after {
  background-color: var(--white);
}
.hero-2 .hero-content .theme-btn:hover {
  color: var(--header);
}
.hero-2 .hero-image {
  position: relative;
}
@media (max-width: 1400px) {
  .hero-2 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
.hero-2 .hero-image .circle-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1400px) {
  .hero-2 .hero-image .circle-shape {
    display: none;
  }
}

.hero-3 {
  padding: 160px 0 160px;
  overflow: hidden;
}
.hero-3 .hero-content {
  text-align: center;
}
@media (max-width: 1024px) {
  .hero-3 .hero-content {
    margin-bottom: 40px;
  }
}
.hero-3 .hero-content h1 {
  font-size: 80px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .hero-3 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 768px) {
  .hero-3 .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 768px) {
  .hero-3 .hero-content h1 {
    font-size: 40px;
  }
}
.hero-3 .hero-content h1 span {
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
}
.hero-3 .hero-content p {
  font-size: 24px;
  max-width: 525px;
  line-height: 142%;
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .hero-3 .hero-content p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .hero-3 .hero-content p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .hero-3 .hero-content p {
    font-size: 18px;
  }
}
.hero-3 .hero-content .hero-button {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .hero-3 .hero-content .hero-button {
    margin-top: 30px;
  }
}
.hero-3 .hero-image-items {
  display: flex;
  align-items: center;
  margin-bottom: -200px;
}
@media (max-width: 1024px) {
  .hero-3 .hero-image-items {
    margin-bottom: -80px;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .hero-3 .hero-image-items {
    gap: 0;
  }
}
.hero-3 .hero-image-items .hero-image {
  position: relative;
  z-index: 9;
  margin-top: 150px;
}
@media (max-width: 1024px) {
  .hero-3 .hero-image-items .hero-image {
    margin-top: 0;
    margin: 0 auto;
    text-align: center;
  }
}
.hero-3 .hero-image-items .hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.hero-3 .hero-image-items .hero-image.style-2 {
  transform: rotate(-10.802deg);
  margin-bottom: -40px;
}
@media (max-width: 1024px) {
  .hero-3 .hero-image-items .hero-image.style-2 {
    margin-bottom: 0;
  }
}
.hero-3 .hero-image-items .hero-image.style-3 {
  transform: rotate(11.846deg);
  margin-bottom: -40px;
  z-index: 1;
  margin-bottom: 0;
}

.hero-4 {
  margin: 91px 48px 0;
  border-radius: 24px;
}
.hero-4 .container {
  max-width: 1720px;
}
.hero-4 .hero-content4 {
  max-width: 780px;
  padding: 146px 0 122px;
}
.hero-4 .hero-content4 h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 92px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
}
.hero-4 .hero-content4 .hero-pra {
  font-size: 16px;
  max-width: 677px;
}
.hero-4 .hero-content4 .drive-adjustment {
  max-width: 720px;
  margin-left: -80px;
}
@media (max-width: 1024px) {
  .hero-4 {
    margin: 70px 20px 0;
    border-radius: 14px;
  }
  .hero-4 .container {
    max-width: 1720px;
  }
  .hero-4 .hero-content4 {
    max-width: 780px;
    padding: 110px 0 100px;
  }
  .hero-4 .hero-content4 h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 92px;
  }
  .hero-4 .hero-content4 .hero-pra {
    font-size: 16px;
    max-width: 677px;
  }
  .hero-4 .hero-content4 .drive-adjustment {
    max-width: 720px;
    margin-left: -80px;
  }
}
@media (max-width: 1024px) {
  .hero-4 {
    margin: 70px 20px 0;
    border-radius: 14px;
  }
  .hero-4 .container {
    max-width: 720px;
  }
  .hero-4 .hero-content4 {
    max-width: 780px;
    padding: 110px 0 100px;
  }
  .hero-4 .hero-content4 h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 48px;
  }
  .hero-4 .hero-content4 .hero-pra {
    font-size: 16px;
    max-width: 677px;
  }
  .hero-4 .hero-content4 .drive-adjustment {
    max-width: 720px;
    margin-left: -80px;
  }
}
@media (max-width: 768px) {
  .hero-4 {
    margin: 60px 20px 0;
  }
  .hero-4 .container {
    max-width: 720px;
  }
  .hero-4 .hero-content4 {
    max-width: 780px;
    padding: 70px 0 80px;
  }
  .hero-4 .hero-content4 h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
  }
  .hero-4 .hero-content4 .hero-pra {
    font-size: 14px;
    line-height: 19px;
    max-width: 677px;
  }
  .hero-4 .hero-content4 .drive-adjustment {
    max-width: 720px;
    margin-left: 0px;
  }
}

.hero-5 {
  padding: 200px 0 100px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1024px) {
  .hero-5 {
    padding: 180px 0 100px;
  }
}
@media (max-width: 1024px) {
  .hero-5 {
    padding: 150px 0 80px;
  }
}
.hero-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #060606;
  z-index: -1;
}
.hero-5::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 181px;
  height: 861px;
  background-color: #f16319;
}
@media (max-width: 1024px) {
  .hero-5::after {
    display: none;
  }
}
.hero-5 .social-icon-list {
  display: flex;
  align-items: center;
  gap: 30px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  top: 38%;
  position: absolute;
  left: 2%;
  z-index: 9;
}
@media (max-width: 1400px) {
  .hero-5 .social-icon-list {
    left: 2.6%;
  }
}
@media (max-width: 1400px) {
  .hero-5 .social-icon-list {
    display: none !important;
  }
}
.hero-5 .social-icon-list a {
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
}
.hero-5 .social-icon-list a:hover {
  color: var(--header);
}
.hero-5 .container-fluid {
  padding: 0 110px;
}
@media (max-width: 1024px) {
  .hero-5 .container-fluid {
    padding: 0 60px;
  }
}
@media (max-width: 1024px) {
  .hero-5 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .hero-5 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .hero-5 .container-fluid {
    padding: 0 30px;
  }
}
.hero-5 .hero-image {
  max-width: 577px;
  position: relative;
  z-index: 999;
}
@media (max-width: 1024px) {
  .hero-5 .hero-image {
    max-width: initial;
  }
}
.hero-5 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-5 .hero-image .hero-image-2 {
  max-width: 268px;
  position: absolute;
  bottom: 30px;
  right: -170px;
}
@media (max-width: 1400px) {
  .hero-5 .hero-image .hero-image-2 {
    bottom: 30px;
    right: -95px;
  }
}
@media (max-width: 1024px) {
  .hero-5 .hero-image .hero-image-2 {
    max-width: initial;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .hero-5 .hero-image .hero-image-2 {
    max-width: 200px;
  }
}
.hero-5 .hero-image .hero-image-2 .hero-text {
  display: flex;
  align-items: center;
  gap: 30px;
  position: absolute;
  top: -200px;
  transform: rotate(-90deg);
  right: 0px;
}
@media (max-width: 1400px) {
  .hero-5 .hero-image .hero-image-2 .hero-text {
    display: none;
  }
}
.hero-5 .hero-image .hero-image-2 .hero-text .icon {
  transform: rotate(-260deg);
}
.hero-5 .hero-image .hero-image-2 .hero-text h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--white);
}
.hero-5 .hero-image .hero-image-2 .shape-image {
  position: absolute;
  max-width: initial;
  bottom: -68px;
  right: -200px;
  z-index: -1;
}
@media (max-width: 1400px) {
  .hero-5 .hero-image .hero-image-2 .shape-image {
    bottom: -64px;
    right: -67px;
  }
}
@media (max-width: 1024px) {
  .hero-5 .hero-image .hero-image-2 .shape-image {
    display: none;
  }
}
.hero-5 .hero-content h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 96px;
  font-weight: 800;
  line-height: 116%;
  text-transform: uppercase;
  margin-bottom: 48px;
}
@media (max-width: 1400px) {
  .hero-5 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 1024px) {
  .hero-5 .hero-content h1 {
    margin-bottom: 0px;
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .hero-5 .hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .hero-5 .hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .hero-5 .hero-content h1 {
    font-size: 30px;
  }
}
.hero-5 .hero-content h1 img {
  margin-left: 20px;
}
.hero-5 .hero-content p {
  max-width: 697px;
  margin-left: 120px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 1024px) {
  .hero-5 .hero-content p {
    margin-left: 0;
  }
}
.hero-5 .hero-content .hero-button-item {
  margin-left: 120px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 340px;
}
@media (max-width: 1400px) {
  .hero-5 .hero-content .hero-button-item {
    gap: 150px;
  }
}
@media (max-width: 1024px) {
  .hero-5 .hero-content .hero-button-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-left: 0;
  }
}
.hero-5 .hero-content .hero-button-item .circle-button {
  width: 125px;
  height: 125px;
  border-radius: 100px;
  color: var(--white);
  background: #f16319;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  gap: 10px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 768px) {
  .hero-5 .hero-content .hero-button-item .circle-button .btn-text br {
    display: initial;
  }
}
.hero-5 .hero-content .hero-button-item .circle-button:hover {
  background: var(--white);
  color: var(--header);
}
.hero-5 .hero-content .hero-button-item .circle-button i {
  display: inline-block;
  transform: rotate(-30deg);
}
.hero-5 .hero-content .hero-button-item .hero-cont {
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .hero-5 .hero-content .hero-button-item .hero-cont {
    margin-top: 0;
  }
}
.hero-5 .hero-content .hero-button-item .hero-cont h3 {
  font-size: 40px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 10px;
}
.hero-5 .hero-content .hero-button-item .hero-cont h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
@media (max-width: 768px) {
  .hero-5 .hero-content .hero-button-item .hero-cont h4 br {
    display: initial;
  }
}

.hero-6 {
  padding: 60px 0 0;
}
.hero-6 .container-fluid {
  padding: 0 150px;
}
@media (max-width: 1400px) {
  .hero-6 .container-fluid {
    padding: 0 70px;
  }
}
@media (max-width: 1024px) {
  .hero-6 .container-fluid {
    padding: 0 60px;
  }
}
@media (max-width: 1024px) {
  .hero-6 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .hero-6 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .hero-6 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 1400px) {
  .hero-6 .hero-content {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (max-width: 1024px) {
  .hero-6 .hero-content {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (max-width: 1024px) {
  .hero-6 .hero-content {
    margin-top: 80px;
    margin-bottom: 0;
  }
}
.hero-6 .hero-content h1 {
  color: var(--white);
  font-family: 'Rubik', sans-serif;
  margin-bottom: 24px;
  font-size: 72px;
  font-weight: 700;
}
@media (max-width: 1400px) {
  .hero-6 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 1024px) {
  .hero-6 .hero-content h1 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .hero-6 .hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .hero-6 .hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .hero-6 .hero-content h1 {
    font-size: 28px;
  }
}
.hero-6 .hero-content p {
  max-width: 717px;
  color: rgba(255, 255, 255, 0.7);
}
.hero-6 .hero-content .theme-btn {
  margin-top: 48px;
  background-color: var(--theme6);
  color: var(--white);
  border-radius: 10px;
}
.hero-6 .hero-content .theme-btn::after {
  background: var(--white);
}
.hero-6 .hero-content .theme-btn:hover {
  color: var(--header);
}
.hero-6 .hero-image {
  margin-right: -130px;
}
@media (max-width: 1400px) {
  .hero-6 .hero-image {
    margin-right: -80px;
  }
}
@media (max-width: 1024px) {
  .hero-6 .hero-image {
    margin-right: 0;
  }
}
.hero-6 .hero-image img {
  width: 100%;
  height: 100%;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1024px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container
  .mean-nav
  > ul
  .homemenu-items
  .homemenu
  .homemenu-thumb
  .demo-button
  .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(20, 19, 19, 0)),
    to(#5e5ef6)
  );
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.news-box-items {
  margin-top: 30px;
}
.news-box-items .news-image {
  position: relative;
}
.news-box-items .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.news-box-items .news-image .post-date {
  padding: 10px 20px;
  background-color: var(--white);
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 20px;
}
.news-box-items .news-image .post-date h4 {
  color: var(--header2);
  font-size: 24px;
  font-weight: 600;
}
.news-box-items .news-image .post-date span {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--header2);
}
.news-box-items .news-content {
  margin-top: 20px;
}
.news-box-items .news-content .post-cat {
  margin-bottom: 15px;
}
.news-box-items .news-content .post-cat li {
  font-size: 15px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
}
.news-box-items .news-content .post-cat li i {
  color: #514de0;
  margin-right: 5px;
}
.news-box-items .news-content h3 {
  font-weight: 500;
  margin-bottom: 20px;
}
.news-box-items .news-content h3 a {
  color: var(--header2);
}
.news-box-items .news-content h3 a:hover {
  color: var(--theme2);
}
.news-box-items .news-content .link-btn {
  font-size: 17px;
  font-weight: 700;
  color: var(--text2);
  display: inline-block;
}
.news-box-items .news-content .link-btn i {
  margin-left: 5px;
}
.news-box-items .news-content .link-btn:hover {
  color: var(--theme2);
}
@media (max-width: 1400px) {
  .news-box-items .news-content {
    margin-top: 16px;
  }
  .news-box-items .news-content .post-cat {
    margin-bottom: 8px;
  }
  .news-box-items .news-content h3 {
    margin-bottom: 10px;
  }
  .news-box-items .news-content .link-btn {
    font-size: 15px;
  }
}

.news-box-items-2 {
  margin-top: 30px;
}
.news-box-items-2 .news-image {
  position: relative;
}
.news-box-items-2 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.news-box-items-2 .news-content {
  margin-top: 25px;
  text-align: center;
}
.news-box-items-2 .news-content .post-cat {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  justify-content: center;
}
.news-box-items-2 .news-content .post-cat li {
  font-size: 15px;
  text-transform: uppercase;
}
.news-box-items-2 .news-content .post-cat li i {
  color: var(--theme);
  margin-right: 10px;
}
.news-box-items-2 .news-content h3 a:hover {
  color: var(--theme);
}
.news-box-items-2 .news-content .icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(207, 208, 212, 0.2);
  display: inline-block;
  background: #222226;
  margin-top: 30px;
}
.news-box-items-2 .news-content .icon:hover {
  background-color: var(--theme);
  color: var(--header);
}

.news-standard-wrapper .news-standard-items {
  border-bottom: 1px solid var(--border);
  padding: 25px;
}
.news-standard-wrapper .news-standard-items:not(:last-child) {
  margin-bottom: 25px;
}
.news-standard-wrapper .news-standard-items .news-thumb {
  position: relative;
}
.news-standard-wrapper .news-standard-items .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.news-standard-wrapper .news-standard-items .news-thumb .post-date {
  padding: 12px 24px;
  background-color: var(--theme);
  position: absolute;
  top: 30px;
  left: 30px;
}
.news-standard-wrapper .news-standard-items .news-thumb .post-date h3 {
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
}
.news-standard-wrapper .news-standard-items .news-thumb .post-date h3 span {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}
.news-standard-wrapper .news-standard-items .news-content {
  margin-top: 20px;
  position: relative;
  z-index: 9;
}
.news-standard-wrapper .news-standard-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .news-standard-wrapper .news-standard-items .news-content ul {
    gap: 20px;
  }
}
.news-standard-wrapper .news-standard-items .news-content ul li {
  font-size: 15px;
  font-weight: 500;
  color: #cdcdcd;
  text-transform: uppercase;
}
.news-standard-wrapper .news-standard-items .news-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-standard-wrapper .news-standard-items .news-content h3 {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 55px;
}
@media (max-width: 1024px) {
  .news-standard-wrapper .news-standard-items .news-content h3 {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .news-standard-wrapper .news-standard-items .news-content h3 {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .news-standard-wrapper .news-standard-items .news-content h3 {
    font-size: 36px;
  }
}
.news-standard-wrapper .news-standard-items .news-content h3 a:hover {
  color: var(--theme);
}

.main-sidebar .single-sidebar-widget {
  padding: 40px 30px;
  border-radius: 25px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: rgba(217, 217, 217, 0);
  margin-bottom: 30px;
}
.main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}
.main-sidebar .single-sidebar-widget .wid-title h3 {
  position: relative;
  font-size: 24px;
}
.main-sidebar .single-sidebar-widget .wid-title h3 img {
  padding-right: 10px;
}
.main-sidebar .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}
.main-sidebar .single-sidebar-widget .search-widget form input {
  border-radius: 10px;
  background: #222226;
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  color: #cdcdcd;
}
.main-sidebar .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--header);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.main-sidebar .single-sidebar-widget .search-widget form button:hover {
  background-color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 10px;
  background: #222226;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
  color: #cdcdcd;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li span {
  transition: all 0.4s ease-in-out;
  color: #cdcdcd;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover {
  background-color: var(--theme);
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active {
  background-color: var(--theme);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img {
  border-radius: 10px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content span {
  color: #cdcdcd;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 5px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
  margin-top: 8px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  font-size: 15px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
  font-weight: 700;
  font-size: 18px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
  color: var(--theme);
}
.main-sidebar .single-sidebar-widget .tagcloud a {
  display: inline-block;
  padding: 13px 20px;
  line-height: 1;
  font-size: 15px;
  font-weight: 700;
  border-radius: 5px;
  background: #222226;
  margin-right: 5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}
.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}
.main-sidebar .single-sidebar-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--header);
}
.main-sidebar .news-banner-img {
  margin-bottom: 30px;
}
.main-sidebar .news-banner-img img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
  height: 400px;
}
@media (max-width: 768px) {
  .news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
    height: 400px;
  }
}
.news-details-area .blog-post-details .single-blog-post .post-content {
  margin-top: 30px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
  gap: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
  font-size: 14px;
  font-weight: 500;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-details-area .blog-post-details .single-blog-post .post-content h3 {
  margin-bottom: 20px;
  font-size: 32px;
}
@media (max-width: 768px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h3 {
    font-size: 24px;
  }
}
.news-details-area .blog-post-details .single-blog-post .post-content h3 a:hover {
  color: var(--theme);
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
  border-left: 4px solid var(--theme);
  padding: 40px;
  background-color: var(--bg);
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
  max-width: 650px;
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
  float: right;
  margin-top: -30px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
  width: 100%;
  height: 100%;
}
.news-details-area .blog-post-details .tag-share-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: var(--bg);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 768px) {
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}
.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.news-details-area .blog-post-details .tag-share-wrap .social-share span {
  font-size: 18px;
  color: var(--header);
  font-weight: 600;
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a {
  font-size: 18px;
  color: var(--header);
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
  color: var(--theme);
}
.news-details-area .blog-post-details .comments-area {
  margin-top: 40px;
  padding: 50px 40px;
  background-color: var(--bg);
}
.news-details-area .blog-post-details .comments-area .comments-heading {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}
.news-details-area .blog-post-details .comments-area .comments-heading h3 {
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 28px;
  }
}
.news-details-area .blog-post-details .comments-area .blog-single-comment {
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  .news-details-area .blog-post-details .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
  margin-bottom: 5px;
  font-weight: 600;
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
  color: var(--theme);
  font-size: 14px;
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 400;
  background-color: var(--white);
  color: var(--theme);
}
.news-details-area .blog-post-details .comment-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt input,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-weight: 500;
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}

.news-hero-section {
  padding: 200px 0;
  position: relative;
}
.news-hero-section .array-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  right: 100px;
  left: 100px;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .news-hero-section .array-button {
    display: none;
  }
}
.news-hero-section .array-button .array-prev,
.news-hero-section .array-button .array-next {
  width: 40px;
  height: 55px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  line-height: 55px;
  color: #cdcdcd;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.news-hero-section .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--header);
}
.news-hero-section .array-button .array-next {
  background-color: var(--theme);
  color: var(--header);
}
.news-hero-section .array-button .array-next:hover {
  background-color: var(--white);
  color: var(--header);
}
.news-hero-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.news-hero-section .hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.news-hero-section .hero-content ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .news-hero-section .hero-content ul {
    gap: 20px;
  }
}
.news-hero-section .hero-content ul li {
  font-size: 15px;
  font-weight: 500;
  color: #cdcdcd;
  text-transform: uppercase;
}
.news-hero-section .hero-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-hero-section .hero-content h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 113%;
}
@media (max-width: 1024px) {
  .news-hero-section .hero-content h1 {
    font-size: 66px;
  }
}
@media (max-width: 1024px) {
  .news-hero-section .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 768px) {
  .news-hero-section .hero-content h1 {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .news-hero-section .hero-content h1 {
    font-size: 36px;
  }
}
.news-hero-section .hero-content .theme-btn {
  background-color: var(--theme);
  color: var(--header);
  margin-top: 40px;
}
.news-hero-section .hero-content .theme-btn::before,
.news-hero-section .hero-content .theme-btn::after {
  background-color: var(--white);
}
.news-hero-section .hero-content .theme-btn:hover {
  color: var(--header);
}

.news-details-wrapper .news-details-items .news-details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.news-details-wrapper .news-details-items .news-details-content {
  margin-top: 30px;
}
.news-details-wrapper .news-details-items .news-details-content .post-date {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .news-details-wrapper .news-details-items .news-details-content .post-date {
    gap: 20px;
  }
}
.news-details-wrapper .news-details-items .news-details-content .post-date li {
  font-size: 15px;
  font-weight: 500;
  color: #cdcdcd;
  text-transform: uppercase;
}
.news-details-wrapper .news-details-items .news-details-content .post-date li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-details-wrapper .news-details-items .news-details-content h2 {
  font-size: 55px;
}
@media (max-width: 768px) {
  .news-details-wrapper .news-details-items .news-details-content h2 {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .news-details-wrapper .news-details-items .news-details-content h2 {
    font-size: 38px;
  }
}
.news-details-wrapper .news-details-items .news-details-content h3 {
  font-size: 40px;
}
@media (max-width: 768px) {
  .news-details-wrapper .news-details-items .news-details-content h3 {
    font-size: 32px;
  }
}
.news-details-wrapper .news-details-items .news-details-content .hilight-text {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-left: 110px;
  margin: 50px 0;
}
@media (max-width: 1024px) {
  .news-details-wrapper .news-details-items .news-details-content .hilight-text {
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 0;
  }
}
.news-details-wrapper .news-details-items .news-details-content .hilight-text p {
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
  color: var(--text);
  line-height: 162%;
  font-size: 36px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .news-details-wrapper .news-details-items .news-details-content .hilight-text p {
    font-size: 28px;
  }
}
.news-details-wrapper .news-details-items .news-details-content .details-image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
.news-details-wrapper .news-details-items .news-details-content .list-items {
  margin-top: 30px;
  margin-bottom: 40px;
}
.news-details-wrapper .news-details-items .news-details-content .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.news-details-wrapper .news-details-items .news-details-content .list-items li i {
  color: var(--theme);
  margin-right: 10px;
}
.news-details-wrapper .tag-share-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 30px;
}
.news-details-wrapper .tag-share-wrap p {
  font-size: 15px;
  text-transform: uppercase;
}
.news-details-wrapper .tag-share-wrap .social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: end;
}
.news-details-wrapper .tag-share-wrap .social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #cfd0d4;
  color: #cdcdcd;
}
.news-details-wrapper .tag-share-wrap .social-icon a:hover {
  color: var(--theme);
}
.news-details-wrapper .prev-next-button {
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .news-details-wrapper .prev-next-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-wrapper .prev-next-button .prev-button,
.news-details-wrapper .prev-next-button .next-button {
  border-radius: 30px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #222226;
  display: inline-block;
  padding: 16px 60px;
  font-size: 17px;
  font-weight: 700;
  color: #cdcdcd;
  text-transform: capitalize;
}
.news-details-wrapper .prev-next-button .prev-button:hover,
.news-details-wrapper .prev-next-button .next-button:hover {
  background-color: var(--theme);
  color: var(--header);
}
.news-details-wrapper .blog-title {
  font-size: 40px;
  font-weight: 700;
}
.news-details-wrapper .comments-area {
  margin-top: 40px;
}
.news-details-wrapper .comments-area .comments-heading {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .news-details-wrapper .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}
.news-details-wrapper .comments-area .comments-heading h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 768px) {
  .news-details-wrapper .comments-area .comments-heading h3 {
    font-size: 22px;
  }
}
.news-details-wrapper .comments-area .blog-single-comment {
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  .news-details-wrapper .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-wrapper .comments-area .blog-single-comment .image img {
  border-radius: 20px;
}
.news-details-wrapper .comments-area .blog-single-comment .content .head .con h5 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
}
.news-details-wrapper .comments-area .blog-single-comment .content .head .con h5 a {
  color: var(--white);
}
.news-details-wrapper .comments-area .blog-single-comment .content .head .star i {
  color: var(--theme);
  font-size: 14px;
}
.news-details-wrapper .comments-area .blog-single-comment .content .reply {
  font-weight: 400;
  color: var(--theme);
}
.news-details-wrapper .comment-form-wrap h3 {
  font-size: 40px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .news-details-wrapper .comment-form-wrap h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.news-details-wrapper .comment-form-wrap .form-clt span {
  color: var(--text);
  display: inline-block;
  margin-bottom: 10px;
}
.news-details-wrapper .comment-form-wrap .form-clt input,
.news-details-wrapper .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-weight: 500;
  border-radius: 8px;
  color: var(--text);
}
.news-details-wrapper .comment-form-wrap .form-clt input::placeholder,
.news-details-wrapper .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-wrapper .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}

@media (max-width: 1024px) {
  .news-details.style-padding {
    padding-top: 100px !important;
  }
}

.news-card-items-5 {
  margin-top: 30px;
}
.news-card-items-5 .news-image {
  position: relative;
}
.news-card-items-5 .news-image img {
  width: 100%;
  height: 100%;
}
.news-card-items-5 .news-image .arrow-icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: var(--white);
  background-color: var(--theme5);
  position: absolute;
  right: 24px;
  bottom: -24px;
  transition: all 0.4s ease-in-out;
}
.news-card-items-5 .news-image .arrow-icon:hover {
  background-color: var(--header);
}
.news-card-items-5 .news-content {
  padding: 24px 24px 0;
}
.news-card-items-5 .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 12px;
}
.news-card-items-5 .news-content .news-meta li {
  color: rgba(255, 255, 255, 0.7);
}
.news-card-items-5 .news-content .news-meta li i {
  color: var(--theme5);
  margin-right: 7px;
}
.news-card-items-5 .news-content .news-meta li.style-2 {
  position: relative;
}
.news-card-items-5 .news-content .news-meta li.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  width: 24px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.7);
  top: 12px;
  left: -40px;
}
.news-card-items-5 .news-content h3 {
  font-size: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
@media (max-width: 768px) {
  .news-card-items-5 .news-content h3 {
    font-size: 20px;
  }
}
.news-card-items-5 .news-content h3 a:hover {
  color: var(--theme5);
}

.news-card-items-6 {
  margin-top: 30px;
}
.news-card-items-6 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.news-card-items-6 .news-content {
  margin-top: 24px;
}
.news-card-items-6 .news-content .news-meta {
  margin-bottom: 10px;
}
.news-card-items-6 .news-content .news-meta li {
  color: #ababab;
}
.news-card-items-6 .news-content .news-meta li i {
  color: var(--theme6);
  margin-right: 5px;
}
.news-card-items-6 .news-content h3 {
  font-size: 24px;
  font-family: 'Rubik', sans-serif;
  margin-bottom: 30px;
}
.news-card-items-6 .news-content h3 a {
  color: var(--white);
}
.news-card-items-6 .news-content h3 a:hover {
  color: var(--theme6);
}
.news-card-items-6 .news-content .link-btn-6 {
  border: 1px solid var(--theme6);
  border-radius: 8px;
  padding: 10px 24px;
  font-family: Rubik;
  color: var(--theme6);
}
.news-card-items-6 .news-content .link-btn-6 i {
  margin-left: 10px;
}
.news-card-items-6 .news-content .link-btn-6:hover {
  background-color: var(--theme6);
  color: var(--white);
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  background: conic-gradient(var(--accent2) 0%, var(--theme) 70%, transparent 70%);
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 4px),
    white calc(100% - 4px)
  );
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), white calc(100% - 4px));
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 768px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font:
    bold 5em 'Rubik',
    sans-serif,
    'Rubik',
    sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 768px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
  font-family: 'Baumans', sans-serif;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: #000;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: 'Baumans', sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--accent2);
  font-family: 'Rubik', sans-serif;
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--theme);
  border-bottom: 2px solid var(--theme);
  text-align: center;
  letter-spacing: 2px;
}

.search-wrap .main-search-input.style-5 {
  color: var(--theme5) !important;
  border-bottom: 2px solid var(--theme5) !important;
}
.search-wrap .main-search-input.style-5::placeholder {
  color: var(--theme5) !important;
}
.search-wrap .main-search-input.style-6 {
  color: var(--theme6) !important;
  border-bottom: 2px solid var(--theme6) !important;
}
.search-wrap .main-search-input.style-6::placeholder {
  color: var(--theme6) !important;
}
.search-wrap .main-search-input.style-4 {
  color: var(--theme3) !important;
  border-bottom: 2px solid var(--theme3) !important;
}
.search-wrap .main-search-input.style-4::placeholder {
  color: var(--theme3) !important;
}

@media (max-width: 768px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--theme);
}

input.main-search-input::placeholder {
  color: var(--theme);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 768px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}
.search-close.style-5 {
  color: var(--theme5);
}
.search-close.style-6 {
  color: var(--theme6);
}
.search-close.style-4 {
  color: var(--theme3);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme);
  -webkit-transition:
    width 0.3s ease-in-out,
    height 0.3s ease-in-out,
    margin 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  -o-transition:
    width 0.3s ease-in-out,
    height 0.3s ease-in-out,
    margin 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  transition:
    width 0.3s ease-in-out,
    height 0.3s ease-in-out,
    margin 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.back-to-top {
  border-radius: 50%;
  background-color: var(--accent1);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--header);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 99;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--theme);
  color: var(--black);
}
.back-to-top.style-4 {
  background-color: var(--theme3);
  color: var(--white);
}
.back-to-top.style-5 {
  background-color: var(--theme5);
  color: var(--white);
}
.back-to-top.style-6 {
  background-color: var(--theme6);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.pricing-box-items {
  margin-top: 30px;
  border-radius: 25px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #1d1d21;
  padding: 20px;
}
@media (max-width: 768px) {
  .pricing-box-items {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .pricing-box-items {
    padding: 35px;
  }
}

/* =========================================================
   Plan row: equal-height cards
========================================================= */
.pricing-section .pricing-plans-area .row {
  align-items: stretch; /* ensure columns stretch same height */
}

.pricing-section .pricing-plans-area .pricing-plan-col {
  display: flex;
}

.pricing-section .pricing-plans-area .pricing-plan-col > .pricing-box-items {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-section .pricing-plans-area .pricing-plan-col > .pricing-box-items .pricing-list {
  flex: 1 1 auto; /* list grows to fill */
}

.pricing-box-items .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  border: 1px solid rgba(207, 208, 212, 0.2);
  border-radius: 200px 0 200px 200px;
  filter: grayscale(100%) brightness(300%);
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}
.pricing-box-items .icon img {
  filter: grayscale(100%) brightness(300%);
  transition: all 0.4s ease-in-out;
}

.pricing-box-items .pricing-header {
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
  padding-bottom: 30px;
}
.pricing-box-items .pricing-header h3 {
  font-size: 27px;
  margin-bottom: 5px;
}
.pricing-box-items .pricing-header h2 {
  font-size: 55px;
  margin-top: 10px;
}

/* tighter pricing line for "/mo" */
.pricing-box-items .pricing-header h2 .duration {
  font-size: 16px;
  opacity: 0.8;
}
.pricing-box-items .pricing-subnote {
  margin-top: 8px;
  opacity: 0.8;
}

/* list */
.pricing-box-items .pricing-list {
  margin-top: 30px;
}
.pricing-box-items .pricing-list li span {
  display: inline-block;
  padding-left: 10px;
}
.pricing-box-items .pricing-list li:not(:last-child) {
  margin-bottom: 15px;
}

.pricing-box-items .pricing-button {
  margin-top: 40px;
}
.pricing-box-items .pricing-button .theme-btn {
  width: 100%;
}

.pricing-box-items:hover .icon {
  filter: initial;
  background-color: var(--theme);
}
.pricing-box-items:hover .icon img {
  filter: initial;
}

/* =========================================================
   PACKAGES header row (toggle moved here)
========================================================= */
.pricing-section .pricing-packages-head {
  margin-top: 40px;
}
.pricing-section .pricing-packages-head .packages-head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.pricing-section .pricing-packages-head .packages-head-inner .section-title {
  margin-bottom: 0;
}
.pricing-section .pricing-packages-head .packages-head-inner .nav {
  margin-left: auto;
}

/* =========================================================
   Plan cards: force equal height + keep cap outside clean
========================================================= */
.pricing-section .pricing-plans-area .pricing-plan-col {
  display: flex;
  flex-direction: column;
}
.pricing-section .pricing-plans-area .pricing-plan-col .pricing-box-items {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible; /* cap is outside, pill is inside */
}

/* list grows, CTA stays aligned */
.pricing-section .pricing-plans-area .pricing-box-items .pricing-list {
  flex: 1 1 auto;
}
.pricing-section .pricing-plans-area .pricing-box-items .pricing-button {
  margin-top: 25px;
}

/* popular border accent */
.pricing-section .pricing-plans-area .pricing-box-items.is-popular {
  border-color: rgba(0, 255, 157, 0.45);
}

/* =========================================================
   Topcap OUTSIDE the card 
========================================================= */

/* The cap itself */
.pricing-section .pricing-plans-area .pricing-topcap-outer {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 13px;

  /* Use your accent like Hostinger (cap color) */
  background: var(--accent2);
  border: 1px solid var(--accent2);

  /* Slightly rounder like Hostinger so it looks "stacked" */
  border-radius: 22px 22px 18px 18px;

  /* Text color */
  color: var(--bg);

  /* Keep same vertical rhythm as your cards... */
  margin-top: 30px;

  /* ...but pull the cap DOWN onto the card for the stacked look */
  margin-bottom: -22px;

  position: relative;
  z-index: 5;
}

/* IMPORTANT:
   Do NOT remove/zero the card margin when a cap exists.
   This ensures all cards align evenly across the row. */
.pricing-section .pricing-plans-area .pricing-topcap-outer + .pricing-box-items {
  margin-top: 30px; /* same as every other .pricing-box-items */
}

/* Make sure the popular card sits "under" the cap visually */
.pricing-section .pricing-plans-area .pricing-box-items.has-topcap {
  position: relative;
  z-index: 4;
}

/* Optional: If you want the card to visually connect tighter to the cap,
   you can slightly increase overlap by changing -22px to -26px above. */

/* =========================================================
   Discount pill (Annual-only)
   - theme color per request
========================================================= */
.pricing-section .pricing-plans-area .pricing-box-items .pricing-discount-pill {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: var(--accent2);
  color: var(--header);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .pricing-section .pricing-plans-area .pricing-box-items .pricing-discount-pill {
    top: 18px;
    right: 18px;
    padding: 6px 10px;
  }
}

/* =========================================
   Digital Footprint Recovery – Pricing Head Fix
   ========================================= */
.pricing-dfr .packages-head-inner {
  display: block; /* kill flex assumptions */
  text-align: center;
}

.pricing-dfr .packages-head-inner .section-title {
  max-width: 100%;
  margin: 0 auto;
}

.pricing-dfr .packages-head-inner h2 {
  justify-content: center;
}

/* =========================================================
   Who it's for cards (still using pricing-box-items)
========================================================= */
.pricing-section .pricing-fit-area {
  margin-top: 30px;
}

.pricing-section .pricing-fit-area .pricing-fit-card.pricing-box-items {
  padding: 35px;
}

.pricing-section .pricing-fit-area .pricing-fit-card .pricing-header {
  padding-bottom: 18px;
}

.pricing-section .pricing-fit-area .pricing-fit-card .pricing-header h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.pricing-section .pricing-fit-area .pricing-fit-card .pricing-header p {
  margin-bottom: 0;
}

.pricing-section .pricing-fit-area .pricing-fit-card .pricing-list {
  margin-top: 18px;
}

.pricing-section .pricing-fit-area .pricing-fit-card .pricing-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* remove left padding on fit cards */
.pricing-section .pricing-fit-area .pricing-fit-card .pricing-list li span {
  padding-left: 0;
}

.pricing-section .pricing-compare-area {
  margin-top: 40px;
}

.pricing-section .pricing-compare-area .pricing-compare-wrap {
  margin-top: 18px;
  border-radius: 25px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #1d1d21;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* grid "table" */
.pricing-section .pricing-compare-area .pricing-compare-grid {
  min-width: 980px;
  display: grid;
  grid-template-columns: 280px repeat(4, minmax(150px, 1fr));
}

/* cells */
.pricing-section .pricing-compare-area .pc-cell {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(207, 208, 212, 0.1);
}

/* sticky header row */
.pricing-section .pricing-compare-area .pc-head .pc-cell {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #1d1d21;
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
  padding-top: 16px;
  padding-bottom: 16px;
}

/* sticky first column */
.pricing-section .pricing-compare-area .pc-label {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #1d1d21;
  border-right: 1px solid rgba(207, 208, 212, 0.12);
}

.pricing-section .pricing-compare-area .pc-section-row .pc-section-cell {
  color: var(--theme);
}

/* ensure the top-left cell stays above everything */
.pricing-section .pricing-compare-area .pc-head .pc-cell.pc-label {
  z-index: 4;
}

/* =========================================================
   SECTION TITLES (FIXED)
   - must be rendered as a grid row:
     <div class="pricing-compare-grid pc-section-row">
       <div class="pc-cell pc-label pc-section-cell">Title</div>
       <div class="pc-cell pc-section-spacer"></div> x4
     </div>
========================================================= */
.pricing-section .pricing-compare-area .pc-section-row {
  min-width: 980px;
  display: grid;
  grid-template-columns: 280px repeat(4, minmax(150px, 1fr));
}

.pricing-section .pricing-compare-area .pc-section-row .pc-cell {
  padding: 16px;
  border-top: 1px solid rgba(207, 208, 212, 0.2);
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

/* Sticky title cell: the ONLY tinted background, fully opaque so nothing shows through */
.pricing-section .pricing-compare-area .pc-section-row .pc-section-cell {
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: left;

  background: rgba(255, 255, 255, 0.03); /* tint only here */
  z-index: 6; /* above normal sticky column cells */
}

/* spacer cells: visually empty, no tint */
.pricing-section .pricing-compare-area .pc-section-row .pc-section-spacer {
  background: transparent;
  color: transparent;
}

/* text styling */
.pricing-section .pricing-compare-area .pc-planname {
  font-weight: 800;
  margin-bottom: 4px;
}

.pricing-section .pricing-compare-area .pc-planmeta {
  opacity: 0.75;
  font-size: 14px;
}

.pricing-section .pricing-compare-area .pc-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.pricing-section .pricing-compare-area .pc-dash {
  opacity: 0.55;
}

@media (max-width: 768px) {
  .pricing-section .pricing-compare-area .pricing-compare-grid {
    grid-template-columns: 240px repeat(4, minmax(140px, 1fr));
    min-width: 920px;
  }

  .pricing-section .pricing-compare-area .pc-section-row {
    grid-template-columns: 240px repeat(4, minmax(140px, 1fr));
    min-width: 920px;
  }
}

/* =========================================================
   DFR Compare Table (3 columns)
   - scoped to the DFR compare section
========================================================= */
.general-section .general-section-content--compare .pricing-compare-wrap {
  margin-top: 18px;
  border-radius: 25px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #1d1d21;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* 3-column grid: label + Starter + Full */
.general-section .general-section-content--compare .pricing-compare-grid {
  min-width: 760px;
  display: grid;
  grid-template-columns: 280px repeat(2, minmax(150px, 1fr));
}

/* cells */
.general-section .general-section-content--compare .pc-cell {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(207, 208, 212, 0.1);
}

/* sticky header row */
.general-section .general-section-content--compare .pc-head .pc-cell {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #1d1d21;
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
  padding-top: 16px;
  padding-bottom: 16px;
}

/* sticky first column */
.general-section .general-section-content--compare .pc-label {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #1d1d21;
  border-right: 1px solid rgba(207, 208, 212, 0.12);
}

/* ensure top-left stays above everything */
.general-section .general-section-content--compare .pc-head .pc-cell.pc-label {
  z-index: 4;
}

/* text styling */
.general-section .general-section-content--compare .pc-planname {
  font-weight: 800;
  margin-bottom: 4px;
}
.general-section .general-section-content--compare .pc-planmeta {
  opacity: 0.75;
  font-size: 14px;
}
.general-section .general-section-content--compare .pc-dash {
  opacity: 0.55;
}

/* optional: make your group rows feel like section separators */
.general-section .general-section-content--compare .dfr-compare-rowgroup .pc-cell {
  border-top: 1px solid rgba(207, 208, 212, 0.2);
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
  background: rgba(255, 255, 255, 0.03);
}
.general-section .general-section-content--compare .dfr-compare-rowgroup .pc-label {
  color: var(--theme);
  font-weight: 800;
}

/* optional: highlight the “only difference” row */
.general-section .general-section-content--compare .dfr-compare-highlight .pc-cell {
  background: rgba(255, 255, 255, 0.02);
}

/* mobile: slightly smaller label column */
@media (max-width: 768px) {
  .general-section .general-section-content--compare .pricing-compare-grid {
    grid-template-columns: 240px repeat(2, minmax(140px, 1fr));
    min-width: 700px;
  }
}

/* =========================================================
   Compare collapse (hidden until clicked)
========================================================= */
.pricing-section .pricing-compare-area .pricing-compare-toggle {
  text-align: center;
}

.pricing-section .pricing-compare-area .pricing-compare-collapse {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
}

.pricing-section .pricing-compare-area .pricing-compare-collapse .section-title {
  padding: 50px 0 0 0;
}

.pricing-section .pricing-compare-area.is-open .pricing-compare-collapse {
  max-height: 5000px;
  opacity: 1;
}

/* rotate chevron */
.pricing-section .pricing-compare-area .compare-toggle-btn i {
  transition: transform 0.25s ease;
}
.pricing-section .pricing-compare-area.is-open .compare-toggle-btn i {
  transform: rotate(180deg);
}

/* =========================================================
   Pricing tabs (existing)
========================================================= */
.pricing-section {
  position: relative;
}
.pricing-section .nav {
  display: flex;
  align-items: center;
  border-radius: 28px;
  border: 1px solid rgba(207, 208, 212, 0.25);
  gap: 10px;
}
.pricing-section .nav .nav-item .nav-link {
  border-radius: 28px;
  background-color: transparent;
  padding: 10px 20px;
  color: #cdcdcd;
}
.pricing-section .nav .nav-item .nav-link.active {
  background: var(--accent2);
  color: var(--header);
}
@media (max-width: 1024px) {
  .pricing-section.style-padding {
    padding-top: 120px;
  }
}
@media (max-width: 768px) {
  .pricing-section.style-padding {
    padding-top: 0px;
  }
}

/* =========================================================
   Company size cycler pill (arrows + label)
========================================================= */
.pricing-section .pricing-size-control {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-section .pricing-size-control .pricing-size-label {
  font-size: 14px;
  opacity: 0.85;
  white-space: nowrap;
}

.pricing-section .pricing-size-control .pricing-size-cycler {
  display: inline-flex;
  align-items: center;
  height: 42px;
  border-radius: 28px;
  border: 1px solid rgba(207, 208, 212, 0.25);
  overflow: hidden;
  background: transparent;
}

.pricing-section .pricing-size-control .pricing-size-btn {
  height: 42px;
  width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #cdcdcd;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.pricing-section .pricing-size-control .pricing-size-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.pricing-section .pricing-size-control .pricing-size-btn:active {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-section .pricing-size-control .pricing-size-btn:focus-visible {
  outline: 2px solid rgba(0, 255, 157, 0.35);
  outline-offset: -2px;
}

.pricing-section .pricing-size-control .pricing-size-value {
  min-width: 160px;
  padding: 0 14px;
  text-align: center;
  font-weight: 700;
  color: #cdcdcd;
  user-select: none;
  white-space: nowrap;
}

/* Mobile: make it look centered and not cramped */
@media (max-width: 768px) {
  .pricing-section .pricing-size-control {
    width: 100%;
    justify-content: center;
  }
  .pricing-section .pricing-size-control .pricing-size-value {
    min-width: 150px;
  }
}

.project-wrapper {
  padding: 0 100px;
}
@media (max-width: 1400px) {
  .project-wrapper {
    padding: 0 50px;
  }
}
@media (max-width: 1400px) {
  .project-wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 1024px) {
  .project-wrapper {
    padding: 0 30px;
  }
}
.project-wrapper .project-title {
  font-size: 150px;
  margin-bottom: 30px;
  line-height: 1;
  margin-top: -15px;
}
@media (max-width: 1024px) {
  .project-wrapper .project-title {
    font-size: 85px;
  }
}
@media (max-width: 768px) {
  .project-wrapper .project-title {
    margin-bottom: 0;
    font-size: 70px;
  }
}
@media (max-width: 768px) {
  .project-wrapper .project-title {
    font-size: 55px;
  }
}
.project-wrapper .project-title img {
  margin-left: 250px;
}
@media (max-width: 1024px) {
  .project-wrapper .project-title img {
    margin-left: 0;
  }
}
.project-wrapper .project-title span {
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
}
.project-wrapper .project-image {
  margin-top: 30px;
  transition: all 0.4s ease-in-out;
}
.project-wrapper .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
.project-wrapper .project-image:hover {
  transform: rotate(10deg);
}
.project-wrapper .project-content {
  margin-left: 200px;
  margin-top: 30px;
}
@media (max-width: 1400px) {
  .project-wrapper .project-content {
    margin-left: 0;
  }
}
.project-wrapper .project-content span {
  border: 1px solid rgba(207, 208, 212, 0.2);
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 20px;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}
.project-wrapper .project-content h3 {
  font-size: 65px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 768px) {
  .project-wrapper .project-content h3 {
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  .project-wrapper .project-content h3 {
    font-size: 32px;
  }
}
.project-wrapper .project-content h3 a:hover {
  color: var(--theme);
}
.project-wrapper .project-content p {
  max-width: 350px;
  margin-top: 25px;
  margin-bottom: 50px;
}

.project-box-image img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.project-box-content {
  max-width: 475px;
  margin-left: 30px;
}
@media (max-width: 1024px) {
  .project-box-content {
    margin-left: 0;
  }
}
.project-box-content h2 {
  font-size: 55px;
  line-height: 119%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .project-box-content h2 {
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  .project-box-content h2 {
    font-size: 35px;
  }
}
.project-box-content h2 span {
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
  color: var(--theme);
}
.project-box-content p {
  margin-bottom: 35px;
}
.project-box-content.style-2 {
  margin-left: 80px;
}
@media (max-width: 1024px) {
  .project-box-content.style-2 {
    margin-left: 0;
  }
}

/* Pulse Results (aligned with pulse-results.html + pulse-results.js)
   Notes:
   - Slider uses translateX so slides must NOT be display:none (except inline hidden experience slide)
   - All selectors scoped under .pulse-results-wrap
*/

.pulse-results-wrap {
  padding: 40px 0;
}

.pulse-results-wrap .pulse-mini {
  font-size: 14px;
  opacity: 0.9;
}

.pulse-results-wrap .pulse-results-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
}

.pulse-results-wrap .pulse-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 25px 0 0;
}

/* Grid */
.pulse-results-wrap .pulse-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 1025px) {
  .pulse-results-wrap .pulse-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

/* Left column spacing */
.pulse-results-wrap .pulse-left-col {
  display: grid;
  gap: 18px;
}

/* Left column h3 title */
.pulse-results-wrap .pulse-left-col .pulse-card h3 {
  color: var(--theme);
}

/* Chart */
.pulse-results-wrap .pulse-chart-wrap {
  margin-top: 14px;
}

.pulse-results-wrap .pulse-chart-wrap canvas {
  width: 100%;
  height: auto;
  display: block;
}

/* Lists */
.pulse-results-wrap .pulse-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.pulse-results-wrap .pulse-list li {
  margin-bottom: 10px;
}

/* Slider */
.pulse-results-wrap .pulse-slider {
  display: grid;
  gap: 10px;
}

.pulse-results-wrap .pulse-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pulse-results-wrap .pulse-slider-title {
  font-weight: 700;
  opacity: 0.9;
  text-align: center;
  flex: 1;
  color: white;
}

.pulse-results-wrap .pulse-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.pulse-results-wrap .pulse-slider-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.pulse-results-wrap .pulse-slider-viewport {
  overflow: hidden;
  border-radius: 0px;
}

.pulse-results-wrap .pulse-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.35s ease;
  will-change: transform;
}

/* IMPORTANT: translate slider means slides must remain in layout */
.pulse-results-wrap .pulse-slide {
  flex: 0 0 100%;
  display: block;
  margin: 0;
}

/* Dots */
.pulse-results-wrap .pulse-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  opacity: 0.7;
}

.pulse-results-wrap .pulse-slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;

  /* THIS is the key line */
  transition: background-color 200ms ease;
}

.pulse-results-wrap .pulse-slider-dots button.is-active {
  background: var(--theme);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .pulse-results-wrap .pulse-slider-track {
    transition: none;
  }
}

.showcase-section {
  position: relative;
}
.showcase-section .text-width {
  max-width: 372px;
}
.showcase-section .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1400px) {
  .showcase-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1400px) {
  .showcase-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1024px) {
  .showcase-section .container-fluid {
    padding: 0 30px;
  }
}
.showcase-section::before {
  background-color: #151518;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  top: 70%;
}

.showcase-items {
  margin-top: 30px;
}
.showcase-items img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.project-section {
  position: relative;
  z-index: 1;
}
.project-section .color-bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.project-details-wrapper .project-sidebar .project-details-info {
  padding: 40px 35px;
  border-radius: 25px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  margin-bottom: 30px;
}
.project-details-wrapper .project-sidebar .project-details-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.project-details-wrapper .project-sidebar .project-details-info h3 img {
  margin-right: 10px;
}
.project-details-wrapper .project-sidebar .project-details-info ul li {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  border-radius: 10px;
  background: #222226;
  padding: 25px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-details-wrapper .project-sidebar .project-details-info ul li:not(:last-child) {
  margin-bottom: 20px;
}
.project-details-wrapper .project-sidebar .project-details-info ul li span {
  color: #cdcdcd;
}
.project-details-wrapper .project-sidebar .contact-info-box {
  border-radius: 25px;
  background: #222226;
  text-align: center;
  padding: 70px 40px;
}
.project-details-wrapper .project-sidebar .contact-info-box .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  margin: 0 auto 30px;
  font-size: 32px;
  color: var(--header);
}
.project-details-wrapper .project-sidebar .contact-info-box h2 {
  font-size: 55px;
  line-height: 120%;
}
@media (max-width: 768px) {
  .project-details-wrapper .project-sidebar .contact-info-box h2 {
    font-size: 42px;
  }
}
.project-details-wrapper .project-sidebar .contact-info-box h2 span {
  font-weight: 400;
}
.project-details-wrapper .project-sidebar .contact-info-box .theme-btn {
  background-color: var(--theme);
  color: var(--header);
  margin-top: 30px;
}
.project-details-wrapper .project-sidebar .contact-info-box .theme-btn::before,
.project-details-wrapper .project-sidebar .contact-info-box .theme-btn::after {
  background-color: var(--white);
}
.project-details-wrapper .project-sidebar .contact-info-box .theme-btn:hover {
  color: var(--header);
}
.project-details-wrapper .project-details-content h2 {
  font-size: 40px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .project-details-wrapper .project-details-content h2 {
    font-size: 32px;
  }
}
.project-details-wrapper .project-details-content p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.project-details-wrapper .project-details-content .details-image {
  margin-bottom: 50px;
}
.project-details-wrapper .project-details-content .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.project-details-wrapper .project-details-content .how-it-works-wrapper {
  margin-top: 30px;
  margin-bottom: 50px;
}
.project-details-wrapper .project-details-content .how-it-works-wrapper .how-it-works-items {
  text-align: center;
}
.project-details-wrapper .project-details-content .how-it-works-wrapper .how-it-works-items .icon {
  width: 171px;
  height: 171px;
  line-height: 171px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.project-details-wrapper
  .project-details-content
  .how-it-works-wrapper
  .how-it-works-items
  .icon
  .bar-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.project-details-wrapper
  .project-details-content
  .how-it-works-wrapper
  .how-it-works-items
  .content {
  margin-top: 30px;
}
.project-details-wrapper
  .project-details-content
  .how-it-works-wrapper
  .how-it-works-items
  .content
  h3 {
  font-weight: 500;
  margin-bottom: 10px;
}
.project-details-wrapper
  .project-details-content
  .how-it-works-wrapper
  .how-it-works-items
  .content
  p {
  color: var(--white);
  max-width: 255px;
  margin: 0 auto;
}
.project-details-wrapper .project-details-content .details-list {
  margin-top: 30px;
}
.project-details-wrapper .project-details-content .details-list li {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.project-details-wrapper .project-details-content .details-list li:not(:last-child) {
  margin-bottom: 10px;
}
.project-details-wrapper .project-details-content .details-list li i {
  margin-right: 5px;
  color: var(--theme);
}

.portfolio-card-items {
  margin-top: 30px;
}
.portfolio-card-items .portfolio-image {
  position: relative;
  overflow: hidden;
}
.portfolio-card-items .portfolio-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.portfolio-card-items .portfolio-image .lets-circle {
  position: absolute;
  max-width: 170px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 126"><path fill-rule="evenodd" clip-rule="evenodd" d="M55.9029 4.52619C59.9922 -0.78983 68.0078 -0.78983 72.0971 4.52619C75.0042 8.30537 80.1389 9.57096 84.4692 7.57565C90.5606 4.76892 97.6581 8.49399 98.8085 15.1015C99.6263 19.7987 103.585 23.3056 108.346 23.5512C115.044 23.8968 119.598 30.4936 117.546 36.8788C116.087 41.4181 117.962 46.3628 122.064 48.7932C127.834 52.2118 128.801 60.1691 124.016 64.8693C120.615 68.2107 119.978 73.4605 122.48 77.5188C126.001 83.2274 123.158 90.7222 116.738 92.6606C112.173 94.0387 109.169 98.3909 109.499 103.147C109.964 109.838 103.964 115.154 97.3777 113.886C92.6956 112.985 88.013 115.443 86.0948 119.808C83.3966 125.948 75.6138 127.866 70.3712 123.683C66.6442 120.71 61.3558 120.71 57.6288 123.683C52.3862 127.866 44.6034 125.948 41.9052 119.808C39.987 115.443 35.3044 112.985 30.6223 113.886C24.0363 115.154 18.0365 109.838 18.5008 103.147C18.8309 98.3909 15.8267 94.0387 11.2623 92.6606C4.84165 90.7222 1.99926 83.2274 5.51975 77.5188C8.02248 73.4605 7.38504 68.2107 3.98382 64.8693C-0.800531 60.1691 0.165651 52.2118 5.93581 48.7932C10.0378 46.3628 11.9131 41.4181 10.4543 36.8788C8.40231 30.4936 12.9557 23.8968 19.6537 23.5512C24.4153 23.3056 28.3737 19.7987 29.1915 15.1015C30.3419 8.49399 37.4394 4.76892 43.5308 7.57565C47.8611 9.57096 52.9958 8.30537 55.9029 4.52619Z"  /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background-color: var(--white);
  color: var(--header);
  font-weight: 700;
  font-size: 18px;
  padding: 40px 40px;
  display: block;
  text-align: center;
  top: -120px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}
.portfolio-card-items .portfolio-image .lets-circle:hover {
  background-color: var(--theme);
}
.portfolio-card-items .portfolio-content {
  margin-top: 25px;
}
.portfolio-card-items .portfolio-content h6 {
  font-size: 15px;
  color: #cdcdcd;
  font-weight: 700;
  margin-bottom: 10px;
}
.portfolio-card-items .portfolio-content h6 span {
  color: var(--theme);
}
.portfolio-card-items .portfolio-content h3 a:hover {
  color: var(--theme);
}
.portfolio-card-items:hover .portfolio-image .lets-circle {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.portfolio-section .nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
}
.portfolio-section .nav .nav-item .nav-link {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #cdcdcd;
}
.portfolio-section .nav .nav-item .nav-link.active {
  color: var(--theme);
  text-decoration: underline;
}

.project-secton {
  position: relative;
}
.project-secton .vector-shape {
  position: absolute;
  top: 0;
  left: 10%;
  right: 0;
}
@media (max-width: 1024px) {
  .project-secton .vector-shape {
    display: none;
  }
}

.project-section-5 .section-title-area .theme-btn.style-5 {
  background-color: var(--theme5);
  color: var(--white);
  border-radius: 0;
}
.project-section-5 .section-title-area .theme-btn.style-5::after {
  background-color: var(--header);
  border-radius: 0;
}

.project-image-item-5 {
  margin-top: 30px;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1;
  overflow: hidden;
  margin-bottom: -300px;
}
@media (max-width: 1400px) {
  .project-image-item-5 {
    margin-bottom: -130px;
  }
}
@media (max-width: 1024px) {
  .project-image-item-5 {
    margin-bottom: -250px;
  }
}
@media (max-width: 1024px) {
  .project-image-item-5 {
    margin-bottom: -360px;
  }
}
@media (max-width: 768px) {
  .project-image-item-5 {
    margin-bottom: -540px;
  }
}
.project-image-item-5:nth-child(1) {
  z-index: 1;
}
.project-image-item-5:nth-child(2) {
  z-index: 2;
}
.project-image-item-5:nth-child(3) {
  z-index: 3;
}
.project-image-item-5 .project-image {
  position: relative;
}
.project-image-item-5 .project-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(180deg, rgba(6, 6, 6, 0) 51.68%, #060606 91.16%);
}
.project-image-item-5 .project-image img {
  width: 100%;
  height: 100%;
}
.project-image-item-5 .project-image .project-content {
  position: absolute;
  left: 335px;
  bottom: 80px;
}
@media (max-width: 1024px) {
  .project-image-item-5 .project-image .project-content {
    left: 20px;
    bottom: 30px;
  }
}
.project-image-item-5 .project-image .project-content h2 {
  font-size: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
@media (max-width: 1024px) {
  .project-image-item-5 .project-image .project-content h2 {
    font-size: 70px;
  }
}
@media (max-width: 1024px) {
  .project-image-item-5 .project-image .project-content h2 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .project-image-item-5 .project-image .project-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .project-image-item-5 .project-image .project-content h2 {
    font-size: 35px;
  }
}
.project-image-item-5 .project-image .project-content h2 a {
  color: transparent;
  -webkit-text-stroke: 2px white;
}
.project-image-item-5 .project-image .project-content p {
  color: var(--white);
}

.prpject-card-items-6 {
  margin-top: 30px;
}
.prpject-card-items-6 .project-image {
  position: relative;
}
.prpject-card-items-6 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.prpject-card-items-6 .project-image .project-content {
  background-color: var(--theme6);
  padding: 18px 0;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.prpject-card-items-6 .project-image .project-content p {
  font-size: 16px;
  color: var(--header);
}
.prpject-card-items-6 .project-image .project-content h3 {
  font-size: 24px;
  font-family: 'Rubik', sans-serif;
  margin-top: 5px;
}
.prpject-card-items-6 .project-image .project-content h3 a {
  color: var(--white);
}
.prpject-card-items-6:hover .project-image .project-content {
  bottom: 24px;
  opacity: 1;
  visibility: visible;
}

.project-section-6 {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.search-page-header h2 {
  margin-bottom: 10px;
}

.search-page-header p {
  margin-bottom: 0;
  color: var(--text);
}

.search-results-wrap {
  margin-top: 35px;
}

.search-results-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
}

.search-results-meta .count {
  color: #cdcdcd;
  font-weight: 500;
}

.search-results-meta .hint {
  color: var(--text);
  font-size: 14px;
}

.search-result-card {
  border-radius: 20px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #222226;
  padding: 22px 22px;
  transition: all 0.25s ease;
  height: 100%;
}

.search-result-card:hover {
  border-color: rgba(117, 250, 250, 0.35);
  transform: translateY(-2px);
}

.search-result-top {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.search-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(207, 208, 212, 0.25);
  padding: 6px 12px;
  font-size: 12px;
  color: #cdcdcd;
  background: rgba(255, 255, 255, 0.02);
}

.search-badge i {
  color: var(--theme);
}

.search-filters-area {
  margin-top: 18px;
  margin-bottom: 18px;
}

.search-filters-label {
  font-weight: 600;
  margin-bottom: 10px;
}

.search-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-filter-pill {
  background: rgba(207, 208, 212, 0.25);
  color: inherit;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
  user-select: none;
}

.search-filter-pill:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.search-filter-pill.is-active {
  background: var(--theme);
  color: var(--black);
}

.search-filter-pill.is-active:hover {
  transform: none;
}

.search-filter-pill .count {
  opacity: 0.75;
  margin-left: 8px;
  font-size: 12px;
}

.search-filters-hint {
  margin-top: 10px;
  opacity: 0.7;
  font-size: 13px;
}

.search-result-card h3 {
  margin-bottom: 8px;
  line-height: 1.25;
}

.search-result-card h3 a {
  color: var(--white);
}

.search-result-card h3 a:hover {
  color: var(--theme);
}

.search-result-card p {
  margin-bottom: 14px;
  color: var(--text);
}

.search-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.search-result-actions .link-btn {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent1);
}

.search-result-actions .link-btn:hover {
  color: var(--theme);
}

.search-result-actions .small {
  font-size: 13px;
  color: #cdcdcd;
  opacity: 0.9;
}

.search-empty {
  border-radius: 20px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: rgba(34, 34, 38, 0.6);
  padding: 22px;
  color: #cdcdcd;
}

mark.search-hit {
  background: rgba(117, 250, 250, 0.18);
  color: var(--white);
  padding: 0 4px;
  border-radius: 6px;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title h6 {
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  line-height: 1;
  margin-bottom: 15px;
}

.section-title.style-5 h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
}
@media (max-width: 1024px) {
  .section-title.style-5 h2 {
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  .section-title.style-5 h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .section-title.style-5 h2 {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .section-title.style-5 h2 {
    font-size: 30px;
  }
}
.section-title.style-5 h6 {
  position: relative;
  color: var(--theme5) !important;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
}
.section-title.style-5 h6::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: var(--theme5);
  height: 3px;
  width: 15px;
  left: 0;
  top: 6px;
}
.section-title.style-5 h6::after {
  position: absolute;
  content: '';
  background-color: var(--theme5);
  height: 3px;
  width: 15px;
  right: 0;
  top: 6px;
}
.section-title.style-5 h6.style-new::after {
  display: none;
}
.section-title.style-6 h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
}
@media (max-width: 1024px) {
  .section-title.style-6 h2 {
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  .section-title.style-6 h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .section-title.style-6 h2 {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .section-title.style-6 h2 {
    font-size: 30px;
  }
}
.section-title.style-6 h6 {
  color: var(--theme6) !important;
}
.section-title h2 span {
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
}
.section-title h2 b {
  color: var(--theme);
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
}
.section-title.style-2 {
  margin-top: -5px;
}
.section-title.style-2 h6 {
  color: var(--text2);
  text-transform: uppercase;
  font-weight: 700;
}
.section-title.style-2 h6 img {
  margin-right: 5px;
}
.section-title.style-2 h2 {
  font-size: 65px;
  color: var(--header2);
}
@media (max-width: 768px) {
  .section-title.style-2 h2 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .section-title.style-2 h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .section-title.style-2 h2 {
    font-size: 32px;
  }
}
.section-title.style-4 h2 {
  font-size: 48px;
}
@media (max-width: 1024px) {
  .section-title.style-4 h2 {
    font-size: 36px;
  }
}
@media (max-width: 1024px) {
  .section-title.style-4 h2 {
    font-size: 28px;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
@media (max-width: 1024px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}

.bg-color {
  background: #f2f7fe;
}

.bg-color-2 {
  background: #060606;
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1024px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 1024px) {
  .section-padding {
    padding: 80px 0;
  }
}

.section-padding-2 {
  padding: 130px 0;
}
@media (max-width: 1024px) {
  .section-padding-2 {
    padding: 100px 0;
  }
}
@media (max-width: 1024px) {
  .section-padding-2 {
    padding: 80px 0;
  }
}

.section-padding-2t {
  padding-top: 130px;
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .section-padding-2t {
    padding-top: 100px;
  }
}
@media (max-width: 768px) {
  .section-padding-2t {
    padding-top: 80px;
  }
}

.section-padding-2b {
  padding-top: 0;
  padding-bottom: 140px;
}
@media (max-width: 1024px) {
  .section-padding-2b {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .section-padding-2b {
    padding-bottom: 80px;
  }
}

.section-padding-3 {
  padding: 50px 0;
}
@media (max-width: 1024px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 1024px) {
  .section-padding {
    padding: 80px 0;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media (max-width: 1024px) {
  .pb-120 {
    padding-bottom: 100px;
  }
}
@media (max-width: 1024px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media (max-width: 1024px) {
  .pt-120 {
    padding-top: 100px;
  }
}
@media (max-width: 1024px) {
  .pt-120 {
    padding-top: 80px;
  }
}

.footer-bg {
  background-color: #101012;
}

.header-bg-6 {
  background: #111218;
}

.bg-color-6 {
  background: #222;
}

.service-box-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .service-box-items {
    flex-wrap: wrap;
  }
}
.service-box-items .service-image {
  max-width: 260px;
}
.service-box-items .service-image-2 {
  max-width: 400px;
}
/* Hide service card images on phones (keeps tablet/desktop unchanged) */
@media (max-width: 768px) {
  .service-box-items .service-image {
    display: none;
  }
}

.service-box-items .service-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.service-box-items .service-content {
  border-radius: 25px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #1d1d21;
  padding: 50px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .service-box-items .service-content {
    max-width: 600px;
  }
}
.service-box-items .service-content h3 {
  margin-bottom: 15px;
}
.service-box-items .service-content h3 a:hover {
  color: var(--theme);
}
.service-box-items .service-content p {
  margin-bottom: 20px;
}
.service-box-items .service-content-2 {
  border-radius: 25px;
  border: 0px solid rgba(207, 208, 212, 0.2);
  padding: 50px;
}
@media (max-width: 768px) {
  .service-box-items .service-content-2 {
    max-width: 600px;
  }
}
.service-box-items .service-content-2 h3 {
  margin-bottom: 15px;
  font-size: 45px;
}
.service-box-items .service-content-2 h3 a:hover {
  color: var(--theme);
}
.service-box-items .service-content-2 p {
  margin-bottom: 20px;
  font-size: 22px;
}
.service-box-items .service-content-2-detail {
  border-left: 1px solid rgba(207, 208, 212, 0.2);
  padding: 50px;
}
@media (max-width: 768px) {
  .service-box-items .service-content-2-detail {
    max-width: 600px;
  }
}
.service-box-items .service-content-2-detail h3 {
  margin-bottom: 15px;
}
.service-box-items .service-content-2-detail h3 a:hover {
  color: var(--theme);
}
.service-box-items .service-content-2-detail p {
  margin-bottom: 20px;
}
.service-box-items-2 {
  margin-top: 30px;
  padding: 45px 35px;
  background-color: #f2f7fe;
  border-radius: 20px;
  border: 1px solid #dbe8fc;
}
.service-box-items-2 .icon {
  width: 74px;
  height: 78px;
  background-color: #e0eafa;
  border-radius: 50%;
}
.service-box-items-2 .icon img {
  margin-left: 22px;
  margin-top: 10px;
}
.service-box-items-2 .content {
  margin-top: 20px;
}
.service-box-items-2 .content h3 {
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--header2);
}
.service-box-items-2 .content p {
  color: var(--text2);
}

.service-image-2 {
  margin-top: 30px;
}
.service-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.popular-service-items {
  margin-top: 30px;
  text-align: right;
  border-bottom: 1px solid #e0e1e5;
  padding-bottom: 30px;
}
@media (max-width: 1024px) {
  .popular-service-items {
    text-align: left;
  }
}
.popular-service-items .icon {
  text-align: right;
  display: inline-block;
  position: relative;
}
@media (max-width: 1024px) {
  .popular-service-items .icon {
    text-align: left;
  }
}
.popular-service-items .icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  content: '';
  width: 74px;
  height: 78px;
  border-radius: 50%;
  background-color: #e0eafa;
  z-index: -1;
}
.popular-service-items .icon img {
  margin-right: 20px;
}
.popular-service-items .content {
  margin-top: 30px;
}
.popular-service-items .content h3 {
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--header2);
}
.popular-service-items .content p {
  max-width: 310px;
  color: var(--text2);
  text-align: right;
  display: inline-block;
}
@media (max-width: 1024px) {
  .popular-service-items .content p {
    text-align: left;
  }
}
.popular-service-items.style-2 {
  border: none;
  padding-bottom: 0;
}
.popular-service-items.style-2 .content {
  margin-top: 0;
  margin-bottom: 30px;
}
.popular-service-items.style-3 {
  text-align: left;
}
.popular-service-items.style-3 .icon img {
  margin-left: 20px;
  margin-right: 0;
}
.popular-service-items.style-3 .icon::before {
  left: 0;
  right: initial;
}
.popular-service-items.style-3 .content p {
  text-align: left;
}

.popular-service-image {
  margin-top: 30px;
  padding: 72px 0;
  text-align: center;
  background-color: #f2f7fe;
  border-radius: 30px;
}

.service-left-items {
  margin-right: 80px;
}
@media (max-width: 1024px) {
  .service-left-items {
    margin-right: 0;
  }
}

.service-right-items {
  margin-left: 80px;
}
@media (max-width: 1024px) {
  .service-right-items {
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .service-section.style-padding {
    padding-top: 120px;
  }
}

.offer-box-items .offer-image {
  position: relative;
}
.offer-box-items .offer-image .img-box {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(6px);
  width: 80%;
  height: 80%;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transform: all 0.5s;
}
.offer-box-items:hover .offer-image .img-box {
  opacity: 1;
  visibility: visible;
}

.form-newletter4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .form-newletter4 button {
    font-size: 11px !important;
    min-width: 120px;
    width: 120px;
    padding: 12px 13px !important;
  }
}

.w-190 {
  width: 190px;
  min-width: 170px;
}

.team-box-items {
  margin-top: 30px;
  position: relative;
  text-align: center;
}
.team-box-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  top: 26px;
  height: initial;
}
.team-box-items .team-image {
  padding-left: 20px;
  position: relative;
  z-index: 9;
}
.team-box-items .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.team-box-items .team-image .social-profile {
  position: absolute;
  right: 20px;
  bottom: 20px;
  content: '';
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.team-box-items .team-image .social-profile ul {
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.team-box-items .team-image .social-profile ul li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  background: var(--white);
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  border-radius: 5px;
  margin-bottom: 10px;
}
.team-box-items .team-image .social-profile ul li a:hover {
  background-color: var(--theme);
}
.team-box-items .team-image .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  background: var(--white);
  color: var(--header);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.team-box-items .team-image .social-profile .plus-btn:hover {
  background-color: var(--theme);
}
.team-box-items .team-image .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-box-items .team-content {
  padding: 20px 0;
}
.team-box-items .team-content h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.team-title-items {
  display: flex;
  align-items: center;
  margin-left: 200px;
  gap: 40px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .team-title-items {
    margin-left: 0;
  }
}
@media (max-width: 1024px) {
  .team-title-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .team-title-items {
    margin-bottom: 0;
  }
}
.team-title-items p {
  max-width: 768px;
}

@media (max-width: 1024px) {
  .team-section.style-padding {
    padding-top: 120px;
  }
}

.team-card-item-5 {
  margin-top: 30px;
}
.team-card-item-5 .team-image {
  position: relative;
  z-index: 9;
}
.team-card-item-5 .team-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(0deg, rgba(6, 6, 6, 0.72) 0%, rgba(6, 6, 6, 0.72) 100%);
  z-index: -1;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-card-item-5 .team-image .social-profile {
  position: absolute;
  right: 20px;
  bottom: -4px;
  content: '';
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  z-index: 999;
}
.team-card-item-5 .team-image .social-profile ul {
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.team-card-item-5 .team-image .social-profile ul li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  background-color: var(--white);
  color: var(--text2);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  border-radius: 100px;
  margin-bottom: 6px;
}
.team-card-item-5 .team-image .social-profile ul li a:hover {
  background-color: var(--theme5);
  color: var(--white);
}
.team-card-item-5 .team-image .social-profile .plus-btn {
  z-index: 9;
  cursor: pointer;
  width: 56px;
  height: 60px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  background-color: var(--white);
  color: var(--text2);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  border-radius: 30px 30px 0px 0px;
}
.team-card-item-5 .team-image .social-profile .plus-btn:hover {
  background-color: var(--theme5);
  color: var(--white);
}
.team-card-item-5 .team-image .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-card-item-5 .team-image img {
  width: 100%;
  height: 100%;
}
.team-card-item-5 .team-content {
  margin-top: 20px;
  text-align: center;
}
.team-card-item-5 .team-content h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 10px;
}
.team-card-item-5 .team-content h5 a {
  color: var(--header);
}
.team-card-item-5 .team-content h5 a:hover {
  color: var(--theme5);
}
.team-card-item-5 .team-content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text2);
}
.team-card-item-5:hover .team-image::before {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

.testimonial-wrapper {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 890px;
  margin: 0 auto;
  padding: 130px 30px 160px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .testimonial-wrapper {
    background-image: none !important;
    padding: 0;
  }
}
.testimonial-wrapper .testimonail-content {
  text-align: center;
  margin-top: 30px;
}
.testimonial-wrapper .testimonail-content .icon {
  margin-bottom: 30px;
}
.testimonial-wrapper .testimonail-content p {
  font-size: 27px;
  color: #5c6972;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 768px) {
  .testimonial-wrapper .testimonail-content p {
    font-size: 22px;
  }
}
.testimonial-wrapper .testimonail-content .client-info {
  margin-top: 50px;
}
.testimonial-wrapper .testimonail-content .client-info h3 {
  font-size: 27px;
  font-weight: 500;
  color: var(--header2);
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .testimonial-wrapper .testimonail-content .client-info h3 {
    font-size: 22px;
  }
}
.testimonial-wrapper .testimonail-content .client-info span {
  color: #5c6972;
  font-size: 18px;
  text-transform: capitalize;
}

.testimonial-section {
  position: relative;
}
.testimonial-section .client-1 {
  position: absolute;
  top: 8%;
  left: 27%;
  z-index: 9;
}
@media (max-width: 1024px) {
  .testimonial-section .client-1 {
    display: none;
  }
}
.testimonial-section .client-2 {
  position: absolute;
  top: 38%;
  left: 10%;
  z-index: 9;
}
@media (max-width: 1024px) {
  .testimonial-section .client-2 {
    display: none;
  }
}
.testimonial-section .client-3 {
  position: absolute;
  bottom: 14%;
  left: 27%;
  z-index: 9;
}
@media (max-width: 1024px) {
  .testimonial-section .client-3 {
    display: none;
  }
}
.testimonial-section .client-4 {
  position: absolute;
  top: 8%;
  right: 27%;
  z-index: 9;
}
@media (max-width: 1024px) {
  .testimonial-section .client-4 {
    display: none;
  }
}
.testimonial-section .client-5 {
  position: absolute;
  top: 38%;
  right: 10%;
  z-index: 9;
}
@media (max-width: 1024px) {
  .testimonial-section .client-5 {
    display: none;
  }
}
.testimonial-section .client-6 {
  position: absolute;
  bottom: 14%;
  right: 27%;
  z-index: 9;
}
@media (max-width: 1024px) {
  .testimonial-section .client-6 {
    display: none;
  }
}
.testimonial-section .circle-shape {
  position: absolute;
  top: 5%;
  left: 20%;
}
@media (max-width: 1024px) {
  .testimonial-section .circle-shape {
    display: none;
  }
}
.testimonial-section .radius-shape {
  position: absolute;
  top: 35%;
  left: 90px;
}
@media (max-width: 1024px) {
  .testimonial-section .radius-shape {
    display: none;
  }
}
.testimonial-section .circle-shape-2 {
  position: absolute;
  bottom: 0;
  left: 20%;
}
@media (max-width: 1024px) {
  .testimonial-section .circle-shape-2 {
    display: none;
  }
}
.testimonial-section .circle-shape-3 {
  position: absolute;
  bottom: 0;
  right: 20%;
}
@media (max-width: 1024px) {
  .testimonial-section .circle-shape-3 {
    display: none;
  }
}
.testimonial-section .vector-shape {
  position: absolute;
  top: 5%;
  right: 20%;
}
@media (max-width: 1024px) {
  .testimonial-section .vector-shape {
    display: none;
  }
}
@media (max-width: 1024px) {
  .testimonial-section.style-2 {
    padding-bottom: 0;
  }
}

.testimonial-wrapper-2 {
  text-align: center;
}
.testimonial-wrapper-2 .client-image-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 40px;
}
.testimonial-wrapper-2 .client-image-items .star {
  margin-top: 15px;
  color: #ff824d;
}
.testimonial-wrapper-2 p {
  font-size: 30px;
  line-height: 140%;
}
@media (max-width: 1024px) {
  .testimonial-wrapper-2 p {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .testimonial-wrapper-2 p {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .testimonial-wrapper-2 p {
    font-size: 20px;
  }
}
.testimonial-wrapper-2 .client-info {
  margin-top: 30px;
}
.testimonial-wrapper-2 .client-info span {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin-top: 5px;
}

.testimonial-wrapper-3 {
  position: relative;
}
.testimonial-wrapper-3 .shape-1 {
  position: absolute;
  right: -13%;
  bottom: 30%;
}
.testimonial-wrapper-3 .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.testimonial-wrapper-3 .testimonial-content {
  margin-left: 30px;
}
.testimonial-wrapper-3 .testimonial-content h3 {
  font-size: 30px;
  font-weight: 500;
  color: #cdcdcd;
}
@media (max-width: 1024px) {
  .testimonial-wrapper-3 .testimonial-content h3 {
    font-size: 22px;
  }
}
.testimonial-wrapper-3 .testimonial-content .author-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.testimonial-wrapper-3 .testimonial-content .author-items .image img {
  border-radius: 10px;
}
.testimonial-wrapper-3 .testimonial-content .author-items .content h3 {
  color: var(--white);
}
.testimonial-wrapper-3 .testimonial-content .author-items .content span {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 5px;
  color: var(--text);
}

.testimonial-section {
  position: relative;
}
.testimonial-section .array-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  right: 10%;
  left: 10%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .testimonial-section .array-button {
    display: none;
  }
}
.testimonial-section .array-button .array-prev,
.testimonial-section .array-button .array-next {
  width: 40px;
  height: 55px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  line-height: 55px;
  color: #cdcdcd;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.testimonial-section .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--header);
}
.testimonial-section .array-button .array-next {
  background-color: var(--theme);
  color: var(--header);
}
.testimonial-section .array-button .array-next:hover {
  background-color: var(--white);
  color: var(--header);
}

.testimonial-wrapper-5 {
  margin-left: -20%;
  margin-right: -25%;
}
@media (max-width: 1024px) {
  .testimonial-wrapper-5 {
    margin-left: 0;
    margin-right: 0;
  }
}
.testimonial-wrapper-5 .testimonial-box-item-5 {
  display: flex;
  align-items: center;
  background: #f2f7fe;
  height: 308px;
}
@media (max-width: 1024px) {
  .testimonial-wrapper-5 .testimonial-box-item-5 {
    flex-wrap: wrap;
    height: initial;
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .testimonial-wrapper-5 .testimonial-box-item-5 {
    justify-content: center;
  }
}
.testimonial-wrapper-5 .testimonial-box-item-5 .testimonial-image img {
  width: 100%;
  height: 100%;
}
.testimonial-wrapper-5 .testimonial-box-item-5 .testimonial-content {
  padding: 40px 30px;
}
@media (max-width: 1024px) {
  .testimonial-wrapper-5 .testimonial-box-item-5 .testimonial-content {
    padding: 30px 0;
  }
}
.testimonial-wrapper-5 .testimonial-box-item-5 .testimonial-content p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text2);
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.32);
  padding-bottom: 30px;
  margin-bottom: 40px;
  max-width: 630px;
  font-style: italic;
}
@media (max-width: 1024px) {
  .testimonial-wrapper-5 .testimonial-box-item-5 .testimonial-content p {
    font-size: 18px;
  }
}
.testimonial-wrapper-5 .testimonial-box-item-5 .testimonial-content .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .testimonial-wrapper-5 .testimonial-box-item-5 .testimonial-content .client-info-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.testimonial-wrapper-5 .testimonial-box-item-5 .testimonial-content .client-info-item h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--header);
  font-weight: 800;
  margin-bottom: 5px;
}

.testimonial-section-5 {
  position: relative;
}
.testimonial-section-5 .array-buttons {
  display: grid;
  gap: 30px;
}
@media (max-width: 1024px) {
  .testimonial-section-5 .array-buttons {
    display: none;
  }
}
.testimonial-section-5 .array-buttons .array-prev {
  position: absolute;
  top: 90px;
  right: 17%;
  z-index: 999;
  background-color: var(--header);
  color: var(--white);
}
.testimonial-section-5 .array-buttons .array-next {
  position: absolute;
  top: 175px;
  right: 17%;
  z-index: 999;
}

.testimonial-section-6 {
  position: relative;
}
.testimonial-section-6 .array-buttons {
  margin-top: 48px;
}
.testimonial-section-6 .array-buttons .array-prev {
  color: var(--white);
  background: rgba(217, 217, 217, 0.06);
  border: none;
}
.testimonial-section-6 .array-buttons .array-prev:hover {
  background-color: var(--theme6);
}
.testimonial-section-6 .array-buttons .array-next {
  background-color: var(--theme6);
  color: var(--white);
}
.testimonial-section-6 .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--theme6);
}
.testimonial-section-6 .client-1 {
  position: absolute;
  top: 80px;
  left: 190px;
}
@media (max-width: 1400px) {
  .testimonial-section-6 .client-1 {
    display: none;
  }
}
.testimonial-section-6 .client-2 {
  position: absolute;
  left: 90px;
  bottom: 150px;
}
@media (max-width: 1400px) {
  .testimonial-section-6 .client-2 {
    display: none;
  }
}
.testimonial-section-6 .client-3 {
  position: absolute;
  top: 48px;
  right: 377px;
}
@media (max-width: 1400px) {
  .testimonial-section-6 .client-3 {
    display: none;
  }
}
.testimonial-section-6 .client-4 {
  position: absolute;
  top: 262px;
  right: 155px;
}
@media (max-width: 1400px) {
  .testimonial-section-6 .client-4 {
    display: none;
  }
}
.testimonial-section-6 .client-5 {
  position: absolute;
  bottom: 152px;
  right: 300px;
}
@media (max-width: 1400px) {
  .testimonial-section-6 .client-5 {
    display: none;
  }
}

.testimonial-wrapper-6 {
  margin-top: 30px;
}
.testimonial-wrapper-6 .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
}
.testimonial-wrapper-6 .swiper-slide.swiper-slide-shadow {
  box-shadow: none !important;
}
.testimonial-wrapper-6 .swiper-slide .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.testimonial-wrapper-6 .swiper-3d .swiper-slide-shadow {
  background: transparent;
}
.testimonial-wrapper-6 .testimonial-card-item-6 .testimonial-content .star {
  color: var(--theme6);
  margin-bottom: 15px;
}
.testimonial-wrapper-6 .testimonial-card-item-6 .testimonial-content p {
  max-width: 880px;
  font-style: italic;
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  color: #cdcdcd;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .testimonial-wrapper-6 .testimonial-card-item-6 .testimonial-content p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .testimonial-wrapper-6 .testimonial-card-item-6 .testimonial-content p {
    font-size: 18px;
  }
}
.testimonial-wrapper-6 .testimonial-card-item-6 .testimonial-content h3 {
  font-size: 20px;
  font-family: 'Rubik', sans-serif;
  margin-bottom: 5px;
} /*# sourceMappingURL=main.css.map */

/* Hero Background Slideshow */
.hero-section.hero-6 {
  position: relative;
  height: 800px;
  overflow: hidden;
}
.hero-bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 25s infinite;
}
.hero-bg-slide:nth-child(1) {
  animation-delay: 0s;
}
.hero-bg-slide:nth-child(2) {
  animation-delay: 5s;
}
.hero-bg-slide:nth-child(3) {
  animation-delay: 10s;
  background-position: center 60%;
}
.hero-bg-slide:nth-child(4) {
  animation-delay: 15s;
}
.hero-bg-slide:nth-child(5) {
  animation-delay: 20s;
  background-position: center 35%;
}
.hero-content-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  animation: heroTextFade 25s infinite;
  text-align: center;
  width: 100%;
  padding: 0 1.5rem;
  pointer-events: none;
}
@keyframes heroFade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  28% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes heroTextFade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  16% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes letterFadeIn {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.hero-letter {
  display: inline-block;
  animation: letterFadeIn 25s infinite;
}
@media (max-width: 1400px) {
  .hero-section.hero-6 {
    height: 680px;
  }
}
@media (max-width: 1024px) {
  .hero-section.hero-6 {
    height: 450px;
  }
  .hero-content-slide h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .hero-section.hero-6 {
    height: clamp(230px, calc(40vw + 80px), 380px);
  }
  .hero-content-slide h1 {
    font-size: 1.7rem;
  }
}

/* Hide nav when it would wrap — hamburger handles navigation below this width */
@media (max-width: 1640px) {
  .mean__menu-wrapper {
    display: none;
  }
}

/* Center footer newsletter when stacked (below lg) */
@media (max-width: 991px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content {
    text-align: center;
  }
  .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* How It Works subtitle — reduce size/weight below 1400px so it doesn't compete with the h2 title */
@media (max-width: 1399px) {
  .how-it-works-section .section-title h3 {
    font-size: 18px;
    font-weight: 400;
  }
}

/* How It Works — force 2 per row below 1400px */
@media (max-width: 1399px) {
  .how-it-works-section .how-it-works-items {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

/* iOS Safari doesn't support background-attachment: fixed — disable parallax on touch devices */
@media (pointer: coarse) {
  .paralax-image,
  .paralax-section-2,
  .cta-discuss-section {
    background-attachment: scroll;
  }
}

/* ── Inquiry form extras ──────────────────────────────────────────────────── */

/* Honeypot field: visually hidden from real users, bots still fill it */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Discovery Pre-Fill Form ────────────────────────────────────────────── */

/* Hero */
.discovery-hero {
  padding: 140px 0 50px;
  text-align: center;
}
.discovery-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.discovery-hero__eyebrow img { width: 16px; }
.discovery-hero h1 {
  font-size: 54px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.discovery-hero__sub {
  font-size: 17px;
  color: var(--text);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.discovery-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 13px;
  color: var(--text);
}
.discovery-hero__badge i { color: var(--theme); font-size: 12px; }

/* Sticky progress tracker */
.discovery-progress {
  position: sticky;
  top: 80px;
  z-index: 90;
  background: var(--bg);
  border-bottom: 1px solid rgba(207, 208, 212, 0.1);
  padding: 14px 0;
}
.discovery-progress__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}
.discovery-progress__inner::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: rgba(207, 208, 212, 0.15);
  pointer-events: none;
}
.discovery-progress__node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.discovery-progress__node:focus-visible .discovery-progress__dot {
  outline: 2px solid var(--theme);
  outline-offset: 3px;
}
.discovery-progress__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(207, 208, 212, 0.25);
  background: #222226;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}
.discovery-progress__label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  white-space: nowrap;
}
.discovery-progress__node.active .discovery-progress__dot {
  background: var(--theme);
  border-color: var(--theme);
  color: var(--header);
}
.discovery-progress__node.active .discovery-progress__label { color: var(--theme); }
.discovery-progress__node.completed .discovery-progress__dot {
  background: rgba(239, 251, 83, 0.12);
  border-color: rgba(239, 251, 83, 0.5);
  color: var(--theme);
}

/* Form layout */
.discovery-form-section { padding: 48px 0 80px; }
.discovery-form { max-width: 820px; margin: 0 auto; }

/* Section card */
.discovery-section {
  margin-bottom: 24px;
  background: var(--bg);
  border: 1px solid rgba(207, 208, 212, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
.discovery-section__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(207, 208, 212, 0.08);
}
.discovery-section__num {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--theme);
  color: var(--theme);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.discovery-section__title-area h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  line-height: 1.3;
}
.discovery-section__title-area p {
  font-size: 13px;
  color: var(--text);
  margin: 0;
}
.discovery-section__body { padding: 24px 28px; }

/* Field label */
.discovery-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(205, 205, 205, 0.75);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.discovery-label .optional {
  font-weight: 400;
  opacity: 0.55;
  font-size: 11px;
  margin-left: 4px;
  text-transform: none;
  letter-spacing: 0;
}

/* Text / URL / number / date inputs */
.discovery-form .form-clt { position: relative; }
.discovery-form .form-clt input[type="text"],
.discovery-form .form-clt input[type="url"],
.discovery-form .form-clt input[type="email"],
.discovery-form .form-clt input[type="number"],
.discovery-form .form-clt input[type="date"] {
  color: #cdcdcd;
  padding: 16px 44px 16px 20px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.18);
  background: #222226;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.4s ease-in-out;
}
.discovery-form .form-clt input[type="date"] {
  padding-right: 16px;
  color-scheme: dark;
}
.discovery-form .form-clt input::placeholder { color: var(--text); }
.discovery-form .form-clt input:focus {
  outline: none;
  border-color: rgba(239, 251, 83, 0.4);
  background: #25252a;
}
.discovery-form .form-clt .icon {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--theme);
  pointer-events: none;
  font-size: 15px;
}

/* Textarea */
.discovery-form textarea {
  color: #cdcdcd;
  padding: 16px 20px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.18);
  background: #222226;
  font-size: 15px;
  font-weight: 500;
  min-height: 96px;
  resize: vertical;
  transition: all 0.4s ease-in-out;
}
.discovery-form textarea::placeholder { color: var(--text); }
.discovery-form textarea:focus {
  outline: none;
  border-color: rgba(239, 251, 83, 0.4);
  background: #25252a;
}

/* Native select */
.discovery-form .form-clt--select { position: relative; }
.discovery-form .form-clt--select select {
  color: #cdcdcd;
  padding: 16px 44px 16px 20px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.18);
  background: #222226;
  font-size: 15px;
  font-weight: 500;
  appearance: none;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.discovery-form .form-clt--select select option { background: #222226; }
.discovery-form .form-clt--select select:focus {
  outline: none;
  border-color: rgba(239, 251, 83, 0.4);
}
.discovery-form .form-clt--select::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-65%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--theme);
  border-bottom: 2px solid var(--theme);
  pointer-events: none;
}

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.13);
  background: #222226;
  transition: all 0.4s ease-in-out;
  user-select: none;
}
.checkbox-item input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--theme);
}
.checkbox-item span {
  font-size: 14px;
  color: #cdcdcd;
  font-weight: 500;
  line-height: 1.4;
}
.checkbox-item:hover { border-color: rgba(239, 251, 83, 0.28); }
.checkbox-item:has(input:checked) {
  border-color: rgba(239, 251, 83, 0.38);
  background: rgba(239, 251, 83, 0.04);
}
.checkbox-item:has(input:checked) span { color: var(--white); }

/* Pill multi-select */
.discovery-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.discovery-pills .pill { position: relative; cursor: pointer; }
.discovery-pills .pill input { position: absolute; opacity: 0; pointer-events: none; }
.discovery-pills .pill span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.22);
  background: #222226;
  color: #cdcdcd;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.discovery-pills .pill:hover span {
  border-color: rgba(239, 251, 83, 0.4);
  color: var(--white);
}
.discovery-pills .pill input:checked + span {
  background: var(--theme);
  color: var(--header);
  border-color: var(--theme);
}
.discovery-pills .pill input:focus + span {
  outline: 2px solid rgba(239, 251, 83, 0.4);
  outline-offset: 2px;
}

/* Yes/No toggle */
.incident-toggle { display: flex; gap: 10px; flex-wrap: wrap; }
.incident-toggle .toggle-opt { position: relative; cursor: pointer; }
.incident-toggle .toggle-opt input { position: absolute; opacity: 0; pointer-events: none; }
.incident-toggle .toggle-opt span {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.22);
  background: #222226;
  color: #cdcdcd;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.incident-toggle .toggle-opt:hover span { border-color: rgba(239, 251, 83, 0.35); }
.incident-toggle .toggle-opt input:checked + span {
  background: var(--theme);
  color: var(--header);
  border-color: var(--theme);
}

/* Conditional reveal */
.conditional-reveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}
.conditional-reveal.active { max-height: 700px; opacity: 1; }
.conditional-reveal__inner {
  padding-top: 22px;
  margin-top: 20px;
  border-top: 1px solid rgba(207, 208, 212, 0.1);
}

/* Submit area */
.discovery-submit {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 28px;
  margin-top: 8px;
  border-top: 1px solid rgba(207, 208, 212, 0.1);
}
.discovery-submit .theme-btn.style-2 { padding: 18px 36px; }
.discovery-submit__email-link {
  background: none;
  border: 1px solid rgba(207, 208, 212, 0.25);
  border-radius: 8px;
  color: rgba(207, 208, 212, 0.7);
  cursor: pointer;
  font-size: 14px;
  padding: 12px 20px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.discovery-submit__email-link:hover:not(:disabled) {
  border-color: rgba(207, 208, 212, 0.5);
  color: #cfd0d4;
}
.discovery-submit__email-link:disabled,
.discovery-submit__email-link.is-loading { opacity: 0.5; cursor: not-allowed; }

/* Field errors + status */
.discovery-form .field-error input,
.discovery-form .field-error textarea,
.discovery-form .field-error select { border-color: rgba(224, 92, 92, 0.6) !important; }
.discovery-field-msg { font-size: 12px; margin-top: 5px; min-height: 1em; }
.discovery-field-msg.error { color: #e05c5c; }
.discovery-field-msg.success { color: #4caf87; }
.discovery-status {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 24px;
  display: none;
}
.discovery-status--info {
  display: block;
  background: rgba(239, 251, 83, 0.06);
  border: 1px solid rgba(239, 251, 83, 0.2);
  color: rgba(239, 251, 83, 0.85);
}
.discovery-status--error,
.discovery-status.error {
  display: block;
  background: rgba(224, 92, 92, 0.1);
  border: 1px solid rgba(224, 92, 92, 0.3);
  color: #e05c5c;
}
.discovery-status--success,
.discovery-status.success {
  display: block;
  background: rgba(76, 175, 135, 0.1);
  border: 1px solid rgba(76, 175, 135, 0.3);
  color: #4caf87;
}

/* Prefilled field indicator */
.discovery-form .form-clt.prefilled input,
.discovery-form .form-clt.prefilled select,
.discovery-form .form-clt--select.prefilled select,
.discovery-form textarea.prefilled {
  border-color: rgba(239, 251, 83, 0.3);
  background: rgba(239, 251, 83, 0.03);
}
.discovery-form .form-clt.prefilled .icon { color: rgba(239, 251, 83, 0.5); }
.discovery-form .checkbox-item.prefilled > span,
.discovery-form .pill.prefilled > span {
  border-color: rgba(239, 251, 83, 0.35);
  background: rgba(239, 251, 83, 0.05);
}

/* Responsive */
@media (max-width: 767px) {
  .discovery-hero h1 { font-size: 38px; }
  .discovery-section__header { padding: 18px 20px; gap: 12px; }
  .discovery-section__body { padding: 18px 20px; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .discovery-submit { flex-direction: column; }
  .discovery-submit .theme-btn { width: 100%; text-align: center; }
}
@media (max-width: 575px) {
  .discovery-hero h1 { font-size: 30px; }
  .discovery-progress__label { display: none; }
}
