.boxLayout{
  margin: 0 !important;
  padding: 0 !important;
}

#slidecontainer1 {
    width: 100%;
    height: auto;
    border: 1px solid #ff00ff;
    }
    .slider {
      width: 100%;
      width: auto;
      position: relative;
      overflow: hidden;
    }
  .hidden{
    display:none;
  }
    .hcg-slider-body {
      height: 100%;
      width: auto;
    }
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      color: white;
      font-weight: normal;
      font-size: 22px;
      transition: 0.6s ease;
      border-radius: 0 3px 3px 0;
      user-select: none;
      display: table-cell;
      vertical-align: middle ;
    }
    .next {
      right: 0px;
      border-radius: 8px 0 0 3px;
      top: 57%;
    }
    .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    }
    .mySlides {
      width: 100%;
      height: auto;
    }
    .numbertext {
      color: black;
      font-size: 12px;
      padding: 8px 12px;
      position: absolute;
      top: 0;
      font-size: 12px;
      padding: 4px 7px;
      position: absolute;
      border-radius: 5px;
      top: 5px;
      left: 5px;
      background-color: rgba(255,255,255,0.30);
    }
    .captionp {
      color: #fff;
      font-size: 14px;
      padding: 3px 5px;
      position: absolute;
      bottom: 0;
      border-radius: 5px;
      left: 50%;
      text-align: center;
      text-shadow: 0 0 2px #000;
      background-color: rgba(255,255,255,0.30);
      display: inline-block;
      transform: translate(-50%,-5px);
    }
    .dot.active {
      background-color: #717171;
    }
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .image {
  width: 100%;
  height: 100%;
  }
  @keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
  transform: translateY(0);
  }
  40% {
  transform: translateY(-30px);
  }
  60% {
  transform: translateY(-15px);
  }
  }
  @keyframes bounceInDown {
  from {
  transform: translateY(-1000px);
  }
  to {
  transform: translateY(0);
  }
  }
  @keyframes bounceInLeft {
  from {
  transform: translateX(-1000px);
  }
  to {
  transform: translateX(0);
  }
  }
  @keyframes bounceInRight {
  from {
  transform: translateX(1000px);
  }
  to {
  transform: translateX(0);
  }
  }

  @keyframes bounceInUp {
  from {
  transform: translateY(1000px);
  }
  to {
  transform: translateY(0);
  }
  }

  @keyframes fadeIn {
  from {
  opacity: 0;
  }
  to {
  opacity: 1;
  }
  }
  .animated {
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  /* animation-fill-mode: both; */
  animation-name: bounceInRight;
 }