.gallery-finovate .btn {
  border: none;
  padding: 20px;
  gap: 8px;
  background: var(--hd-primary);
  color: var(--hd-text-secondary);
  border-radius: 64px;
  font-family: var(--bs-body-font-family);
  font-weight: 500;
  font-size: 14px;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.gallery-finovate .btn.btn-text {
  border: none;
  background: none;
  color: var(--hd-text);
  padding: 0;
}

.gallery-finovate .btn.btn-text:hover {
  opacity: 0.5;
}

.gallery-finovate .btn.btn-text:focus {
  color: var(--hd-secondary);
}

.gallery-finovate .btn-text.arrow-right .icon {
  transition: all 0.2s;
  float: right;
  margin-left: 5px;
  margin-top: -2px;
  left: 0;
  position: relative;
}

.gallery-finovate .btn-text.arrow-right:hover .icon {
  left: 5px;
}

.gallery-finovate .btn.arrow-right .icon path {
  stroke: var(--hd-text);
}
.gallery-finovate .container-inner {
  max-width: 800px;
  position: relative;
}
.gallery-finovate .section-heading h2 {
  font-size: var(--h2-size-large);
  font-weight: 600;
  color: var(--hd-text);
}

.gallery-finovate .section-heading .tag-line {
  font-size: 12px;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.84px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--hd-text);
}

.gallery-finovate .section-heading p {
  font-size: 18px;
  margin-top: 12px;
  font-weight: 400;
  opacity: 0.7;
  color: var(--hd-text);
}

.gallery-finovate .section-heading .btn-column {
  margin-top: 32px;
}

.gallery-finovate .section-heading .btn-column .btn.btn-text {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .gallery-finovate .section-heading h2 {
    font-size: var(--h2-size-small);
  }
}

.gallery-finovate {
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--hd-body-bg);
}

.gallery-finovate .section-heading .btn-column .btn-text {
  color: var(--hd-text);
}

.gallery-finovate .gallery-slider {
  margin-top: 80px;
}

.gallery-finovate .gallery-slider .gallery-img {
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  transform: scale(0.7);
  border-radius: 32px;
  box-shadow: 0px 43px 71px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-finovate .gallery-slider .gallery-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.gallery-finovate .gallery-slider .swiper-slide-active .gallery-img {
  transform: scale(1);
}

.gallery-finovate .gallery-slider .swiper-arrows {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 32px 0;
}

.gallery-finovate .gallery-slider .swiper-arrow {
  width: 65px;
  height: 65px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--hd-secondary) 15%, transparent);
  justify-content: center;
  align-items: center;
  display: flex;
  left: 50%;
  z-index: 1;
  cursor: pointer;
  position: static;
  font-size: 24px;
  margin: 0;
}

.gallery-finovate .gallery-slider .swiper-arrow:after {
  display: none;
}

.gallery-finovate .gallery-slider svg {
  width: auto;
  height: auto;
  color: var(--hd-text);
}

.gallery-finovate .gallery-list .gallery-img {
  margin: 16px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-finovate .gallery-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--hd-primary);
  color: var(--hd-text-secondary);
  opacity: 0;
  transition: all 0.5s;
}

.gallery-finovate .gallery-img-overlay h3 {
  margin-bottom: 24px;
}

.gallery-finovate .gallery-img-overlay p {
  opacity: 0.6;
  margin-bottom: 40px;
}

.gallery-finovate .gallery-img-overlay a {
  color: var(--hd-text-secondary);
}

.gallery-finovate .gallery-img-overlay a svg path {
  stroke: var(--hd-text-secondary);
}

.gallery-finovate .gallery-img-overlay-content {
  position: absolute;
  left: 0;
  right: 0;
  padding: 80px;
  bottom: -40px;
  transition: all 0.5s;
}

.gallery-finovate .gallery-img:hover .gallery-img-overlay {
  opacity: 1;
}

.gallery-finovate .gallery-img:hover .gallery-img-overlay-content {
  bottom: 0;
}

@media (max-width: 767px) {
  .gallery-finovate .gallery-slider .gallery-img {
    transform: scale(0.85);
  }
  .gallery-finovate .gallery-slider .gallery-img img {
    height: 360px;
  }
}