.slider-container {
  /* direction: ltr; */
  display: block;
  height: 270px;
  width: auto;
  margin: 0 auto;
  position: relative;
  max-width: 1300px;
  margin-top:20px;
  .arrow-left {
    position: absolute;
    left: 10%;
    top: 70%;
    /* transform: translate3d(0, -50%, 0); */
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 9;
    /* border-top: 15px solid transparent;
    border-right: 30px solid #C85054;
    border-bottom: 15px solid transparent; */
    @media (max-width: 1200px) {
      display: none;
    }
  }
  .arrow-right {
    position: absolute;
    right: 10%;
    top: 70%;
    transform: rotate(-180deg);
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 9;
    /* border-top: 15px solid transparent;
    border-left: 30px solid #C85054;
    border-bottom: 15px solid transparent; */
    @media (max-width: 1200px) {
      display: none;
    }
  }
  .dots {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 30px 0;
    user-select: none;
    span {
      display: inline-block;
      width: 20px;
      height: 20px;
      margin-right: 2px;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
      position: relative;
      &:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate3d(-50%, -50%, 0);
        height: 10px;
        width: 10px;
        border-radius: 50%;
        background-color: #ccc;
        opacity: 0.6;
      }
      @media (max-width: 768px) {
        width: 23px;
        margin-bottom: 15px;
      }
      &.active {
        &:before {
          background-color: #C85054;
          opacity: 1;
        }
      }
    }
  }
  .slider {
    display: block;
    width:650px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    text-align: center;
    line-height: 270px;
    color: white;
    @media (max-width: 768px) {
      height: 450px;
      /* width:250px; */
    }
    @media (max-width: 992px) {
      width:450px;
    }
    .slide {
      display: inline-block;
      width: 80%;
      height: 270px;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate3d(-50%, -50%, 0) scale3d(.4, .4, 1);
      transition: transform 0.3s ease-in-out 0s, z-index .2s ease-in-out .1s;
      /* background-color:#2C2A40; */
      /* &:nth-child(odd)
      {
         background-color:gray;
      } */
      @media (max-width: 768px) {
        width: 100%;
        height: 450px;
      }
      /* &:nth-child(1) {
        background-color: #505E63;
      }
      &:nth-child(2) {
        background-color: #62698C;
      }
      &:nth-child(3) {
        background-color: #2C2A40;
      }
      &:nth-child(4) {
        background-color: #C85054;
      }
      &:nth-child(5) {
        background-color: #F1BB70;
      } */
      &.prev-2 {
        transform: translate3d(-118%, -50%, 0) scale3d(.6, .6, 1);
        z-index: 1;
        opacity: 0.5;
      }
      &.prev-1 {
        transform: translate3d(-95%, -50%, 0) scale3d(.8, .8, 1);
        z-index: 2;
        @media (max-width: 768px) {
          transform: translate3d(-80%, -50%, 0) scale3d(.5, .5, 1);
        }
      }
      &.next-1 {
        z-index: 2;
        transform: translate3d(-4.5%, -50%, 0) scale3d(.8, .8, 1);
        @media (max-width: 768px) {
          transform: translate3d(-20.5%, -50%, 0) scale3d(.5, .5, 1);
        }
      }
      &.next-2 {
        z-index: 1;
        transform: translate3d(18%, -50%, 0) scale3d(.6, .6, 1);
        opacity: 0.5;
      }
      &.active {
        z-index: 3;
        transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
        /* box-shadow: 0px 5px 15px 3px rgba(0, 0, 0, 0.3);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden; */
      }
    }
  }
}
.arrow_g {
    border: 1px solid #5FC1BE;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 70px;

}