
/* GENERAL SECTION STYLES */
.section {
  font-family: 'Poppins', sans-serif;
}
.service-section {
  /* border: 1px solid; */
  position: relative;
  width: 100%;
  height: 100%;
  padding: 5rem 3vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.backgroud--overlay {
  position: absolute;
}
.bO-sS {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: azure;
  z-index: 0;
}
.main-content_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}
.section-heading {
  text-align: center;
  margin-bottom: 6vh;
}
.section--title {
  font-size: 40px;
  line-height: 44px;
  color: rgb(44, 211, 211);
  margin-bottom: 3vh;
}
.section--subTitle {
  font-size: 18px;
  /* padding: 0 15%; */
  color: rgb(54, 54, 54);
}

/* ====== CARDS STYLES ======  */
.cards-container {
  /* border: 1px solid salmon; */
  /* padding: 8px; */
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.card--container {
  /* border: 1px solid; */
  /* padding: 4px; */
  display: flex;
  flex-direction: column;
  /* background-color: white; */
  /* width: 30%; */
  /* width: clamp(250px, 30%, 400px); */
  min-width: 250px;
  max-width: 400px;
  width: 30%;
  flex-grow: 1;
}
.front_card-wrapper {
  /* width: clamp(150px, 100%, 320px); */
  /* height: clamp(80px, 150px, 150px); */
  position: relative;
  width: 100%;
  /* height: 250px; */
}

.card-main_img {
  /* display: block; */
  vertical-align: middle;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 250px;
}

/* ==== CARD FRONT TITLE ===== */
/* .card-title-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgb(52, 214, 214);
  display: flex;
} */
.card-title-wrapper {
  position: relative;
  display: flex;
  background-color: rgb(52, 214, 214);
}
.card-title {
  /* border: 1px solid; */
  padding: 10px 24px;
  font-size: 16px;
  width: 85%;
  color: white;
}
/* ====== PLUS CARD BUTTON ====== */
.more {
  /* border: 1px solid; */
  /* position: absolute; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
  /* right: 12px; */
  /* width: 32px; */
  /* width: 15%; */
  flex: 1;
  /* height: 32px; */
  /* margin: -16px 0 0 -16px; */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  /* border-radius: 50%; */
  transition: background 0.1s ease;
  transition-delay: 0.15s;
  z-index: 2;
}
.more svg {
  transform: rotate(270deg);
}
.more svg circle {
  stroke-width: 2;
  stroke: rgb(255, 137, 137);
  stroke: rgb(0, 0, 0);
  stroke: rgb(255, 255, 255);
  fill: none;
  stroke-dasharray: 95;
  stroke-dashoffset: 190;
  transition: all 0.2s ease;
  stroke-linecap: round;
}
.more svg #plus {
  transform-origin: 50% 50%;
  transition: all 0.8s ease;
}
.more svg #plus path {
  stroke-width: 2;
  stroke: rgb(255, 137, 137);
  stroke: rgb(0, 0, 0);
  stroke: rgb(255, 255, 255);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.more.toggle circle {
  stroke-dasharray: 95;
  stroke-dashoffset: 285;
}
.more.toggle #plus {
  transform: rotate(45deg);
}
.more.toggle:hover {
  background: rgba(255,255,255,0.06);
}

/* ===== CARD BACK CONTENT ===== */
.back_card-wrapper {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 100%; */
  background-color: white;
  background-color: var(--primary-color);
  /* z-index: -1; */

}
.back_card-wrapper.active {
  position: relative;
  z-index: 1;
}
.back-card-content {
  /* border: 1px solid; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* width: clamp(25ch, 100%, 45ch); */
  /* flex: 1; */
}
.back_card-wrapper.active .back-card-content {
  padding: 24px 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.527);
  margin: 0 24px;

}

.card-title.back-card {
  font-size: 20px;
  color: rgb(54, 54, 54);
  margin-bottom: 10px;
}
.card-desc {
  font-size: 16px;
  height: 0;
  opacity: 0;
  transform: translateY(-20px);
  overflow: hidden;
  margin-bottom: 0;
  transition: all .3s ease ;
  color: white;

}
.card-desc.active {
  height: auto;
  margin-bottom: 25px;
  opacity: 1;
  transform: translateY(0);
  transition: all .8s ease ;
}
.card-cta {
  /* border: 1px solid; */
  width: 100%;
  display: flex;
  justify-content: flex-start;
  text-align: center;
  margin-bottom: 0px;
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.back_card-wrapper.active .card-cta {
  height: auto;
  /* margin-bottom: 20px; */
  opacity: 1;
  transition: margin-bottom .2s ease, opacity .4s ease-in-out .3s;
}
.card-link {
  /* border: 1px solid black; */
  background-color: rgb(44, 211, 211);
  background-color: rgb(255, 85, 85);
  width: 90%;
  font-size: 16px;
  font-weight: 300;
  color: white;
  border-radius: 15px;
  padding: 10px 10px;
}

/* ==== */

