/* =========================================================
   CASE STUDIES COMMON CSS
   USED IN ALL CASE STUDY CHILD PAGES
========================================================= */

/* =========================
   GLOBAL
========================= */

.radius {
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

.bg_o {
  background: #f8f5f2;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.max-600 {
  max-width: 600px;
}

.gap-60 {
  gap: 60px;
}

.num_ {
  font-size: 6rem;
  line-height: 1;
  font-family: "Coign", sans-serif;
}

/* =========================
   ANIMATION
========================= */

.animate-bouncingDown {
  animation: bouncingDown 3s ease-in-out infinite;
}

@keyframes bouncingDown {
  0%,
  45%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  65% {
    transform: translateY(12px) translateX(-50%);
  }
}

/* =========================
   CARD
========================= */

.card_obj {
  border-radius: 32px;
  background: #f8f8f8;
  height: 100%;
  overflow: hidden;
}

.crd_header {
  background: #edf4fe;
  padding: 24px 20px;
  display: flex;
  justify-content: end;
}

.crd_header i {
  font-size: 30px;
}

.crd_body {
  padding: 40px 30px;
}

.crd_body h3 {
  font-size: 25px;
}

/* =========================
   GLASS EFFECT
========================= */

.bg_glass {
  border-radius: 32px;
  padding: 40px;
  position: relative;
  height: 100%;
}

.bg_glass::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  backdrop-filter: blur(14px);
  background: hsla(0, 0%, 100%, 0.2);
}

.bg_glass.two::before {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.09);
}

/* =========================
   OBJECT BG
========================= */

.bg-obj {
  background: #edf4fe;
  padding: 50px;
  border-radius: 50px;
}

/* =========================
   LIST
========================= */

.ul_ li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.75rem;
}

.ul_ li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 16px;
  display: inline-block;
  background-image: var(--tick-icon);
  background-repeat: no-repeat;
  background-size: contain;
}

.ul_ li.no_icon::before {
  display: none;
}

/* =========================
   BORDER BOX
========================= */

.br {
  border: 1px solid #1b1b2533;
  padding: 20px;
  height: 100%;
  border-radius: 10px;
}

.br h4 {
  font-size: 18px;
  font-weight: 800;
}

.br p {
  font-size: 16px;
}

/* =========================
   STICKY CHALLENGE
========================= */

.bg-chal {
  background: #f8f5f2;
  padding: 70px;
  border-radius: 50px;
  position: sticky;
  top: 60px;
}

.bg-chal:not(:first-child) {
  box-shadow:
    0 -8px 26px 0 rgba(18, 18, 25, 0.04),
    0 -1px 4px -2px rgba(18, 18, 25, 0.04);
}

.bg-chal h4 {
  font-size: 20px;
  font-weight: bold;
}

.br_l {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}

@media (min-width: 992px) {
  .st {
    position: sticky;
    top: 70px;
    height: 100%;
  }
}

/* =========================
   BLOCKQUOTE
========================= */

blockquote {
  background: rgba(43, 181, 250, 0.07);
  border-left: 4px solid #4f46e5;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #333;
  border-radius: 3px;
  backdrop-filter: blur(8px);
}

/* =========================
   REVIEW
========================= */

.review_content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 836px;
  margin-inline: auto;
  text-align: center;
}

.review_feedback {
  display: flex;
  flex-flow: column;
  gap: 12px;
}

.review_rating,
.reviw_r_icon,
.reviw_compny_info,
.client_info {
  display: flex;
  align-items: center;
}

.review_rating {
  gap: 8px;
}

.reviw_r_icon {
  gap: 2px;
}

.reviw_compny_info,
.client_info {
  gap: 16px;
}

.pu_img {
  filter: invert(1);
}

.client_img {
  width: 80px;
  height: 80px !important;
  object-fit: cover;
  border-radius: 50%;
}

.cli_name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.sta_p_1 {
  font-size: 20px;
  font-weight: 700;
}

/* =========================
   TEAM
========================= */

.content-team {
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.team {
  background: rgb(237, 244, 254);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.rdx {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .radius {
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }

  .bg_o {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
}

@media (max-width: 1020px) {
  .bg-chal {
    padding: 60px 30px;
    border-radius: 32px;
  }
}

@media (max-width: 767px) {
  .radius {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .bg_o {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }

  .gap-60 {
    gap: 50px;
  }

  .ul_,
  .ul_ ul {
    padding-left: 0;
  }

  .bg-chal {
    position: static;
    height: auto !important;
  }

  .br_l {
    border-left: 0;
    padding: 0;
  }

  .bg-obj {
    padding: 40px;
    border-radius: 32px;
  }
}

@media (max-width: 479px) {
  .radius {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .bg_o {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .gap-60 {
    gap: 40px;
  }

  .crd_body,
  .crd_header,
  .bg_glass,
  .bg-obj {
    padding: 20px;
  }
}
