/* general style start */
:root {
  --dark-color: rgba(29, 35, 41, 0.8);
  --secondary-color: #6293f5;
  --light-color: #494d73;
  --gray-color: #9ca3af;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "DUBAI";
  src: url("../Fonts/DUBAI-REGULAR.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "DUBAI";
  src: url("../Fonts/DUBAI-MEDIUM.TTF") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "DUBAI";
  src: url("../Fonts/DUBAI-BOLD.TTF") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "DUBAI";
  src: url("../Fonts/DUBAI-BOLD.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: "DUBAI", sans-serif;
  font-size: 18px;
  overflow-x: hidden;
  font-weight: 400;
  background-color: #f7f9fb;
}

.inner-container {
  max-width: 1200px;
  margin: auto;
}

ul {
  list-style: none;
}

p,
.breadcrumb-content h6 {
  font-size: 18px;
}

.breadcrumb-content h6 {
  text-transform: uppercase;
}

.row {
  overflow: hidden;
}

.br-8 {
  border-radius: 8px;
}
.text-right {
  text-align: right;
}

.auth-btns {
  display: flex;
  gap: 15px;
}

.primary-color {
  color: var(--light-color);
}

.primary-btn,
.secondary-btn {
  background-color: var(--light-color);
  border: 2px solid var(--light-color);
  padding: 8px 25px;
  color: white;
  width: fit-content;
  text-decoration: none;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-size: 20px;
  transition: all 0.3s ease-out;
}

.auth-btns .primary-btn,
.auth-btns .secondary-btn {
  width: 120px;
  font-size: 16px;
  font-weight: 600;
}
.secondary-btn {
  background-color: transparent;
  border: 2px solid var(--light-color);
  color: var(--light-color);
}

.primary-btn:hover {
  border: 2px solid var(--secondary-color);
  background-color: var(--secondary-color);
  color: white;
}

.auth-btns .primary-btn:hover {
  border: 2px solid var(--secondary-color);
  background-color: var(--secondary-color);
  color: white;
}

.secondary-btn:hover {
  background-color: var(--light-color);
  border: 2px solid var(--light-color);
  color: white;
}

/* general style end */
.dark-bg,
.bg-dark {
  background-color: #0f1017 !important;
}

.bg-white {
  background-color: white;
}

.bg-white {
  background-color: white;
}

.gray-bg {
  background-color: var(--gray-color);
}
/* header style start */
header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 999;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  width: 100%;
  padding: 20px 83px;
  gap: 15px;
}

.header > ul {
  display: flex;
  gap: 10px;
  z-index: 1;
  align-items: center;
}

.header ul a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 10px;
  border-radius: 5px;
}

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

.drop-down-arrow {
  position: relative;
}

.drop-down-arrow > a::after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

header i {
  color: white;
  font-size: 22px;
}

.mobile-nav-toggle,
.mobile-nav-active {
  display: none;
}

.dark-header.header .fa-solid.fa-magnifying-glass {
  color: #000;
}

.menu-toggle {
  background-color: white;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 30px;
  top: 90px;
  z-index: 999;
  width: 100%;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  margin: auto;
}

.menu-toggle.position-absolute {
  width: fit-content;
  top: 23px;
}

.menu-toggle:hover {
  display: flex;
}

.drop-down-arrow:hover .mega-menu {
  display: flex !important;
}

.menu-toggle .toggle-links li {
  margin-bottom: 20px;
}

.menu-toggle .toggle-links li:hover a {
  background-color: unset;
  color: unset;
}

.menu-toggle .toggle-links li:last-child {
  margin-bottom: unset;
}

.toggle-links {
  width: max-content;
  flex-basis: fit-content;
}

.toggle-card {
  background-color: #f3f4f6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: fit-content;
  flex: 1;
  border-radius: 4px;
}

.menu-toggle .toggle-links h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.menu-toggle .toggle-links > a h3 {
  margin-bottom: 0 !important;
}

.menu-toggle .toggle-links > a:hover h3 {
  color: var(--secondary-color);
}

.menu-toggle .toggle-links li a {
  font-size: 18px;
  color: #000;
  padding: 0;
}

.menu-toggle .toggle-links li a:hover {
  color: var(--secondary-color);
  background-color: unset;
}

.drop-down-arrow.mega {
  position: unset;
}

.header ul li:hover > a {
  background-color: var(--secondary-color);
  color: white;
}

.ceo {
  display: flex;
  gap: 15px;
  align-items: center;
}

.ceo h3 {
  font-size: 18px;
  font-weight: 600;
}
/* header style end */

/* hero section start */
/* slider start */
.owl-carousel-hero .slide {
  width: 100%;
}

.hero-img img {
  width: 100%;
  height: auto;
}

.row,
.hero {
  margin: 0;
  padding: 0;
}

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

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

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

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

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

.owl-carousel-hero {
  width: 100vw;
  overflow: hidden;
}

.slider-container {
  max-width: 100%;
  overflow: hidden;
}

.owl-dots {
  position: absolute;
  top: 130px;
  left: 30px;
}

.owl-dot {
  width: 30px;
  height: 3px;
  background-color: var(--gray-color) !important;
  margin-right: 5px;
  box-sizing: content-box;
  border-top: 10px solid transparent !important;
  border-bottom: 10px solid transparent !important;
  background-clip: padding-box !important;
  cursor: pointer;
}

.owl-dot.active {
  background-color: var(--light-color) !important;
}

/* slider end */

/* slider one start */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.breadcrumb-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50%;
  width: 50%;
}

.hero-content h2,
.breadcrumb-content h2 {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.breadcrumb-content h2 {
  font-size: 34px;
  text-align: left;
}

.hero-content p,
.breadcrumb-content p {
  font-size: 22px;
  line-height: 30px;
  text-align: justify;
  hyphens: auto;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.breadcrumb-content p {
  margin-bottom: 25px;
  text-align: left;
}

.hero-img {
  position: relative;
}

.hero-img img {
  position: absolute;
  right: 15px;
  bottom: 0;
  max-width: 100%;
  height: auto;
}

.slide-1 .hero-img img {
  width: 75%;
}

.circle-btn {
  width: 250px;
  height: 250px;
  background-color: var(--dark-color);
  border: 10px solid var(--gray-color);
  border-radius: 50%;
  top: 47%;
  left: 53%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-btn a {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 30px;
  font-weight: 700;
}

.circle-btn a p {
  width: fit-content;
  font-size: 30px;
  font-weight: 700;
  color: #d0d0d0;
}

.circle-btn a span {
  color: var(--light-color);
}

.circle-btn svg {
  position: absolute;
  top: 33%;
  left: 60%;
}
/* slider one end */

/* slider two start  */
.overlay {
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0, 0.6);
  opacity: 0.6;
  position: absolute;
  max-height: -webkit-fill-available;
}

.slide-2 .hero-img,
.locations-page .slide .hero-img {
  background-image: url("../images/data-analysis-business-finance-concept.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.locations-page .slide .hero-img {
  background-image: url("../images/locations-hero.webp");
}
/* slider two end */

/* slider three start  */
.slide-3 .hero-img {
  background-image: url("../images/3d-internet-secuirty-badge.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
/* slider three end */

/* hero section end */

/* services section start */
.heading-title {
  text-align: center;
  width: 80%;
  margin: 0 auto 40px;
  color: #000;
}

.heading-title h2 {
  font-weight: 600;
  font-size: 26px;
}

.service-card {
  border: 0.3px solid #6c6c6c30;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0px 4px 7.1px rgba(0, 0, 0, 0.25);
  gap: 20px;
  padding: 30px 23px 20px;
  transition: all 0.2s linear;
  height: 100%;
}

.service-card:hover {
  background-color: var(--dark-color);
}

.service-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.service-card:hover .service-info h3,
.service-card:hover .service-info p {
  color: white;
}

.service-card .service-info p {
  color: #4a4a4a;
  display: flex;
  flex: 1;
  text-align: center;
  align-items: center;
  font-size: 20px;
}

.service-card .icon-box {
  background-color: var(--dark-color);
  width: 80px;
  height: 80px;
  border-radius: 11px;
  margin-top: -70px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s linear;
}

.service-card:hover .icon-box {
  background-color: white;
}

.service-card .icon-box img {
  width: 50px;
  height: auto;
}

.service-card:hover .icon-box img {
  filter: brightness(0);
}

/* services demo 2 */
.services-two {
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  gap: 50px;
  padding: 50px 0;
}

.services-two .services-border {
  border: 1px solid #e5e7eb;
}

.services-two .services-title h2 {
  font-weight: 600;
  width: 80%;
  padding-right: 30px;
}

.services-two .services-title p {
  width: 30%;
}

.services-two .service-info {
  align-items: flex-start;
}

.service {
  flex-basis: 150px;
  padding: 20px;
  color: white;
  text-align: center;
  transition: flex 0.5s cubic-bezier(0.4, 0.2, 0.4, 1);
  border-left: 1px solid rgba(229, 231, 235, 1);
  cursor: pointer;
  overflow: hidden;
  height: 355px;
}

.service:hover {
  flex-basis: 180px;
}

.service:first-child {
  border-left: none;
}

.service .service-title span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 22px;
  font-weight: 700;
}

.service .service-content {
  display: none;
}

.service.active .service-content {
  display: flex;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  transition: flex 0.5s cubic-bezier(0.4, 0.2, 0.4, 1);
}

.service.active .service-content h2 {
  font-size: 19px;
  font-weight: 600;
}

.service.active .service-content p {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  width: 540px;
}

.service.active .service-title {
  display: none;
}

.service.active {
  flex: 7;
  display: flex;
  justify-content: space-between;
  align-items: end;
  text-align: left;
  position: relative;
  flex-direction: column;
  padding: 0;
}

.service-bottom {
  width: 100%;
  padding: 15px 32px 15px 32px;
  border-top: 2px solid var(--light-color);
  font-size: 18px;
  font-weight: 600;
  display: none;
}

.service.active .service-bottom {
  display: flex;
  justify-content: space-between;
}

.service-bottom a,
.service-demo-2 > a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.service .prev-icon a,
.service .next-icon a,
.service .plus-icon a {
  display: flex;
}

.service-bottom a:hover {
  color: var(--secondary-color);
}

.service-demo-2 > a {
  bottom: 15%;
  left: 44%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  padding: 5px;
}

.service-demo-2 > a i {
  background-color: white;
  color: #1c1c1c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
}

a.service-arrow,
.next-btn,
.prev-btn {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: -25px;
  right: 52%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  color: var(--dark-color);
  text-decoration: none;
  cursor: pointer;
}

.next-btn,
.prev-btn {
  width: 40px;
  height: 40px;
  left: 13%;
  border-radius: 15px;
}

.prev-btn {
  top: -30px;
  bottom: unset;
  display: none;
}

.next-btn {
  bottom: -10px;
}

.next-btn .fa-angle-down:before,
.prev-btn .fa-angle-up:before {
  font-size: 22px;
}

.service-title {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}

/* services section end */

/* clients section start */
.owl-carousel-clients .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
}

.owl-carousel-clients .slide img {
  max-width: 130px;
}
/* client section end */
/* insights section start */

.insights {
  display: flex;
  max-height: 500px;
}

.insight-box {
  position: relative;
}

.insight-box-1 {
  width: 50%;
}

.insight-box-2 {
  width: 25%;
}

.insight-box-1 .insight-image {
  height: 100%;
  width: 100%;
}

.insight-box-2 .insight-image {
  height: 50%;
  width: 100%;
}

.insight-box-2 .insight-image img,
.insight-box-1 .insight-image img {
  height: 100%;
  width: 100%;
}

.insight-content {
  padding: 15px;
  background: #fff;
  display: flex;
  gap: 15px;
  flex-direction: column;
  height: 50%;
}

.insight-box-1 .insight-content {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
}

.insight-content h2 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.insight-box:hover h2 {
  color: var(--secondary-color);
}

.insight-content p {
  color: rgba(75, 85, 99, 1);
  font-size: 18px;
  line-height: 22px;
}

/* insights section end */
/* testimonial section start */
.clients .heading-title {
  margin-bottom: 15px;
}

.testimonial .owl-dots,
.clients .owl-dots {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translatex(-50%);
}

.testi-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 5px;
}

.testi-content p {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 30px;
  color: #d0d0d0;
}

.user-content {
  display: flex;
  align-items: end;
  gap: 20px;
  color: #d0d0d0;
}

.testi-content .user-info h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.testi-content .user-info p {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
}

/* testimonial section end */

/* partners section start */
.partners {
  display: flex;
  flex-wrap: wrap;
}

.partners-img {
  flex: 1;
  background-color: white;
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-basis: 25%;
  align-items: center;
  gap: 20px;
  border: 1px solid #d1d5db;
  justify-content: center;
}

.partners-img p {
  text-align: center;
}

.partners-img-left {
  justify-content: start;
  align-items: flex-start;
  gap: 15px;
}

.partners-img img {
  max-width: 100%;
}

.partners-img:nth-child(n + 5) {
  flex-basis: calc(100% / 6);
}

.partners.programs .partners-img,
.solution-page .partners.programs.equal .partners-img {
  flex-basis: calc(100% / 3);
  background-color: transparent;
}

.solution-page .partners.programs .partners-img {
  flex-basis: calc(100% / 4);
}

.solution-page .col-md-7 ul,
.solution-page .col-md-5 ul {
  padding-left: 35px;
}

.solution-page .col-md-7 li,
.solution-page .col-md-5 li {
  font-size: 20px;
  list-style: disc;
  margin-bottom: 15px;
}

.solution-page .col-md-7 a {
  display: flex;
  color: #000;
  width: fit-content;
}

.solution-page .col-md-7 a.primary-btn {
  color: white !important;
}

.solution-page .col-md-7 a:hover {
  color: var(--secondary-color);
}

a i.fa-solid.fa-arrow-turn-up {
  margin-left: 15px;
  transform: rotate(90deg);
}
.partners.programs .partners-img h2 {
  font-size: 24px;
  margin-bottom: 0;
}

.solution-page .partners.programs .partners-img h2 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.partners.programs .partners-img p {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.partners.programs .partners-img-left p {
  text-align: left;
}

.solution-page .partners.programs .partners-img h2 + p {
  font-size: 18px;
  font-weight: 400;
}

.partners.programs .partners-img-left h2 + p {
  font-size: 20px;
  font-weight: 400;
}
/* partners section end */

/* footer start */

/* footer */
footer {
  border-top: 1px solid #9e9e9e;
}

.footer {
  display: flex;
  padding: 50px 0;
  justify-content: space-between;
  gap: 30px;
}

footer ul {
  padding-left: 0;
}

footer ul li {
  list-style: none;
  margin-bottom: 7px;
}

footer a {
  text-decoration: none;
  font-size: 18px;
}

footer a:hover {
  color: var(--secondary-color);
}

footer ul li a {
  color: #000;
}

.footer h3 {
  font-weight: 600;
  font-size: 20px;
  position: relative;
  color: #000;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 25px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.footer-contact h3 {
  color: white;
}

.footer-contact h3::after {
  content: none;
  margin-bottom: 10px;
}

.footer-logo img {
  margin-bottom: 10px;
}

.footer-logo > p {
  display: block;
  font-size: 15px;
  color: var(--light-color);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  width: 28px;
  height: 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.footer-social .social-icon:hover {
  background-color: var(--light-color);
}

.footer-social .social-icon i {
  color: white;
}

.addres p {
  color: #d0d0d0;
}

.addres a {
  text-decoration: underline;
  color: white;
}

.footer-contact .footer-imgs {
  display: flex;
  gap: 30px;
}

.footer-imgs img {
  width: 70px;
  height: 70px;
}

.footer-bottom {
  display: flex;
  border-top: 1px solid #9e9e9e;
  justify-content: center;
  padding: 25px;
}

.footer-bottom p {
  color: #000;
  font-size: 18px;
  margin-bottom: 0;
}

.footer-bottom a {
  color: #000;
}

/* footer end */

/* single service page */
.breadcrumb {
  height: 550px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insights-page .hero-section .overlay,
.service-demo-2 .overlay {
  position: absolute;
  top: 0;
  background-color: rgb(0, 0, 0, 0.8);
}

.service-demo-2 .overlay {
  z-index: 1;
}

.services-two > * {
  z-index: 99;
}

.control-btns {
  display: flex;
  gap: 20px;
}

.prev-icon,
.next-icon,
.plus-icon {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 7px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  transition: all 0.3s;
}

.prev-icon a,
.next-icon a,
.plus-icon a {
  color: white;
}

.prev-icon:hover,
.next-icon:hover,
.service:hover .plus-icon {
  color: #000;
  background-color: white;
}

.prev-icon:hover a,
.next-icon:hover a,
.service:hover .plus-icon a {
  color: #000;
}

.default-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.single-insight {
  background-image: url("../images/insights/insight-breadcrumb.webp");
}
.csr-page {
  background-image: url("../images/csr/breadcrumb.webp");
}
.social-bg {
  background-image: url("../images/csr/section-image.webp");
  border-radius: 16px;
  padding: 0;
}
.social-bg .overlay {
  border-radius: 16px;
}

.breadcrumb .breadcrumb-content .breadcrumb-title {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-card .service-info h3 {
  color: #000;
  font-weight: 500;
  font-size: 25px;
}

.breadcrumb > .inner-container {
  width: 89%;
  margin-bottom: 100px;
}

.breadcrumb .breadcrumb-content .breadcrumb-title h2 {
  display: flex;
  align-items: center;
  padding-bottom: 0;
  font-size: 34px;
  margin-bottom: 15px;
}

.careers-page .breadcrumb .breadcrumb-content .breadcrumb-title h2 {
  margin-bottom: 50px;
}

.breadcrumb .breadcrumb-content .breadcrumb-title img {
  width: 45px;
  height: auto;
}

.single-service .service-card {
  position: relative;
  padding: 30px;
  height: 100%;
  gap: 0;
  min-height: 350px;
}

.single-service .service-card .service-info {
  gap: 0;
}

.single-service .service-card img {
  position: absolute;
  top: 8%;
  left: 18px;
  opacity: 0.6;
  width: 30%;
  z-index: -1;
  height: auto;
}

.single-service .service-card:hover img {
  z-index: 0;
  filter: brightness(0.5);
}

.single-service .service-card:hover .service-info {
  z-index: 99;
}

.services-two .service-info {
  gap: 10px;
}

.services-two .service.active .service-content h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 320px;
}

.services-two .service.active .service-content #serviceTitle img {
  width: 35px;
}

/* case studies section */
.case-studies .heading-title {
  text-align: left;
  width: 100%;
  padding-right: 50px;
}

.case-studies .heading-title p {
  font-size: 25px;
  font-weight: 500;
}

.cases {
  display: flex;
  flex-wrap: wrap;
}

.cases .case {
  flex-basis: 35%;
}

.cases .case > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cases .case > a > .case-content {
  flex: 1;
}

.cases .case:nth-child(1),
.cases .case:nth-child(4) {
  flex-basis: 65%;
}

.case .case-bg {
  background-size: cover;
  height: 200px;
}

.case a .case-content h2 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

.case:hover a .case-content h2 {
  color: var(--secondary-color);
}

.case .case-content p {
  color: #000;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 10px;
}

.case .case-content {
  position: relative;
  padding: 20px;
  padding-right: 95px;
  border: 1px solid rgba(247, 249, 251, 1);
  background-color: white;
  box-shadow: 0px 4px 7.1px rgba(0, 0, 0, 0.25);
}

.case .case-content .case-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--gray-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  transition: all 0.3s ease-out;
  padding: 5px;
}

.case .case-content .case-icon img {
  width: 65%;
}

.case:hover .case-icon {
  background-color: var(--secondary-color);
}

/* featured section */
h2.feature-title {
  font-size: 34px;
  width: 50%;
  margin-bottom: 35px;
}

.feature-content h2 {
  margin-bottom: 25px;
  font-size: 30px;
}

.feature-content p {
  font-size: 20px;
  color: #111928;
}

.features-page .col-md-5 {
  padding: 0;
}

.features-page .col-md-5.feature-img img {
  border-radius: 8px;
}

.features-page .col-md-5.feature-img.feature-r img {
  border-radius: 8px;
}

.features-card {
  background-color: white;
  border-radius: 4px;
  border: 1px solid #00000010;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  gap: 25px;
  min-height: 100%;
}
/* form section */

.form-section .heading-title {
  width: 80%;
}

.form-section .heading-title h2 {
  padding: 0px 216px;
  margin-bottom: 30px;
}

.form-section .heading-title p {
  font-size: 20px;
  font-weight: 500;
}

.form-content input::placeholder,
.form-content select option,
.form-content select,
.form-content textarea::placeholder {
  color: #484848;
  font-size: 18px;
  font-weight: 400;
}

.locations-page .form-content input::placeholder,
.locations-page .form-content select,
.locations-page .form-content textarea::placeholder {
  color: white;
  font-size: 16px;
}

.form-control {
  padding: 15px 15px;
  border-radius: 5px;
}

.locations-page .form-control {
  padding: 10px 10px;
  border-radius: 4px;
  background: transparent;
  color: white;
}

.form-select {
  direction: ltr !important; /* Ensures dropdown aligns correctly */
  text-align: left !important; /* Aligns text correctly */
  background-position: right 10px center !important; /* Moves arrow to the right */
}

/* search page */
.search-page {
  padding-top: 150px;
  padding-bottom: 50px;
}

.search-bar {
  display: flex;
  width: 100%;
  margin-bottom: 63px;
}

.search-bar .filter,
.search-input {
  border: 1px solid #cccccc;
  padding: 15px;
}

.search-input {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  flex-basis: 55%;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

i.fa-solid.fa-magnifying-glass.search-icon {
  font-size: 17px;
  margin-right: 8px;
  color: #000;
}

.clear-icon {
  font-size: 15px;
  color: #000;
  cursor: pointer;
  display: none;
}

.search-input input {
  border: none;
  outline: none;
  flex: 1;
  background: transparent;
}

.search-bar .filter {
  display: flex;
  justify-content: space-around;
  flex-basis: 45%;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

.search-bar .filter ul.filter-values {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.search-bar .filter ul.filter-values li {
  color: #191919;
  list-style: none;
}

.search-bar .filter ul.filter-values li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  padding: 5px 12px;
}

.search-bar .filter ul.filter-values li.active a,
.search-bar .filter ul.filter-values li:hover a {
  background-color: var(--light-color);
  color: white;
  border-radius: 999px;
}

.results-section {
  padding: 0 15px;
}

.results-section > p {
  font-size: 18px;
  color: var(--light-color);
}

.results-section h5 {
  font-size: 16px;
  font-weight: 600;
}

.results-section .result:not(:last-child) {
  margin-bottom: 50px;
}

.results-section .result h2 > a {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #000;
}

.results-section .result h2 > a:hover {
  color: var(--secondary-color);
}

.search-divider {
  border: 1px solid #ccc;
  margin: 20px 0;
  padding: 0 1.5rem;
}

.results-section .result p {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 16px;
}

.results-section .result a {
  color: var(--light-color);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.results-section .result a:hover {
  color: var(--dark-color);
}

/* locations page */
.locations-section > .inner-container img {
  width: 100%;
  height: auto;
  margin-bottom: 125px;
}

.locations-section .location-bg {
  margin-bottom: 50px;
}

.locations-section .location-bg img {
  width: 100%;
  height: 100%;
}

.locations-section .location-bg .location-content {
  bottom: 35px;
  left: 35px;
  padding-right: 55px;
}

.locations-section .location-bg .location-content h5 {
  font-size: 25px;
  font-weight: 700;
}

.locations-section .location-bg .location-content p {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 0;
}
.locations-section .bg-dark .row {
  margin-top: -150px;
}

/* insights page */
.insights-page .hero-section .slide {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: end;
  padding-bottom: 40px;
}

.insights-page .hero-section .hero-insights {
  width: 75%;
  height: 75%;
  display: flex;
  flex-wrap: wrap;
}

.insights-page .hero-section .hero-insights > * {
  width: 50%;
  height: 50%;
}

.insights-page .hero-section .hero-insights .insight img {
  width: 100%;
  height: 100%;
}

.insights-page .border-title {
  width: 85%;
  border-bottom: 1px solid #dfdfdf;
}

.insights-page .border-title h2 {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 600;
}

.hero-insights .insight .insight-info {
  position: absolute;
  bottom: 0;
  color: white;
  z-index: 99;
  padding: 0 50px 30px;
}

.insights-page .insight-info span,
.insights-page .insight-info .date,
.insights-page .insight-info a {
  font-size: 13px;
}

.insights-page .insight-info span {
  display: block;
  margin-bottom: 8px;
}

.insights-page .insight-info p {
  font-size: 16px;
  margin-bottom: 15px;
  padding-right: 50px;
}

.insights-page .insight-info .date {
  margin-bottom: 0;
}

.insights-page .insight-info a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.insights-page .insight-info a:hover {
  color: var(--secondary-color);
}

.insights-page .insight-card .insight-info a {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.insights-page .insight-card .insight-info a:hover {
  color: var(--secondary-color);
}

.insights-page .insight-card .insight-info p:not(p.date) {
  margin-top: 15px;
}

.insights-page .nav-underline {
  gap: 30px;
}

.insights-page .nav-underline .nav-link.active,
.insights-page .nav-underline .nav-link:hover {
  color: var(--light-color);
  border-bottom-color: currentcolor;
  font-weight: 400;
}

.insights-page .nav-link {
  color: #000;
  height: 100%;
  font-size: 20px;
  font-weight: 400;
}

.insights-page .filter-bar {
  border-bottom: 1px solid #d6d6d6;
}

.insights-categories {
  align-items: center;
  gap: 15px;
}

.insights-page .insights-categories a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  padding: 2.5rem 0;
}

.insights-page .insights-categories p {
  margin-bottom: 0;
  font-size: 18px;
  padding: 0.5rem 0;
}

.insight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insight-card .insight-img {
  height: 251px;
  overflow: hidden;
}

.insights-page .insight-card img {
  width: 100%;
  height: 100%;
}

.insights-page .insight-card .date,
.insights-page .insight-card .insight-info a {
  margin-bottom: 15px;
}

.insights-page .insight-card .date,
.insights-page .insight-card .insight-info p {
  text-align: justify;
  padding-right: 0;
  hyphens: auto;
}

.insights-page .insights-section .tab-content .row {
  gap: 50px 0;
}

ul.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 19px;
  margin-top: 45px;
  height: 30px;
}

ul.pagination li {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul.pagination li a {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  font-family: "DM Serif Text", serif;
}

ul.pagination li.active a,
ul.pagination li:hover a {
  color: var(--light-color);
}

/* single insight page */
.single-insight .breadcrumb-badge {
  font-size: 18px;
  font-weight: 700;
  background: rgb(255, 255, 255, 0.15);
  padding: 5px 10px;
  border-radius: 8px;
}

.single-insight .breadcrumb-content {
  position: absolute;
  z-index: 100;
  padding: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.single-insight p.date {
  font-size: 26px;
  font-weight: 700;
}

.single-content h5,
.single-content p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-align: justify;
  hyphens: auto;
}

.single-content p {
  margin-bottom: 20px;
}

.single-content h2 {
  font-size: 30px;
  margin-bottom: 25px;
}

/* csr page */
.csr-section .row,
.services-page .row {
  gap: 50px 0;
  align-items: center;
}

.csr-title {
  font-size: 25px;
  font-weight: 600;
}

.csr-icon {
  margin-bottom: 18px;
}

.csr-content h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
}

.csr-content p {
  font-size: 18px;
  margin-bottom: 0;
  text-align: justify;
  hyphens: auto;
  hyphens: auto;
}

.numbers {
  margin-bottom: 50px;
}

.number h2 {
  font-size: 50px;
  font-weight: 600;
}

.number p {
  font-size: 20px;
  font-weight: 500;
}

.social-content {
  padding: 50px 0 50px 18px;
}

.social-content h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 48px;
}

.social-content p {
  font-size: 20px;
}

.report h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.report a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: var(--light-color);
}

.report a i {
  margin-left: 10px;
}

/* case studies page */
.case-card {
  padding: 40px;
  padding-right: 80px;
}

.case-left {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background-color: #f3f5f6;
}

.case-right {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: #313131;
}

.case-card h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}

.case-card p {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: justify;
  hyphens: auto;
}

.padding-case {
  padding-right: 0;
  padding-left: 0;
}

.case-studies-page .breadcrumb {
  height: 400px;
}

.case-studies-page .breadcrumb p {
  text-align: center;
}

/* single case */
.case-studies-page.single-case .breadcrumb {
  margin-bottom: 250px;
}

.single-case .breadcrumb-content {
  top: 50%;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  border-radius: 15px;
}

.single-case .breadcrumb-content .overlay {
  z-index: -1;
  border-radius: 15px;
}

.single-case h2 {
  font-size: 30px;
}

.single-case p {
  font-size: 20px;
  text-align: justify;
  hyphens: auto;
}

.single-case .divider {
  padding-top: 45px;
  padding-bottom: 45px;
}

.divider-border {
  border: 1px solid #6c6c6c;
}

.single-case .padding-case {
  padding-top: 45px;
  padding-bottom: 45px;
  padding-right: 65px;
  padding-left: 0;
}

.single-case .testi-content {
  gap: 24px;
  justify-content: center;
}

.single-case .user-content {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.single-case .user-content .user-info > * {
  text-align: center;
}

.single-case .testi-content > p {
  font-size: 25px;
  text-align: center;
  line-height: 40px;
  padding: 0px 105px;
  position: relative;
}

.single-case .testi-content > p::before,
.single-case .testi-content > p::after {
  position: absolute;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}

.single-case .testi-content > p::before {
  content: "";
  background-image: url("../images/left-quotes.webp");
  top: -6px;
  left: 58px;
}

.single-case .testi-content > p::after {
  content: "";
  background-image: url(../images/right-quotes.webp);
  bottom: -3px;
  right: 60px;
}

.single-case .form-section .heading-title p {
  text-align: center;
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq-page .hero {
  height: 80vh;
}

.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
  border-bottom: 1px solid #000;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq .faq-container .faq-item h3 i {
  background-color: #000;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--light-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--light-color);
}

.faq .faq-container .faq-item .faq-content {
  display: none;
}

.faq .faq-container .faq-item .faq-content {
  display: none;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 18px;
  font-weight: 400;
}

.faq .faq-container .faq-item .next-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  left: unset;
  bottom: unset;
  font-size: 18px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 7px;
  width: 30px;
  height: 30px;
}

.faq .faq-container .faq-active h3 {
  color: var(--light-color);
}

.faq .faq-container .faq-active .faq-content {
  display: grid;
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .next-btn {
  transform: rotate(180deg);
}

.faq-bg {
  height: 600px;
}

/* core section */
.core-services {
  display: flex;
  gap: 20px;
}

h2.core-title {
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 700;
}

.core-bg {
  position: relative;
  border-radius: 5px;
  padding: 79px 10px 30px 16px;
  display: flex;
  align-items: flex-end;
}

.core-bg .core-img {
  position: absolute;
  top: 0;
  right: 0;
  text-align: end;
}

.core-bg .core-img img {
  width: 70%;
}

.core-bg .core-content h3 {
  font-size: 20px;
  font-weight: 600;
}

.core-bg:nth-child(1) {
  background-color: rgba(186, 216, 182, 1);
}

.core-bg:nth-child(2) {
  background-color: rgba(225, 234, 205, 1);
}

.core-bg:nth-child(3) {
  background-color: rgba(248, 243, 217, 1);
}

.core-bg:nth-child(4) {
  background-color: rgba(249, 246, 230, 1);
}

.core-bg:nth-child(5) {
  background-color: rgba(229, 225, 218, 1);
}

.bg-core-dark {
  background-color: rgba(9, 15, 42, 1);
  background-image: url("../images/twisted-shape-3d-render 1.webp");
  display: flex;
  flex-direction: column;
  text-align: center;
  color: white;
}

.bg-core-dark .inner-container {
  z-index: 99;
}

.bg-core-dark h2 {
  font-size: 34px;
  font-weight: 500;
}

.bg-core-dark p {
  font-size: 22px;
  line-height: 50px;
}

.bg-core-dark .overlay {
  background-color: rgba(9, 15, 42, 0.6);
  top: 0;
}

.margin-l {
  margin-left: 83px;
}

.margin-r {
  margin-right: 83px;
}

.insights-page .category-badge {
  padding: 0;
  position: relative;
  background-color: rgb(0, 184, 255, 0.15);
  color: var(--light-color);
  padding: 5px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: left;
}

.insights-page .category-badge p {
  padding: 0;
  padding-left: 15px;
  margin: 0;
}

.insights-page .category-badge a {
  padding: 0;
  text-decoration: none;
  color: #000;
}

.single-service .col-md-4.padding-40,
.single-service .col-md-6.padding-40 {
  padding-bottom: 1.5rem;
  padding-top: unset;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-header .logo img {
  max-height: 40px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--dark-color);
}

.mobile-menu-content {
  padding: 20px;
}

.mobile-menu .sub-menu {
  display: none;
  padding-left: 20px;
}

.mobile-menu .drop-down.active > .sub-menu {
  display: block;
}

.mobile-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  padding: 10px 0;
}

.mobile-menu .drop-down > a i {
  transition: transform 0.3s ease;
}

.mobile-menu .drop-down.active > a i {
  transform: rotate(180deg);
}

.mobile-auth-btns {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.rotate-icon {
  transform: rotate(180deg);
}

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

body.modal-open {
  padding-right: 0 !important;
  overflow: hidden !important;
}

/* Define custom theme */
/* .tippy-box[data-theme~="custom-tooltip"] {
  background-color: #e5f4ff;
  color: var(--light-color);
} */

/* Customize tooltip arrow */
/* .tippy-box[data-theme~="custom-tooltip"] .tippy-arrow {
  color: #e5f4ff; 
} */

.careers-page .breadcrumb {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.careers-page .breadcrumb .breadcrumb-content {
  padding: 0;
  width: 100%;
}

.breadcrumb-content h2 {
  margin-bottom: 0;
}

.careers-page .breadcrumb .breadcrumb-content p {
  opacity: 75%;
  text-align: center;
}

.search-input {
  border-radius: 4px;
  padding: 0;
  background-color: white;
}

.breadcrumb .search-input form {
  position: relative;
  display: flex;
  width: 100%;
}

.breadcrumb .search-input input {
  padding: 15px 15px;
}

.filter-card {
  background-color: rgba(251, 251, 251, 1);
  padding: 20px;
  border: 1px solid rgba(224, 224, 224, 1);
  border-radius: 8px;
  box-shadow: 0px 4px 7.1px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.careers-page .filter-category:first-child ul,
.single-job .filter-category .category-badges {
  border-bottom: 1px solid rgba(189, 189, 189, 1);
  margin-bottom: 15px;
  padding-bottom: 7px;
}

.single-job .filter-category .category-badges {
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.filter-category li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-category ul li input[type="checkbox"] {
  appearance: none; /* Remove default checkbox */
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.filter-category ul li input[type="checkbox"]:checked {
  background-color: var(--light-color);
  border-color: #fff;
  color: #fff;
  position: relative;
}

.filter-category ul li input[type="checkbox"]:checked::before {
  display: block;
}

.job-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px 0;
}

.job-card {
  border: 1px solid rgba(224, 224, 224, 1);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 7.1px rgba(0, 0, 0, 0.05);
  transition: all 0.2s linear;
  background-color: white;
}

.job-card:hover {
  box-shadow: 0px 4px 7.1px rgba(0, 0, 0, 0.25);
}

.job-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.job-card .job-title a {
  text-decoration: none;
  color: #000;
  font-size: 26px;
}

.job-card .job-title a:hover {
  color: var(--secondary-color);
}

.job-card .job-title p.date {
  align-self: flex-end;
  margin-bottom: 0;
}

.category-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.category-badge {
  background-color: rgba(70, 64, 222, 0.1);
  color: var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  font-weight: 600;
  border-radius: 80px;
  font-size: 16px;
}

.careers-page .job-card .job-title .category-badge {
  min-width: 95px;
}

.single-job .col-md-9 h2 {
  margin-bottom: 20px;
  margin-top: 40px;
}

.single-job .col-md-9 h2:first-child {
  margin-top: unset;
}

.single-job .col-md-9 ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px; /* Adjust space for the icon */
}

.single-job .col-md-9 ul li::before {
  content: "\f058"; /* Unicode for circle-check */
  font-family: "Font Awesome 5 Free"; /* Ensure Font Awesome is loaded */
  font-weight: 100; /* Thin weight */
  position: absolute;
  left: 0;
  color: #28a745; /* Adjust to your preferred color */
}

.single-job .job-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.single-job .job-info .job-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-job .job-info .job-detail p {
  font-size: 16px;
}

.single-job .job-info .job-detail p:last-child {
  font-weight: 600;
}

.filter-category > h4 {
  margin-bottom: 15px;
}

.apply-btn {
  margin-right: 15px;
}

.share-btn {
  padding-left: 15px;
  border-left: 1px solid rgba(242, 242, 242, 1);
}

.application-page .heading-title {
  text-align: left;
  width: 100%;
  margin: 0;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.drop-area {
  border: var(--bs-border-width) solid var(--bs-border-color);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  background: white;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.drop-area p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.upload-btn {
  color: #007bff;
  font-weight: bold;
  cursor: pointer;
}

.file-name {
  font-size: 13px;
  color: #007bff;
  margin-top: 5px;
}

.hero-insights .insight .insight-info h2 {
  font-size: 22px;
}

.privacy-terms {
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  margin: 5px 0px;
  padding: 10px 0px;
}

.privacy-terms h6 {
  font-family: sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  text-transform: capitalize;
}

.privacy-terms h6 {
  font-family: sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  text-transform: capitalize;
}

.privacy-terms p {
  font-family: sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  text-align: justify;
  color: #000000;
}

.privacy-terms p {
  font-family: sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  text-align: justify;
  color: #000000;
}

.privacy-terms h4 {
  font-family: sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
  text-transform: capitalize;
}
.news .input-group {
  border-bottom: var(--bs-border-width) solid rgba(103, 103, 103, 0.5);
}
.news button#button-addon2 {
  background: var(--secondary-color);
  border-radius: 8px;
  border: unset;
  color: white;
  width: 70px;
  height: 50px;
}

.news button#button-addon2:hover {
  background: var(--light-color);
}

.news input.form-control {
  border: unset;
  background: transparent;
}

.news input.form-control::placeholder {
  color: rgba(103, 103, 103, 0.5);
}

.form-control:focus {
  box-shadow: unset;
}

.news h2 {
  font-size: 22px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .heading-title h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.pricing .heading-title p {
  font-size: 22px;
  width: 80%;
}

.pricing .pricing-item {
  background-color: white;
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
  border-top: 5px solid rgba(28, 28, 28, 0.4);
  height: fit-content;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing h4 {
  color: var(--light-color);
  font-size: 42px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
  align-self: flex-start;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 20px 0;
  width: 100%;
}

.pricing h4 span:first-of-type {
  font-size: 42px;
}

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

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 20px;
  font-weight: 500;
}

.pricing .description {
  font-size: 16px;
  text-align: center;
}

.pricing .cta-btn {
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 6px;
  width: 100%;
}

.pricing ul,
.features-card ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}
.pricing .pricing-item.featured ul {
  align-self: flex-start;
}
.pricing ul li,
.features-card ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i,
.features-card ul i {
  color: #059652;
  font-size: 20px;
  padding-right: 3px;
}

.faq-page .features-card {
  gap: 20px;
  padding: 30px 20px;
}

.faq-page h2.feature-title {
  margin-bottom: 10px;
}

.faq-page h2.feature-title + p {
  margin-bottom: 30px;
}

.features-card h3 {
  font-size: 26px;
}

.features-card span {
  color: var(--light-color);
}

.features-page .features-card span {
  color: #000;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

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

.pricing .featured {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -125px;
  border-top: 5px solid Var(--light-color);
}

.col-feature {
  padding-top: 5rem;
}

.pricing .featured .popular {
  background-color: #f9fafb;
  color: var(--light-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

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

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

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

.sign-card {
  background-color: white;
  border: 1px solid rgba(28, 28, 28, 0.2);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  width: 80%;
}

.sign-card p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

li.nav-item {
  padding: 0 !important;
}

.pricing .nav-pills {
  justify-content: center;
}

.pricing .nav-pills .nav-link {
  background-color: white;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  padding: 10px 40px;
}

.pricing .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: white;
  background-color: var(--light-color);
  border: 1px solid var(--light-color);
}

.pricing span.discount {
  background-color: #f9d783;
  padding: 0 8px;
  margin-left: 5px;
  border-radius: 5px;
}

.mega-menu {
  display: none;
}

.about-page .banner {
  height: 500px;
  display: flex;
  align-items: center;
}

.about-page .banner .banner-content {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 30px;
  width: 45%;
  margin-left: 82px;
}

.about-page .banner .banner-content h2 {
  font-size: 34px;
}

.about-page .banner .banner-content p {
  font-size: 22px;
}

.about-section .col-md-6 img {
  width: 100%;
  height: 100%;
}

.about-section .col-md-6 h2 {
  font-size: 26px;
  font-weight: 600;
}

.about-section .col-md-6 p,
.about-section .col-md-6 ul,
.about-section .col-md-6 ul a {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 0;
}

.about-section .col-md-6 ul {
  list-style: disc;
  margin-left: 1.5rem;
}

.about-section .col-md-6 a {
  color: #000;
  display: flex;
  font-size: 18px;
  width: fit-content;
}

.about-section .col-md-6 a:hover {
  color: var(--secondary-color);
  margin-top: auto;
}

.about-page .about-card {
  background-color: white;
  display: flex;
  border-bottom: 4px solid var(--light-color);
}

.about-page .about-card .border-left {
  padding: 20px;
  padding-left: 35px;
  border-left: 1px solid #d1d5db;
  position: relative;
  flex-basis: calc(100% / 3);
}

.about-page .about-card .border-left:first-child {
  border-left: unset;
}

.about-page .about-card .border-left p {
  font-size: 20px;
  line-height: 34px;
}

.about-page .about-card .border-left::before {
  content: "";
  border: 9px solid var(--light-color);
  border-radius: 50%;
  position: absolute;
  top: 25px;
  left: 5px;
}

.contact-info {
  height: 100%;
  padding: 50px;
}

.contact-info .form-title h2 {
  font-size: 34px;
  font-weight: 600;
}

.contact-info .form-title p {
  font-size: 20px;
  color: #e5e7eb;
}

.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact-info ul li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-imgs a img {
  max-width: 30px;
}

.contact-info .footer-social .social-icon {
  background-color: transparent;
  border: 2px solid white;
}

.contact-info .footer-social .social-icon:hover {
  background-color: var(--light-color);
  border: 2px solid var(--light-color);
}

.partners-page .partners-info {
  padding-top: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.partners-page .partners-info h2 {
  font-size: 44px;
  text-align: center;
}

.partners-page .partners-info p {
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  width: 80%;
}

.partners-page .heading-title h2 {
  font-size: 40px;
}

section.partners-banner.default-bg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: white;
  padding-top: 80px;
  padding-bottom: 60px;
  padding-inline: 20%;
  text-align: center;
}
Ffeatu section.partners-banner.default-bg p {
  font-size: 20px;
}

.mockup-title {
  margin-bottom: 50px;
  padding-left: 50px;
}

.mockup-title-flex {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.hybrid-page .mockup-title {
  margin-top: 0;
}

.mockup-title h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
}

.mockup-content {
  gap: 30px;
  padding-left: 50px;
}

.mockup-title-r {
  padding-left: 0;
  padding-right: 50px;
}

.mockup-title-l {
  padding-left: 50px;
  padding-right: 0;
}

.mockup-title p,
.mockup-content p {
  font-size: 18px;
  line-height: 32px;
}

.mockup-content h3 {
  font-size: 20px;
  font-weight: 600;
}

.solution-page .col-md-5,
.solution-page .col-md-7 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-page .col-md-5 {
  align-items: center;
}

.solution-page .col-md-5 img {
  max-width: 100%;
}

.internal-events {
  display: flex;
  height: 500px;
  gap: 1px;
}

.two-events {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1px;
  flex: 1;
}

.two-events.equal {
  flex-basis: 50%;
}

.event-img {
  display: flex;
  align-items: flex-end;
}

.event-img h2 {
  color: white;
  font-size: 20px;
  height: fit-content;
  margin-bottom: 0;
}

.two-events .event-img h2 {
  padding: 20px;
}

.two-events:first-child .event-img:first-child {
  height: 60%;
}

.two-events:first-child .event-img:last-child {
  height: 40%;
}

.two-events:nth-child(2) .event-img:first-child {
  height: 30%;
}

.two-events:nth-child(2) .event-img:last-child {
  height: 70%;
}

.two-events:last-child .event-img:first-child {
  height: 70%;
}

.two-events:last-child .event-img:last-child {
  height: 30%;
}

.two-events.equal .event-img {
  height: 50% !important;
  overflow: hidden;
}

.event-btn {
  display: flex;
  justify-content: center;
}

.solution-page div#v-pills-tab {
  padding: 30px;
  flex-basis: 25%;
  gap: 35px;
  padding-left: 0;
}

.solution-page div#v-pills-tabContent {
  padding: 30px;
  flex-basis: 75%;
  padding-left: 0;
  color: white;
}

.solution-page div#v-pills-tabContent .mytab-content p {
  font-size: 20px;
  margin-bottom: 10px;
}

.solution-page div#v-pills-tabContent .mytab-content ul {
  padding-left: 20px;
}

.solution-page div#v-pills-tabContent .mytab-content li {
  font-size: 20px;
  list-style: disc;
  margin-bottom: 15px;
}

.solution-page .nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.solution-page .nav-pills .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.solution-page .nav-pills .nav-link {
  color: white;
}

.solution-page.survey-page .nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.solution-page.survey-page .nav-pills .nav-link:hover {
  border-bottom: 2px solid var(--light-color);
  border-radius: 0;
}

.solution-page.survey-page .nav-pills .nav-link {
  color: #000;
  margin-right: 15px;
}

.solution-page .nav-content {
  text-align: left;
}

.solution-page .nav-pills .nav-link .nav-content {
  border-top: 3px solid var(--dark-color);
}

.solution-page .nav-pills .nav-link.active .nav-content,
.nav-pills .show > .nav-link .nav-content,
.solution-page .nav-pills .nav-link:hover .nav-content {
  border-top: 3px solid var(--light-color);
}

.solution-page .nav-content h5 {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.solution-page .nav-content p {
  font-size: 16px;
  color: #e5e7eb;
}

.support-section {
  padding: 30px 0;
}

.support {
  padding: 0 30px;
  gap: 20px;
  flex: 1;
  border-left: 0.5px solid #e9e9ea;
}

.support:first-child {
  border-left: unset;
}

.support p {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.select-btn {
  background-color: #e5e7eb;
  color: #4b5563;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  cursor: pointer;
  border: none;
  gap: 15px;
}

.rooms {
  padding: 20px;
  background-color: rgba(204, 204, 204, 0.5);
  text-align: left;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 46%;
  left: 50%;
  border-radius: 5px;
}

.rooms h2 {
  font-size: 20px;
  margin-bottom: 0;
}

.room {
  background-color: white;
  padding: 10px;
}

.room .primary-btn {
  width: fit-content;
  padding: 2px 22px;
}

.contact-section h2,
.contact-section .form-content button {
  margin-top: 25px;
}

.contact-page .contact-section h2 {
  margin-top: 0;
}

.video-page .job-card {
  display: flex;
  gap: 20px;
}

.video-page .job-title {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  text-align: left;
  width: 65%;
}

.video-page .job-img {
  position: relative;
  width: 35%;
}

.video-page .job-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-page .job-img a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-page .job-title p .date {
  align-self: flex-end;
}

.payment img {
  max-width: 100%;
}

.solutions-categories {
  gap: 1px;
}

.solution-category {
  position: relative;
  flex: 1;
}

.solution-category img {
  width: 100%;
  height: 100%;
}
.solution-info h2 {
  font-size: 20px;
}

.two-events .event-img .solution-info h2 {
  padding: 0;
}

.solution-info a {
  color: white;
  width: fit-content;
}

.solution-info a:hover {
  color: var(--secondary-color);
}

.solution-info p {
  font-size: 18px;
  display: none;
}

.solution-info {
  position: absolute;
  bottom: 0;
  height: 20%;
  width: 100%;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: height 0.4s ease;
}

.solutions-categories .solution-info {
  background-color: rgba(0, 0, 0, 0.4);
}

.solutions-categories .solution-category:hover .solution-info,
.solutions-categories .event-img:hover .solution-info {
  height: 100%;
}

.event-hidden {
  display: none;
  margin-top: 20px;
  width: 80%;
}

.event-hidden p {
  display: block;
  margin-bottom: 5px;
}

.event-hidden ul {
  list-style: disc;
  padding-left: 20px;
}

.solutions-categories .solution-category:hover .solution-info p,
.solutions-categories .event-img:hover .solution-info .event-hidden {
  display: block;
}

.event-pic {
  position: relative;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.event-pic img {
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.event-lable {
  position: absolute;
  top: 10px;
  color: white;
  right: 10px;
  background-color: rgba(209, 213, 219, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 12px;
}

.event-content a {
  color: #000;
  font-size: 20px;
  cursor: pointer;
}

.event-content a:hover {
  color: var(--secondary-color);
}

.event-content p {
  font-size: 18px;
  font-weight: 500;
}

.filter-card > .d-flex p {
  margin-bottom: 0;
}

.filter-card > .d-flex a {
  color: #000;
  text-decoration: underline;
}

.heading-title h6 {
  text-transform: uppercase;
}

.documentation-page .col-md-8 {
  padding-inline: 0;
}

/* Fix for submenu arrow rotation */
.mobile-menu .drop-down .sub-menu .drop-down > a i {
  transition: transform 0.3s ease;
}

.mobile-menu .drop-down .sub-menu .drop-down.active > a i {
  transform: rotate(180deg);
}

/* Mobile Menu Arrow Rotation */
.mobile-menu .drop-down > a i {
  transition: transform 0.3s ease;
}

.mobile-menu .drop-down.active > a i {
  transform: rotate(180deg);
}

/* Fix for submenu arrow rotation - more specific targeting */
.mobile-menu .drop-down .sub-menu .drop-down > a i {
  transition: transform 0.3s ease;
  pointer-events: none;
}

.mobile-menu .drop-down .sub-menu .drop-down.active > a i {
  transform: rotate(180deg);
}

/* Ensure parent arrow doesn't affect child arrows */
.mobile-menu .drop-down.active > a i {
  transform: rotate(180deg);
}

.mobile-menu .drop-down.active .sub-menu .drop-down > a i {
  transform: none;
}

.mobile-menu .drop-down.active .sub-menu .drop-down.active > a i {
  transform: rotate(180deg);
}

.menu-toggle .toggle-links > a {
  display: block;
  padding: 0;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.menu-toggle .toggle-links > a i {
  color: var(--secondary-color);
  font-size: 18px;
  margin-left: 0;
  margin-top: 0;
}

.contact-page .col-md-7 {
  padding: 0;
}

.solutions-categories .solution-info h2 {
  margin-bottom: 0;
}

.solutions-categories .solution-category:hover .solution-info h2 {
  margin-bottom: 10px;
}

.header > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header > ul > li:last-child > a {
  gap: 4px;
}

.drop-down-arrow:last-child > a::after {
  margin-left: 3px;
}

.form-content form {
  position: relative;
}

.contact-section .padding-30 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}

#videoModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-wrapper {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.video-wrapper iframe {
  width: 100%;
  height: 450px;
}

.video-wrapper button {
  position: absolute;
  top: -15px;
  right: -15px;
  background: red;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}

.insight-box .insight-image {
  overflow: hidden;
}

.insight-box .insight-image img {
  transition: transform 0.3s ease-in-out;
}

.insight-box:hover .insight-image img {
  transform: scale(1.1);
}

.cases .case .case-bg {
  background-size: 100%;
  background-position: center;
  transition: background-size 0.4s ease-in-out;
}

.cases .case:hover .case-bg {
  background-size: 110%;
}

.vision-section {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.vision-section .vision-card {
  background-color: #fff;
  padding: 30px 45px;
  border: 1px solid #00000010;
}

.about-page .features-card {
  position: relative;
  padding-top: 45%;
  border-radius: 10px;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-page .features-card img {
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: #f7f9fb;
  padding: 10px;
  width: 35%;
  border-radius: 10px;
}

.about-page .features-card p {
  margin-bottom: 0;
}

/* search bar */

.search-btn,
.search-input button {
  background-color: unset;
  border: unset;
  padding: 0;
}

.search-input button {
  position: absolute;
}

.breadcrumb .search-input button {
  right: -6px;
  background-color: var(--light-color);
  color: white;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  gap: 15px;
  border-radius: 4px;
  bottom: 7px;
  transition: all 0.2s linear;
  cursor: pointer;
  right: 10px;
  border: none;
}

.breadcrumb .search-input button:hover {
  background-color: var(--secondary-color);
}

.breadcrumb .search-input button {
  position: unset;
}

.search-btn i {
  color: #000;
  font-size: 18px;
}

.search-input form {
  width: 100%;
}

.search-input form input {
  padding-left: 30px;
  width: 100%;
}

.modal .search-input {
  border-radius: 999px;
}

#exampleModal .modal-dialog {
  top: 50%;
  transform: translateY(-50%);
}

#exampleModal .modal-content {
  background-color: transparent;
}

/* search page */
.search-page {
  padding-top: 150px;
  padding-bottom: 50px;
}

.search-page .search-bar,
.modal .search-bar {
  display: flex;
  width: 100%;
  margin-bottom: 63px;
}

.search-page .search-bar .filter,
.search-page .search-input,
.modal .search-input {
  border: 1px solid #cccccc;
  padding: 15px;
}

.search-page .search-input,
.modal .search-input {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  flex-basis: 55%;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

i.fa-solid.fa-magnifying-glass.search-icon {
  font-size: 17px;
  margin-right: 8px;
  color: #000;
}

.clear-icon {
  font-size: 15px;
  color: #000;
  cursor: pointer;
  display: none;
}

.search-page .search-input input,
.modal .search-input input {
  border: none;
  outline: none;
  flex: 1;
  background: transparent;
}

.search-page .filter {
  display: flex;
  justify-content: space-around;
  flex-basis: 45%;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

.search-page .filter ul.filter-values {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.search-page .filter ul.filter-values li {
  color: #191919;
  list-style: none;
}

.search-page .filter ul.filter-values li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 12px;
}

.search-page .filter ul.filter-values li.active a,
.search-page .filter ul.filter-values li:hover a {
  background-color: var(--light-color);
  color: white;
  border-radius: 999px;
}

.search-page .results-section {
  padding: 0 15px;
}

.search-page .results-section > p {
  font-size: 16px;
  color: var(--light-color);
}

.search-page .results-section h5 {
  font-size: 14px;
  font-weight: 600;
}

.search-page .results-section .result:not(:last-child) {
  margin-bottom: 50px;
}

.search-page .results-section .result h2 > a {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #000;
}

.search-page .results-section .result h2 > a:hover {
  color: var(--light-color);
}

.search-page .search-divider {
  border: 1px solid var(--light-color);
  margin: 20px 0;
  padding: 0 1.5rem;
}

.search-page .results-section .result p {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 16px;
}

.search-page .results-section .result a {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.search-page .results-section .result a:hover {
  color: var(--dark-color);
}

.search-page .search-input form,
.modal .search-input form {
  position: relative;
  margin-bottom: 0;
}

.search-page .search-input button,
.modal .search-input button {
  height: 100%;
}

.search-page .search-input form input,
.modal .search-input form input {
  height: 100%;
}

.faq-page .hero-content {
  gap: 10px;
}

.faq-page .hero-content h2,
.faq-page .hero-content p {
  margin-bottom: 0;
}

.discount-price {
  display: inline;
  text-decoration: line-through;
  margin-right: 15px;
}

.single-blog ul,
.single-blog table {
  margin: 10px 0 20px 0;
}

.single-blog ul {
  list-style: unset;
  padding-left: 20px;
}

.inner-form lable {
  color: #000;
}

.inner-form input {
  background-color: transparent;
}

.inner-form input:focus {
  box-shadow: none;
}

.inner-form + .wpcf7-response-output {
  position: unset !important;
  bottom: unset !important;
  left: unset !important;
  transform: unset !important;
  width: max-content !important;
}


.single-blog .post-content h1 {
  margin-bottom: 0.75em;
}

.single-blog .post-content h2,
.single-blog .post-content h3 {
  margin-top: 1.35em;
  margin-bottom: 0.75em;
  font-weight: 600;
}

.single-blog .post-content p {
  margin-bottom: 1.2em;
}

.single-blog .post-content ul {
  margin-top: calc(1.66em);
  margin-right: auto;
  margin-bottom: calc(1.66em);
  margin-left: 35px;
}

.single-blog .post-content ul li {
  list-style: disc;
  margin-bottom: 0.5em;
}

.single-blog .post-content a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 600;
}

.single-blog .post-content a:hover {
  color: #000;
}

.single-blog .post-content blockquote:not([class]) {
  border-left: 3px solid var(--dark-color);
  margin: 1.7em auto;
  padding: 0.5em 1.5em;
  color: #000;
}

.single-blog .post-content blockquote p {
  margin-bottom: 0;
}

.single-blog .post-content table {
  font-size: calc(0.6923076923em + 4px);
  margin: 2em 0;
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}

.single-blog .post-content thead,
.single-blog .post-content tbody,
.single-blog .post-content tr,
.single-blog .post-content th,
.single-blog .post-content blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
  font-family: inherit;
  quotes: none;
}


.single-blog .post-content th,
.single-blog .post-content td {
  background: rgba(0, 0, 0, 0.05);
  padding: 8px 10px;
  border: 1px solid #e2e2e2;
  text-align: initial;
  color: #000;
}

.single-blog .post-content td {
  background: transparent;
}

/* Adjust layout for 1920px */
@media (min-width: 1920px) {

}

.insight-content h2 {
  color: #000;
}