/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 23 2025 | 15:20:02 */
.nead-slider .slider {
    position: relative;
    overflow: hidden;
    /*width: 100%;*/
    margin: 0 auto;
    height: 100%;
  }

  .nead-slider .slide-container {
    display: flex;
    transition: transform 0.5s ease;
  }

  .nead-slider  .slide {

    padding: 50px;
    box-sizing: border-box;

    width: 100%;
  }

  .nead-slider  .slide-arrow-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    color: #0073B6;
  }

  .nead-slider .prev {
    font-size: 45px;
    position: absolute;
    left: 0;
    cursor: pointer;
    margin: 0 5px;
    color: #0073B6;
  }

  .nead-slider  .next {
    color: #0073B6;
    font-size: 45px;
    position: absolute;
    right: 0;
    cursor: pointer;
    margin: 0 5px;
  }

  .nead-slider  .bullets {
    text-align: center;
    margin-top: 20px;
  }

  .nead-slider  .bullet {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #EDE2DC;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
  }

  .nead-slider  .bullet.active {
    background-color: #0073B6;
  }