* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
  .slide-container {
    position: relative;
    width: 800px;
    height: 650px;
   
  }
  .slide-container .slides {
    width: 100%;
    height: calc(100% - 40px);
    position: relative;
    overflow: hidden;
  }
  .slide-container .slides img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
  }
  .slide-container .slides img:not(.active) {
    top: 0;
    left: -100%;
  }
  span.next,
  span.prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 14px;
    color: #eee;
    background-color: #2320209a;
    font-size: 24px;
    font-weight: bold;
    transition: 0.5s;
    border-radius: 3px;
    user-select: none;
    cursor: pointer;
    z-index: 1;
  }
  span.next {
    right: 20px;
  }
  span.prev {
    left: 20px;
  }
  span.next:hover,
  span.prev:hover {
    background-color: #ede6d6;
    opacity: 0.8;
    color: #222;
  }
  .dotsContainer {
    position: absolute;
    bottom: 5px;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
  }
  .dotsContainer .dot {
    width: 15px;
    height: 15px;
    margin: 0px 2px;
    border: 3px solid #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.6s ease;
  }
  .dotsContainer .active {
    background-color: #555;
  }

  @keyframes next1 {
    from {
      left: 0%;
    }
    to {
      left: -100%;
    }
  }
  @keyframes next2 {
    from {
      left: 100%;
    }
    to {
      left: 0%;
    }
  }

  @keyframes prev1 {
    from {
      left: 0%;
    }
    to {
      left: 100%;
    }
  }
  @keyframes prev2 {
    from {
      left: -100%;
    }
    to {
      left: 0%;
    }
  }

header
{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 1s;
    padding-top: 15px;
    padding-left: 20px;
    z-index: 1000;
    background-color: #fff;
}

header ul
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li
{
    position: relative;
    list-style: none;
    margin: 10px 10px;
}
.BG1 {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-image: url(/IMAGES/sideshot_50.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: -5;
  margin: auto;
}