@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Overpass:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Spline+Sans:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Overpass:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Spline+Sans:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden !important;
  background-color: rgba(242, 242, 242, 1);
  scroll-behavior: smooth;
}

.about-card-NCA,
.circle-NCA {
  transform: translateZ(0);
}

.about-container-NCA {
  position: relative;
  width: 100%;
  min-height: 800px;
  background-color: rgba(242, 242, 242, 1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

/* =========================
   LARGE TOP CIRCLE
========================= */

.circle-NCA {
  position: absolute;
  width: 110%;
  height: 147%;
  background: #1436db;
  border-radius: 50%;
  top: -200%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: top 1.2s ease;
}

/* Final Circle Position */
.circle-show-NCA {
  top: -75%;
}

/* =========================
   MAIN CARD
========================= */

.about-card-NCA {
  position: relative;
  width: 100%;
  margin: 0 auto 0 50px;
  z-index: 2;
  padding-top: 90px;
  opacity: 0;
  transform: translateX(250px) scale(0.1);
  transform-origin: bottom right;
  transition:
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.8s ease;
}

/* Final Card Position */
.card-show-NCA {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* =========================
    HEADER
========================= */

.about-header-NCA {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

/* =========================
    ABOUT TITLE
========================= */

.about-title-NCA {
  color: white;
  font-family: Noto Serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-700%);
  transition:
    transform 1.8s ease,
    opacity 1.8s ease;
}

/* Final Title Position */
.about-title-show-NCA {
  opacity: 1;
  transform: translateX(0%);
}

/* =========================
    HEADER LINE
========================= */

.about-line-NCA {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.bottomBorder {
  width: 95%;
  margin: 50px auto;
  margin-bottom: 50px;
  height: 1px;
  background: #bfbfbf;
}

/* =========================
   IMAGE SECTION
========================= */

.about-image-wrapper-NCA {
  width: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.about-image-NCA {
  width: 95%;
  height: 466px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* =========================
   SECTION 2 CONTAINER
========================= */
.section2-trigger {
  width: 100%;
  height: 1px;
}

.three-section-NCA {
  width: 90%;
  margin: 0 auto;

  padding-top: 40px;

  display: flex;

  justify-content: space-between;

  align-items: stretch;

  gap: 40px;
}

/* =========================
   COMMON CARD STYLE
========================= */

.left-card-NCA,
.middle-card-NCA,
.right-card-NCA {
  flex: 1;
}

/* =========================
   LEFT CARD
========================= */

.left-card-NCA {
  display: flex;

  justify-content: center;
  align-items: center;

  opacity: 0;

  transform: translateX(-100%);

  transition:
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.8s ease;
}

.show-left-NCA {
  opacity: 1;

  transform: translateX(0);
}

.suLEftNCA {
  width: 195px;

  height: 232px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 15px;
}

.left-card-NCA h2 {
  font-family: Overpass;

  font-weight: 600;

  font-size: 14px;

  color: rgba(20, 54, 219, 1);
}

.left-card-NCA p {
  display: flex;

  flex-direction: column;

  font-family: Overpass;

  font-weight: 600;

  font-size: 54px;

  text-transform: uppercase;

  color: rgba(20, 54, 219, 1);
}

.right-card-NCA-SVG--Mobile {
  display: none;
}

.three-section-NCA .suLEftNCA {
  position: relative;
  top: -130px;
}

/* =========================
   MIDDLE CARD
========================= */
.middle-card-NCA {
  display: flex;

  flex-direction: column;

  align-items: center;
  align-self: flex-start;

  justify-content: center;

  gap: 25px;
}

/* =========================
   MIDDLE IMAGE
========================= */

.middle-image-NCA {
  width: 100%;

  max-width: 415px;

  height: 365px;

  object-fit: cover;

  opacity: 0;

  transform: translateY(150px) scale(0.3);
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s ease;
}

.show-middle-image-NCA {
  opacity: 1;

  transform: translateY(0) scale(1);
}

/* =========================
   MIDDLE IMAGE EXIT
========================= */

.middle-image-exit-NCA {
  opacity: 0;

  transform: translateY(-150px);
}

/* =========================
   MIDDLE TEXT
========================= */

.middle-text-NCA {
  font-family: Overpass;

  font-weight: 400;

  font-size: 16px;

  line-height: 160%;

  text-align: justify;

  color: #000;

  opacity: 0;

  transform: translateX(150px);

  transition:
    transform 1.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.3s ease;
}

.show-middle-text-NCA {
  opacity: 1;

  transform: translateX(0);
}

/* =========================
   MIDDLE TEXT EXIT
========================= */

.middle-text-exit-NCA {
  opacity: 0;

  transform: translateY(-180px);
}

/* =========================
   RIGHT CARD
========================= */

.right-card-NCA {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 25px;

  opacity: 0;

  transform: translateX(120%);

  transition:
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.8s ease;
}

.show-right-NCA {
  opacity: 1;

  transform: translateX(0);
}

.subrightDivNCA {
  display: flex;

  flex-direction: column;

  gap: 0px;
}

.right-card-NCA h2,
.right-card-NCA p {
  font-family: Overpass;

  font-weight: 400;

  font-size: 16px;

  line-height: 160%;

  text-align: justcrify;

  color: #000;
}

.subrightDivNCA p {
  margin-top: 20px;
}

.right-card-NCA-SVG {
  margin-top: 110px;
}

/* =========================
   BORDER
========================= */

.bottomBorderSection2 {
  width: 80%;

  margin: 50px auto;

  height: 1px;

  background: #bfbfbf;

  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.show-bottomBorderSection2 {
  width: 90%;
}

/* =========================
   SECTION 3
========================= */

.section3-NCA {
  width: 95%;

  margin: 0 auto;
  padding: 80px 0;

  display: flex;

  gap: 40px;
}

/* =========================
   COMMON
========================= */

.section3-left-NCA {
  width: 35%;
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  opacity: 0;

  transition:
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.8s ease;
}

.section3-right-NCA {
  width: 65%;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: flex-start;

  overflow: hidden;

  opacity: 0;

  transition:
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.8s ease;

  transform: translateX(40%);
}

.section3-image-NCA {
  height: 386px;

  position: relative;

  z-index: 1;

  transition:
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.8s ease;
}

.section3-image-NCA img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  display: block;
}

/* =========================
   CONTENT
========================= */

.section3-content-NCA {
  width: calc(100% - 365px);

  height: 400px;

  position: relative;

  z-index: 5;

  background-color: rgba(242, 242, 242, 1);

  display: flex;

  align-items: flex-start;

  justify-content: center;

  flex-direction: column;

  gap: 15px;

  padding-left: 40px;
}

/* =========================
   IMAGE GOES BEHIND
========================= */

.section3-image-hide-NCA {
  transform: translateX(365px) scale(0.92);

  opacity: 0;
}

.section3-image-show-NCA {
  transform: translateX(0) scale(1);

  opacity: 1;
}

.section3-content-NCA h2 {
  font-family: Overpass;

  font-weight: 600;

  font-size: 14px;

  color: rgba(20, 54, 219, 1);
}

.section3-content-NCA p {
  display: flex;

  flex-direction: column;

  font-family: Overpass;

  font-weight: 600;

  font-size: 54px;

  line-height: 100%;

  text-transform: uppercase;

  color: rgba(20, 54, 219, 1);
}

/* =========================
   LEFT
========================= */

.section3-left-NCA {
  transform: translateX(-40%);
}

.show-section3-left-NCA,
.show-section3-right-NCA {
  opacity: 1;

  transform: translateX(0);
}

/* =========================
   TYPOGRAPHY
========================= */

.section3-left-NCA h2,
.section3-left-NCA p {
  font-family: Overpass;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: justify;
}

.bottomBorderSection4 {
  width: 90%;
  margin: auto;
  margin-bottom: 50px;
  height: 1px;
  background: #bfbfbf;
}

/* =========================
   BORDER SECTION 4
========================= */

.bottomBorderSection4 {
  width: 90%;

  margin: auto;

  margin-bottom: 50px;

  height: 1px;

  background: #bfbfbf;
}

/* =========================
   SECTION 4
========================= */

.section4-NCA {
  position: relative;

  width: 95%;

  margin: 0 auto;

  padding: 0px 0 60px;

  display: flex;

  align-items: center;

  gap: 20px;

  /* overflow: hidden; */
}

/* =========================
   SEMI CIRCLE
========================= */

.section4-circle-NCA {
  position: absolute;

  width: 340px;

  height: 340px;

  background: #ffb600;

  border-radius: 50%;

  top: -180px;

  left: -120px;

  z-index: 1;
}

/* =========================
   IMAGE
========================= */

.section4-image-NCA {
  position: relative;

  width: 32%;

  z-index: 2;
}

.section4-image-NCA img {
  width: 327px;

  height: 470px;

  object-fit: cover;

  display: block;
}

/* =========================
   CONTENT
========================= */

.section4-content-NCA {
  position: relative;

  width: 68%;

  z-index: 2;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 30px;

  padding-left: 60px;
}

.section4-content-NCA h2 {
  font-family: Overpass;

  font-weight: 600;

  font-size: 14px;

  color: #1436db;
}

.section4-content-NCA h3 {
  font-family: Overpass;

  font-weight: 600;

  font-size: 72px;

  line-height: 100%;

  text-transform: uppercase;

  color: #1436db;
}

.section4-content-NCA p {
  max-width: 760px;

  font-family: Overpass;

  font-weight: 400;

  font-size: 16px;

  line-height: 170%;

  color: #000;
}

/* =========================
   SECTION 4 INITIAL
========================= */

.section4-image-NCA,
.section4-circle-NCA {
  opacity: 0;

  transform: translateX(-120px) translateY(120px);

  transition:
    transform 1.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.5s ease;
}

.section4-content-NCA {
  opacity: 0;

  transform: translateX(120px) translateY(120px);

  transition:
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.8s ease;
}

/* =========================
   SECTION 4 SHOW
========================= */

.show-section4-image-NCA,
.show-section4-circle-NCA {
  opacity: 1;

  transform: translateX(0) translateY(0);
}

.show-section4-content-NCA {
  opacity: 1;

  transform: translateX(0) translateY(0);
}

/* =========================
   SECTION 4 EXIT
========================= */

.section4-image-exit-NCA,
.section4-circle-exit-NCA {
  opacity: 0;
  transform: translateX(-120px) translateY(120px);
}

.section4-content-exit-NCA {
  opacity: 0;
  transform: translateX(120px) translateY(120px);
}

/* =========================
   SECTION 3 EXIT
========================= */

.section3-exit-up-NCA {
  opacity: 0;

  transform: translateY(-180px);

  transition:
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.8s ease;
}

/* =========================
   SECTION 5
========================= */

.section5-NCA {
  position: relative;

  width: 100%;

  min-height: 100vh;

  padding: 120px 0;

  background: url("../../components/NewAboutUSPage/ourTeamBG.jpg") 50%;

  background-size: cover;

  background-position: bottom;

  background-repeat: no-repeat;

  overflow: hidden;
}

/* =========================
   OVERLAY
========================= */

.section5-overlay-NCA {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* =========================
   CONTENT
========================= */

.section5-content-NCA {
  position: relative;
  z-index: 2;
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 50px 10px;
}

/* =========================
   HEADER
========================= */

.section5-header-NCA {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section5-header-NCA h2 {
  font-family: Noto Serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(20, 54, 219, 1);
}

/* =========================
   GRID
========================= */

.section5-grid-NCA {
  display: grid;
  padding: 0 70px;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =========================
   CARD
========================= */

.section5-card-NCA {
  display: flex;
  flex-direction: column;
  height: 290px;
}

/* =========================
   IMAGE
========================= */

.section5-image-NCA {
  width: 100%;
  overflow: hidden;
}

.section5-image-NCA img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  display: block;
}

/* =========================
   NAME
========================= */

.section5-card-NCA h3 {
  background: var(--Curations-Blue, rgba(20, 54, 219, 1));
  font-family: Noto Serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  text-align: center;
  padding: 10px;
}

/* =========================
   SECTION 4 EXIT UP
========================= */

.section4-exit-up-NCA {
  opacity: 0;

  transform: translateY(-180px);

  transition:
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.8s ease;
}

/* =========================
   SECTION 5 INITIAL
========================= */
.section5-content-NCA {
  opacity: 0;

  transform: translateY(40px);

  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;

  will-change: transform, opacity;

  backface-visibility: hidden;

  transform-style: preserve-3d;
}

/* =========================
   SECTION 5 SHOW
========================= */

.show-section5-content-NCA {
  opacity: 1;

  transform: translateY(0);
}

/* =========================
   SECTION 6
========================= */

.section6-NCA {
  width: 100%;

  background: linear-gradient(90deg, #192e9d 23.96%, #5273ff 100%);

  padding: 80px 0 50px;

  display: flex;

  flex-direction: column;

  gap: 60px;
}

/* =========================
   TOP AREA
========================= */

.section6-top-NCA {
  width: 100%;

  display: flex;

  justify-content: space-around;

  align-items: flex-start;
}

/* =========================
   COMMON COLUMN
========================= */

.section6-follow-NCA,
.section6-about-NCA,
.section6-contact-NCA {
  display: flex;

  flex-direction: column;

  gap: 30px;
}

/* =========================
   TITLE
========================= */

.section6-title-NCA {
  color: #d7d7d7;

  font-family: "Noto Serif";

  font-size: 32px;

  font-weight: 700;
}

/* =========================
   SOCIALS
========================= */

.section6-socials-NCA {
  display: flex;

  align-items: center;

  gap: 20px;
}

.section6-social-icon-NCA {
  width: 50px;

  height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: 0.4s ease;
}

.section6-social-icon-NCA:hover {
  transform: scale(1.08);
}

/* =========================
   LINKS
========================= */

.section6-links-NCA {
  display: flex;

  flex-direction: column;

  gap: 16px;
}

.section6-links-NCA a {
  color: #d7d7d7;

  font-family: Overpass;

  font-size: 20px;

  font-weight: 400;

  text-decoration: none;

  transition: 0.3s ease;
}

.section6-links-NCA a:hover {
  opacity: 0.7;
}

/* =========================
   BUTTON
========================= */

.section6-btn-NCA {
  padding: 18px 40px;

  border: none;

  background: rgba(255, 182, 1, 1);

  border-radius: 4px;

  color: #1b1b1b;

  font-family: Overpass;

  font-size: 22px;

  cursor: pointer;

  transition: 0.5s ease;
}

.section6-btn-NCA:hover {
  background: #1436db;

  color: #fff;
}

/* =========================
   LOGO AREA
========================= */

.section6-logo-wrapper-NCA {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.section6-logo-NCA {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;

  padding: 20px;

  cursor: pointer;
}

.section6-logo-NCA img {
  width: 150px;

  object-fit: contain;

  display: block;
}

.footerImgtext {
  font-family: Overpass;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #1436db;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .section6-top-NCA {
    flex-direction: column;

    align-items: center;

    gap: 40px;

    text-align: center;
  }

  .section6-follow-NCA,
  .section6-about-NCA,
  .section6-contact-NCA {
    align-items: center;
  }

  .section6-title-NCA {
    font-size: 24px;
  }

  .section6-links-NCA a {
    font-size: 18px;
  }

  .section6-btn-NCA {
    font-size: 18px;
  }

  .section6-NCA {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 499px) {
  /* =========================
       SECTION 1
    ========================= */

  .about-container-NCA {
    min-height: 90vh;
    padding-top: 120px;
    overflow: hidden;
  }

  .about-card-NCA {
    margin-left: 10px;
    padding-top: 40px;
  }

  .about-header-NCA {
    gap: 12px;
  }

  .about-title-NCA {
    font-size: 22px;
  }

  .circle-NCA {
    width: 190%;
    height: 150%;
  }

  .circle-show-NCA {
    top: -90%;
  }

  .about-image-NCA {
    width: 98%;
    height: 53vh;
    object-fit: cover;
    border-radius: 4px;
  }

  .bottomBorder {
    margin-bottom: 10px;
  }

  /* =========================
       SECTION 2
    ========================= */

  .three-section-NCA {
    flex-direction: column;
    width: 94%;
    gap: 0px;
    padding: 10px 0;
  }

  .left-card-NCA,
  .middle-card-NCA,
  .right-card-NCA {
    width: 100%;
  }

  /* LEFT + SVG */

  .left-card-NCA {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-right: 20px;
  }

  .suLEftNCA {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }

  .left-card-NCA h2 {
    font-size: 16px;
  }

  .left-card-NCA p {
    font-size: 34px;
    line-height: 100%;
  }

  .right-card-NCA-SVG {
    width: 34px;
    height: auto;
    flex-shrink: 0;
    margin-top: 18px;
  }

  /* MIDDLE */

  .middle-card-NCA {
    gap: 20px;
  }

  .middle-image-NCA {
    width: 100%;
    height: 260px;
    object-fit: cover;
  }

  .middle-text-NCA {
    font-size: 14px;
    line-height: 180%;
  }

  /* RIGHT */

  .right-card-NCA {
    gap: 24px;
  }

  .right-card-NCA h2,
  .right-card-NCA p {
    font-size: 14px;
    line-height: 180%;
  }

  /* =========================
       SECTION 3
    ========================= */

  .section3-NCA {
    flex-direction: column;
    width: 94%;
    gap: 20px;
    padding: 0 0 60px;
  }

  .section3-right-NCA {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    overflow: hidden;
    position: relative;
  }

  /* ORDER */

  .section3-content-NCA {
    order: 1;
    width: 100%;
    height: fit-content;
    align-items: flex-start;
    padding-left: 10px;
  }

  .section3-image-NCA {
    order: 2;
    height: 311px;
    width: 100%;
    flex-shrink: 0;
  }

  .section3-left-NCA {
    order: 3;
    width: 100%;
    gap: 0;
  }

  .section3-left-NCA h2,
  .section3-left-NCA p {
    font-size: 14px;
    line-height: 130%;
  }

  .section3-content-NCA h2 {
    font-size: 16px;
  }

  .section3-content-NCA p {
    font-size: 32px;
    line-height: 95%;
  }

  /* KEEP ORIGINAL ANIMATION SYSTEM */

  .section3-image-hide-NCA {
    transform: translateX(180px) scale(0.92);

    opacity: 0;
  }

  /* =========================
       SECTION 4
    ========================= */

  .section4-NCA {
    flex-direction: column;
    width: 94%;
    gap: 10px;
    padding-bottom: 80px;
    position: relative;
  }

  /* YELLOW CIRCLE */

  .section4-circle-NCA {
    width: 200px;
    height: 200px;
    top: -90px;
    left: -80px;
  }

  /* IMAGE */

  .section4-image-NCA {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }

  .section4-image-NCA img {
    width: 100%;
    margin: auto;
    height: 300px;
    object-fit: cover;
  }

  /* CONTENT */

  .section4-content-NCA {
    width: 100%;
    padding-left: 0;
    gap: 0;
    position: relative;
    z-index: 5;
  }

  /* TEXT INSIDE YELLOW CIRCLE */

  .section4-content-NCA h2,
  .section4-content-NCA h3 {
    position: absolute;
    z-index: 5;

    color: #0a33ff;

    opacity: 0;

    animation: section4TextSlideMobile 0.8s ease forwards;
  }

  /* 03 */

  .section4-content-NCA h2 {
    top: -405px;
    left: 5px;

    font-size: 16px;

    animation-delay: 0.35s;
  }

  /* WHY WE DO IT */

  .section4-content-NCA h3 {
    top: -380px;
    left: 5px;

    font-size: 24px;
    line-height: 100%;
    width: 130px;
    max-width: 220px;

    animation-delay: 0.5s;
  }

  /* PARAGRAPHS */

  .section4-content-NCA p {
    position: relative;

    font-size: 14px;
    line-height: 180%;

    margin-top: 4px;
  }

  /* TEXT ANIMATION */

  @keyframes section4TextSlideMobile {
    from {
      transform: translateX(-80px);
      opacity: 0;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  /* =========================
       SECTION 5
    ========================= */

  .section5-NCA {
    padding-top: 80px;
  }

  .section5-content-NCA {
    width: 96%;
    padding: 30px 12px;
    gap: 30px;
  }

  .section5-header-NCA h2 {
    font-size: 28px;
  }

  .section5-grid-NCA {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  .section5-card-NCA {
    width: 100%;
    height: auto;
  }

  .section5-image-NCA img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .section5-card-NCA h3 {
    font-size: 16px;
    padding: 12px;
  }

  /* =========================
       SECTION 6
    ========================= */

  .section6-NCA {
    padding: 60px 0 40px;
  }

  .section6-top-NCA {
    width: 94%;
    flex-direction: column;
    gap: 40px;
  }

  .section6-title-NCA {
    font-size: 22px;
  }

  .section6-links-NCA {
    gap: 12px;
  }

  .section6-links-NCA a {
    font-size: 16px;
  }

  .section6-btn-NCA {
    font-size: 14px;
    padding: 12px 20px;
  }

  .section6-logo-NCA img {
    width: 100px;
  }

  .left-card-NCA {
    position: relative;
    max-height: 160px;
  }

  /* VISUALLY DETACH SVG FROM RIGHT CARD */

  .right-card-NCA-SVG {
    display: none;
  }

  .right-card-NCA-SVG--Mobile {
    display: flex;
    margin-top: 50px;
  }

  .section5-grid-NCA {
    grid-template-columns: 1fr;
    justify-items: center;

    gap: 24px;
    padding: 0;
  }

  .section5-card-NCA {
    width: 230px;
    max-width: 100%;

    height: auto;
  }

  .section5-image-NCA img {
    width: 230px;
    height: 300px;

    object-fit: cover;
  }

  .section5-card-NCA h3 {
    width: 230px;

    font-size: 16px;
    padding: 12px;
  }

  .bottomBorder {
    margin: 50px auto;
  }

  .three-section-NCA .suLEftNCA {
    position: relative;
    top: 0px;
  }
}

@media screen and (min-width: 500px) and (max-width: 768px) {
  /* =========================
       SECTION 1
    ========================= */

  .about-container-NCA {
    min-height: 850px;
    padding-top: 20px;
    overflow: hidden;
  }

  .about-card-NCA {
    margin-left: 20px;
    padding-top: 140px;
  }

  .about-header-NCA {
    gap: 16px;
  }

  .about-title-NCA {
    font-size: 26px;
  }

  .circle-NCA {
    width: 150%;
    height: 120%;
  }

  .circle-show-NCA {
    top: -60%;
  }

  .about-image-NCA {
    width: 95%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
  }

  /* =========================
       SECTION 2
    ========================= */

  .three-section-NCA {
    flex-direction: column;
    width: 92%;
    gap: 20px;
    padding: 0;
  }

  .left-card-NCA,
  .middle-card-NCA,
  .right-card-NCA {
    width: 100%;
  }

  /* LEFT + SVG */

  .left-card-NCA {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-right: 40px;
  }

  .suLEftNCA {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .left-card-NCA p {
    font-size: 44px;
    line-height: 100%;
  }

  .left-card-NCA h2 {
    font-size: 18px;
  }

  .right-card-NCA-SVG {
    width: 42px;
    height: auto;
    flex-shrink: 0;
    margin-top: 24px;
  }

  /* MIDDLE */

  .middle-card-NCA {
    gap: 24px;
  }

  .middle-image-NCA {
    width: 100%;
    max-width: 100%;
    height: 340px;
    object-fit: cover;
  }

  .middle-text-NCA {
    font-size: 15px;
    line-height: 180%;
  }

  /* RIGHT */

  .right-card-NCA {
    gap: 30px;
  }

  .right-card-NCA h2,
  .right-card-NCA p {
    font-size: 15px;
    line-height: 180%;
  }

  /* =========================
       SECTION 3
    ========================= */

  .section3-NCA {
    flex-direction: column;
    width: 92%;
    gap: 20px;
    padding: 10px 0 70px 0;
  }

  .section3-right-NCA {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;

    overflow: hidden;
    position: relative;
  }

  /* ORDER */

  .section3-content-NCA {
    order: 1;
    width: 100%;
    height: fit-content;
    align-items: flex-start;
    padding-left: 10px;
  }

  .section3-image-NCA {
    order: 2;

    width: 100%;
    flex-shrink: 0;
  }

  .section3-left-NCA {
    order: 3;
    width: 100%;
    /* gap: 30px; */
  }

  .section3-left-NCA h2,
  .section3-left-NCA p {
    font-size: 15px;
    line-height: 180%;
  }

  .section3-content-NCA h2 {
    font-size: 18px;
  }

  .section3-content-NCA p {
    font-size: 40px;
    line-height: 95%;
  }

  /* KEEP ORIGINAL ANIMATION SYSTEM */

  .section3-image-hide-NCA {
    transform: translateX(220px) scale(0.92);

    opacity: 0;
  }

  /* =========================
       SECTION 4
    ========================= */

  .section4-NCA {
    flex-direction: column;
    width: 92%;
    gap: 50px;
    padding-bottom: 100px;
  }

  .section4-circle-NCA {
    width: 240px;
    height: 240px;
    top: -100px;
    left: -70px;
  }

  .section4-image-NCA {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0 0 0;
  }

  .section4-image-NCA img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .section4-content-NCA {
    width: 100%;
    padding-left: 0;
  }

  .section4-content-NCA h2 {
    font-size: 18px;
  }

  .section4-content-NCA h3 {
    font-size: 44px;
    line-height: 100%;
  }

  .section4-content-NCA p {
    font-size: 15px;
    line-height: 180%;
  }

  /* =========================
       SECTION 5
    ========================= */

  .section5-NCA {
    padding-top: 100px;
  }

  .section5-content-NCA {
    width: 100%;
    padding: 40px 0px;
    gap: 40px 0px;
  }

  .section5-header-NCA h2 {
    font-size: 34px;
  }

  .section5-grid-NCA {
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 0;
  }

  .section5-card-NCA {
    width: 100%;
    height: auto;
  }

  .section5-image-NCA img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .section5-card-NCA h3 {
    font-size: 18px;
    padding: 14px;
  }

  /* =========================
       SECTION 6
    ========================= */

  .section6-NCA {
    padding: 80px 0 50px;
  }

  .section6-top-NCA {
    width: 92%;
    flex-direction: column;
    gap: 50px;
  }

  .section6-title-NCA {
    font-size: 26px;
  }

  .section6-links-NCA {
    gap: 14px;
  }

  .section6-links-NCA a {
    font-size: 18px;
  }

  .section6-btn-NCA {
    font-size: 16px;
    padding: 14px 24px;
  }

  .section6-logo-NCA img {
    width: 120px;
  }

  .left-card-NCA {
    position: relative;
  }

  /* VISUALLY DETACH SVG FROM RIGHT CARD */

  .right-card-NCA-SVG {
    display: none;
  }

  .right-card-NCA-SVG--Mobile {
    display: flex;
    margin-top: 50px;
  }

  .section5-grid-NCA {
    grid-template-columns: repeat(2, 1fr);

    justify-items: center;

    gap: 24px 0;

    padding: 0;
  }

  .section5-card-NCA {
    width: 200px;
    max-width: 100%;

    height: auto;
  }

  .section5-image-NCA img {
    width: 200px;
    height: 300px;
    object-fit: cover;
  }

  .section5-card-NCA h3 {
    width: 200px;

    font-size: 16px;
    padding: 12px;
  }

  .three-section-NCA .suLEftNCA {
    position: relative;
    top: 0px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* =========================
       SECTION 1
    ========================= */

  .about-container-NCA {
    min-height: 700px;
    padding-top: 40px;
  }

  .about-card-NCA {
    margin-left: 30px;
    padding-top: 100px;
  }

  .circle-NCA {
    width: 120%;
    height: 120%;

    top: -120%;

    left: 50%;

    transform: translateX(-50%) translateZ(0);

    will-change: transform;

    backface-visibility: hidden;

    -webkit-backface-visibility: hidden;
  }
  .circle-NCA::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    background: #1436db;

    transform: translateZ(0);
  }

  .circle-show-NCA {
    top: -45%;
  }
  .about-container-NCA {
    isolation: isolate;
  }

  .about-title-NCA {
    font-size: 30px;
  }

  .about-image-NCA {
    width: 94%;
    height: 420px;
    border-radius: 7px;
  }

  /* =========================
       SECTION 2
    ========================= */

  .three-section-NCA {
    width: 94%;
    gap: 30px;
    padding-top: 60px;
  }

  .suLEftNCA {
    width: auto;
  }

  .left-card-NCA p {
    font-size: 42px;
  }

  .middle-image-NCA {
    max-width: 300px;
    height: 300px;
  }

  .middle-text-NCA,
  .right-card-NCA h2,
  .right-card-NCA p {
    font-size: 14px;
    line-height: 170%;
  }

  .right-card-NCA-SVG {
    margin-top: 50px;
  }

  /* =========================
       SECTION 3
    ========================= */

  .section3-NCA {
    width: 94%;
    gap: 20px;
    padding: 80px 0;
  }

  .section3-left-NCA {
    width: 30%;
  }

  .section3-right-NCA {
    width: 70%;
  }

  /* KEEP ORIGINAL ANIMATION SYSTEM */

  .section3-image-NCA {
    width: 300px;
    height: 180px;
    flex-shrink: 0;
  }

  .section3-content-NCA {
    width: calc(100% - 300px);
    height: 250px;
  }

  /* IMPORTANT */
  .section3-image-hide-NCA {
    transform: translateX(260px) scale(0.92);

    opacity: 0;
  }

  .section3-content-NCA p {
    font-size: 42px;
  }

  .section3-left-NCA h2,
  .section3-left-NCA p {
    font-size: 14px;
    line-height: 170%;
  }

  /* =========================
       SECTION 4
    ========================= */

  .section4-NCA {
    width: 94%;
    gap: 30px;
    padding-bottom: 100px;
  }

  .section4-circle-NCA {
    width: 260px;
    height: 260px;
    top: -120px;
    left: -80px;
  }

  .section4-image-NCA img {
    width: 240px;
    height: 360px;
  }

  .section4-content-NCA {
    padding-left: 20px;
  }

  .section4-content-NCA h3 {
    font-size: 52px;
  }

  .section4-content-NCA p {
    font-size: 14px;
    line-height: 170%;
  }

  /* =========================
       SECTION 5
    ========================= */

  .section5-content-NCA {
    width: 92%;
    padding: 50px 20px;
  }

  .section5-grid-NCA {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
  }

  .section5-card-NCA {
    height: auto;
  }

  .section5-card-NCA h3 {
    font-size: 18px;
  }

  /* =========================
       SECTION 6
    ========================= */

  .section6-top-NCA {
    width: 92%;
    margin: 0 auto;
    gap: 40px;
  }

  .section6-title-NCA {
    font-size: 28px;
  }

  .section6-links-NCA a {
    font-size: 18px;
  }

  .section6-btn-NCA {
    font-size: 18px;
    padding: 16px 30px;
  }
}

@media screen and (min-width: 1440px) {
  /* =========================
       SECTION 1
    ========================= */

  .about-container-NCA {
    min-height: 90vh;
    padding-top: 60px;
    overflow: hidden;
  }

  .about-card-NCA {
    padding-top: 100px;
    margin-left: 80px;
  }

  .about-image-NCA {
    width: 92%;
    height: 520px;
    border-radius: 14px;
  }

  .circle-NCA {
    width: 120%;
    height: 165%;
  }

  .circle-show-NCA {
    top: -90%;
  }

  /* =========================
       SECTION HEIGHTS
    ========================= */

  .section2,
  .section3-NCA,
  .section4-NCA,
  .section5-NCA {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
  }

  .three-section-NCA .right-card-NCA {
    align-items: center;
    justify-content: flex-start;
    align-self: flex-start;
  }

  /* =========================
       SECTION 2
    ========================= */

  .three-section-NCA {
    width: 88%;
    gap: 60px;
    padding-top: 40px;
  }

  .middle-image-NCA {
    max-width: 500px;
    height: 450px;
  }

  .middle-text-NCA,
  .right-card-NCA h2,
  .right-card-NCA p {
    font-size: 18px;
  }

  .left-card-NCA p {
    font-size: 68px;
  }

  /* =========================
       SECTION 3
    ========================= */

  .section3-NCA {
    width: 92%;
    gap: 40px;
    padding: 60px 0;
  }

  .section3-left-NCA {
    width: 38%;
  }

  .section3-right-NCA {
    width: 62%;
    position: relative;
    overflow: hidden;
  }

  /* KEEP ORIGINAL IMAGE ANIMATION */

  .section3-image-NCA {
    width: 60%;
    flex-shrink: 0;
  }

  .section3-content-NCA {
    width: calc(100% - 365px);
    position: relative;
    z-index: 5;
    background-color: rgba(242, 242, 242, 1);
  }

  .section3-content-NCA p {
    font-size: 68px;
  }

  .section3-left-NCA h2,
  .section3-left-NCA p {
    font-size: 18px;
    line-height: 110%;
  }

  /* =========================
       SECTION 4
    ========================= */

  .section4-NCA {
    width: 88%;
    gap: 80px;
    /* padding: 120px 0; */
  }

  .section4-circle-NCA {
    width: 400px;
    height: 400px;
    top: -220px;
    left: -260px;
  }

  .section4-image-NCA img {
    width: 420px;
    height: 600px;
  }

  .section4-content-NCA {
    padding-left: 40px;
  }

  .section4-content-NCA h3 {
    font-size: 88px;
  }

  .section4-content-NCA p {
    font-size: 18px;
    line-height: 170%;
    max-width: 850px;
  }

  /* =========================
       SECTION 5
    ========================= */

  .section5-NCA {
    padding-top: 120px;
  }

  .section5-content-NCA {
    width: 75%;
    padding: 70px 40px;
    gap: 50px;
  }

  .section5-grid-NCA {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 0 40px;
  }

  .section5-card-NCA h3 {
    font-size: 22px;
    /* padding: 14px; */
  }

  /* =========================
       SECTION 6
    ========================= */

  .section6-NCA {
    padding: 100px 0 60px;
  }

  .section6-title-NCA {
    font-size: 38px;
  }

  .section6-links-NCA a {
    font-size: 22px;
  }

  .left-card-NCA h2,
  .section3-content-NCA h2,
  .section4-content-NCA h2 {
    font-size: 24px;
  }

  .section3-NCA {
    align-items: flex-start;
  }
}

@media screen and (min-width: 1900px) {
  /* =========================
       SECTION 1
    ========================= */

  .about-container-NCA {
    min-height: 90vh;
  }

  .about-card-NCA {
    padding-top: 100px;
    margin-left: 120px;
  }

  .about-image-NCA {
    width: 92%;
    /* height: 720px; */
  }

  .circle-NCA {
    width: 130%;
    height: 180%;
  }

  .circle-show-NCA {
    top: -100%;
  }

  /* =========================
       SECTION HEIGHTS
    ========================= */
  /* 
    .section2,
    .section3-NCA,
    .section4-NCA,
    .section5-NCA {
        min-height: 115vh;
    } */

  /* =========================
       SECTION 2
    ========================= */

  .three-section-NCA {
    width: 86%;
    gap: 100px;
    padding-top: 60px;
  }

  .middle-image-NCA {
    max-width: 620px;
    height: 560px;
  }

  .middle-text-NCA,
  .right-card-NCA h2,
  .right-card-NCA p {
    font-size: 22px;
    line-height: 160%;
  }

  .left-card-NCA p {
    font-size: 88px;
  }

  /* =========================
       SECTION 3
    ========================= */

  .section3-NCA {
    width: 90%;
    gap: 40px;
    padding: 60px 0;
  }

  .section3-left-NCA {
    width: 36%;
  }

  .section3-right-NCA {
    width: 64%;
  }

  /* KEEP ORIGINAL IMAGE ANIMATION */

  .section3-image-NCA {
    /* width: 365px; */
    flex-shrink: 0;
  }

  .section3-content-NCA {
    width: calc(100% - 365px);
  }

  .section3-content-NCA p {
    font-size: 92px;
  }

  .section3-left-NCA h2,
  .section3-left-NCA p {
    font-size: 22px;
    line-height: 160%;
  }

  /* =========================
       SECTION 4
    ========================= */

  .section4-NCA {
    width: 86%;
    gap: 120px;
    padding: 110px 0;
  }

  .section4-circle-NCA {
    width: 520px;
    height: 520px;
    top: -190px;
    left: -320px;
  }

  .section4-image-NCA img {
    width: 520px;
    height: 760px;
  }

  .section4-content-NCA {
    padding-left: 60px;
  }

  .section4-content-NCA h3 {
    font-size: 110px;
  }

  .section4-content-NCA p {
    font-size: 22px;
    line-height: 160%;
    max-width: 1000px;
  }

  /* =========================
       SECTION 5
    ========================= */

  .section5-NCA {
    padding-top: 160px;
  }

  .section5-content-NCA {
    width: 70%;
    padding: 90px 60px;
    gap: 50px;
  }

  .section5-grid-NCA {
    gap: 70px;
    padding: 0 60px;
  }

  /* =========================
       SECTION 6
    ========================= */

  .section6-NCA {
    padding: 120px 0 80px;
  }

  .section6-title-NCA {
    font-size: 46px;
  }

  .section6-links-NCA a {
    font-size: 26px;
  }

  .left-card-NCA h2,
  .section3-content-NCA h2,
  .section4-content-NCA h2 {
    font-size: 34px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section5-content-NCA {
    width: 92%;
    padding: 50px 20px;
  }

  .section5-grid-NCA {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
  }

  .section5-card-NCA {
    width: 100%;
    height: auto;
  }

  .section5-image-NCA img {
    width: 100%;
    height: auto;
  }
}

#MN-header-id.scrolled .text {
  color: #1436db !important;
}

/* SEARCH ICON */

#MN-header-id.scrolled .svgSearch svg path {
  stroke: #1436db !important;
}

/* HAMBURGER */

#MN-header-id.scrolled #themelinefill {
  fill: #1436db !important;
}

/* PROFILE ICON OUTER */

#MN-header-id.scrolled #userProfileImage path:first-child {
  stroke: #1436db !important;
  fill: #1436db !important;
}

/* PROFILE ICON INNER */

#MN-header-id.scrolled #userProfileImage path:last-child {
  stroke: #ffffff !important;
}
