@font-face {
  font-family: 'Impact';
  src: url('../fonts/Impact/Impact.eot');
  src: url('../fonts/Impact/Impact.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Impact/Impact.woff2') format('woff2'),
      url('../fonts/Impact/Impact.woff') format('woff'),
      url('../fonts/Impact/Impact.ttf') format('truetype'),
      url('../fonts/Impact/Impact.svg#Impact') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



body {
    font: 14px/2 "Poppins", sans-serif;
    letter-spacing: 0.05em;
  }@keyframes buttonAnimation {
    0% {
      transform: scale(1);
      background-color: #229ed9;
    }
    50% {
      transform: scale(1.2);
      background-color: red;
    }
    100% {
      transform: scale(1);
      background-color: #229ed9;
    }
  }

  .btn {
    display: inline-block;
    padding: 32px 30px;
    border: none;
    border-radius: 20px;
    font-size: 40px;
    color: white;
    text-decoration: none;
    background-color: #229ed9;
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: buttonAnimation 2s infinite;
  }

  
  
 
  .btn-show {
    display: inline-block;
    padding: 32px 30px;
    border: none;
    border-radius: 4px;
    font-size: 40px;
    color: white;
    text-decoration: none;
  }

  .btn:hover {
    animation-play-state: paused;
  }

  .btn .btn-inner {
    position: relative;
    z-index: 2;
  }

  .slideshow {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
  }
  .slideshow .slideshow-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slideshow .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .slideshow .slide {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .slideshow .slide.is-active {
    display: block;
  }
  .slideshow .slide.is-loaded {
    opacity: 1;
  }
  .slideshow .slide .caption {
    padding: 0 100px;
  }
  .slideshow .slide .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.8);
    background-repeat: no-repeat;
  }
  .slideshow .slide .image-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .slideshow .slide .image {
    width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
  }
  .element {
    margin-bottom: 10px; /* Default spacing */
  }

    i.fa.fa-telegram {
      transform: rotate(-5deg);
      animation: send 2s linear alternate infinite;
  }

  @keyframes send {
    0% {
      transform: translate(0%, 0%);
    }
    40% {
      transform: translate(1.56%, -1.56%);
    }
    42% {
      transform: translate(1.64%, -1.64%);
    }
    56% {
      transform: translate(-4.63%, 4.63%);
    }
    58% {
      transform: translate(-4.4%, 4.4%);
    }
    72% {
      transform: translate(13.12%, -13.12%);
    }
    86% {
      transform: translate(-37.06%, 37.06%);
    }
    100% {
      transform: translate(60%, -60%);
    }
  }

  
  .mobile-view .element {
    margin-bottom: 20px; /* Increased spacing for mobile view */
  }
  .slideshow .slide-content {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @keyframes blink {
    50% {
      color: red;
    }
  }

  .seconds {
    animation: blink 1s infinite;
  }

  .slideshow .slide .title {
    margin: 0 auto 15px;
    max-width: 1000px;
    font-size: 60px;
    font-family: 'Impact';
    text-transform: uppercase;
  }
  .slideshow .slide .text {
    margin: 0 auto;
    max-width: 1000px;
    font-size: 60px;
    line-height: 1.4;
  }
  .slideshow .slide .btn {
    margin: 15px 0 0;
    overflow: hidden;
    border-color: #fff;
  }
  .slideshow .slide .btn::before {
    background: #fff;
  }
  .slideshow .pagination {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 12px;
    cursor: default;
    z-index: 2;
    text-align: center;
  }
  .slideshow .pagination .item {
    display: inline-block;
    padding: 15px 5px;
    position: relative;
    width: 46px;
    height: 32px;
    cursor: pointer;
    text-indent: -999em;
    z-index: 1;
  }
  .slideshow .pagination .item + .page {
    margin-left: -2px;
  }
  .slideshow .pagination .item::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 5px;
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease;
  }
  .slideshow .pagination .item::after {
    width: 0;
    background: #fff;
    z-index: 2;
    transition: width 0.2s ease;
  }
  .slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
    background-color: #fff;
  }
  .slideshow .arrows .arrow {
    margin: -33px 0 0;
    padding: 20px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 3;
  }
  .slideshow .arrows .prev {
    left: 30px;
  }
  .slideshow .arrows .prev:hover .svg {
    left: -10px;
  }
  .slideshow .arrows .next {
    right: 30px;
  }
  .slideshow .arrows .next:hover .svg {
    left: 10px;
  }
  .slideshow .arrows .svg {
    position: relative;
    left: 0;
    width: 14px;
    height: 26px;
    fill: #fff;
    transition: left 0.2s ease;
  }

  @media (max-width: 767px) {
    #bottomContent {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      background-color: #fff;
      text-align: center;
    }
    .slideshow .slide .image{
      object-position: right;
    }
  }
