.newBlue {
  background: linear-gradient(45deg, rgb(54, 88, 189) 0%, rgb(76, 114, 248) 100%);
}

.newGreen {
  background: linear-gradient(45deg, rgb(0, 155, 111) 0%, rgb(0, 218, 161) 100%);
}

.newGray {
  background: #6A7085;
}

.br-20 {
  border-radius: 20px;
}

.newFeatures {
  background-color: #F3F7FA !important;
}

.digitalOnboardingSection {
  background-color: #39B094 !important;
}
.digitalOnboardingSection img {
  width: 70px;
}
.digitalOnboardingSection .gap {
  gap: 50px;
}
@media screen and (max-width: 992px) {
  .digitalOnboardingSection .gap {
    gap: 30px;
  }
  .digitalOnboardingSection img {
    width: 50px;
  }
}

#learn .owl-nav {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
#learn .owl-nav button {
  pointer-events: auto;
  margin: 0;
  color: #537BF5;
  font-size: 32px;
}
@media screen and (max-width: 992px) {
  #learn .owl-nav button {
    font-size: 26px;
  }
}
#learn .owl-nav button:hover, #learn .owl-nav button:focus {
  background-color: transparent;
  color: #537BF5;
}
#learn .owl-nav button.owl-prev {
  transform: translateX(calc(-100% - 20px));
}
#learn .owl-nav button.owl-next {
  transform: translateX(calc(100% + 20px));
}
#learn .owl-carousel .item {
  overflow: hidden;
  border-radius: 20px;
}

.appie-service-area {
  background-color: #2D3866 !important;
  background-image: url(../images/DutyFreebanner.webp);
  background-size: auto 100%;
}
.appie-service-area .appie-section-title {
  background: transparent;
}
.appie-service-area .appie-section-title h3 {
  color: #fff;
}

#money-transfer {
  background-image: url(../images/moneytransfer.webp);
  background-size: cover;
  background-position: right center;
}
@media screen and (max-width: 992px) {
  #money-transfer {
    background-image: url(../images/moneytransfer-mobile.webp);
    background-position: center center;
  }
}
#money-transfer h3, #money-transfer p {
  color: #fff;
}

.applyBg {
  background-image: url(../images/ApplyforLetimcard.png);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 992px) {
  .applyBg {
    padding-bottom: 0 !important;
  }
}

.shopSection .shopCarousel .item > div {
  height: 120px;
  max-height: 120px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .shopSection .shopCarousel .item > div {
    max-height: 100px;
    height: 100px;
    font-size: 16px;
  }
}
.shopSection .shopCarousel .item > div img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.shopSection .shopCarousel .owl-nav {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.shopSection .shopCarousel .owl-nav button {
  pointer-events: auto;
  margin: 0;
  color: #39B094;
  font-size: 32px;
}
@media screen and (max-width: 992px) {
  .shopSection .shopCarousel .owl-nav button {
    font-size: 26px;
  }
}
.shopSection .shopCarousel .owl-nav button:hover, .shopSection .shopCarousel .owl-nav button:focus {
  background-color: transparent;
  color: #39B094;
}
.shopSection .shopCarousel .owl-nav button.owl-prev {
  transform: translateX(calc(-100% - 20px));
}
.shopSection .shopCarousel .owl-nav button.owl-next {
  transform: translateX(calc(100% + 20px));
}

.mediaSection .mediaTable .item > div {
  height: 120px;
  max-height: 120px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .mediaSection .mediaTable .item > div {
    max-height: 100px;
    height: 100px;
    font-size: 16px;
  }
}
.mediaSection .mediaTable .item > div img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

/*# sourceMappingURL=app.css.map */





  /* Tab'ı ve içeriklerini ortala */
  .tab-container {
    display: flex;
    justify-content: center;
    align-items: center;

     /* Ekran yüksekliği kadar alan kaplasın */
  }

  /* Sekmelerin stilini belirle */
  .tab {
    overflow: hidden;

    background-color: #f1f1f1;
    display: flex;
    border-radius: 10px;
  }
  /* Her sekmenin içeriğinin stilini belirle */
  .tabcontent {
    display: none;
 
  }

  .tab button { /* Arkaplan rengi mavi */
    color: black; /* Metin rengi siyah */
    border: none;
    outline: none;
    cursor: pointer;
    padding: 11px 13px;
    transition: 0.3s;
    border-radius: 10px;
}
.wallet-e{
  margin-right: 10px;
}

.tab button:hover {
    background-color: #ddd; /* Fare üzerine gelindiğinde rengi değiştir */
}

.tab button.active {
    background-color: #527bf3;
    color: white;
}