/* general style start */
:root {
  --dark-color: #1d2329;
  --light-color: #00b8ff;
  --gray-color: #7c7c7c;
}

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

ul {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
  font-weight: 400;
}

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

ul {
  list-style: none;
}

.row {
  overflow: hidden;
}

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

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

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

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

.text-right {
  text-align: right;
}

.primary-btn {
  background-color: var(--light-color);
  padding: 8px 25px;
  color: var(--dark-color);
  width: 170px;
  text-decoration: none;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
}

.primary-btn:hover {
  background-color: var(--gray-color);
  color: var(--dark-color);
}
/* general style end */
.dark-bg,
.bg-dark {
  background-color: var(--dark-color) !important;
}

.gray-bg {
  background-color: var(--gray-color);
}
/* header style start */
header {
  position: absolute;
  width: 100%;
  padding: 32px;
  z-index: 999;
}

.header {
  display: flex;
  justify-content: space-between;
  background-color: transparent;
}

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

.header ul a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.dark-header.header ul a {
  color: #000;
}

.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: 50px;
  display: flex;
  position: absolute;
  gap: 80px;
  top: 25px;
  left: -450px;
  display: none;
  z-index: 999;
}

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

.menu-toggle.languages-list {
  left: 0;
  padding: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.menu-toggle.insights-list {
  right: 0;
  padding: 0;
  width: fit-content;
  left: -200%;
  top: 2.5rem;
  box-shadow: 0px 4px 7.1px rgba(0, 0, 0, 0.25);
}

.menu-toggle.insights-list .toggle-links {
  text-align: left;
}

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

.menu-toggle.languages-list li {
  margin-bottom: 10px;
  padding-bottom: 5px;
}

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

.menu-toggle.insights-list .toggle-links li {
  margin-bottom: 0;
  padding: 15px 50px 15px 35px;
  border-bottom: 1px solid #ccc;
  transition: all 0.5 ease-out;
}

.menu-toggle.insights-list .toggle-links li:hover {
  background-color: #dbdbdb;
  border-bottom: unset;
  padding-left: 40px;
}

.menu-toggle.insights-list .toggle-links li a:hover {
  color: #000;
}

.menu-toggle.insights-list .toggle-links li:hover:first-child {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.menu-toggle.insights-list .toggle-links li:hover:last-child {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.menu-toggle.insights-list .toggle-links li:last-child {
  border-bottom: unset;
}

.toggle-links {
  width: max-content;
}

.menu-toggle.languages-list .toggle-links {
  text-align: center;
}

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

.menu-toggle .toggle-links li a {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

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

.menu-toggle .nav {
  background-color: rgba(51, 61, 72, 1);
  padding: 20px;
  flex-basis: 30%;
}

.menu-toggle .tab-content {
  flex-basis: 70%;
}

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

.drop-down-arrow.mega .menu-toggle {
  width: 100vw;
  left: 0;
  top: 65px;
  gap: 0;
  padding: 0;
  border-radius: 0;
}

.menu-toggle .nav-pills .nav-link {
  color: white;
  text-align: left;
}

.menu-toggle .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: black;
  background-color: white;
  text-align: left;
}

.menu-toggle .nav h3,
.menu-toggle .menu-services .menu-service h3 {
  font-size: 16px;
  font-weight: 600;
}

.menu-toggle .menu-services .menu-service h3,
.menu-toggle .menu-services .menu-service p {
  color: black;
  margin-bottom: 0;
}

.menu-toggle .menu-services .menu-service:hover h3 {
  color: var(--light-color);
}

.menu-toggle .nav p,
.menu-toggle .menu-services .menu-service p {
  font-size: 14px;
  font-weight: 400;
}

.menu-toggle .menu-services {
  display: flex;
  flex-wrap: wrap;
}

.menu-toggle .menu-services .menu-service {
  padding: 20px;
  border-left: 2px solid #f9f9f9;
  border-bottom: 2px solid #f9f9f9;
  width: calc(100% / 3);
  cursor: pointer;
  min-height: 273px;
}

.menu-toggle .menu-services .menu-service a {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-toggle .menu-services .menu-service:first-child,
.menu-toggle .menu-services .menu-service:nth-child(4) {
  border-left: none;
}

.menu-toggle .menu-services .menu-service:nth-child(4),
.menu-toggle .menu-services .menu-service:nth-child(5) {
  border-bottom: none;
}

.menu-service .menu-img img {
  max-width: 55px;
}

.menu-service .menu-img {
  width: fit-content;
  background-color: rgba(244, 245, 247, 1);
  padding: 8px;
  border-radius: 5px;
  transition: all 0.2s linear;
}
.menu-toggle .menu-services .menu-service:hover {
  background-color: #f6f6f6;
}
.menu-toggle .menu-services .menu-service:hover .menu-img {
  background-color: var(--light-color);
}

.menu-toggle .menu-services .menu-service:hover .menu-img img {
  filter: brightness(100);
}

.header ul li,
.header .logo {
  padding-bottom: 15px;
}

.header ul li:hover > a {
  border-bottom: 2px solid var(--light-color);
}

.fixed-icon,
.booking-bg {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: var(--light-color);
  z-index: 999;
  padding: 10px;
  border-radius: 50%;
  width: 75px;
}

.fixed-icon img {
  max-width: 100%;
}

.booking-bg {
  background-color: white;
  color: #000;
  padding: 8px;
  border-radius: 15px;
  width: 240px;
  right: 95px;
  bottom: 95px;
}

.booking-bg h2 {
  font-size: 16px;
  padding-right: 25px;
  padding-top: 5px;
}

.booking-bg a {
  font-size: 14px;
  text-decoration: none;
  color: var(--light-color) !important;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
}

.booking-bg a img {
  max-width: 30px;
}

.booking-bg .position-relative .position-absolute {
  top: 0;
  right: 0;
  margin-top: 0;
}
/* 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;
}

.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;
}

.hero-content,
.breadcrumb-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding-left: 30px;
  padding-right: 100px;
  padding-top: 170px;
}

.locations-page .hero-content {
  top: 0;
  z-index: 99;
}

.hero-content h2,
.breadcrumb-content h2 {
  font-size: 35px;
  font-weight: 700;
  padding-bottom: 20px;
}
.breadcrumb-content h2 {
  font-size: 32px;
}
.hero-content p,
.breadcrumb-content p {
  font-size: 22px;
  line-height: 30px;
  text-align: justify;
  hyphens: auto;
}

.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(124, 124, 124, 0.7);
  opacity: 0.7;
}

.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: 50%;
  margin: 0 auto 40px;
  color: #000;
}

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

.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: 18px;
}

.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: url(../images/services/service-breadcrumb-14.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  gap: 50px;
  padding: 40px 103px 88px;
}

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

.services-two .services-title h2 {
  font-weight: 600;
}

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

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

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

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

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

.service .service-title span,
.case-studies .case > span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 16px;
  font-weight: 700;
  text-decoration: double;
  text-transform: uppercase;
}

.case-studies .case > span {
  position: absolute;
  color: white;
  z-index: 99;
  height: 100%;
  text-align: center;
  font-size: 18px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-studies .case .case-content h2 {
  font-size: 28px;
}

.case-studies .case.active > span {
  display: none;
}

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

.service.active .service-content {
  display: flex;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  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: 14px;
  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: 1px solid;
  font-size: 16px;
  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: 16px;
  font-weight: 600;
}

.service-bottom a:hover {
  color: var(--light-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;
  background-color: white;
  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%;
  background-color: rgba(159, 202, 255, 1);
  color: rgba(53, 111, 255, 1);
  border-radius: 15px;
}

.next-btn:hover,
.prev-btn:hover {
  background-color: var(--dark-color);
}

.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;
}

/* services section end */

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

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

.insights {
  display: flex;
}

.insight-box {
  position: relative;
  min-height: 500px;
}

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

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

.insight-box-3 {
  width: 30%;
}

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

.insight-box-2 img {
  height: 65%;
  width: 100%;
}

.insight-box-3 img {
  height: 70%;
  width: 100%;
}

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

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

.insight-box-2 .insight-content {
  height: 35%;
}

.insight-box-3 .insight-content {
  height: 30%;
}

.insight-content .primary-btn {
  color: white;
  width: fit-content;
  padding: 8px;
  background: rgb(0, 184, 255, 0.15);
  color: var(--light-color);
  border-radius: 4px;
  font-size: 16px;
}

.insight-content.insight-content-2 .primary-btn {
  align-self: flex-end;
}

.insight-content a {
  font-size: 22px;
  color: #000;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 0;
  text-decoration: none;
  cursor: pointer;
}

.insight-content a:hover {
  color: var(--light-color);
}
/* 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: 16px;
}

/* testimonial section end */

/* partners section start */
.partners {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  justify-content: center;
}

.single-service-page .partners,
.how-page .partners {
  width: 85%;
  margin: 50px auto 0;
  align-items: center;
}
.partners-img {
  flex-basis: calc(100% / 7);
}
.partners-img img {
  width: 100%;
  height: auto;
}
/* partners section end */
/* footer start */

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

footer ul {
  padding-left: 0;
  margin-top: 30px;
}

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

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

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

footer ul li a {
  color: white;
}

.footer h3 {
  font-weight: 600;
  font-size: 18px;
  position: relative;
  color: white;
}

.footer h3:after {
  content: "";
  width: 74px;
  height: 3px;
  position: absolute;
  bottom: -10px;
  left: 0;
  background: var(--light-color);
}

.footer .services {
  padding-right: 30px;
  flex-basis: 35%;
}

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

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

.footer-service img {
  max-width: 75px;
  height: auto;
}

.footer-service a {
  color: white;
  font-size: 16px;
  margin-bottom: 0;
}

.footer-service .service-img {
  flex-basis: 20%;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 30%;
}

.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: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
}

.footer-social .social-icon i {
  color: var(--dark-color);
}

.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: space-between;
  padding-top: 30px;
  padding-bottom: 50px;
}

.footer-bottom p {
  color: #d0d0d0;
  font-size: 16px;
}

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

/* footer end */

/* single service page */
.breadcrumb {
  height: 550px;
  margin: 0;
}

.breadcrumb .overlay,
.case .overlay {
  background-color: rgb(0, 0, 0, 0.6);
}
.service-bg .overlay {
  background-color: rgb(0, 0, 0, 0.3);
}
.locations-page .overlay,
.specialize-bg .overlay,
.insights-page .overlay,
.single-insight .breadcrumb .overlay {
  background-color: rgb(0, 0, 0, 0.8);
}

.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;
}

.service-1,
.service-2,
.service-3,
.service-4,
.service-5,
.service-6,
.service-7,
.service-8,
.service-9,
.service-10,
.service-11,
.service-12,
.service-13,
.service-14,
.service-15,
.service-16,
.single-insight,
.csr-page,
.social-bg,
.dafult-bg {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.service-1 {
  background-image: url("../images/services/service-breadcrumb-1.webp");
}
.service-2 {
  background-image: url("../images/services/service-breadcrumb-2.webp");
}

.service-3 {
  background-image: url("../images/services/service-breadcrumb-3.webp");
}
.service-4 {
  background-image: url("../images/services/service-breadcrumb-4.webp");
}
.service-5 {
  background-image: url("../images/services/service-breadcrumb-5.webp");
}
.service-6 {
  background-image: url("../images/services/service-breadcrumb-6.webp");
}
.service-7 {
  background-image: url("../images/services/service-breadcrumb-7.webp");
}

.service-8 {
  background-image: url("../images/services/service-breadcrumb-8.webp");
}
.service-9 {
  background-image: url("../images/services/service-breadcrumb-9.webp");
}
.service-10 {
  background-image: url("../images/services/service-breadcrumb-10.webp");
}
.service-11 {
  background-image: url("../images/services/service-breadcrumb-11.webp");
}
.service-12 {
  background-image: url("../images/services/service-breadcrumb-12.webp");
}
.service-13 {
  background-image: url("../images/services/service-breadcrumb-13.webp");
}
.service-14 {
  background-image: url("../images/services/service-breadcrumb-14.webp");
}
.service-15 {
  background-image: url("../images/services/service-breadcrumb-15.webp");
}
.service-16 {
  background-image: url("../images/services/service-breadcrumb-16.webp");
}
.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 {
  position: absolute;
  z-index: 100;
  padding: 100px;
}
.single-case .breadcrumb .breadcrumb-content {
  padding: 50px;
}
.breadcrumb .breadcrumb-content .breadcrumb-title {
  position: relative;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}

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

.breadcrumb .breadcrumb-content .breadcrumb-title h2 {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding-bottom: 0;
  margin-bottom: 0;
}

.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;
  box-shadow: unset;
}

.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;
}

.single-service .service-card h3 {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* help section */
.help,
.technologies {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.technologies {
  gap: 0;
}

.help .help-title,
.technologies .technologies-title {
  flex-basis: 50%;
  height: 100%;
}

.help .help-title h2 {
  margin-bottom: 20px;
}

.help .help-title p,
.technologies .technologies-title p {
  text-align: justify;
  hyphens: auto;
}

.help .help-column,
.technologies .technologies-column {
  flex-basis: 60%;
  display: flex;
  flex-wrap: wrap;
  gap: 10%;
}

.help .help-column {
  flex-basis: 80%;
}

.technologies .technologies-column {
  gap: 50px 20px;
  align-items: center;
  flex-basis: 40%;
}

.help .help-column > * {
  flex-basis: 45%;
}

.technologies .technologies-column > * {
  flex-basis: 20%;
  text-align: center;
}

.grow-image .technologies .technologies-column > * {
  flex-grow: 1;
}

.grow-image .technologies .technologies-column {
  justify-content: center;
  flex-basis: 35%;
}

.grow-image .technologies .technologies-column .technologies-image img {
  max-width: 80%;
  height: auto;
}

.technologies .technologies-column .technologies-image img {
  max-width: 100%;
  height: auto;
}

.items-3 .technologies .technologies-column > * {
  flex-basis: 30%;
}
.help .help-content h2 {
  color: var(--light-color);
  font-weight: 800;
  margin-bottom: 15px;
}

.help .help-content h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}

.help .help-content p {
  color: #bbbbbb;
  text-align: justify;
  hyphens: auto;
  font-weight: 500;
}

/* 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;
  gap: 10px;
  position: relative;
}

.cases .case {
  flex-basis: 16%;
  position: relative;
}

.case.active {
  flex-basis: 50%;
  border-radius: 15px;
}

.case {
  background-size: cover;
  background-position: 50% 50%;
  height: 430px;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
}

.case .overlay {
  border-radius: 15px;
}

.case:first-child {
  background-image: url(../images/cases/1.webp);
}

.case:nth-child(2),
.case:nth-child(3) {
  background-image: url(../images/cases/2.webp);
}

.case:nth-child(4) {
  background-image: url(../images/cases/1.webp);
}

.case .case-content {
  position: absolute;
  left: 5%;
  bottom: 5%;
}

.case .case-content {
  position: absolute;
  left: 5%;
  bottom: 5%;
  font-weight: 600;
  z-index: 99;
  display: none;
  transition: all 0.1s ease-out;
}

.case .case-content.active {
  display: block;
}

.case.case.active .case-content a {
  text-decoration: none;
  color: white;
}

.case.case.active .case-content a:hover {
  color: var(--light-color);
}

.cases a.service-arrow {
  top: 5%;
}

/* featured section */
.featured .feature-card {
  height: 100%;
}

.featured .feature-card,
.featured .feature-card .feature-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured .feature-card .feature-content {
  padding-right: 18%;
  flex: 1;
  justify-content: space-between;
}
.featured .feature-card .feature-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

.featured .feature-card .feature-content p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 0;
}

.featured .feature-card a.primary-btn,
.form-content .primary-btn,
.insight-card a.primary-btn {
  font-size: 16px;
}

.insight-card a.primary-btn {
  margin-top: auto;
}

.featured .feature-card a.primary-btn,
.insight-card a.primary-btn {
  width: 160px;
  background-color: transparent;
  border: 2px solid var(--light-color);
  padding: 10px 20px;
  border-radius: 8px;
}

.featured .feature-card a.primary-btn:hover,
.insight-card a.primary-btn:hover {
  background-color: var(--light-color);
  color: white;
}
/* form section */
.form-content .primary-btn {
  display: unset;
  color: white;
  border-radius: 8px;
  margin-top: 20px;
}

.locations-page .form-content .primary-btn {
  margin-top: 0;
  padding-top: 6px;
  padding-bottom: 6px;
}

.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: 16px;
  font-weight: 600;
}

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

.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 */
}

.specialize-section > div {
  gap: 40px;
  padding: 20px 0;
}

.specialize-section div#v-pills-tab {
  gap: 20px;
  width: 30%;
  max-height: 355px;
  flex-wrap: nowrap;
  overflow: scroll;
  scrollbar-width: none;
}

.specialize-section .nav-link {
  background-color: #ededed;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  min-height: 55px;
  border-radius: 8px;
  text-align: left;
  padding-left: 34px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.specialize-section .nav-link img {
  width: 25px;
  height: auto;
}

.specialize-section .nav-link.active {
  background-color: #dbdbdb;
  color: #000;
}

.specialize-section .single-service .service-card {
  padding-top: 150px;
  padding-bottom: 50px;
}

.specialize-section .tab-content {
  width: 70%;
}

.specialize-section .specialize-content {
  display: flex;
  gap: 50px;
  align-items: center;
  height: 375px;
  border-radius: 8px;
}

.specialize-section .specialize-content .overlay {
  border-radius: 8px;
}

.specialize-content .specialize-img {
  width: 40%;
}

.specialize-section .specialize-content.specialize-bg .specialize-img {
  width: 100%;
}

.specialize-section .tab-pane .specialize-content.specialize-bg {
  background-size: cover;
  background-position: 50% 50%;
}
.specialize-section .tab-pane:first-child .specialize-content.specialize-bg {
  background-image: url("../images/singleService/specialize-11-1.webp");
}
.specialize-section .tab-pane:nth-child(2) .specialize-content.specialize-bg {
  background-image: url("../images/singleService/specialize-11-2.webp");
}
.specialize-section .tab-pane:nth-child(3) .specialize-content.specialize-bg {
  background-image: url("../images/singleService/specialize-11-3.webp");
}
.specialize-section .tab-pane:nth-child(4) .specialize-content.specialize-bg {
  background-image: url("../images/singleService/specialize-11-4.webp");
}
.specialize-section .tab-pane:nth-child(5) .specialize-content.specialize-bg {
  background-image: url("../images/singleService/specialize-11-5.webp");
}
.specialize-section .tab-pane:nth-child(6) .specialize-content.specialize-bg {
  background-image: url("../images/singleService/specialize-11-6.webp");
}
.specialize-section .tab-pane:nth-child(6) .specialize-content.specialize-bg {
  background-image: url("../images/singleService/specialize-11-6.webp");
}

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

.specialize-content .specialize-info {
  width: 50%;
}

.specialize-content.specialize-bg .specialize-info {
  width: 65%;
  padding: 0 30px;
}

.specialize-content .specialize-info h2 {
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 20px;
}

.specialize-content .specialize-info p {
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  color: #313131;
  text-align: justify;
  hyphens: auto;
}

.specialize-content.specialize-bg .specialize-info p {
  color: white;
}

/* 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: 14px;
  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: 16px;
  color: var(--light-color);
}

.results-section h5 {
  font-size: 14px;
  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(--light-color);
}

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

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

.results-section .result a {
  color: var(--light-color);
  font-size: 16px;
  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: 18px;
  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: 14px;
  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(--light-color);
}

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

.insights-page .insight-card .insight-info a:hover {
  color: var(--light-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: 18px;
  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: 16px;
  font-weight: 600;
  padding: 2.5rem 0;
}

.insights-page .insights-categories p {
  margin-bottom: 0;
  font-size: 16px;
  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: 18px;
  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: 16px;
  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: 24px;
  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: 16px;
  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: 18px;
  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;
}

.case-card a.primary-btn {
  color: white;
  border-radius: 5px;
}

.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: 200px;
}

.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-right: 45px;
  padding-left: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.single-case .padding-case h5 {
  margin-bottom: 1rem;
}

.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;
}

/* how we work page */
.how-page .breadcrumb-content p {
  font-size: 25px;
}

.how-page .case-card {
  padding-left: 0;
  padding-right: 25px;
}

.how-page .padding-case:last-child .case-card {
  padding-left: 25px;
  padding-right: 0;
}

.how-page .cooperate-section .heading-title {
  width: 100%;
  margin: 0 auto 50px;
  text-align: left;
}

.how-page .cooperate-section .case-content {
  padding-right: 24px;
}

.how-page .cooperate-section .case-content h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 25px;
}

.how-page .cooperate-section .case-content p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.how-page .cooperate-section .case:first-child {
  background-image: url("../images/how/cooperate-1.webp");
}

.how-page .cooperate-section .case:nth-child(2) {
  background-image: url("../images/how/cooperate-2.webp");
}

.how-page .cooperate-section .case:nth-child(3) {
  background-image: url("../images/how/cooperate-3.webp");
}

.how-page .cooperate-section .case:nth-child(4) {
  background-image: url("../images/how/cooperate-4.webp");
}

.how-page .case .overlay,
.services-page .breadcrumb .overlay,
.single-case .breadcrumb .overlay {
  background-color: rgb(0, 0, 0, 0.8);
}

/* services page */
.dafult-bg.service-bg {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 270px;
  background-size: cover;
  background-position: 50% 50%;
}

.dafult-bg.service-bg .bg-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-left: 30px;
  padding-bottom: 30px;
  z-index: 99;
}

.service-bg h2 {
  margin-bottom: 0;
  font-size: 110px;
  line-height: 90px;
  color: rgba(247, 249, 251, 1);
  font-family: "DM Serif Text", serif;
}

.service-bg p {
  font-size: 45px;
  font-weight: 600;
  line-height: 60px;
  color: rgba(224, 224, 224, 1);
  margin-bottom: 0;
}

.services-page p.service-excerpt {
  font-size: 16px;
  line-height: 25px;
  margin-top: 15px;
}

.services-page a.service-btn {
  background-color: white;
  color: var(--light-color);
  border: 1px solid var(--light-color);
  font-size: 18px;
  font-weight: 800;
  margin-top: 25px;
  width: fit-content;
  border-radius: 8px;
}

.services-page a.service-btn:hover {
  background-color: var(--light-color);
  color: white;
}

/* video section */
.clients-video {
  width: 65%;
  height: auto;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.clients-video video {
  width: 100%;
  height: auto;
}

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

.search-input button {
  position: absolute;
}

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

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

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

.modal .form-section .heading-title {
  margin: 0 auto 20px;
}

.modal .form-section .heading-title h2 {
  padding: 0;
  margin-bottom: 0;
}

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

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

@media (min-width: 768px) {
  #contactModal .modal-dialog {
    right: 0;
    position: absolute;
    margin: 0;
    height: 100vh;
    transform: translate(100%, 0);
  }

  #contactModal.modal.show .modal-dialog {
    transform: none;
  }

  #contactModal .modal-content {
    border: unset;
    border-radius: unset;
    height: 100%;
  }
}
/* about page */
.about-banner p {
  color: white;
  text-align: center;
  z-index: 99;
  font-size: 25px;
  line-height: 41px;
  font-weight: 500;
}

.about-section p,
.partners-section p {
  color: #000;
  font-size: 22px;
  line-height: 40px;
  text-align: justify;
  margin: 0;
}

.partners-section p {
  font-weight: 500;
}
.about-bar .nav-underline .nav-link {
  color: #585858;
  font-size: 22px;
  font-weight: 600;
  padding: 8px 10px;
}

.about-bar .nav-underline .nav-link.active,
.about-bar .nav-underline .nav-link:hover {
  color: #000;
  background-color: rgba(240, 251, 255, 0.76);
  border-bottom-color: var(--light-color);
}

.about-bg {
  min-height: 370px;
}

.about-bg img {
  width: 100%;
  height: 100%;
}

.about-tab {
  padding: 20px 0 50px;
}
.about-tab a {
  margin-top: 30px;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 20px;
  color: #000;
  font-size: 22px;
  font-weight: 600;
  transition: all 0.2s ease-out;
  cursor: pointer;
}

.about-tab a:hover {
  color: var(--light-color) !important;
}

.about-tab a img {
  background-color: rgba(250, 250, 250, 1);
  border-radius: 50%;
  padding: 8px;
}

.core-section {
  background-color: #f9f9f9;
}

.core-section .col-md-12 h2 {
  margin-bottom: 50px;
  font-size: 25px;
  font-weight: 700;
}

.about-card {
  height: 100%;
  padding: 50px 20px 45px;
  background: #eaeaea78;
  clip-path: polygon(50% 0%, 100% 10%, 100% 90%, 50% 100%, 0% 90%, 0% 10%);
  position: relative;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.about-card .card-border {
  position: absolute;
  height: calc(100% - 40px);
  width: calc(100% - 20px);
  top: 20px;
  left: 10px;
}

.about-card .card-border img {
  width: 100%;
  height: 100%;
}

.about-card .csr-icon {
  margin-bottom: 20px;
}

.about-card h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 16px;
  line-height: 35px;
  text-align: justify;
  hyphens: auto;
}

.about-page .breadcrumb-title h2 {
  font-size: 40px;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border-bottom: 2px solid #f9f9f9;
}

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

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

.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: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

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

.faq .faq-container .faq-item .next-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  left: unset;
  bottom: unset;
  font-size: 16px;
  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 {
  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: 32px;
  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: 32px;
  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 */

.mobile-menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #333;
  display: block;
}

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

.mobile-nav-toggle {
  cursor: pointer;
  font-size: 24px;
}

.mobile-menu .sub-menu > li {
  border-bottom: unset;
}

.feature-img {
  height: 260px;
}

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: 80%;
}

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

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

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

.search-input form {
  position: relative;
}

.careers-page .search-input button {
  right: -6px;
  background-color: rgba(0, 184, 255, 1);
  color: white;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  gap: 15px;
  border-radius: 32px;
  bottom: 7px;
  transition: all 0.2s linear;
  cursor: pointer;
  right: 10px;
}

.careers-page .search-input button:hover {
  background-color: var(--dark-color);
}

.careers-page .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);
}

.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;
}

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

.careers-page .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: white;
  cursor: pointer;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.careers-page .filter-category ul li input[type="checkbox"]:checked {
  background-color: green;
  border-color: green;
  color: white;
  position: relative;
}

.careers-page .filter-category ul li input[type="checkbox"]::before {
  content: "✔";
  font-size: 14px;
  color: white;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

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

.careers-page .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;
}

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

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

.careers-page .job-card .job-title a {
  text-decoration: none;
  color: #000;
}

.careers-page .job-card .job-title a:hover {
  color: var(--light-color);
}

.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: 14px;
}

.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: 14px;
}

.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 .form-content .drop-area .primary-btn {
  margin-top: unset;
  border: none;
  width: 130px;
  font-size: 14px;
  padding: 10px 0;
}

.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: 14px;
  color: #333;
}

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

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

.single-blog .breadcrumb .breadcrumb-content .breadcrumb-title h2 {
  text-align: center;
  padding: 0 20px;
}

.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: 16px;
  line-height: 170%;
  text-align: justify;
  color: #000000;
}

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

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

.single-case .breadcrumb-content h2 {
  text-align: center;
}

.single-service-page .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.single-service-page .owl-nav i {
  background: white;
  color: #000;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #000;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
}

.single-service-page .owl-nav i:hover {
  background-color: #000;
  color: white;
}

.single-service-page .owl-carousel .owl-stage-outer {
  padding: 25px 0;
}

.single-service-page .owl-nav .owl-prev i {
  left: -60px;
}

.single-service-page .owl-nav .owl-next i {
  right: -60px;
}

.mobile-content.d-md-none.text-white {
  padding: 65px 25px 25px;
}

.mobile-content.d-md-none.text-white h2 {
  font-size: 20px;
}

.mobile-content.d-md-none.text-white p {
  font-size: 16px;
}

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