{#
.transaction-section .content-wrapper {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.transaction-section h2 {  
  margin-bottom: 60px;
}

.transaction-section .owl-carousel .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
}

.transaction-section .text-content {
  text-align: left;
  max-width: 395px;
}
.transaction-section .text-content h3 {  
  color: #061C3A;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0;
}
.transaction-section .text-content .sub-title {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: capitalize;
}
.transaction-section .image-content img {
  display: block;  
  max-width: 100%;
  border-radius: 12px;
  width: 100%;
}

/* Animation */
.transaction-section .owl-item.active .item {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dots customization */
.transaction-section .owl-dots {
  margin-top: -30px;
  display: block;
  width: fit-content;
  z-index: 10;
  position: relative;
}

.transaction-section .owl-dot span {
  width: 10px;
  height: 10px;
  border: 1.29px solid transparent;
  background-color: #007BFF;
  border-radius: 50%;
  display: inline-block;
  margin: 4.5px;
  transition: all 0.3s ease;
}

.transaction-section .owl-dot.active span {
  background-color: transparent;
  transform: scale(1.3);
  border-color: #000;
}

@media(max-width:768px) {
  .transaction-section .owl-carousel .item {
    flex-direction: column;
    text-align: center;
  }

  .transaction-section .image-content img {
    width: 100%;
    margin-top: 20px;
  }

  .transaction-section .text-content {
    text-align: center;
  }
  .transaction-section .owl-dots {
    margin-top: 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
#}

.transaction-section .section-heading .title {
  margin-bottom: 36px;
}