.widget-banner {
    position: absolute;
    bottom: 2%;
    left: 0;
    /* transform: translateX(-50%); */
    z-index: 10;
    width: 100%;
    /* max-width: 1200px; */
    padding: 20px 30px;
    color: white;
    /* border-radius: 8px; */
box-sizing: border-box;
display: flex;
    flex-direction: row; 
    justify-content: space-between; 
    gap: 20px;
}

/* Bilgi kutuları container */
.counter .group {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
}

/* Her bilgi öğesi */
.item {
  display: flex;
  align-items: center;
  min-width: 160px;
  flex-shrink: 0;
}

.icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 12px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.item b {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.item p {
  font-size: 12px;
  margin: 0;
}

/* Butonlar konteyneri */
.online-btn-content {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;           
  justify-content: flex-end;
  align-items: center;
  min-width: 200px;
}

/* Butonlar */
.online-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  user-select: none;
  flex-shrink: 0;
}

.btn-purple {
  background-color: #5a375e;
  color: white;
}

.btn-purple:hover {
  background-color: #3f2140;
}

.btn-black {
  background-color: #333333;
  color: white;
}

.btn-black:hover {
  background-color: #1a1a1a;
}

.online-btn img {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .widget-banner {
    flex-direction: column;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    left: 0;
    transform: none;
    gap: 4px;       
  }

  .counter .group {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;         
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    padding: 0;
    margin: 0;
  }

  .item {
    flex: 0 0 auto;
    min-width: 80px;
    justify-content: center;
    text-align: center;
  }

  .item b {
    font-size: 18px;
  }

  .item p {
    font-size: 10px;
    margin: 0;
  }

  .online-btn-content {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
    gap: 8px;       
    margin-top: 0;     
  }

  .online-btn {
    flex: 1 1 auto;
    min-width: 140px;
    justify-content: center;
    font-size: 13px;
    padding: 10px 16px;
  }

  .online-btn img {
    width: 18px;
    height: 18px;
  }
}


@media (max-width: 768px) {
  .swiper-slide .sw-caption {
    bottom: 30px !important;
    padding-bottom: 20px;
  }
}

:root {
  --primary-color: #548120;
  --primary-color-rgb: 84, 129, 32;
}

.scroll-down2 {
    position: absolute;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    right: 150px;
    bottom: 0;
    color: #548120;
    cursor: pointer;
    z-index: 20;
    padding: 10px 0;
    max-height: 500px;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    transition: 400ms;
}

@media(min-width: 340px) {
    .scroll-down2 {
        right:15px;
        bottom: 0;
        max-height: 350px;
    }
}

@media(min-width: 768px) {
    .scroll-down2 {
        max-height:290px;
        right: 50px;
        bottom: 0;
        max-height: 500px;
    }
}

@media(min-width: 1124px) {
    .scroll-down2 {
        max-height:350px;
    }
}

@media(min-width: 1300px) {
    .scroll-down2 {
        max-height:370px;
    }
}

@media(min-width: 1500px) {
    .scroll-down2 {
        max-height:430px;
    }
}

@media(min-width: 1700px) {
    .scroll-down2 {
        max-height:500px;
    }
}

@media(min-width: 2200px) {
    .scroll-down2 {
        right:250px;
        bottom: 10vh;
    }
}

.scroll-down2:hover .slide-bar {
    transform: translateY(30px);
}

.scroll-down2 .slide-bar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    transition: 400ms;
}

.scroll-down2 .text {
    font-family: "Oswald",sans-serif; 
    font-size: 24px;
    letter-spacing: .5px;
    cursor: pointer;
    transition: 200ms;
    margin-bottom: 5px;
    font-weight: bold;
    color: #548120;
}

@media(min-width: 340px) {
    .scroll-down2 .text {
        font-size:14px;
        white-space: nowrap;
        width: max-content;
        height: max-content;
    }
}

@media(min-width: 768px) {
    .scroll-down2 .text {
        font-size:18px;
    }
}

@media(min-width: 1124px) {
    .scroll-down2 .text {
        font-size:19px;
    }
}

@media(min-width: 1300px) {
    .scroll-down2 .text {
        font-size:20px;
    }
}

@media(min-width: 1500px) {
    .scroll-down2 .text {
        font-size:21px;
    }
}

@media(min-width: 1700px) {
    .scroll-down2 .text {
        font-size:22px;
    }
}

.scroll-down2 .drop {
    padding: 0;
    max-height: 140px;
    min-height: 140px;
    overflow: hidden;
    min-width: 17px;
    max-width: 17px;
    transform: rotate(180deg);
    position: relative;
    right: 3px;
}

.scroll-down2 .drop span {
    width: 2px;
    background-color: #548120;
    height: 10px;
    display: inline-block;
}

@media(max-width: 990px) {
    .scroll-down2 .drop {
        max-height:60px;
        min-height: 60px;
    }
}

.border-text {
    color: #fffffa;
    font-family: "LibreBodoni-Regular";
    font-size: 20vw;
    text-shadow: -1px 1px 0 #29b3c8,1px 1px 0 #29b3c8,1px -1px 0 #29b3c8,-1px -1px 0 #29b3c8;
    opacity: .15;
    white-space: nowrap;
}

@keyframes scrollLine {
    from {
        height: 0%;
    }

    to {
        height: 100%;
    }
}

@keyframes slideMixin {
    from {
        transform: translate(-120%,0%);
    }

    to {
        transform: translate(150%,0%);
    }
}