@import "./variables.css";

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--light);
  padding: 40px 0 10px;
  transition: 0.5s ease all;
}

.header.sticky {
  padding: 5px 0;
  background: var(--dark);
}

.header .navbar-brand img {
  width: 270px;
  transition: 0.5s ease all;
}

.header.sticky .navbar-brand img {
  width: 250px;
}

.header .navbar-toggler {
  width: 30px;
  height: 30px;
  background: var(--light);
  color: var(--dark);
  padding: 0;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  box-shadow: none;
  border: 0;
}

.header .lang {
  background: transparent;
  border: 0;
  outline: 0;
}

.header .lang img {
  width: 30px;
}

.header .lang span {
  font-size: 16px;
  color: var(--light);
}

.header .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header .navbar-nav .nav-link {
  font-size: 16px;
  font-family: var(--sans-serif-medium);
  color: var(--light);
  position: relative;
  transition: 0.5s ease all;
  word-break: keep-all;
}

.header .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background: transparent;
  transition: 0.5s ease all;
}

.header .navbar-nav .nav-link.active::after,
.header .navbar-nav .nav-link:hover::after {
  height: 5px !important;
  bottom: -24px !important;
  background: var(--light);
}

.header.sticky .navbar-nav .nav-link.active::after,
.header.sticky .navbar-nav .nav-link:hover::after {
  bottom: -15px !important;
}

@media only screen and (max-width: 1200px) {
  .header.sticky .navbar-nav .nav-link.active::after,
  .header.sticky .navbar-nav .nav-link:hover::after {
    display: none;
  }

  .header .navbar-nav {
    gap: 5px;
  }
}

/* Hero */
.hero {
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #10273cb0;
  mix-blend-mode: multiply;
  z-index: 2;
  display: none;
}

.hero .scroll-down {
  position: absolute;
  bottom: 50px;
  left: 15%;
  z-index: 3;
  font-size: 30px;
  color: var(--light);
  animation: 3s scrollDownAnim infinite;
}

@keyframes scrollDownAnim {
  0% {
    bottom: 50px;
  }

  50% {
    bottom: 60px;
  }

  100% {
    bottom: 50px;
  }
}

.hero .carousel {
  position: relative;
}

/* .hero .carousel .carousel-item {
  height: 100vh;
  min-height: 700px;
} */
.hero .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .carousel-caption {
  position: absolute;
  inset: auto;
  padding: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 800px;
  text-align: left;
}

.hero .carousel-caption h5 {
  font-size: 80px;
  font-family: var(--sans-serif-medium);
  color: var(--light);
  line-height: 110%;
}

.hero .carousel-caption hr {
  opacity: 1;
  height: 1px;
  width: 100%;
  background: var(--light);
  margin: 15px 0 30px;
}

.hero .carousel-caption p {
  font-size: 40px;
  font-family: var(--sans-serif-medium);
  color: var(--light);
  line-height: 130%;
}

.hero .carousel .carousel-indicators {
  inset: auto;
  right: 10%;
  bottom: 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  z-index: 3;
}

.hero .carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 2px solid transparent;
  outline: 2px solid var(--light);
  opacity: 1;
  background: transparent;
}

.hero .carousel .carousel-indicators button.active {
  background: var(--light);
  border: 2px solid var(--dark);
}

/* Hero Alt */
.hero-alt {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-alt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #10273c73;
  mix-blend-mode: multiply;
  z-index: 2;
}

.hero-alt .scroll-down {
  position: absolute;
  bottom: 10%;
  right: 15%;
  z-index: 3;
  font-size: 30px;
  color: var(--light);
  animation: 3s scrollDownAnim infinite;
}

@keyframes scrollDownAnim {
  0% {
    bottom: 10%;
  }

  50% {
    bottom: calc(10% + 10px);
  }

  100% {
    bottom: 10%;
  }
}

.hero-alt .text {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 54%;
  z-index: 3;
}

.hero-alt .text h2 {
  font-size: 60px;
  font-family: var(--sans-serif-medium);
  color: var(--light);
  margin-bottom: 50px;
}

.hero-alt .text h3 {
  font-size: 25px;
  font-family: var(--sans-serif-bold);
  color: var(--light);
  text-transform: uppercase;
}

.hero-alt .carousel,
.hero-alt .carousel .carousel-inner,
.hero-alt .carousel .carousel-inner .carousel-item {
  position: relative;
  height: 100%;
}

.hero-alt .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero Small */
.hero-sm {
  position: relative;
}

.hero-sm::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #10273c73;
  mix-blend-mode: multiply;
  z-index: 2;
}

.hero-sm .scroll-down {
  position: absolute;
  bottom: 10%;
  right: 15%;
  z-index: 3;
  font-size: 30px;
  color: var(--light);
  animation: 3s scrollDownAnim infinite;
}

@keyframes scrollDownAnim {
  0% {
    bottom: 10%;
  }

  50% {
    bottom: calc(10% + 10px);
  }

  100% {
    bottom: 10%;
  }
}

.hero-sm .text {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 54%;
  z-index: 3;
}

.hero-sm .text h2 {
  font-size: 80px;
  font-family: var(--sans-serif-medium);
  color: var(--light);
  margin-bottom: 50px;
}

.hero-sm .image {
  position: relative;
  height: 70vh;
  min-height: 600px;
}

.hero-sm .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* About Section */
.about .video {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  min-height: 60vh;
}

.about .video h5 {
  font-size: 50px;
  color: var(--light);
  position: absolute;
  top: 30px;
  left: 50px;
  z-index: 2;
  transition: 0.5s ease all;
}

.about .video i {
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: var(--light);
  border: 2px solid var(--light);
  border-radius: 100px;
  text-align: center;
  line-height: 100px;
  z-index: 2;
  transition: 0.5s ease all;
}

.about .video:hover i {
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  font-size: 50px;
  line-height: 120px;
}

.about .video img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: 0.5s ease all;
}

.about .video:hover img {
  transform: scale(1.1);
}

.about .video .hide {
  visibility: hidden;
  pointer-events: none;
}

.about .video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.about .image {
  width: 100px;
  margin: 0 0 auto auto;
}

.about h6 {
  font-size: 25px;
  color: var(--dark);
  line-height: 140%;
}

/* About Case Video Section */
.about-case-video h3 {
  font-size: 35px;
  font-family: var(--sans-serif-light);
  line-height: 150%;
  color: var(--dark);
  margin-bottom: 70px;
}

.about-case-video .video {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.about-case-video .video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #10273c1a;
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}

.about-case-video .video h5 {
  font-size: 45px;
  font-family: var(--sans-serif-light);
  color: var(--light);
  position: absolute;
  bottom: 50px;
  left: 70px;
  z-index: 2;
  transition: 0.5s ease all;
}

.about-case-video .video .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  z-index: 2;
}

.about-case-video .video i {
  cursor: pointer;
  width: 100px;
  height: 100px;
  font-size: 30px;
  color: var(--light);
  border: 2px solid var(--light);
  border-radius: 100px;
  text-align: center;
  line-height: 100px;
  z-index: 2;
  transition: 0.5s ease all;
}

.about-case-video .video:hover i {
  transform: scale(1.1);
}

.about-case-video .video img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: 0.5s ease all;
}

.about-case-video .video .hide {
  visibility: hidden;
  pointer-events: none;
}

.about-case-video .video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.about-case-video .image {
  width: 100px;
  margin: 0 0 auto auto;
}

.about-case-video h6 {
  font-size: 25px;
  color: var(--dark);
  line-height: 140%;
}

.about-case-video .text {
  margin-bottom: 70px;
}

.about-case-video .text:last-child {
  margin-bottom: 0;
}

.about-case-video .text .icon {
  width: 50px;
}

.about-case-video .text h5 {
  font-size: 30px;
  font-family: var(--sans-serif-bold);
  margin: 15px 0;
}

.about-case-video .text li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.about-case-video .text li:last-child {
  margin-bottom: 0;
}

.about-case-video .text li i {
  font-size: 7px;
  margin-top: 6px;
}

.about-case-video .text li span {
  font-family: var(--sans-serif-light);
  color: var(--dark);
}

.about-case-video .text p b {
  font-family: var(--sans-serif-medium);
  color: var(--dark);
  display: block;
}

.about-case-video .carousel {
  position: relative;
}

.about-case-video .carousel .carousel-item {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 20px;
}

.about-case-video .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-case-video .carousel .carousel-indicators {
  inset: auto;
  right: 50px;
  bottom: 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.about-case-video .carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 2px solid transparent;
  outline: 2px solid var(--light);
  opacity: 1;
  background: transparent;
}

.about-case-video .carousel .carousel-indicators button.active {
  background: var(--light);
  border: 2px solid var(--dark);
}

.about-case-video .carousel .carousel-controls {
  width: calc(100% + 150px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.about-case-video .carousel .carousel-controls button {
  position: relative;
  inset: auto;
  color: var(--dark);
  width: auto;
  font-size: 50px;
  opacity: 1;
  pointer-events: all;
}

/* Services Section */
.services .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  background: var(--light);
  border-bottom: 1px solid var(--dark-alt);
  border-radius: 0;
  padding: 20px 5px;
}

.services .nav-link:first-child {
  border-top: 1px solid var(--dark-alt);
}

.services .nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--primary);
  transition: 0.5s ease all;
}

.services .nav-link:hover::after,
.services .nav-link.active::after {
  width: 100%;
}

.services .nav-link .icon {
  width: 45px;
}

.services .nav-link .text {
  width: calc(100% - 135px);
  text-align: left;
}

.services .nav-link .text h5 {
  font-size: 23px;
  font-family: var(--sans-serif-bold);
  color: var(--dark);
  transition: 0.5s ease all;
}

.services .nav-link .arrow {
  width: 30px;
  height: 30px;
  position: relative;
}

.services .nav-link .arrow img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s ease all;
}

.services .nav-link .arrow img:first-child {
  opacity: 0;
}

.services .nav-link .arrow img:last-child {
  opacity: 1;
}

.services .nav-link.active {
  background: var(--light);
}

.services .nav-link.active .text h5 {
  color: var(--primary);
}

.services .nav-link:hover .text h5 {
  transform: translateX(15px);
}

.services .nav-link.active .arrow img:first-child {
  opacity: 1;
}

.services .nav-link.active .arrow img:last-child {
  opacity: 0;
}

.services .tab-content {
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: end;
  color: white;
  border-radius: 10px;
}

.services .image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transform: translateY(50%);
  position: absolute;
  top: -200px;
  right: 0px;
}

.services .text p {
  font-size: 22px;
  color: white;
  padding: 35px 20px;
}

/* Case Study Carousel */
.case-study-carousel {
  position: relative;
}

.case-study-carousel .carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.case-study-carousel .carousel .pattern {
  position: absolute;
  top: 30px;
  left: 50px;
  width: 120px;
  z-index: 2;
}

.case-study-carousel .carousel .carousel-item {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.case-study-carousel .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.case-study-carousel .carousel .carousel-caption {
  position: absolute;
  inset: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
  text-align: left;
  padding: 50px;
  display: flex !important;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}

.case-study-carousel .carousel .carousel-caption::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #0009, #0003);
}

.case-study-carousel .carousel .carousel-caption h6 {
  font-size: 20px;
  font-family: var(--sans-serif-medium);
  color: var(--light);
  text-transform: uppercase;
  position: absolute;
  top: 30px;
  right: 40px;
  writing-mode: vertical-rl;
  z-index: 1;
  transform: rotate(180deg);
}

.case-study-carousel .carousel .carousel-caption .text {
  z-index: 1;
  position: relative;
  max-width: 500px;
}

.case-study-carousel .carousel .carousel-caption .text h5 {
  font-size: 25px;
  font-family: var(--sans-serif-bold);
  color: var(--light);
  margin-bottom: 30px;
}

.case-study-carousel .carousel .carousel-caption .text h4 {
  font-size: 40px;
  font-family: var(--sans-serif-bold);
  color: var(--light);
  margin-bottom: 20px;
}

.case-study-carousel .carousel .carousel-caption .text p {
  color: var(--light);
  margin-bottom: 20px;
}

.case-study-carousel .carousel .carousel-caption .text a {
  font-size: 16px;
  font-family: var(--sans-serif-medium);
  text-transform: uppercase;
  color: var(--light);
}

.case-study-carousel .carousel .carousel-caption .text a i {
  width: 35px;
  height: 35px;
  font-size: 16px;
  color: var(--light);
  border-radius: 35px;
  border: 2px solid var(--light);
  text-align: center;
  line-height: 35px;
  margin-left: 20px;
  transition: 0.5s ease all;
}

.case-study-carousel .carousel .carousel-caption .text a:hover i {
  margin-left: 30px;
  background: var(--light);
  color: var(--dark);
}

.case-study-carousel .carousel .carousel-indicators {
  inset: auto;
  right: 50px;
  bottom: 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.case-study-carousel .carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 2px solid transparent;
  outline: 2px solid var(--light);
  opacity: 1;
  background: transparent;
}

.case-study-carousel .carousel .carousel-indicators button.active {
  background: var(--light);
  border: 2px solid var(--dark);
}

/* Case Study Inner Carousel */
.case-study-inner-carousel {
  position: relative;
}

.case-study-inner-carousel .carousel {
  position: relative;
}

.case-study-inner-carousel .carousel .carousel-item {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 20px;
}

.case-study-inner-carousel .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.case-study-inner-carousel .carousel .carousel-caption {
  position: absolute;
  inset: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
  text-align: left;
  padding: 50px;
  display: flex !important;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}

.case-study-inner-carousel .carousel .carousel-caption::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, #0003, #0001);
}

.case-study-inner-carousel .carousel .carousel-caption h6 {
  font-size: 20px;
  font-family: var(--sans-serif-medium);
  color: var(--light);
  text-transform: uppercase;
  position: absolute;
  top: 30px;
  right: 40px;
  writing-mode: vertical-rl;
  z-index: 1;
  transform: rotate(180deg);
}

.case-study-inner-carousel .carousel .carousel-caption .text {
  z-index: 1;
  position: relative;
  max-width: 500px;
}

.case-study-inner-carousel .carousel .carousel-caption .text a {
  font-size: 16px;
  font-family: var(--sans-serif-medium);
  text-transform: uppercase;
  color: var(--light);
}

.case-study-inner-carousel .carousel .carousel-caption .text a i {
  width: 35px;
  height: 35px;
  font-size: 16px;
  color: var(--light);
  border-radius: 35px;
  border: 2px solid var(--light);
  text-align: center;
  line-height: 35px;
  margin-left: 20px;
  transition: 0.5s ease all;
}

.case-study-inner-carousel .carousel .carousel-caption .text a:hover i {
  margin-left: 30px;
  background: var(--light);
  color: var(--dark);
}

.case-study-inner-carousel .carousel .carousel-indicators {
  inset: auto;
  right: 50px;
  bottom: 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.case-study-inner-carousel .carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 2px solid transparent;
  outline: 2px solid var(--light);
  opacity: 1;
  background: transparent;
}

.case-study-inner-carousel .carousel .carousel-indicators button.active {
  background: var(--light);
  border: 2px solid var(--dark);
}

.case-study-inner-carousel .carousel .carousel-controls {
  width: calc(100% + 150px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.case-study-inner-carousel .carousel .carousel-controls button {
  position: relative;
  inset: auto;
  color: var(--dark);
  width: auto;
  font-size: 50px;
  opacity: 1;
  pointer-events: all;
}

.case-study-inner-carousel .images .image {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.case-study-inner-carousel .info {
  margin: 70px 0;
}

.case-study-inner-carousel .info .image {
  width: 100px;
  display: block;
  margin: auto 0 auto auto;
}

.case-study-inner-carousel .info .icon {
  width: 50px;
}

.case-study-inner-carousel .info h5 {
  font-size: 30px;
  font-family: var(--sans-serif-bold);
  margin: 15px 0 30px;
}

.case-study-inner-carousel .info li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.case-study-inner-carousel .info li:last-child {
  margin-bottom: 0;
}

.case-study-inner-carousel .info li i {
  font-size: 7px;
  margin-top: 6px;
}

.case-study-inner-carousel .info li span {
  font-family: var(--sans-serif-light);
  color: var(--dark);
}

/* Counter section */
.counter .image {
  width: 100px;
}

.counter .item .icon {
  width: 50px;
}

.counter .item h5 {
  font-size: 45px;
  font-family: var(--sans-serif-bold);
  color: var(--dark);
  margin: 10px 0 0;
}

.counter .item h6 {
  font-size: 16px;
  font-family: var(--sans-serif-medium);
  columns: var(--dark);
}

/* Case Study Section */
.case-study .filter-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.case-study .filter-buttons button {
  padding: 7px 10px 3px;
  border-radius: 20px;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  font-size: 10px;
  font-family: var(--sans-serif-bold);
  text-transform: uppercase;
  transition: 0.5s ease all;
}

.case-study .filter-buttons button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
}

.case-study .card {
  border: 0;
  border-radius: 0;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--dark);
  height: 100%;
}

.case-study .card::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary);
  transition: 0.5s ease all;
}

.case-study .card:hover::after {
  width: 100%;
}

.case-study .card .image {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  /* height: 350px; */
}

.case-study .card .image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: 0.5s ease all;
}

.case-study .card:hover .image img {
  transform: scale(1.1);
}

.case-study .card .text {
  justify-self: flex-start;
}

.case-study .card .text h5 {
  font-size: 23px;
  font-family: var(--sans-serif-bold);
  color: var(--dark);
  margin: 20px 0 15px 0;
  transition: 0.5s ease all;
}

.case-study .card .text h6 {
  font-size: 16px;
  font-family: var(--sans-serif-bold);
  color: var(--dark-alt);
  transition: 0.5s ease all;
}

.case-study .card .text a:hover h6,
.case-study .card .text a:hover h5 {
  color: var(--primary);
}

.case-study .card .text p {
  margin: 15px 0;
}

.case-study .card .card-footer {
  padding: 0;
  background: transparent;
  border: 0;
  position: absolute;
  bottom: 15px;
  left: 0;
}

.case-study .card .card-footer a {
  font-size: 16px;
  font-family: var(--sans-serif-bold);
  color: var(--dark-alt);
}

.case-study .card .card-footer a i {
  width: 35px;
  height: 35px;
  font-size: 16px;
  color: var(--dark-alt);
  border-radius: 35px;
  border: 2px solid var(--dark);
  text-align: center;
  line-height: 35px;
  margin-left: 10px;
  transition: 0.5s ease all;
}

.case-study .card .card-footer a:hover i {
  margin-left: 15px;
  background: var(--dark);
  color: var(--light);
}

.case-study .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.case-study .read-more span {
  font-size: 16px;
  font-family: var(--sans-serif-light);
  color: var(--dark-alt);
}

.case-study .read-more i {
  font-size: 30px;
  color: var(--dark);
  transition: 0.5s ease all;
  margin-left: 5px;
}

.case-study .read-more:hover i {
  margin-left: 15px;
}

/* Testimonial Section */
.testimonial {
  background: url(../images/testimonial/pattern.jpg);
  border-radius: 20px;
}

.testimonial .image {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  overflow: hidden;
  margin: auto 0 auto auto;
}

.testimonial .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonial .text h5 {
  font-size: 25px;
  font-family: var(--sans-serif-bold);
  color: var(--light);
  margin-bottom: 15px;
}

.testimonial .text h6 {
  font-size: 16px;
  font-family: var(--sans-serif-medium);
  color: var(--light);
  margin-bottom: 20px;
}

.testimonial .text h6 b {
  display: block;
  font-size: 18px;
  font-family: var(--sans-serif-bold);
  color: var(--light);
  margin-bottom: 5px;
}

.testimonial .text p {
  color: var(--light);
}

.testimonial .testimonial-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 100px);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.testimonial .testimonial-carousel .owl-nav button {
  pointer-events: all;
  cursor: pointer;
  width: 50px;
  height: 50px;
  font-size: 50px;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  opacity: 1;
  transition: 0.5s ease all;
  color: var(--light);
}

.testimonial .testimonial-carousel .owl-dots {
  margin-top: 40px;
}

.testimonial .testimonial-carousel .owl-dots button span {
  width: 13px;
  height: 13px;
  border-radius: 13px;
  border: 2px solid transparent;
  outline: 2px solid var(--light);
  opacity: 1;
  background: transparent;
  transition: 0.5s ease all;
}

.testimonial .testimonial-carousel .owl-dots button.active span,
.testimonial .testimonial-carousel .owl-dots button:hover span {
  background: var(--light);
  border: 2px solid var(--dark);
}

/* News Section */
.news .card {
  border: 0;
  border-radius: 0;
}

.news .card .image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: 10px;
}

.news .card .image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: 0.5s ease all;
}

.news .card:hover .image img {
  transform: scale(1.1);
}

.news .card .text {
  margin-top: 20px;
}

.news .card .text h5 {
  height: 60px;
  overflow: hidden;
}

.news .card .text h5 a {
  font-size: 20px;
  font-family: var(--sans-serif-bold);
  text-decoration: none;
  color: var(--dark);
  line-height: 140%;
  transition: 0.5s ease all;
}

.news .card .text h5 a:hover {
  color: var(--primary);
}

.news .card .text p {
  font-size: 14px;
  color: var(--dark-alt);
  margin: 10px 0;
}

.news .card .text a {
  font-size: 16px;
  color: var(--primary);
  text-decoration: underline;
  display: inline-block;
}

.news .news-carousel .owl-dots {
  margin-top: 30px;
}

.news .news-carousel .owl-dots button span {
  width: 13px;
  height: 13px;
  border-radius: 13px;
  border: 2px solid transparent;
  outline: 2px solid var(--dark);
  opacity: 1;
  background: transparent;
  transition: 0.5s ease all;
}

.news .news-carousel .owl-dots button.active span,
.news .news-carousel .owl-dots button:hover span {
  background: var(--dark);
  border: 2px solid var(--light);
}

.news .news-carousel .owl-nav {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 100px);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news .news-carousel .owl-nav button {
  border: 0;
  background: transparent !important;
  outline: 0;
  border-radius: 0 !important;
  font-size: 50px;
  color: var(--dark) !important;
  pointer-events: all;
  transition: 0.5s ease all;
  opacity: 1;
}

.news .news-carousel .owl-nav button.disabled {
  opacity: 0;
  pointer-events: none;
}

/* Blog Section */
.blog .card {
  border: 0;
  border-radius: 0;
}

.blog .card .image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: 10px;
}

.blog .card .image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: 0.5s ease all;
}

.blog .card:hover .image img {
  transform: scale(1.1);
}

.blog .card .text {
  margin-top: 20px;
}

.blog .card .text h5 {
  height: 60px;
  overflow: hidden;
}

.blog .card .text h5 a {
  font-size: 20px;
  font-family: var(--sans-serif-bold);
  text-decoration: none;
  color: var(--dark);
  line-height: 140%;
  transition: 0.5s ease all;
}

.blog .card .text h5 a:hover {
  color: var(--primary);
}

.blog .card .text p {
  font-size: 14px;
  color: var(--dark-alt);
  margin: 10px 0;
  height: 115px;
  overflow: hidden;
}

.blog .card .text a {
  font-size: 16px;
  color: var(--primary);
  text-decoration: underline;
  display: inline-block;
}

.blog .blog-carousel .owl-dots {
  margin-top: 30px;
}

.blog .blog-carousel .owl-dots button span {
  width: 13px;
  height: 13px;
  border-radius: 13px;
  border: 2px solid transparent;
  outline: 2px solid var(--dark);
  opacity: 1;
  background: transparent;
  transition: 0.5s ease all;
}

.blog .blog-carousel .owl-dots button.active span,
.blog .blog-carousel .owl-dots button:hover span {
  background: var(--dark);
  border: 2px solid var(--light);
}

.blog .blog-carousel .owl-nav {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 100px);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog .blog-carousel .owl-nav button {
  border: 0;
  background: transparent !important;
  outline: 0;
  border-radius: 0 !important;
  font-size: 50px;
  color: var(--dark) !important;
  pointer-events: all;
  transition: 0.5s ease all;
  opacity: 1;
}

.blog .blog-carousel .owl-nav button.disabled {
  opacity: 0;
  pointer-events: none;
}

/* About Factory */
.about-factory .image {
  position: absolute;
  top: 0;
  right: 0;
  width: 37%;
  height: 100%;
}

.about-factory .image img {
  width: 100%;
  height: 100%;
  object-position: bottom center;
  object-fit: cover;
}

.about-factory address {
  margin: 0 0 5px;
}

.about-factory p a {
  color: var(--dark);
}

.about-factory .link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.about-factory .link span {
  font-size: 20px;
  font-family: var(--sans-serif-bold);
  color: var(--primary);
}

.about-factory .link i {
  font-size: 16px;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 30px;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: 0.5s ease all;
  margin-left: 15px;
}

.about-factory .link:hover i {
  margin-left: 20px;
}

/* Team */
.team .item .image {
  width: 190px;
  height: 190px;
  overflow: hidden;
  border-radius: 10px;
}

.team .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.5s ease all;
}

.team .item:hover .image img {
  transform: scale(1.1);
}

.team .item .text h5 {
  font-size: 30px;
  font-family: var(--sans-serif-bold);
  color: var(--dark);
  margin: 15px 0 10px;
  transition: 0.5s ease all;
}

.team .item .text h6 {
  font-size: 16px;
  color: var(--dark-alt);
  transition: 0.5s ease all;
}

.team .item:hover .text h5,
.team .item:hover .text h6 {
  color: var(--primary);
}

/* Contact Section */
.contact .image {
  width: 100px;
}

/* Footer */
.footer {
  background: var(--dark);
  border-top: 10px solid var(--primary);
}

.footer .logo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.footer .logo img {
  width: 220px;
}

.footer .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.footer .social a {
  width: 25px;
}

.footer ul li a {
  font-size: 16px;
  font-family: var(--sans-serif-light);
  color: var(--light);
  transition: 0.5s ease all;
  line-height: 26px;
}

.footer ul li a:hover {
  color: var(--primary);
}

.footer h6 {
  font-size: 16px;
  font-family: var(--sans-serif-bold);
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 20px;
}

.footer address {
  font-size: 16px;
  font-family: var(--sans-serif-light);
  color: var(--light-alt);
}

.footer address b {
  font-family: var(--sans-serif-bold);
}

.footer p {
  font-size: 14px;
}

.footer p b {
  display: block;
  font-family: var(--sans-serif-light);
  color: var(--light);
}

.footer p a {
  color: var(--light-alt);
}

.footer p.text-light-alt {
  font-size: 14px;
}

/* Case Study List */
.case-study-list .filter-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 50px;
}

.case-study-list .filter-list button {
  padding: 10px 10px 6px;
  border-radius: 20px;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  font-size: 13px;
  font-family: var(--sans-serif-bold);
  text-transform: uppercase;
  transition: 0.5s ease all;
}

.case-study-list .filter-list button:hover,
.case-study-list .filter-list button.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
}

.case-study-list .item {
  margin-bottom: 70px;
}

.case-study-list .item .image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.case-study-list .item .video {
  overflow: hidden;
  width: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.case-study-list .item .video i {
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: var(--light);
  border: 2px solid var(--light);
  border-radius: 100px;
  text-align: center;
  line-height: 100px;
  z-index: 2;
  transition: 0.5s ease all;
}

.case-study-list .item .video img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: 0.5s ease all;
}

.case-study-list .item .video .hide {
  visibility: hidden;
  pointer-events: none;
}

.case-study-list .item .video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.case-study-list .item .text {
  padding-bottom: 20px;
  border-bottom: 2px solid var(--dark);
}

.case-study-list .item .text .tag {
  padding: 10px 10px 6px;
  border-radius: 20px;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  font-size: 13px;
  font-family: var(--sans-serif-bold);
  text-transform: uppercase;
  display: inline-block;
}

.case-study-list .item .text h5 {
  font-size: 30px;
  font-family: var(--sans-serif-bold);
  color: var(--dark);
  margin: 40px 0 15px;
  transition: 0.5s ease all;
}

.case-study-list .item .text h5:hover {
  color: var(--primary);
}

.case-study-list .item .text p {
  font-size: 25px;
  width: 75%;
  margin-bottom: 15px;
}

.case-study-list .item .text a.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.case-study-list .item .text a.read-more span {
  font-size: 20px;
  font-family: var(--sans-serif-bold);
  color: var(--dark);
}

.case-study-list .item .text a.read-more i {
  font-size: 16px;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 30px;
  border: 2px solid var(--dark);
  color: var(--dark);
  transition: 0.5s ease all;
  margin-left: 15px;
}

.case-study-list .item .text a:hover i {
  margin-left: 20px;
  color: var(--light);
  background: var(--primary);
  border-color: var(--primary);
}

.case-study-list .load-btn {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 25px;
  font-family: var(--sans-serif-bold);
  color: var(--primary);
  text-decoration: underline;
}

/* code added by ankita 18-04-2024 */
.system-specification-table table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.system-specification-table td,
th {
  border: 1px solid #000;
  text-align: left;
  padding: 5px;
}
/* 
.system-specification-table tr:nth-child(even) {
  background-color: #dddddd;
} */

/* Responsive */
@media (max-width: 1280px) {
}

@media (max-width: 1200px) {
  .navbar .navbar-collapse {
    background: var(--dark);
    /* margin-top: 15px; */
    /* padding: 10px 0; */
  }

  .navbar-collapse .navbar-nav {
    padding: 10px 0;
  }

  .navbar .nav-item {
    width: 100%;
  }

  .navbar .nav-item .nav-link {
    padding: 10px 20px;
  }

  .navbar .nav-item .nav-link:hover {
    transform: scale(1);
    padding-left: 30px;
  }

  .navbar .nav-item .nav-link:hover::after {
    display: none;
  }

  .hero .carousel-caption h5 {
    font-size: 50px;
  }

  .hero .carousel-caption p {
    font-size: 20px;
  }

  .about .video h5,
  .heading {
    font-size: 40px;
  }

  .about h6,
  .services .nav-link .text h5 {
    font-size: 20px;
  }

  .services .text p {
    font-size: 18px;
  }

  .about .image,
  .contact .image {
    width: 80px;
  }
}

@media (max-width: 1199px) {
}

@media (max-width: 992px) {
  .hero .carousel .carousel-item {
    height: 80vh;
    min-height: 500px;
  }

  .hero .carousel-caption {
    width: 80%;
  }

  .case-study .filter-buttons {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .testimonial .image {
    margin: auto;
  }

  .testimonial .testimonial-carousel .owl-nav,
  .news .news-carousel .owl-nav,
  .blog .blog-carousel .owl-nav {
    position: relative;
    inset: auto;
    transform: translate(0);
    width: 100%;
    margin: auto;
    justify-content: center;
  }

  .news .news-carousel .owl-nav button.disabled,
  .blog .blog-carousel .owl-nav button.disabled {
    opacity: 0.5;
  }

  .testimonial {
    text-align: center;
  }

  .about-factory .image {
    position: relative;
    inset: auto;
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 991px) {
  .services .image {
    position: unset;
  }

  .services .text p {
    font-size: 22px;
    color: white;
    padding: 0px 20px 35px 20px;
  }

  #services-section .row {
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .g-5,
  .gx-5 {
    --bs-gutter-x: 0 !important;
  }

  .hero .carousel .carousel-item {
    height: 80vh;
    min-height: 500px;
  }

  .hero-alt,
  .hero-sm .image {
    height: 80vh;
  }
  .hero .carousel-caption h5,
  .hero-alt .text h2,
  .counter .item h5,
  .hero-sm .text h2 {
    font-size: 40px;
  }
  .about-case-video h3 {
    font-size: 20px;
  }
  .about-case-video h4,
  .about-case-video .text h5 {
    font-size: 18px;
  }

  .hero .carousel-caption p br,
  .hero .carousel-caption h5 br {
    display: none;
  }

  .about .image {
    margin: 0;
  }
  #benefit-section .item {
    flex-direction: column;
  }
  #benefit-section .item .icon {
    width: 50px;
  }
  .hero-alt .text {
    width: 80%;
  }
  .case-study-carousel .carousel .pattern {
    width: 70px;
  }
  .case-study-carousel .carousel .carousel-caption .text h5 {
    font-size: 18px;
  }
  .case-study-carousel .carousel .carousel-caption .text h4 {
    font-size: 25px;
  }
  .case-study-carousel .carousel .carousel-caption .text a {
    font-size: 14px;
  }
  .case-study-carousel .carousel .carousel-indicators,
  .about-case-video .carousel .carousel-indicators {
    bottom: 20px;
    right: 20px;
  }
  .case-study-list .item .text h5 {
    font-size: 25px;
  }
  .case-study-list .item .text p {
    width: 100%;
    font-size: 16px;
  }
  .case-study-carousel .carousel .carousel-caption .text a i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
  }
  .about-case-video .carousel .carousel-item {
    height: 100%;
  }
  .about-case-video .carousel .carousel-controls {
    display: none;
  }
  .case-study-inner-carousel .carousel .carousel-controls {
    display: none;
  }
  .case-study-inner-carousel .carousel .carousel-indicators {
    bottom: 20px;
  }
  .case-study-inner-carousel .carousel .carousel-caption {
    padding-bottom: 100px;
  }
  .case-study-inner-carousel .info .image {
    margin: auto auto auto 0;
  }
  .footer .row .row.g-4 .col-lg-2 {
    margin: 0;
  }
  .footer .row:nth-child(2) .col-lg-3 {
    margin-top: 20px;
  }
  .about-case-video .video h5 {
    font-size: 15px;
    bottom: 15px;
  }
  .about-case-video .video .icon {
    width: 50px;
    height: 50px;
  }
  .about-case-video .video .icon i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 330px) {
  .header .navbar-brand img {
    width: 235px !important;
    transition: 0.5s ease all;
  }
}
