#base {
background-repeat:repeat;
}



/*other option*/
:root {
  --carousel-height: 500px;
  --slide-width: calc(100% / 1);
}

* {
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
  padding: 20px;
  font-family: 'Merriweather', serif;
}

/** Wrapper **********************/
.carousel, .carousel2 {
  position: relative;
  width: 100%;
  max-width: 1--%;
  margin: 0 auto;
  padding: 0 20px;
}

/** Previous/next buttons ********/
.previous, .previous2,
.next, .next2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  position: absolute;
  top: calc(50% - 16px);
  cursor: pointer;
  font-size: 32px;
  border: 0;
  background: none;
}

  .previous, .previous2 { left: -14px; }
  .next, .next2 { right: -14px; }

/** Slides track ***************/
.slides, .slides2 {
  list-style: none;
  padding: 0;
  margin: 0;
  
  display: flex;
  width: 100%;
  overflow: hidden;
}

/** Individual slides ***********/
.slide, .slide2 {
  flex: 0 0 calc(100% / 1 - 10px);
  margin: 0 5px;
  padding: 20px;
height: var(--carousel-height);
  
  display: flex;
  align-items: center;
  
  font-size: 18px;
  line-height: 26px;
  background-color: black;
}

.slide2 {
  flex: 0 0 calc(50% / 1 - 10px);
  padding:2px;
  margin: 0 0px;
}

  @media screen and (max-width: 768px) {
    .slide, .slide2 {
      font-size: 14px;
      line-height: 18px;
      align-items: flex-start;
    }
  }

  .slide a, .slide2 a {
    color: black;
    font-weight: bold;
  }

/*for single page images*/
#single {
width:400px;
}

@media screen and (max-width: 768px) {
#single {
width:100%;
}}

/** Slide dots ******************/
.navigation, .navigation2 {
  position: absolute;
  left: 0;
  bottom: 2%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

  .navigation li,   .navigation2 li {
    display: inline-block;
  }

    .navigation li button,   .navigation2 li button {
      display: block;
      width: 10px;
      height: 10px;
      margin: 0 5px;
      border: 0;
      border-radius: 100px;
      background-color: white;
      cursor: pointer;
    }

      .navigation li button:focus, .navigation2 li button:focus {
        outline-offset: 4px;
      }

      /** Active slide dot */
      .navigation li button[aria-current="true"],   .navigation2 li button[aria-current="true"]  {
        background-color: #286dc0;
        width: 15px;
        height: 15px;
      }

 @media screen and (max-width: 768px) {
   :root {
  --slide-width:100%;
   }}