/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.quotes .quote__image {
  height: 600px;
  background-color: var(--sk-color-four);
  position: relative;
}
@media (max-width: 768px) {
  .quotes .quote__image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
  }
}
.quotes .quote__image::before, .quotes .quote__image::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -50%;
  left: 0;
  right: 0;
}
.quotes .quote__image::before {
  background: rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .quotes .quote__image::before {
    /* stylelint-disable */
    background: linear-gradient(0deg, rgba(0, 72, 73, 0.3), rgba(0, 72, 73, 0.3)), linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
    /* stylelint-enable */
  }
}
@media (max-width: 768px) {
  .quotes .quote__image::after {
    /* stylelint-disable */
    background: linear-gradient(264.05deg, rgba(0, 0, 0, 0) 31.71%, rgba(0, 0, 0, 0.3) 68.96%);
    /* stylelint-enable */
  }
}
.quotes .quote__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 150%;
}
@media (max-width: 768px) {
  .quotes .quote__image img {
    height: 100%;
    -o-object-position: center;
       object-position: center;
  }
}
@media (max-width: 768px) {
  .quotes .quote__image img.post-image--desktop {
    display: none;
  }
}
.quotes .quote__content {
  position: absolute;
  width: 95vw;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--sk-color-white);
}
@media (max-width: 768px) {
  .quotes .quote__content {
    position: static;
    transform: translateX(0);
    padding: 100px 27px 152px 17px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.quotes .quote__content .sk-btn {
  margin-top: 24px;
  margin-left: 18px;
}
@media (max-width: 768px) {
  .quotes .quote__content .sk-btn {
    margin-left: 0;
  }
}
.quotes .quote__text {
  max-width: 55%;
  padding: 0 0 24px 18px;
}
.quotes .quote__text p {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .quotes .quote__text p {
    font-size: 24px;
    line-height: 1.1;
  }
}
@media (max-width: 768px) {
  .quotes .quote__text {
    max-width: 93%;
    padding: 0;
  }
}
.quotes .quote__author {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  padding-left: 18px;
}
@media (max-width: 768px) {
  .quotes .quote__author {
    padding: 32px 0 0;
    text-align: left;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
  }
}
.quotes .quote__buttons-container {
  position: absolute;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 768px) {
  .quotes .quote__buttons-container {
    bottom: 42px;
    left: 0;
    transform: none;
    justify-content: flex-start;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .quotes .swiper-slide {
    height: auto;
    display: flex;
  }
}
.quotes .slider-button {
  position: static;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  background-color: transparent;
  border: 1px solid var(--sk-color-white);
  background-image: url("../../../resources/img/slider-arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  top: 73%;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
}
.quotes .slider-button:hover, .quotes .slider-button:active {
  background-color: var(--sk-color-one);
  border-color: var(--sk-color-one);
}
.quotes .slider-button::after, .quotes .slider-button::before {
  display: none;
}
.quotes .slider-button-left {
  background-image: url("../../../resources/img/slider-arrow-left.svg");
  left: 89%;
}
@media (max-width: 768px) {
  .quotes .slider-button {
    top: 134px;
    left: 92px;
  }
  .quotes .slider-button-left {
    left: 17px;
  }
}
