

.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .slider {
    display: flex;
    transition:0.8s ease-in-out;
    height: 380px;
 
  }

  .slide {
    flex: 0 0 100%;
    width: 400px;
    height:380px;
    background-position: center;
 
  }

  .slide.active {
    transform: translateX(0);
  }

  .slider-controls {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .prev-slide,
  .next-slide {
    margin: 0 10px;
    height: 40px;
    width: 40px;
    outline: none;
    border: none;
    opacity: 0.5;
    background-color: lightblue;

  }

  .modify{
    position: relative;
    background-color: #F4F9FC;
  }

  .modify1{
    position: relative;
    top: 10px;
  }
  

  .portfoliobg{
    background-color: #ffffff;
  }