
/* SUPPORT WORK PAGE START */
.support-work-logo-img img {
  position: absolute;
  top: 25px;
  right: calc(100vw - 85vw);
  z-index: 99;
  width: calc(100vw - 91vw);
  opacity: 0;
}

#support-work-section {
  background-image: url('../assets/images/support-page/01_Kind_Fox_May_Support_Work_Hero_Wallpaper_1.webp');
  background-size: cover;
  background-position: bottom;
  min-height: 93vh;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.5);
}

.support-title h1 {
  color: var(--nav-bg-colour);
  font-family: 'poppin';
  text-align: center;
  font-size: 4rem;
  line-height: 3.5rem;
  padding-top: 100px;
  margin-bottom: 25px;
}

.support-work-title h1 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.support-work-section-content {
  width: 90vw;
  margin-top: 25px;
  margin-bottom: 50px;
}

.support-work-intro {
  /* background-color: var(--card-bg-colour); */
  padding: 10px;
  /* border: 2.5px solid #fff;
  border-radius: 5px; */
  /* opacity: 0; */
  transition: opacity 1s ease-in-out 0.6s;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  /* box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.9); */
}

.support-work-intro img {
  width: 300px;
  height: auto;
  opacity: 0;
}

.support-work-intro .intro-text {
  opacity: 0;
}

.support-work-intro.active {
  opacity: 1;
}

.support-work-intro p {
  text-align: left;
  font-family: 'poppins';
  font-size: 17px;
  color: var(--nav-bg-colour);
  margin-right: 30%;
  margin-bottom: 10px;
}

.support-work-intro i {
  font-family: 'nurito';
  font-size: 17px;
  color: var(--instructional);
  margin-right: 30%;
  margin-bottom: 10px;
}

.support-work-info-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.support-work-important-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--card-bg-colour);
  border: 2.5px solid #fff;
  border-radius: 5px;
  padding: 0px;
  width: 50%;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.9);
}

.support-work-important-info-title {
  width: 100%;
  text-align: center;
  background-color: rgba(0,0,0,0.4);
  border-bottom: 2.5px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.support-work-important-info h3 {
  font-family: 'poppins';
  color: var(--white);
  font-size: 2rem;
  padding: 20px;
}

.important-info-row {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  padding-right: 0px;
  padding-bottom: 25px;
}

.important-info-text {
  font-size: 17px;
  font-family: 'poppins';
  color: var(--white);
  padding-left: 40px;
}

.important-info-text ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 35px;
  font-family: 'atkinson';
}

.important-info-image {
  position: relative;
  padding-right: 0px;
  margin-right: 0px;
}
.important-info-image img {
  max-width: 400px;
}

.support-work-sub-title {
  margin-top: 20px;
}
.support-work-sub-title h1 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.support-work-sub-title.active h1 {
  opacity: 1;
}

.support-work-sub-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 1s ease-in-out 1s;
}
.support-work-sub-text.active {
  opacity: 1;
}

.support-work-sub-text h2{
  text-align: center;
  font-family: 'nunito';
  color: var(--nav-bg-colour);
  width: 60%;
}

.support-card-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 35px;
  gap: 20px;
}

.support-card-container {
  flex-wrap: wrap;
  flex: 1 0 300px;
  background-color: var(--card-bg-colour);
  border: 2.5px solid #fff;
  border-radius: 5px;
  max-width: 600px;
  min-height: calc(1200px - 30vw);
  perspective: 1000px;
  cursor: pointer;
  transition: transform 0.25s ease-in-out;
  padding-bottom: 25px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.9);
  opacity: 0;
}

.support-card-container:hover {
  transform: translateY(-10px);
}

.support-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-in-out;
  cursor: pointer;
}

.support-card.flipped {
    transform: rotateY(180deg);
}

.support-card-front, .support-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.support-card-front {
  transform: rotateY(0deg);
}

.support-card-front img {
  width: 500px;
}

.support-card-sub-text {
  padding-left: 20px;
  padding-right: 20px;
}

.support-card-sub-text p {
  font-family: 'poppins';
  text-align: center;
  color: var(--white);
  font-size: 17px;
}

.support-card-back {
  transform: rotateY(180deg);
}


.support-card-title {
  padding-top: 20px;
  width: 100%;
  background-color: rgba(0,0,0,0.4);
  padding-bottom: 10px;
  border-bottom: 2.5px solid #fff;
  padding-bottom: 20px;
}

.support-card-title h1 {
  text-align: center;
  font-family: 'nunito';
  font-size: 1.5rem;
  color: var(--white);
}

.support-card-title hr {
  height: 2px;
  border: none;
  background-color: var(--white);
  width: 85%;
}

.support-card-front img {
  position: relative;
  max-width: 90%;
  max-height: auto;
  object-fit: cover;
}

.support-card-content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.support-card-content p {
  text-align: center;
  font-family: 'poppins';
  font-size: 17px;
  color: var(--white);
  padding-bottom: 10px;
  margin: 0;
}

.support-card-content ul {
  padding-left: 60px;
  padding-right: 30px;
}

.support-card-content li {
  font-family: 'atkinson';
  font-size: 17px;
  padding-bottom: 5px;
  color: var(--white);
}

.support-card-front .read-more-btn,
.support-card-back .read-more-btn {
  font-size: 17px;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.5);
}




#support-shopping-section {
  background-image: url('../assets/images/support-page/03_Kind_Fox_May_Support_Daily_Living_and_Routine_Wallpaper_1.webp');
  background-size: cover;
  background-position: bottom;
  min-height: 93vh;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.5);
}

.support-shopping-section-content {
  width: 90vw;
  margin-top: 25px;
  margin-bottom: 50px;
}

.support-shopping-title {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.support-shopping-title.active {
  opacity: 1;
}

#support-community-section {
  background-image: url('../assets/images/support-page/04_Kind_Fox_May_Support_Community_and_Participation_Wallpaper_1.webp');
  background-size: cover;
  background-position: bottom;
  min-height: 93vh;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.5);
}

.support-community-section-content {
  width: 90vw;
  margin-top: 25px;
  margin-bottom: 50px;
}

.support-community-title {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.support-community-title.active {
  opacity: 1;
}

#support-pricing-section {

}

.support-closing-line {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  text-align: center;
  font-size: 1.5rem;
  font-family: 'atkinson';
  color: var(--instructional);
  margin-right: 20%;
  margin-left: 20%;
}

/* SUPPORT WORK PAGE END */
@media screen and (min-width: 768px) and (max-width: 1366px) {
  /* SUPPORT PAGE START */
  .support-work-intro {
    background-color: var(--card-bg-colour);
    padding: 10px;
    border: 2.5px solid #fff;
    border-radius: 5px;
    transition: opacity 1s ease-in-out 0.6s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.9);
    padding-left: 5%;
    padding-right: 5%;
  }

  .support-work-intro img {
    width: 250px;
  }

  .support-work-intro p {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 10px;
    margin-right: 0px;
  }

  .support-work-intro i {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 10px;
    margin-right: 0px;
  }
  
  .support-card-container.flipped {
    min-height: 1000px;
  }
  .support-work-important-info {
    width: 100%;
  }

  .important-info-image img {
    max-width: 350px;
  }
  /* SUPPORT PAGE END */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
   /* SUPPORT WORK PAGE START */
  .support-work-logo-img img {
    position: absolute;
    right: 50%;
    transform: translate(50%, 0%);
    top: 0;
    z-index: 99;
    width: 85px;
  }
  .support-work-intro {
    background-color: var(--card-bg-colour);
    padding: 10px;
    border: 2.5px solid #fff;
    border-radius: 5px;
    transition: opacity 1s ease-in-out 0.6s;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.9);
    padding-left: 5%;
    padding-right: 5%;
  }

  .support-work-intro img {
    width: 250px;
  }

  .support-work-intro p {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 10px;
    margin-right: 0px;
  }

  .support-work-intro i {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 10px;
    margin-right: 0px;
  }

  .support-work-important-info {
    width: 100%;
  }

  .important-info-image img {
    display: none;
  }

  .support-title h1 {
    font-size: 2.5rem;
    margin-bottom: 0px;
  }
  .support-shopping-title {
    line-height: 3rem;
  }

  .support-community-title {
    line-height: 3rem;
  }

  .support-closing-line {
    margin-top: 50px;
    text-align: center;
    font-size: 17px;
    margin-right: 0%;
    margin-left: 0%;
    width: 100%;
  }

  .support-card-content p {
    font-size: 16px;
  }

  .support-card-content li {
    font-size: 16px;
    padding-bottom: 0px;
  }

  .support-card-container {
    min-height: 600px;
   }

  .support-card-container.flipped {
    min-height: 800px;
  }
  /* SUPPORT WORK PAGE END */
}