:root {
  --color-primary: #00a8a8;
  --color-primary-dark: #006d73;
  --color-primary-light: #4dd6d6;

  --color-hero: #64c8cd;
  --color-hero-deep: #094163;

  --color-light-bg: #e6f7f7;
  --color-second-light-bg: rgb(216, 236, 232);
  --color-gray-bg: #f5f7f7;
  --color-white: #ffffff;

  --color-heading: #009999;
  --color-text: #2f3e46;
  --color-muted: #6b7c85;
  --color-border: #034848;

  --color-accent-first: #ffb300;
  --color-accent-second: #25ff75;
  --color-accent-danger: #ff4d4d;
  --color-accent-info: #4da3ff;
  --color-accent-purple: #a855f7;

  --gradient-hero: linear-gradient(135deg, #009999, #64c8cd);
  --gradient-soft: linear-gradient(135deg, #e6f7f7, #d1fefe);
  --gradient-accent: linear-gradient(135deg, #ffb300, #ff7a00);

  --font-heading: "Montserrat", sans-serif;
  --font-text: "Open Sans", sans-serif;
  --font-button: "Montserrat", sans-serif;

  --h1-size: 52px;
  --h2-size: 38px;
  --h3-size: 28px;
  --h4-size: 22px;
  --text-lg-size: 18px;
  --text-size: 16px;

  --h1-weight: 800;
  --h2-weight: 700;
  --h3-weight: 600;
  --h4-weight: 600;
  --text-weight: 400;
  --text-lg-weight: 500;
  --button-weight: 600;

  --radius-button: 10px;
  --radius-card: 16px;
  --radius-image: 18px;

  --border-section: 1px solid rgba(3, 72, 72, 0.25);

  --transition: 0.35s ease;

  --z-base: 1;
  --z-header: 100;
  --z-dropdown: 200;
  --z-sticky: 300;
  --z-overlay: 400;
  --z-modal: 1000;
}

section:nth-child(2n){
  background-color: var(--color-second-light-bg);
  border-top: var(--border-section);
  border-bottom: var(--border-section);
}

section:nth-child(2n-1){
  background-color: var(--color-white);
}

.header {
  position: relative;
  z-index: var(--z-header);
}

.header-top-section {
  background-color: var(--color-second-light-bg);
  border-bottom: var(--border-section);
}

.top-header {
  padding: 52px 0;
  display: flex;
  justify-content: center;
}

.header-contact {
  display: none;
}

.header-work-time-wrap {
  display: none;
}

.header-middle-section {
  border-top: var(--border-section);
  border-bottom: var(--border-section);
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url(../images/shiman-hero.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  position: relative;
  z-index: 1;
}

.header-middle-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1),
    transparent 60%
  );
}

.header-middle {
  padding: 52px 0;
}

.header-subtitle {
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-size);
  font-weight: var(--text-weight);
  opacity: 0.8;
}

.header-title-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end; 
  margin: 40px 0;
  gap: 8px;
}

.header-title {
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.8s ease;
  margin: 0;
}

.headeer-subtitle {
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.8s ease;
  margin: 0;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-paragraph {
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-lg-size);
  font-weight: var(--text-lg-weight);
  line-height: 30px;
}

.header-socials {
  display: none;
  position: relative;
  z-index: 9;
}

.middle-header-img-wrap {
  display: none;
}

.middle-header-img{
  border-radius: var(--radius-image);
}

.header-bottom-section {
  border-top: var(--border-section);
  border-bottom: var(--border-section);
  background-color: #d7e6e4f4;
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

.bottom-header {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-line {
  display: block;
  width: 36px;
  height: 2px;
  background-color: var(--color-border);
}

.mobile-menu-line:nth-child(2) {
  margin: 10px 0;
}

.header-nav-list {
  display: none;
}

.lang-switch {
  display: flex;
}

.lang {
  border: 1px solid var(--color-border);
  padding: 12px;
  width: 64px;
  text-align: center;
  color: var(--color-border);
  font-family: var(--font-button);
  font-weight: var(--button-weight);
  background-color: transparent;
}

.lang-selected {
  background-color: var(--color-border);
  padding: 12px;
  width: 64px;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-button);
  font-weight: var(--button-weight);
}

.lang:hover,
.lang:focus {
  background-color: #c5ebeb;
}

.lang-selected:hover,
.lang-selected:focus {
  opacity: 0.9;
}

.ukrainian {
  border-radius: 8px 0 0 8px;
}

.english {
  border-radius: 0 8px 8px 0;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-direction: column;
}

.about-img-wrap {
  padding-bottom: 20px;
  width: 100%;
}

.about-img{
  width: 100%;
  border-radius: var(--radius-image);
  box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.3);
}

.about-content {
  padding-top: 20px;
  width: 100%;
  border-top: 1px solid var(--color-border);
}

.about-title {
  color: var(--color-heading);
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  font-family: var(--font-heading);
  margin-bottom: 20px;
}

.about-text {  
  color: var(--color-text);
  font-size: var(--text-size);
  font-weight: var(--text-weight);
  font-family: var(--font-text);
  line-height: 28px;
}

.about-text-deco{
  font-weight: var(--text-lg-weight);
  color: var(--color-border);
}


.about-text.collapsed {
  max-height: 80px;
  overflow: hidden;
}

#toggleBtn {
  background: none;
  border: none;
  color: var(--color-heading);
  font-weight: var(--button-weight);
  cursor: pointer;
  font-family: var(--font-button);
  font-size: var(--button-size);
  margin-top: 12px;
}

@media (min-width: 1024px) {
  .about-text {
    max-height: none !important;
    overflow: visible !important;
  }
  #toggleBtn {
    display: none;
  }
}


.advantages-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.advantages-item {
  width: 260px;  
  padding: 16px;
  border-radius: var(--radius-card);
  position: relative;
  top: 10px;
  font-size: var(--text-size);
  font-weight: var(--text-lg-weight);
  font-family: var(--font-text);
  color: var(--color-border);
  background-color: transparent;
  transition: transform 0.3s ease;
}

.advantages-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 130px;
  border-radius: 4px;  
  background-size: 120px;
  background-repeat: no-repeat;
  background-position: center;
}

.advantages-item:nth-child(1)::before{
  background-image: url(../images/shimanEco.png);
}

.advantages-item:nth-child(2)::before{
  background-image: url(../images/shimanSpeed.png);
}

.advantages-item:nth-child(3)::before{
  background-image: url(../images/shimanDetail.png);
}

.advantages-item:nth-child(4)::before{
  background-image: url(../images/shimanCleanliness.png);
}


.advantages-item:hover {
  transform: translateY(-12px);
}

.services-box {
  margin: 0 auto; 
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 1170px;
}

.services-card {
  width: 240px;
  height: 240px;  
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gradient-hero);
  border-radius: var(--radius-card);
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.5);
}

.service-card-wrap-link{
  width: 100%;
  height: 100%;  
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
}

.services-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card-name {
  color: var(--color-white);
  font-size: var(--h4-size);
  font-family: var(--font-heading);
  font-weight: var(--text-weight);
  text-align: center;
  position: absolute;
  top: 12px;
}

.service-card-img {
  position: absolute;
  bottom: 60px;
  width: 120px;
  height: 105px;
}

.service-card-link {
  position: absolute;
  bottom: 12px;
  color: var(--color-white);
  font-size: var(--text-lg-size);
  font-family: var(--font-text);
  font-weight: var(--text-weight);
  opacity: 0.8;
}

.service-card-link:hover,
.service-card-link:focus {
  transform: scale(1.05);
}

.reviews-container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel {
  width: 90%;
  max-width: 600px;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  border: var(--border-section);
}

.carousel::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient-accent);
  filter: blur(20px);
  opacity: 0.25;
  z-index: -1;
}

.reviews-slides {
  display: flex;
  transition: transform 0.6s ease;
}

.reviews-slide {
  height: 320px;
  width: 100%;
  flex-shrink: 0;
  padding: 30px;
  text-align: center;
}

.review-author {
  margin-bottom: 20px;
  color: var(--color-heading);
  font-size: var(--h3-size);
  font-family: var(--font-heading);
  font-weight: var(--h3-weight);
}

.review-rating{
  font-size: var(--h3-size);
  color: var(--color-heading);
}

.review-text {
  font-family: var(--font-text);
  font-size: var(--text-lg-size);
  color: var(--color-text);
  font-weight: var(--text-weight);
  line-height: 28px;
}

.controls {
  position: absolute;
  bottom: 20px;
  width: 80%;
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
}

.control-btn {
  border: 2px solid var(--color-heading);
  background: transparent;
  color: var(--color-heading);
  padding: 10px 15px;
  cursor: pointer;
  border-radius: var(--radius-button);
  font-size: var(--button-size);
  font-weight: var(--button-weight);
  font-family: var(--font-button);
}

.control-btn:hover {
  background: var(--color-light-bg);
}

.reviews-num {
  color: var(--color-heading);
  font-size: var(--text-lg-size);
  font-family: var(--font-heading);
  font-weight: var(--text-weight);
}

.add-review {  
  padding: 18px 32px;
  background: linear-gradient(0deg,rgba(0, 153, 153, 1) 0%, rgba(34, 193, 195, 1) 100%);
  border-radius: var(--radius-card);
  border: none;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  font-size: var(--h3-size);
  color: var(--color-white);
  font-family: var(--font-button);
  font-weight: var(--button-weight);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.add-review:hover,
.add-review:focus {
  transform: translateY(-3px);
}

.add-review::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  opacity: 0;
  transition: var(--transition);
}

.add-review:hover::before,
.add-review:focus::before {
  opacity: 1;
}

.asks-accordion {
  width: 95%;
  font-family: sans-serif;
  border-radius: var(--radius-card);
}

.accordion-item {
  background: var(--gradient-hero);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  border: 1px solid rgba(3, 72, 72, 0.12);
  box-shadow: var(--shadow-md);
}

.accordion-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.accordion-title {
  padding: 25px;
  cursor: pointer;
  color: var(--color-white);
  font-size: var(--h4-size);
  font-weight: var(--text-lg-weight);
  font-family: var(--font-heading);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  background-color: var(--color-white);
  border-radius: 0 0 16px 16px;
  color: var(--color-text);
  font-size: var(--text-lg-size);
  font-weight: var(--text-lg-weight);
  font-family: var(--font-text);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease;
  opacity: 0;
}

.accordion-active .accordion-content {
  max-height: 400px;
  opacity: 1;
}

.accordion-item.accordion-active {
  box-shadow: var(--shadow-md);
}

.accordion-item.accordion-active .accordion-content {
  max-height: none;
  padding: 16px;
  border-top: 1px solid var(--color-hero);
}

.ourWorks-carousel {
  width: 100%;
  height: 1020px;
  position: relative;
  border-radius: var(--radius-image);
}

.ourWorks-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 1s ease;
}

.ourWorks-slide.active {
  opacity: 1;
}

.ourWorks-before-img-wrap,
.ourWorks-before-img,
.ourWorks-after-img-wrap,
.ourWorks-after-img {
  width: 100%;
}

.ourWorks-before-img,
.ourWorks-before-img-wrap {
  border-radius: 18px 18px 0 0;
  height: 50%;
}

.ourWorks-after-img,
.ourWorks-after-img-wrap {
  border-radius: 0 0 18px 18px;
  height: 50%;
}

.ourWorks-before-img,
.ourWorks-after-img{
  position: absolute;
}


.ourWorks-carousel-deco {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
}

.ourWorks-before-wrap,
.ourWorks-after-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
}

.ourWorks-before-wrap {
  background-color: var(--color-accent-first);
  top: 24px;
  left: 24px;
}

.ourWorks-after-wrap {
  background-color: var(--color-accent-second);
  bottom: 24px;
  right: 24px;
}

.ourWorks-before,
.ourWorks-after {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-lg-size);
  font-weight: var(--text-lg-weight);
  text-align: center;
}


.window-backdrop {
  position: fixed;
  opacity: 0;
  bottom: -120%;
  transition: opacity 0.3s ease;
  width: 100%;
  height: 100vh;
  background-color: #00a8a8bf;
  z-index: var(--z-modal);
  display: flex;
  justify-content: center;
  align-items: center;
}

.window-backdrop.active {
  opacity: 1;
  bottom: 0;
}

.window-backdrop-eng {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.window-backdrop-eng.active {
  display: block;
}


.window-modal {
  width: 90%;
  height: 90vh;
  background-color: var(--color-white);
  border-radius: var(--radius-image);
  position: relative;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.close-window-modal {
  position: absolute;
  left: 24px;
  top: 24px;
  font-size: var(--h4-size);
  font-weight: var(--h4-weight);
  font-family: var(--font-button);
  color: var(--color-heading);
}

.window-modal-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  gap: 32px;
}

.window-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.window-title {
  margin-bottom: 12px;
  text-align: center;
}

.window-subtitle {
  text-align: center;
  font-size: var(--text-lg-size);
  font-weight: var(--text-lg-weight);
  font-family: var(--font-text);
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
  word-wrap: break-word;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 48px;
  display: none;
}

.window-describe {
  text-align: center;
  max-width: 600px;

  background-color: var(--color-accent-info);
  color: var(--color-white);
  font-size: var(--text-lg-size);
  font-family: var(--font-text);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 12px;
  margin: 0 auto;
}

.window-price-container {
  max-width: 600px;

  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
}

.window-text {
  font-size: var(--h4-size);
  font-weight: var(--h4-weight);
  font-family: var(--font-heading);
  color: var(--color-text);
}

.window-price {
  font-size: var(--h4-size);
  font-weight: var(--h4-weight);
  font-family: var(--font-heading);
  color: var(--color-heading);
}

.window-warning {
  max-width: 600px;
  background-color: var(--color-accent-danger);
  color: var(--color-white);
  font-size: var(--text-lg-size);
  font-family: var(--font-text);
  padding: 12px;
  border-radius: 8px;
  margin-top: 12px;
}

.order-window-service-link {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;  
  background-color: var(--color-primary);
  color: var(--color-white);  
  font-family: var(--font-button);
  font-weight: var(--button-weight);
  font-size: var(--text-size);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;  
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);  
  text-align: center;
}

.order-window-service-link:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--color-white);
}

.window-modal-img-wrap {
  display: none;
}


@media (min-width: 480px) and (max-width: 720px) {
  .services-card {
    width: 400px;
  }
}

@media (min-width: 720px) {
  .top-header {
    display: flex;
    align-items: center;
    gap: 100px;
  }

  .header-contact,
  .header-work-time-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .header-contact-title,
  .header-worktime-title {
    text-align: center;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-weight: var(--h2-weight);
    margin-bottom: 8px;
  }

  .header-worktime-title {
    margin-bottom: 4px;
  }

  .header-tell,
  .header-email {
    text-align: center;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: var(--text-weight);
    padding-bottom: 3px;
  }

  .header-tell:hover,
  .header-email:hover,
  .header-tell:focus,
  .header-email:focus {
    padding-bottom: 4px;
    border-bottom: 1px solid var(--color-border);
  }

  .header-work-time {
    text-align: center;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: var(--text-weight);
    line-height: 28px;
  }

  .header-middle {
    padding: 64px 0;
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: center;
  }
  
  .header-middle-section{
    background-image: none;
    background-color: var(--color-hero);
  }

  .header-subtitle {
    text-align: start;
    opacity: 0.8;
  }

  .header-middle {
    padding: 20px 0;
  }

  .header-title-wrap {
    margin: 20px 0;
    justify-content: start;
  }

  .header-title {
    font-size: calc(var(--h1-size) * 0.8);
  }

  .headeer-subtitle {
    font-size: calc(var(--h2-size) * 0.7);
  }

  
  .header-paragraph {
    text-align: start;
    line-height: 30px;
    width: 300px;
    margin-bottom: 36px;
  }

  .middle-header-img-wrap {
    display: flex;
    width: 320px;
    height: 250px;
    background-color: var(--color-heading);
    border-radius: var(--radius-image);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  }

  .carousel {
    width: 80%;
  }

  .reviews-slide {
    height: 250px;
  }

  .controls {
    justify-content: space-between;
  }

  .ourWorks-slide {
    border: 2px solid var(--color-border);
    border-radius: 20px;
  }

  .ourWorks-before-img-wrap,
  .ourWorks-before-img {
    width: 50%;
    border-radius: 18px 0 0 18px;
    height: 500px;
  }

  .ourWorks-after-img-wrap,
  .ourWorks-after-img {
    width: 50%;
    border-radius: 0 18px 18px 0;
    height: 500px;
  }

  .ourWorks-after-img,
  .ourWorks-before-img{
    width: 100%;
  }

  .ourWorks-after-wrap {
    background-color: var(--color-accent-second);
    right: 24px;
  }

  .ourWorks-before-wrap,
  .ourWorks-after-wrap {
    width: 92px;
    height: 92px;
  }

  .ourWorks-before,
  .ourWorks-after {
    font-size: var(--h4-size);
    font-weight: var(--h4-weight);
  }

  @keyframes shadow {
    0% {
      box-shadow: 0 0 16px 12px var(--color-primary-light);
    }
    50% {
      box-shadow: 0 0 16px 20px var(--color-primary-light);
    }
    100% {
      box-shadow: 0 0 16px 12px var(--color-primary-light);
    }
  }

  

  .window-modal-content{
  width: 45%;
}

.window-modal-img-wrap{
  display: block;  
  width: 55%;
}

.window-modal{
  padding: 100px 40px;
}

.order-window-service-link {
    padding: 14px 32px;
    font-size: var(--text-lg-size);
    margin-top: 40px;
  }

}

@media (min-width: 1024px) {
  .header-middle {
    padding: 100px 0;
    gap: 120px;
  }

  .header-paragraph {
    line-height: 36px;
  }

  .header-socials {
    display: flex;
    gap: 12px;
  }

    .about-img-wrap {
  padding-bottom: 20px;
  width: 50%;
}

.about-content {
  padding-top: 20px;
  width: 50%;
  border-top: 1px solid var(--color-border);
}

  .social-link {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: var(--text-weight);
    font-size: var(--text-size);
    padding-bottom: 5px;
    display: flex;
    gap: 8px;
  }

  .social-link:hover,
  .social-link:focus {
    padding-bottom: 4px;
    border-bottom: 1px solid var(--color-white);
  }

  .middle-header-img-wrap {
    width: 500px;
    height: 390px;
  }

  .open-mobile-menu {
    display: none;
  }

  .header-nav-list {
    display: flex;
    gap: 16px;
  }

  .header-nav-link {
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-weight: var(--text-lg-weight);
    font-size: var(--text-lg-size);
    padding-bottom: 6px;
  }

  .header-nav-link:hover,
  .header-nav-link:focus {
    padding-bottom: 4px;
    border-bottom: 2px solid var(--color-heading);
  }

  .about-container {
    flex-direction: row;
  }

  .about-img-wrap {
    padding-bottom: 0;
    padding-bottom: 20px;
  }

  .about-content {
    padding-top: 0px;
    padding-left: 20px;
    border-top: none;
    border-left: 1px solid var(--color-border);
  }

  .services-box {
    gap: 16px;
  }

  .accordion-item {
    position: relative;
  }

  .plus {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 56px;
    height: 56px;
    background: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
  }

  .plus::before,
  .plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 4px;
    background: var(--color-heading);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
  }

  .plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .accordion-active .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }  
}



.ourWorks-carousel {
  width: 100%;
  position: relative;
  border-radius: var(--radius-image);
  overflow: hidden;
}

.ourWorks-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.8s ease;
}



.ourWorks-before-img-wrap,
.ourWorks-after-img-wrap {
  width: 100%;
  height: 50%;
  position: relative;
}

.ourWorks-before-img,
.ourWorks-after-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ourWorks-carousel-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ourWorks-before-wrap,
.ourWorks-after-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}

.ourWorks-before-wrap {
  background: var(--color-accent-first);
  top: 16px;
  left: 16px;
}

.ourWorks-after-wrap {
  background: var(--color-accent-second);
  bottom: 16px;
  right: 16px;
}


@media (min-width: 720px) {

  .ourWorks-carousel {
    height: 500px;
  }

  .ourWorks-slide {
    flex-direction: row;
    height: 500px;
  }

  .ourWorks-before-img-wrap,
  .ourWorks-after-img-wrap {
    width: 50%;
    height: 100%;
  }

  .ourWorks-before-img,
  .ourWorks-after-img {
    height: 100%;
  }

  .ourWorks-slide {
    border: 2px solid var(--color-border);
    border-radius: 20px;
  }

  .ourWorks-before-wrap,
  .ourWorks-after-wrap {
    width: 92px;
    height: 92px;
  }

  .ourWorks-before,
  .ourWorks-after {
    font-size: var(--h4-size);
  }
}

@media (min-width: 1024px) {

  .ourWorks-carousel {
    height: 520px;
  }

  .ourWorks-before-wrap {
    top: 24px;
    left: 24px;
  }

  .ourWorks-after-wrap {
    bottom: 40px;
    right: 24px;
  }
}