/* /* ===================================
            Fonts css
====================================== */

@font-face {
  font-family: "Inclusive Sans";
  src:
    url("../fonts/InclusiveSans-Bold.woff2") format("woff2"),
    url("../fonts/InclusiveSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inclusive Sans";
  src:
    url("../fonts/InclusiveSans-Light.woff2") format("woff2"),
    url("../fonts/InclusiveSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inclusive Sans";
  src:
    url("../fonts/InclusiveSans-Bold_1.woff2") format("woff2"),
    url("../fonts/InclusiveSans-Bold_1.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inclusive Sans";
  src:
    url("../fonts/InclusiveSans-Light_1.woff2") format("woff2"),
    url("../fonts/InclusiveSans-Light_1.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inclusive Sans";
  src:
    url("../fonts/InclusiveSans-Regular.woff2") format("woff2"),
    url("../fonts/InclusiveSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inclusive Sans";
  src:
    url("../fonts/InclusiveSans-Medium.woff2") format("woff2"),
    url("../fonts/InclusiveSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inclusive Sans";
  src:
    url("../fonts/InclusiveSans-SemiBold.woff2") format("woff2"),
    url("../fonts/InclusiveSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-font: "Inclusive Sans";
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===================================
  CSS color variable
====================================== */
:root {
  --primary-color: #ffc000;
  --secondry-color: #c5182d;
  --white: #fff;
  --black: #000;
  --pera-color: #2b2f37;
}

body {
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--pera-color);
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1500px !important;
  }
}

.btn-color {
  background: #e49a23;
  padding: 6px 14px;
  background: linear-gradient(
    157deg,
    rgba(228, 154, 35, 1) 0%,
    rgba(255, 114, 35, 1) 30%,
    rgba(255, 132, 35, 1) 61%,
    rgba(255, 200, 35, 1) 100%
  );
}

.pera-color {
  color: gray;
}

.hedding-font {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
}

/* ============== Header css ================= */

#header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 10px 0px;
  z-index: 999;
  transition: 0.3s;
}

#header.sticky {
  position: fixed;
  border-bottom: solid 3px var(--primary-color);
}

#header.sticky {
  background-color: #fff;
}

/* #header.sticky .logo {
    position: absolute;
} */
/* #header.sticky::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 38%;
    height: 156%;
    background-image:url('../images/header-shape.png');
    background-repeat: no-repeat;
    background-position: bottom;
       background-size: 100% 114%;
    content: '';
    z-index: -1;
} */
.mega_menu_item a {
  color: #333;
}
.main_menu ul li:hover > ul li a {
  color: #333;
}
#header.sticky .main_menu ul li .active,
.main_menu ul li:hover > a {
  color: var(--secondry-color);
}

#header.sticky .logo img {
  max-width: 85px;
}

.logo img {
  max-width: 120px;
}
#header.sticky .menu a {
  color: #000;
}
.main_menu ul li {
  list-style: none;
}

.main_menu ul li .active,
.main_menu ul li:hover > a {
  color: var(--secondry-color);
}
.sub_menu {
  padding-left: 0;
}

/* ============== Banner css ================= */

.scroll-down i {
  font-size: 23px;
}

.scroll-down {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.scroll-down {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.banner-slider {
  height: 92vh;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  display: none;
  transition: 1.2s;
  display: flex;
  align-items: center;
      pointer-events:none;

}
.slide.active {
  opacity: 1;
      pointer-events:auto;

}

.content {
  /* position: absolute;
  top: 55%;
  left: 8%;
  transform: translateY(-50%); */
  margin-top: 100px;
  color: #fff;
  max-width: 700px;
}
.follow-us {
  padding-bottom: 20px;
}
.content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}
.content p {
  margin: 15px 0;
}

.btn {
  margin-top: 10px;
  display: inline-block;
  padding: 12px 25px;
  margin-right: 15px;
  border-radius: 5px;
  text-decoration: none;
}
.primary {
  background: var(--secondry-color);
  color: #fff;
}

.primary:hover {
  color: #fff;
}
.outline {
  border: 1px solid #fff;
  color: #fff;
}
.outline:hover {
  color: var(--white);
}
.primary i,
.outline i {
  padding-left: 10px;
}

.banner-icon {
  width: 48px;
  height: 48px;
  border: solid 2px var(--secondry-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-icon img {
  max-width: 32px;
}

.banner-box {
  display: flex;
  column-gap: 10px;
  border-right: solid 1px #fff;
  padding: 0 20px;
}
.all-boxes {
  margin-top: 30px;
  display: flex;
}
.banner-box span {
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
}
.dots {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  background: #ffffff;
  height: 10px;
  width: 28px;
  border-radius: 10px;
}

/* ============== About css ================= */

.slug-line {
  font-size: 16px;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
  padding-bottom: 12px;
  color: var(--secondry-color);
  z-index: 9;
}

.slug-line::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 80px;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(222, 222, 222);
}

.slug-line.left::before {
  left: 0;
  transform: translateX(0);
}
.slug-line.left::after {
  left: 0;
  transform: translateX(-80px);
  animation: 5s ease-in-out 0s infinite alternate none running pulsexx;
}

@keyframes pulsexx {
  0% {
    transform: translateX(80px);
  }

  100% {
    transform: translateX(-0px);
  }
}

.slug-line::after {
  position: absolute;
  content: "";
  height: 9px;
  width: 8px;
  background-color: var(--secondry-color);
  right: 0px;
  left: 50%;
  bottom: -3px;
  transform: translateX(-40px);
  border-radius: 50px;
  animation: 5s ease-in-out 0s infinite alternate none running pulsex;
}

@keyframes pulsex {
  0% {
    transform: translateX(-40px);
  }

  100% {
    transform: translateX(40px);
  }
}

.section-title {
  font-size: 38px;
  font-weight: 700;
}

.about-img-1 {
  width: 310px;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
}

.about-img-1 img,
.about-img-2 img {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
}

.about-img-2 {
  margin-top: 76px;
  width: 280px;
  height: 470px;
  position: relative;
}
.image-shape {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #e49a23;
  content: "";
  z-index: -1;
  transform: rotate(5deg);
  border-radius: 10px;
  opacity: 0.5;
}

#about {
  padding: 60px 0;
}
/* about tab */

.tabs-container {
  margin: auto;
}
.about-content {
  padding-left: 22px;
}

/* Tabs */
.tabs {
  display: inline-flex;
  background: #e6e6e6;
  padding: 6px 10px;
  border-radius: 40px;
  gap: 10px;
  margin-top: 12px;
}

.tab {
  padding: 4px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 12px;
  color: #555;
  transition: 0.3s;
  background-color: #f3f3f3;
}

.tab.active {
  background: #e49a23;
  color: #fff;
}

/* Content */
.tabbing-content {
  margin-top: 25px;
}

.tab-content {
  display: none;
}

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

.tab-content h2 {
  font-size: 20px;
  font-weight: 600;
}

.read-more-btn a {
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.read-more-btn {
  margin-top: 25px;
}

.experience-box {
  align-items: anchor-center;
  position: absolute;
  bottom: 52px;
  left: 20%;
  padding: 20px 18px;
  background-color: var(--primary-color);
  display: flex;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 7px 10px 3px #34343461;
}

.experience-box span {
  font-size: 70px;
  font-weight: 600;
  line-height: normal;
}
.experience-box p {
  font-size: 24px;
  font-weight: 400;
  padding-top: 10px;
}

/* ============== clients css ================= */

.devider {
  border: solid 2px #f5f5f5;
}

.clients-logos {
  padding: 27px 0;
}

/* LOGO SLIDER */

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
  padding: 30px 0;
}

/* TRACK */

.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;

  width: max-content;

  will-change: transform;
}

/* LOGO */

.client-logo {
  flex-shrink: 0;
}

.client-logo img {
  width: 160px;
  height: 90px;
  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.7;

  transition: 0.4s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* .client-logo.center-active img{
    filter:grayscale(0%);
    opacity:1;

    transform:scale(1.2);
} */

/* ============== services css ================= */

.services-section {
  margin-top: 30px;
  width: 100%;
  overflow: hidden;
}

.services-wrapper {
  display: flex;
  height: 100%;
  margin-top: 30px;
}


.services-tabs {
  width: 340px;
  background: #f4f4f4;
  border-right: 1px solid #e4e4e4;
}

.service-tab {
  position: relative;
  height: 99px;
  border-bottom: 1px solid #e4e4e4;
  cursor: pointer;
  overflow: hidden;
}

.service-tab.is-active .service-tab-content {
  color: #fff;
}

.service-tab.is-active .service-arrow {
  opacity: 1;
  right: -30px;
}

.service-left {
  display: flex;
  align-items: center;
  gap: 18px;


}
.service-left img{
  filter: invert(1) !important;
      transition: 0.4s;
      max-width: 42px;
}
.is-active .service-left img{
  filter: none !important;
}

.service-left i {
  font-size: 24px;
}

.service-left span {
  font-size: 18px;
  font-weight: 700;
}

.service-arrow {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f7b500;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  opacity: 0;
  transition: 0.4s;
  z-index: 5;
}


.services-image {
  width: 38%;
  height: 593px;
  position: relative;
  overflow: hidden;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}


.services-content {
  flex: 1;
  background: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  padding: 60px;
}




.content-box h2 {
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #000;
  font-weight: 700;
}

.content-box p {
  color: #555;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
}



.service-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 70px;
}
.service-tab {
  position: relative;
  height: 99px;
  border-bottom: 1px solid #e4e4e4;
  cursor: pointer;
  overflow: visible;
} 

.service-tab-bg {
  position: absolute;
  left: 0;
  top: 0;

  width: 0%;
  height: 100%;

  background: #f7b500;

  transition: width 0.5s cubic-bezier(0.77, 0, 0.175, 1);

  z-index: 1;
}

.service-tab.is-active .service-tab-bg {
  width: 100%;
}

.service-tab-content {
  position: relative;
  z-index: 5;

  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 35px;

  transition: 0.3s;
}

.service-tab-content span,
.service-tab-content i {
  transition: 0.3s ease;
}

.service-tab.is-active .service-tab-content span,
.service-tab.is-active .service-tab-content i {
  color: #fff;
}

.services-title {
  width: 37%;
  margin: 0 auto;
}

#primaryBtn {
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e49a23;
  padding: 6px 14px;
  background: linear-gradient(
    157deg,
    rgba(228, 154, 35, 1) 0%,
    rgba(255, 114, 35, 1) 30%,
    rgba(255, 132, 35, 1) 61%,
    rgba(255, 200, 35, 1) 100%
  );
}

#outlineBtn {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 6px 14px;
  border: solid 2px #000;
}
#outlineBtn a {
  color: #000 !important;
  text-decoration: none;
}

#primaryBtn a {
  color: #fff;
  text-decoration: none;
}

.service-features {
  display: flex !important;
  justify-content: space-between !important;
}

.feature-text {
  font-size: 16px;
  margin-top: 10px;
}
.feature-item {
  text-transform: uppercase;
  width: 100%;
  margin-right: 23px;
  border-right: solid 1px #ccc;
}
.feature-item:last-child {
  margin-right: 0px;
}
.feature-item i {
  color: var(--secondry-color);
  font-size: 20px;
}
.featureIcon1.fa-solid,
.featureIcon2.fa-solid,
.featureIcon3.fa-solid {
  font-size: 30px !important;
  color: var(--secondry-color);
}

.service-image img {
  filter: brightness(0) invert(1);
}

.process-section::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 600px;
  height: 230px;
  background-image: url("../images/work-prosses-bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.process-wrapper {
  max-width: 1400px;
  margin: auto;
  position: relative;
}

.process-line {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 545px;
  z-index: 0;
  pointer-events: none;
}

.process-line svg {
  width: 100%;
  height: 100%;
}

.z-path {
  fill: none;
  stroke: #bdbdbd;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: 7 8;

  animation: dashMove 10s linear infinite;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -300;
  }
}

.dash-path {
  fill: none;

  stroke: rgba(255, 255, 255, 0.45);

  stroke-width: 2;

  stroke-linecap: round;

  stroke-dasharray: 6 6;

  animation: dashMove 1s linear infinite;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -300;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 175px 40px;
  position: relative;
  z-index: 2;
  margin: 0 70px;
}

.process-box {
  text-align: center;
  position: relative;

  /* opacity: 0; */
  transform: translateY(60px);

  transition: 1s;
}

.process-box.active {
  opacity: 1;
  transform: translateY(0);
}

.icon {
  width: 120px;
  height: 120px;

  margin: auto;

  border-radius: 50%;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 50px;

  position: relative;

  backdrop-filter: blur(10px);

  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.03),
    0 0 25px rgba(0, 0, 0, 0.25);

  transition: 0.5s;

  animation: float 3s ease-in-out infinite;
}

/* DIFFERENT FLOAT */

.process-box:nth-child(2) .icon {
  animation-delay: 0.3s;
}

.process-box:nth-child(3) .icon {
  animation-delay: 0.6s;
}

.process-box:nth-child(4) .icon {
  animation-delay: 0.9s;
}

.process-box:nth-child(5) .icon {
  animation-delay: 1.2s;
}

.process-box:nth-child(6) .icon {
  animation-delay: 1.5s;
}

.process-box:nth-child(7) .icon {
  animation-delay: 1.8s;
}

.process-box:nth-child(8) .icon {
  animation-delay: 2.1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.icon::after {
  content: "";
  position: absolute;
  inset: -10px;

  border-radius: 50%;

  border: 2px solid rgba(255, 0, 76, 0.4);

  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.mobile-path {
  fill: none;

  stroke: #bdbdbd;

  stroke-width: 2;

  stroke-linecap: round;

  stroke-linejoin: round;

  stroke-dasharray: 5 8;

  animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -300;
  }
}

.process-box:hover .icon {
  transform: translateY(-15px) scale(1.08);

  box-shadow:
    0 0 20px rgba(229, 4, 4, 0.6),
    0 0 60px rgba(255, 0, 76, 0.25);
}

.process-box h3 {
  margin-top: 25px;
  font-size: 20px;
  font-weight: 500;
}

.mobile-path {
  display: none;
}

.process-box p {
  margin-top: 10px;
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 14px;
}

.process-box.highlight .icon {
  box-shadow:
    0 0 20px rgba(229, 4, 4, 0.6),
    0 0 60px rgba(255, 0, 76, 0.25);
}

@media (max-width: 991px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-path {
    display: block !important;
  }

  .dectop-prosses {
    display: none !important;
  }

  .process-line {
    top: 0px;
    height: 1660px;
  }

  .process-line::before {
    display: none !important;
  }

  .section-title h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
}

.process-section {
  margin-top: 40px;
  background-color: #25272e;
  color: var(--white);
  position: relative;
  padding: 60px 0 100px 0;
}

.feedback-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.feedback-left {
  width: 58%;
  background: #f5f5fb;
  padding: 70px 70px 0px 0;
  position: relative;
  overflow: hidden;
}

.feedback-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -180px;
  width: 260px;
  height: 100%;
  background: #fff;
  transform: skewX(-10deg);
}

.feedback-section {
  position: relative;
}
.feedback-section::after,
.feedback-section::before {
  position: absolute;
  top: 0;
  width: 50%;
  content: "";
  z-index: -1;
  height: 100%;
}
.feedback-section::after {
  background-color: #f5f5fb;
  left: 0;
}
.feedback-section::before {
  background-color: #fff;
  right: 0;
}

/* DOT PATTERN */

.pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 45px;
  background-image: url("../images/dot-shape.png");
}

/* BIG QUOTE */

.big-quote {
  position: absolute;
  top: 10px;
  right: 160px;
  font-size: 260px;
  color: #ececf5;
  font-weight: 700;
  line-height: 1;
}

/* OUR TESTIMONIALS */

.testimonial-slider {
  position: relative;
  min-height: 560px;
  /* overflow: hidden; */
  z-index: 5;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  width: 100%;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 1s ease,
    visibility 1s ease;

  z-index: 1;
}

/* ACTIVE */

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* CLIENT */

.client-box {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-left: 0px;
}

.client-box img {
  width: 123px;
  height: 155px;
  border-radius: 6px;
  object-fit: cover;
}
.client-name {
  font-size: 22px;
  font-weight: 500;
  color: #111;
  margin-bottom: 6px;
}

.client-role {
  font-size: 18px;
  color: #666;
}

/* REVIEW BOX */

.review-box {
  width: 595px;
  background: #fff;
  padding: 30px 40px;
  border-radius: 0 0 12px 12px;
  position: relative;
  margin-left: 38px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-bottom: solid 4px var(--primary-color);
  position: relative;
}
.review-box::after {
  content: "";
  position: absolute;
  clip-path: polygon(25% 25%, 75% 75%, 25% 75%);
  background-color: var(--white);
  width: 94px;
  height: 72px;
  top: -47px;
  z-index: 99;
  left: -23px;
}

.review-box::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  background-image: url("../images/blog-shape.png");
  bottom: -70px;
  right: -40px;
  background-size: 100%;
  z-index: -1;
}

/* QUOTE */

.quote-icon {
  position: absolute;
  top: -32px;
  right: 35px;
  font-size: 123px;
  color: #e89d12;
  font-weight: 700;
  line-height: 1;
}

/* REVIEW TEXT */

.review-text {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
}
.review-box > a {
  color: var(--secondry-color);
}
.slider-btn {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #e89d12;
  color: #fff;
  font-size: 18px;
  cursor: pointer;

  position: absolute;
  top: 45%;
  transform: translateY(-50%);

  transition: 0.3s;
  z-index: 20;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.08);
}

.prev-btn {
  left: 0px;
}

.next-btn {
  right: 28px;
}

.circles {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 20%;
  left: 40%;
}

.circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #f49a16;
  cursor: pointer;
  transition: 0.4s;
}

.circle.active {
  background: #f49a16;
  transform: scale(1.1);
}

.feedback-right {
  width: 42%;
  background: #fff;
  padding: 70px 0px 70px 40px;
  position: relative;
  z-index: 2;
}

/* BLOG HEADING */

.blog-heading {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  color: #000;
  max-width: 420px;
  margin-bottom: 40px;
}

/* BLOG LIST */

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* BLOG CARD */

.blog-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 14px;

  display: flex;
  align-items: center;
  gap: 16px;

  transition: 0.35s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-card img {
  width: 200px;
  height: 115px;
  border-radius: 3px;
  object-fit: cover;
}

.blog-content {
  flex: 1;
}

.blog-date {
  color: #db4d2f;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  color: #222;
}

/* BLOG ARROW */

.blog-arrow {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f8eed7;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #e89d12;
  font-size: 18px;
  flex-shrink: 0;
}

/* BUTTON */

.more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 30px;
  padding: 14px 20px;

  border: 2px solid #e89d12;

  color: #616161;
  text-decoration: none;
  font-weight: 700;

  transition: 0.3s;
}

.more-btn:hover {
  background: #e89d12;
  color: #fff;
}

@media (max-width: 1200px) {
  .feedback-section {
    flex-direction: column;
  }

  .feedback-left::after {
    display: none;
  }

  .next-btn {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .feedback-left,
  .feedback-right {
    padding: 50px 20px;
  }

  .main-heading,
  .blog-heading {
    font-size: 38px;
  }

  .client-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-left: 0;
  }

  .review-box {
    width: 100%;
    margin-left: 0;
    padding: 35px 25px 45px;
  }

  .review-text {
    font-size: 17px;
  }

  .blog-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .blog-arrow {
    margin-top: 10px;
  }

  .prev-btn {
    left: 0;
  }

  .next-btn {
    right: 0;
  }

  .big-quote {
    display: none;
  }
}

.feedback-section .col-12 {
  margin-bottom: 30px;
}

/* ============== FAQ css ================= */

.faq-section {
  width: 100%;
  padding: 60px 0;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px #ccc;
}
.active .left p {
  color: var(--primary-color);
  font-weight: 500;
}

.faq-item.hidden {
  display: none;
}

.faq-question {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
}

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

.faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.faq-icon::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  background: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.faq-icon span {
  position: absolute;
  z-index: 1;
  background-color: #fff;
  width: 22px;
  align-items: center;
  height: 22px;
  justify-content: center;
  display: flex;
  border-radius: 50%;
  color: var(--primary-color);
}

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

.arrow {
  font-size: 18px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: solid 1px #eee;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.view-more-wrap {
  text-align: center;
  margin-top: 30px;
}

#viewMoreBtn {
  background: #c92d0f;
  color: #fff;
  border: none;
  padding: 8px 26px;
  cursor: pointer;
  font-size: 16px;
}

/* ============== Footer css ================= */

.main-footer {
  /* background:#141310; */
  background-image: url("../images/footer-bg.png");
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Background Dot World Map */
.main-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/dark-mosaic.png");
  opacity: 0.12;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
}
p {
  margin-bottom: 8px;
}
.footer-logo {
  width: 139px;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.company-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-text {
  color: #d1d1d1;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-text strong {
  color: #fff;
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

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

.footer-links li {
  margin-bottom: 2px;
}

.footer-links li a {
  color: #d7d7d7;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #ffb400;
  padding-left: 5px;
}
.join-team {
  /* position: absolute; */
  right: -6%;
  max-width: 200px;
}

.contact-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 24px;
  color: #fff;
  margin-right: 15px;
  margin-top: 5px;
}

.contact-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-box a {
  text-decoration: none;
  color: #d5d5d5;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.follow-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.social-box {
  display: flex;
  gap: 14px;
  width: max-content;
}

.social-box a {
  width: 35px;
  height: 35px;
  background: #fff;
  color: var(--secondry-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.social-box a:hover {
  transform: translateY(-4px);
}

.join-team {
  text-align: center;
}

.join-team img {
  max-width: 100%;
  width: 240px;
  filter: drop-shadow(0px 15px 15px rgba(0, 0, 0, 0.5));
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 19%);
  margin-top: 0px;
  padding: 25px 0;
  position: relative;
  z-index: 2;
}

.copyright-text {
  color: #fff;
  font-size: 18px;
  margin: 0;
}

.bottom-links {
  text-align: end;
}

.bottom-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  margin-left: 10px;
}

.bottom-links a:hover {
  color: #ffb400;
}

@media (max-width: 991px) {
  .footer-column {
    margin-bottom: 40px;
  }

  .join-team {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .main-footer {
    padding-top: 50px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-links li a {
    font-size: 16px;
  }

  .copyright-text,
  .bottom-links a {
    font-size: 16px;
  }
}

/* ============== WhatsApp Widget css ================= */

.wa-float {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #25d366;
  -webkit-animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
  }
}

.wa-widget {
  font-family: "Nunito", sans-serif;
  position: fixed;
  bottom: 170px;
  right: 20px;
  width: 350px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
  overflow: hidden;
  z-index: 9999;
}

.wa-header strong {
  font-weight: 600;
  color: white;
  margin: 0;
  font-size: 18px;
  font-family: "Nunito", sans-serif;
}

.wa-header small {
  margin-top: -6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  letter-spacing: 1px;
  font-family: "Nunito", sans-serif;
}

.wa-header {
  background: #0a5f54;
  color: #fff;
  padding: 14px;
  display: flex;
  justify-content: space-between;
}

.wa-close {
  cursor: pointer;
  font-size: 28px;
}

.wa-body {
  background: #f4f4f4;
  padding: 15px;
  background-image: url("../images/whatsapp-bg.jpg");
  background-size: 100%;
}

.wa-msg {
  font-size: 14px;
  background: white;
  border-radius: 16px 16px 16px 4px;
  padding: 12px;
  max-width: 265px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 26%);
  color: #374151;
  margin: 0;
  line-height: 1.4;
}
.wa-msg p {
  font-size: 14px;
}
.widget-logo {
  background-color: #fff;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.widget-logo img {
  max-width: 55px;
}
.wa-msg ul li {
  list-style: none;
  font-size: 12px;
  padding: 2px 0;
}
.wa-msg ul {
  margin-bottom: 0;
}

.wa-btn {
  display: block;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  text-decoration: none;
}

/* ============== Scroll Percentage Button css ================= */

.scroll-progress {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  position: fixed;
  left: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(#ffc000 0deg, #ffc000 0deg, #1e2433 0deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  z-index: 999;
  transition: 0.3s;
}

.scroll-progress:hover {
  transform: translateY(-4px);
}

.scroll-progress::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
}

.scroll-value {
  position: relative;
  z-index: 2;
  font-size: 12px;
  font-weight: 500;
  color: #000;
}

.scroll-value span {
  font-size: 14px;
}

a#chatbotBtn {
  position: fixed;
  bottom: 1%;
  z-index: 99;
  right: 18px;
}
a#chatbotBtn img {
  max-width: 70px;
}

/*================ Services section css =================*/

.we-provide-section {
  padding: 30px 0;
  background-color: #f5f5f7;
}
.we-provide-section .col-12 {
  margin-bottom: 20px;
}

.section-top {
  text-align: center;
  margin-bottom: 60px;
}

.section-top p {
  max-width: 720px;
  margin: auto;
  color: #6b7280;
  font-size: 20px;
  line-height: 1.7;
}

.we-provide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.we-provide-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid #ececec;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.we-provide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.card-top {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.we-provide-icon {
  min-width: 80px;
  height: 80px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.we-provide-icon img {
  width: 55px;
  height: 55px;
}

.design .we-provide-icon {
  background: #fdeaea;
}

.development .we-provide-icon {
  background: #edf3ff;
}

.digital .we-provide-icon {
  background: #edf9ea;
}

.we-provide-content h3 {
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #111827;
}

.line {
  width: 55px;
  height: 3px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.design .line {
  background: #ff5b6b;
}

.development .line {
  background: #3b82f6;
}

.digital .line {
  background: #38b000;
}

.we-provide-content p {
  line-height: 1.8;
  color: #5f6470;
}

.we-provide-list {
  list-style: none;
  padding-top: 15px;
  margin-top: 15px;
  padding-left: 0;
  border-top: 1px solid #ededed;
}

.we-provide-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  color: #374151;
  font-size: 16px;
  font-weight: 500;
}

.we-provide-list li i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.design li i {
  border: 2px solid #ff5b6b;
  color: #ff5b6b;
}

.development li i {
  border: 2px solid #3b82f6;
  color: #3b82f6;
}

.digital li i {
  border: 2px solid #38b000;
  color: #38b000;
}

.we-provide-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 11px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  transition: 0.3s;
}

.design .we-provide-btn {
  color: #ff3d52;
}

.development .we-provide-btn {
  color: #2563eb;
}

.digital .we-provide-btn {
  color: #2f9e44;
}

.we-provide-btn:hover {
  gap: 18px;
}

.dot-shape {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  opacity: 0.15;
}

.design .dot-shape {
  background: radial-gradient(#ff5b6b 1px, transparent 2px);
  background-size: 10px 10px;
}

.development .dot-shape {
  background: radial-gradient(#3b82f6 1px, transparent 2px);
  background-size: 10px 10px;
}

.digital .dot-shape {
  background: radial-gradient(#38b000 1px, transparent 2px);
  background-size: 10px 10px;
}

@media (max-width: 1200px) {
  .we-provide-content h3 {
    font-size: 34px;
  }

  .section-top h2 {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .we-provide-grid {
    grid-template-columns: 1fr;
  }

  .section-top h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .we-provide-card {
    padding: 28px;
  }

  .card-top {
    flex-direction: column;
  }

  .we-provide-icon {
    width: 95px;
    height: 95px;
    min-width: 95px;
  }

  .section-top h2 {
    font-size: 34px;
  }

  .section-top p {
    font-size: 16px;
  }

  .we-provide-content h3 {
    font-size: 30px;
  }

  .we-provide-content p {
    font-size: 16px;
  }

  .we-provide-list li {
    font-size: 16px;
  }

  .we-provide-btn {
    font-size: 18px;
  }
}

.review-video {
  top: -25%;
  height: auto;
  width: 293px;
  right: 56px;
  position: absolute;
}
.review-video video {
  width: 100%;
  height: 100%;
}

/* contact css */
.cover-background {
  background-repeat: no-repeat !important;
  background-size: cover;
  overflow: hidden;
  position: relative;
  background-position: center center !important;
}

section.inner-banner {
  color: #fff;
  height: 370px;
  /* padding-top: 114px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .section-title {
    font-size: 32px;
  }
  .inner-banner h1 {
    font-size: 30px;
  }

  .footer-column.extra {
    display: flex;
    justify-content: space-between;
  }
  .join-team {
    position: static;
  }
}

@media screen and (max-width: 991px) {
  .section-title {
    font-size: 28px;
  }
  .footer-column {
    margin-bottom: 0;
  }
  .section-title {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .slug-line {
    font-size: 14px;
    font-weight: 600;
  }
  .footer-column.extra {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .footer-text {
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 576px) {
    .review-text {
    font-size: 15px;
    max-width: fit-content;
    line-height: 25px;
}
  .section-title {
    font-size: 25px;
  }
  .follow-us {
    margin-top: 10px;
  }
  .bottom-links {
    text-align: start;
  }
  .social-box a {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
  .wa-float {
    width: 50px;
    height: 50px;
  }
  a#chatbotBtn img {
    max-width: 56px;
  }
}

/*================ Services page css =================*/

.service-image-right {
  width: 100%;
}

.service-image-right img {
  width: 100%;
}

section.Service-about {
  padding: 60px 0;
}

.design-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.design-tags span {
  padding: 4px 16px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #ffc000;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
  cursor: pointer;
}

.design-tags span:hover {
  background: linear-gradient(135deg, #ffc000, #c5182d);
  color: #fff;
  transform: translateY(-3px);
}

/* technology grid css */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tech-box {
  height: auto;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin: 0 10px 10px 0;
  transition: 0.3s;
}

.tech-box img {
  max-width: 110px;
  width: 140px;
  object-fit: contain;
  transition: 0.3s;
}

.tech-box:hover {
  background: #fff;
}

.tech-box:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .tech-box {
    height: 120px;
  }
}

.technology-wrapper {
  display: flex;
}

.technology-tabs {
  width: 320px;
  background: #efefef;
  border-right: 1px solid #ddd;
}

.technology-tab {
  padding: 26px 30px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  position: relative;
}

.technology-arrow {
  font-size: 22px;
  position: absolute;
  width: 0%;
  background-color: #f7b500;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  transition: 0.4s;
}

.technology-tab.technology-active .technology-arrow {
  width: 100%;
}

.technology-tab.technology-active .technology-left span {
  color: #fff;
}

.technology-arrow span {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f7b500;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.4s;
  z-index: 5;
}

.technology-tab.technology-active .technology-arrow span {
  right: -28px;
}

.technology-tab-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.technology-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.technology-active .technology-left img {
  filter: none;
}

.technology-left img {
  filter: invert(1);
}

.technology-left img {
  width: 45px;
}

.technology-left span {
  font-size: 20px;
  font-weight: 600;
}

.technology-arrow {
  font-size: 22px;
}

.technology-right {
  width: calc(100% - 320px);
}

.technology-content {
  display: none;
  animation: fade 0.4s ease;
}

.technology-show {
  display: flex;
  height: 100%;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.technology-image {
  width: 42%;
}

.technology-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.technology-details {
  width: 58%;
  padding: 38px;
  display: flex;
  align-items: center;
  background: #f5f5f5;
}

.technology-box h2 {
  font-size: 34px;
  margin-bottom: 4px;
}

.technology-box p {
  margin-bottom: 10px;
}

@media screen and (max-width: 1199px) {
  .technology-content {
    flex-direction: column;
    height: auto;
  }

  .technology-image,
  .technology-details {
    width: 100%;
  }

  .technology-image {
    height: 340px;
  }

  .technology-details {
    padding: 20px;
  }

  .tech-box img {
    max-width: 80px;
    width: 88px;
  }
}

@media screen and (max-width: 991px) {
  .technology-left img {
    width: 32px;
  }
  .technology-tabs {
    width: 267px;
  }
  .technology-right {
    width: calc(100% - 267px);
  }
  .technology-box h2 {
    font-size: 28px;
    margin-bottom: 4px;
  }
  .technology-tab {
    padding: 40px 30px;
  }
  .technology-image {
    height: 253px;
  }
  .tech-box {
    height: auto;
    padding: 8px 20px;
  }
}

@media screen and (max-width: 768px) {
  .technology-tabs {
    width: 100%;
  }
  .technology-content {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .technology-wrapper {
    display: flex;
    flex-direction: column;
  }
  .technology-arrow span {
    display: none;
  }
  .technology-right {
    width: 100%;
  }
  .technology-left span {
    font-size: 17px;
    font-weight: 500;
  }
  .technology-tab {
    padding: 20px 30px;
  }
  .technology-box h2 {
    font-size: 25px;
    margin-bottom: 4px;
  }
  .tech-box {
    height: auto;
    padding: 20px 20px;
  }
}

section.technology {
  padding-top: 40px;
}
section.technology .col-12 {
  margin-bottom: 20px;
}
