.portfolio {
  display: flex;
  overflow: hidden;
}

.portfolio__left {
  min-width: 25%;
  display: flex;
  flex-direction: column;
}

.portfolio__nav {
  margin-top: auto;
  margin-left: auto;
  display: flex;
  gap: 1rem;
}

.portfolio__nav svg {
  width: 30px;
  height: 30px;
}

.portfolio__right {
  position: relative;
  right: -50px;
}

.portfolio__title {
  font-size: 3rem;
}

@media only screen and (min-width: 990px) {
  .splide li {
    width: 600px !important;
  }
}

@media only screen and (min-width: 1200px) {
  .splide li {
    width: 800px !important;
  }
}

@media only screen and (max-width: 990px) {
  .portfolio {
    display: block;
  }

  .portfolio__right {
    right: 0;
  }
}

img {
  max-width: 100%;
  height: 100%;
}
.portfolio button {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #d9d9d9;
  cursor: pointer;
  transition: all 0.2s;
}
.portfolio button svg path {
  fill: #d9d9d9;
}
.portfolio button:hover svg path {
  fill: white !important;
}

.portfolio button:hover {
  background-color: #00bd44;
}
