.swiper-shutters .swiper-slide,
.swiper-shutters swiper-slide {
  overflow: hidden;
}

.swiper-shutters-image,
.swiper-shutters-image-clone,
.swiper-shutters-image-clones {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-shutters-image {
  object-fit: cover;
  object-position: center;
}

.swiper-shutters-image-clone {
  overflow: hidden;
}

:root {
  --shutters-navigation-arrow-color: rgba(255, 255, 255, 0.871);
  --shutters-navigation-arrow-hover-color: #fff;
  --swiper-shutters-slide-border-radius: 0px;
  --swiper-shutters-slide-height: clamp(400px, 70vh, 700px);
}

.wows-shutters {
  height: var(--swiper-shutters-slide-height);
  position: relative;
}

.wows-shutters .swiper {
  width: 100%;
  height: 100%;
}

.wows-shutters .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: var(--swiper-shutters-slide-border-radius);
}

.wows-shutters-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--swiper-shutters-slide-border-radius);
  max-width: unset !important;
}

.wows-shutters-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.wows-shutters-img-wrap::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(357deg, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}

.wows-shutters-content {
  left: 0;
  right: 0;
}

.wows-shutters-content,
.wows-shutters-navigation {
  position: absolute;
  bottom: 0;
  margin: clamp(30px, 6vw, 50px);
  z-index: 1;
}

.wows-shutters-sub-title {
  font-size: 25px;
  text-transform: capitalize;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 600;
}

.wows-shutters-title {
  margin: 0;
}

.wows-shutters-title .swiper-slide-text {
  margin: 0;
}

.wows-shutters-title .wows-title {
  font-size: clamp(30px, 5vw, 60px);
  font-weight: bold;
  color: #fff;
  transform-origin: left bottom;
  margin: 0;
  display: inline-block;
}

.wows-shutters-desc-wrap {
  margin: 20px 0 0;
}

.wows-shutters-desc-wrap .wows-desc {
  max-width: 550px;
  color: #ececec;
  font-weight: 300;
  line-height: 1.6;
  font-size: clamp(14px, 2vw, 18px);
  display: inline-block;
  margin: 0;
}

.wows-shutters-line {
  width: 100%;
  height: 1px;
  margin: 25px 0;
  background-color: #b5b6b8;
}

.wows-shutters-link {
  display: inline-block;
}

.wows-shutters-link a {
  color: rgba(255, 255, 255, 0.871);
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease-out;
}

.wows-shutters-link a:hover {
  color: #fff;
}

.wows-shutters-link svg {
  display: block;
  width: 16px;
  height: 16px;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.3s ease-out 0.3s, opacity 0.3s ease-out 0.3s;
}

.wows-shutters-link a:hover svg {
  opacity: 1;
  transform: scale(0);
}

.wows-shutters-link-line {
  width: 0;
  height: 1px;
  background: currentColor;
  position: relative;
  opacity: 0;
  transition: width 0.3s ease-out 0.3s, opacity 0.3s ease-out 0.3s;
}

.wows-shutters-link a:hover .wows-shutters-link-line {
  width: 60px;
  opacity: 1;
}

.wows-shutters-link-line:before,
.wows-shutters-link-line::after {
  content: "";
  position: absolute;
  right: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: width 0.3s ease-out 0.3s, opacity 0.3s ease-out 0.3s;
}

.wows-shutters-link a:hover .wows-shutters-link-line::before,
.wows-shutters-link a:hover .wows-shutters-link-line::after {
  width: 8px;
  opacity: 1;
}

.wows-shutters-link-line:before {
  top: -3px;
  transform: rotate(45deg);
}

.wows-shutters-link-line::after {
  bottom: -3px;
  transform: rotate(-45deg);
}

.wows-shutters-navigation {
  right: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.wows-shutters-nav-btn {
  height: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.wows-shutters-nav-arrow {
  width: 30px;
  height: 1px;
  background-color: var(--shutters-navigation-arrow-color);
  position: relative;
  cursor: pointer;
  display: block;
  transition: width 0.3s ease-out;
}

.wows-shutters-nav-btn:hover .wows-shutters-nav-arrow {
  width: 60px;
  background-color: var(--shutters-navigation-arrow-hover-color);
}

.wows-shutters-nav-arrow:before,
.wows-shutters-nav-arrow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  background-color: var(--shutters-navigation-arrow-color);
  z-index: 1;
  transition: background-color 0.3s ease-out;
}

.wows-shutters-nav-btn:hover .wows-shutters-nav-arrow::before,
.wows-shutters-nav-btn:hover .wows-shutters-nav-arrow::after {
  background-color: var(--shutters-navigation-arrow-hover-color);
}

.wows-shutters-button-next .wows-shutters-nav-arrow:before,
.wows-shutters-button-next .wows-shutters-nav-arrow::after {
  right: 0;
}

.wows-shutters-button-prev .wows-shutters-nav-arrow:before,
.wows-shutters-button-prev .wows-shutters-nav-arrow::after {
  left: 0;
}

.wows-shutters-button-next .wows-shutters-nav-arrow:before {
  top: -3px;
  transform: rotate(45deg);
}

.wows-shutters-button-next .wows-shutters-nav-arrow::after {
  bottom: -3px;
  transform: rotate(-45deg);
}

.wows-shutters-button-prev .wows-shutters-nav-arrow:before {
  top: -3px;
  transform: rotate(-45deg);
}

.wows-shutters-button-prev .wows-shutters-nav-arrow::after {
  bottom: -3px;
  transform: rotate(45deg);
}