/* =========================================================
   ROOT COLORS (FIGMA COLORS)
========================================================= */

:root {

  /* Primary Colors */
  --primary-color: #09829B;
  --dark-color: #032D35;

  /* Neutral Colors */
  --text-dark: #404040;
  --text-light: #7C7C7C;
  --border-color: #B3B3B3;

  /* Background */
  --white-color: #FFFFFF;
}


/* =========================================================
   WHY CHOOSE SECTION
========================================================= */

.why-choose-section {

  /* Layout */
  width: 100%;
  margin: 0 auto;
  padding: 160px 60px 0px;
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-header {

  width: 100%;
  text-align: center;

  margin-bottom: 50px;
}


/* Section Title */
/* =========================================================
   SECTION TITLE (FIGMA EXACT STYLE)
========================================================= */

.section-title {

  /* Size */
  width: 822px;
  height: 75px;

  /* Typography */
  font-family: "Zalando Sans Expanded", sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;

  /* Gradient Text */
  background: linear-gradient(
    90deg,
    rgba(9, 130, 155, 0.5) 0%,
    rgba(3, 45, 53, 0.5) 100%
  );

  /* Required for gradient text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  /* Layout */
  margin: 0 auto;

  /* Optional */
  display: flex;
  align-items: center;
  justify-content: center;
}




/* =========================================================
   FEATURES WRAPPER
========================================================= */

.features-wrapper {

  width: 100%;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  gap: 40px;

  flex-wrap: wrap;
}


/* =========================================================
   FEATURE ITEM
   (CARD + CONTENT)
========================================================= */

.feature-item {

  width: 450px;

  display: flex;
  flex-direction: column;
}


/* =========================================================
   FEATURE FRAME CARD
========================================================= */

.feature-card {

  width: 450px;
  height: 683px;
  position: relative;
  transition: 0.3s ease;
}

/* =========================================================
   SVG FRAME
========================================================= */

.card-frame {

  position: absolute;
  top: 0;
  left: 0;
  width: 450px;
  height: 683px;
  z-index: 2;
  pointer-events: none;
}


/* =========================================================
   CARD HOVER
========================================================= */

.feature-card:hover {

  transform: translateY(-8px);
}


/* =========================================================
   TOP RIGHT GRADIENT CORNER
========================================================= */

/* .corner-shape {

  position: absolute;

  top: 0;
  right: 0;

  width: 66px;
  height: 66px;

  background: linear-gradient(
    90deg,
    rgba(9, 130, 155, 0.5) 0%,
    rgba(3, 45, 53, 0.5) 100%
  );

  clip-path: polygon(100% 0, 0 0, 100% 100%);

  z-index: 2;
} */


/* =========================================================
   DIAGONAL CUT BORDER
========================================================= */

/* .feature-card::before {

  content: "";

  position: absolute;

  top: 31px;
  right: -45px;

  width: 120px;
  height: 1px;

  background: #B3B3B3;

  transform: rotate(45deg);

  z-index: 1;
} */


/* =========================================================
   FEATURE IMAGE
========================================================= */

.feature-image {

  position: absolute;

  top: 17px;
  left: 21px;

  width: calc(100% - 42px);
  height: calc(100% - 34px);

  overflow: hidden;

  z-index: 1;
}

/* Image */
.feature-image img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}


/* =========================================================
   FEATURE CONTENT
   OUTSIDE THE FRAME
========================================================= */

.feature-content {

  padding-top: 10px;
}


/* =========================================================
   FEATURE TITLE
========================================================= */

.feature-content h3 {

  font-family: "Zalando Sans Expanded", sans-serif;
  text-align: center;
  font-style: normal;

  font-size: 26px;
  font-weight: 600;
  line-height: 140%;

  color: #404040;

  margin-bottom: 16px;
}


/* =========================================================
   FEATURE DESCRIPTION
========================================================= */

.feature-content p {

  
  /* Width */
  width: 320px;

  /* Typography */
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding-left: 25px;

  /* Text Color */
  color: #7C7C7C;
}


/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

@media (max-width: 768px) {

  .feature-item,
  .feature-card {

    width: 100%;
    max-width: 450px;
  }

  .feature-card {

    height: 520px;
  }

  .feature-content h3 {

    font-size: 24px;
  }

  .feature-content p {

    font-size: 16px;
  }
}