#slides-window {
  position: relative;
  width: 100%;
  height: calc(65vh - 59px);
  overflow: hidden;
  left: 0px;
  min-height: 261px;
}

#slides {
  height: 100%;
  position: absolute;
  margin: 0px;
  padding: 0px;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  transition: all 0.66s ease;
  -webkit-transition: all 0.66s ease;
}

.slider {
  visibility: visible;
  list-style: none;
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100%;
  text-align: center;
  line-height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  -webkit-transform: translate3d(0px, 0px, 0px);
  -webkit-transform-style: preserve-3d;
}

.slide-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  transition: opacity 2.5s ease;
}

.slide-right {
  display: flex;
  justify-content: center;
  position: relative;
  opacity: 0;
  transition: opacity 2.5s ease;
}

.slide-left.opa-visible,
.slide-right.opa-visible {
  opacity: 1;
}

.slide-title {
  color: var(--mavi);
  font-size: 40px;
  line-height: 50px;
  width: 500px;
}

.slide-text {
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  width: 500px;
  color: var(--mavi);
}

.slide-left a {
  line-height: 0px !important;
  margin-top: 20px;
}


.slide-right img {
  border: 5px solid var(--mavi);
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  height: 250px;
  width: 250px;
}

.nav-slide {
  display: flex;
  position: absolute;
  z-index: 2;
  height: 50px;
  width: 30px;
  top: calc(50% - 25px);
  cursor: pointer;
  color: var(--mavi);
  opacity: 0.7;
  transition: all 0.66s ease;
  -webkit-transition: all 0.66s ease;
}

.nav:hover {
  opacity: 1;
}
#left-slider {
  left: 3%;
}
#right-slider {
  right: 3%;
}

/* RESPONSIVE SLIDER */
@media (max-width: 425px) {
  .slider {
    flex-direction: column;
  }
  .slide-title {
    font-size: 20px;
    line-height: 30px;
    width: 150px;
  }

  .slide-text {
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    width: 150px;
  }

  .slide-left a {
    line-height: 0px !important;
    margin-top: 10px;
    margin-bottom: 10px;
  }
 

  .slide-right img {
    height: 150px;
    width: 150px;
  }
}

@media (min-width: 426px) and (max-width: 600px) {
  .slide-title {
    font-size: 20px;
    line-height: 30px;
    width: 150px;
  }

  .slide-text {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    width: 150px;
  }

  .slide-left a {
    line-height: 0px !important;
    margin-top: 10px;
  }
  

  .slide-right img {
    height: 150px;
    width: 150px;
  }
}

@media (min-width: 601px) and (max-width: 767px) {
  .slide-title {
    font-size: 25px;
    line-height: 32.5px;
    width: 200px;
  }

  .slide-text {
    font-weight: 600;
    font-size: 17.5px;
    line-height: 22.5px;
    width: 200px;
  }

  .slide-left a {
    line-height: 0px !important;
    margin-top: 12.5px;
  }

  .slide-right img {
    height: 175px;
    width: 175px;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .slide-title {
    font-size: 30px;
    line-height: 40px;
    width: 400px;
  }

  .slide-text {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    width: 400px;
  }

  .slide-left a {
    line-height: 0px !important;
    margin-top: 15px;
  }

  .slide-right img {
    height: 225px;
    width: 225px;
  }
}