  /* START OF FLIP CARD CONTENT STYLE */
  .fc-container {
      width: 100%;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin: 50px auto 50px;
      top: 50%;
  }

  .fc-item {
      width: 330px;
      min-height: 450px;
      max-height: 450px;
      position: relative;
      overflow: hidden;
  }

  .fc-banner {
      position: relative;
      overflow: hidden;
      height: 120px;
  }

  .fc-banner-content {
      font-size: 1.5rem;
      text-align: left;
      padding: 0 30px;
      position: absolute;
      bottom: 4px;
      left: 0;
      color: #fff;
      text-shadow: 1px 1px #333;
  }

  .fc-banner img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      filter: blur(2px) brightness(0.5);
      transform: scale(1.3);
  }

  .acc-img {
      margin-top: -65px;
  }

  .acc-img img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      border: 2px solid #fff;
      filter: drop-shadow(0px 0px 1px black);
  }

  .fc-frontcontent>div:not(.fc-banner) {
      padding: 5px 20px;
  }

  .acc-title {
      padding-top: 5px;
      font-size: 20px;
  }

  .fc-frontcontent>div.fc-header {
      display: flex;
      gap: 25px;
      padding: 5px 20px 10px;
  }

  .fc-content {
      color: #6d6d6d;
      font-size: 0.85rem;
      margin-top: 15px;
  }

  .fc-toggler {
      margin-top: 50px;
      text-align: center;
      color: #000000;
  }

  .fc-frontcontent {
      background-color: rgb(228, 228, 228);
      height: 100%;
      border-radius: 7px;
      overflow: hidden;
      position: relative;
      z-index: 9;
      transition: transform 0.15s linear 0.15s;
  }

  .fc-item.flip-content .fc-frontcontent {
      transform: scaleX(0);
      transition: transform 0.15s linear 0s;
  }

  .fc-backcontent {
      background-color: rgb(228, 228, 228);
      border-radius: 7px;
      overflow: hidden;
      position: absolute;
      top: 0;
      height: 100%;
      width: 100%;
      transform: scaleX(0) rotateY(180deg);
      transition: transform 0.15s linear 0s;
      left: 0;
      right: 0;
  }

  .fc-item.flip-content .fc-backcontent {
      transform: scaleX(-1) rotateY(180deg);
      transition: transform 0.15s linear 0.15s;
  }

  .fc-toggler button {
      padding: 8px 10px;
      width: 90%;
      cursor: pointer;
      background: rgb(228, 228, 228);
      border: 2px solid #8830df;
      border-radius: 10px;
      margin-top: -10px;
      color: #000000;
      font-size: 1rem;
      font-weight: 900;
      transition: 0.2s all ease-in-out;
  }

  .fc-toggler button:hover {
      background: #8830df;
      color: #ffffff;
  }

  .fc-back-content {
      max-height: 310px;
      overflow-y: scroll;
      padding: 0 20px;
      margin-bottom: 30px;
  }

  .fc-back-content::-webkit-scrollbar {
      width: 1rem;
  }

  .fc-back-content::-webkit-scrollbar-track {
      background: rgb(228, 228, 228);
  }

  .fc-back-content::-webkit-scrollbar-thumb {
      background: #000000;
  }


  /* FormPopup */
  #form-popup {
      position: fixed;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      padding: 50px;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.30);
      background: #fff;
      visibility: hidden;
      opacity: 0;
      transition: 0.5s;
  }

  @media (max-width: 600px) {
      #form-popup {
          width: 95%;
      }
  }

  /* for blur */
  #portfolio.active,
  #review.active,
  #contact.active,
  #blur.active,
  #blurr.active {
      filter: blur(20px);
      pointer-events: none;
      user-select: none;
  }

  #form-popup.active {
      top: 50%;
      visibility: visible;
      opacity: 1;
      transform: 0.5s;
      z-index: 9999;
  }

  input {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      box-sizing: border-box;
      font-size: large;
  }

  input[type="button"] {
      background-color: #ffffff;
      color: black;
      border: 2px solid #8830df;
      border-radius: 4px;
      padding: 10px 20px;
      cursor: pointer;
  }

  input[type="button"]:hover {
      background-color: #8830df;
      color: white;
      transition: 0.3s;
  }

  input[type="submit"] {
      background-color: #8830df;
      color: white;
      border: 2px solid #8830df;
      border-radius: 4px;
      padding: 10px 20px;
      cursor: pointer;
  }

  .close-btn {
      cursor: pointer;
      font-size: 20px;
      color: #888;
  }

  .close-btn:hover {
      color: #000;
  }