/* =========================================================
  Banner
========================================================= */
@keyframes fadeIn    { from{opacity:0} to{opacity:1} }
    @keyframes lineUp    { from{transform:translateY(105%)} to{transform:translateY(0)} }
    @keyframes pop       { from{transform:scale(0)} to{transform:scale(1)} }
    @keyframes bannerOpen{ from{clip-path:inset(0 100% 0 0)} to{clip-path:inset(0 0 0 0)} }
    @keyframes riseFade  { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
    @keyframes drawX     { from{transform:scaleX(0)} to{transform:scaleX(1)} }
    @keyframes revealLabel {from {transform: scaleX(0);}to {transform: scaleX(1);}
}
@media (prefers-reduced-motion: reduce) {
  .home_banner * { animation: none !important; opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
section.banner_section.home_banner {
  position: relative;
  background-color: var(--deep-teal);
  /* overflow: hidden; */
}

.banner_grid_container {
  display: grid;
  grid-template-columns: 1.3fr 2.5fr 1fr;
  /* height: 955px; */
  gap: 10px;
  position: relative;
}

.heading_big {
  color: white;
  line-height: 100%;
}

.heading_big u {
  text-decoration-color: var(--yellow);
}


.col_left .image_wrapper {
  height: auto;
  background-color: var(--golden);
}

.col_right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.banner_col.col_right .image_wrapper {
  background-color: var(--golden);
}


 .home_banner .image_wrapper {
  opacity: 0;
}
.home_banner.is-loaded .image_wrapper {
  animation: fadeIn 220ms ease var(--tile-delay, 0ms) both;
}

.home_banner .heading_line {
  display: block;
  overflow: hidden;
}
.home_banner .heading_line_inner {
  display: block;
  transform: translateY(105%);
}
.home_banner.is-loaded .heading_line_inner {
  animation: lineUp 520ms cubic-bezier(.2,.7,.2,1) both;
  animation-delay: calc(940ms + var(--i) * 80ms);
}

.content_box_overlay {
  position: absolute;
  left: 0;
  bottom: 0;
   pointer-events:auto;
  width: 100%;
  max-width: 565px;
  background: var(--deep-teal);
  padding: 40px 80px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 40px;
  will-change: position, opacity;
  transform: translate3d(0, 0, 0); 
  backface-visibility: hidden;
  transition: opacity 0s ease;
}


section.banner_section.home_banner .secondary-btn {
  color: var(--white);
  border-color: white;
  opacity: 0;
  transform: translateY(14px);
}
.home_banner.is-loaded .secondary-btn {
  animation: riseFade 400ms cubic-bezier(.2,.7,.2,1) 1240ms both;
}

section.banner_section.home_banner .secondary-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.label_item {
  position: absolute;
  z-index: 20;
  opacity: 0;
}
.home_banner.is-loaded .label_item {
  opacity: 1;
}



.home_banner .label_item > div:not(.label_square) {
  clip-path: inset(0 100% 0 0);
}
.home_banner.is-loaded .label_item > div:not(.label_square) {
  animation: bannerOpen 380ms cubic-bezier(.2,.7,.2,1) both;
  animation-delay: calc(1420ms + var(--i) * 130ms);
}

.label_square {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--yellow);
  top: 0;
  left: 0;
  transform: scale(0);
}
.home_banner.is-loaded .label_square {
  animation: pop 300ms cubic-bezier(.2,.7,.2,1) both;
  animation-delay: calc(1300ms + var(--i) * 130ms);
}

.grid_label {
  font-family: var(--font-outfit);
  display: inline-block;
  margin-top: 22px;
  margin-left: 15px;
  padding: 10px;
  background: var(--yellow);
  color: #000;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 21px;
  letter-spacing: 1%;
  transform: scaleX(0);
  transform-origin: left;
}
.home_banner.is-loaded .grid_label {
  animation: revealLabel 240ms ease both;
  animation-delay: calc(1540ms + var(--i) * 130ms);
}

.label_student {
  right: 130px;
  top: 340px;
}

.label_advocates {
  /* left: 40px; */
  left: 31.54%;
  top: 380px;
  z-index: 51;
}

.label_university {
  left: 200px;
  bottom: 95px;
}

.label_researchers {
  left: 50px;
  top: 170px;
}

.label_organizers {
  left: 32px;
  top: 140px;
}

.image_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* =======================================
  IMAGE FILTER
======================================= */
.dither-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.source-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dither-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
  object-fit: cover;
}

.dither-wrap.is-loaded .dither-canvas {
  opacity: 1;
}

.dither-wrap.is-loaded .source-image {
  opacity: 0;
}

.dither-wrap.no-effect .source-image {
  opacity: 1 !important;
}


/* ==========================================
  CTA Section
======================================= */
.cta-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 970px;
  max-width: 75%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.cta-image .dither-wrap {
  width: 100%;
  height: 100%;
}

.cta-image .source-image,
.cta-image .dither-canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-section {
  background-color: var(--deep-teal);
  padding-top: 10px;
}
.page-id-218 .cta-section {
  padding-top: 24px;
}

.cta-section .container {
  max-width: 100%;
  padding: 0 25px;
}

.cta-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 428px;
  background-color: #27eaa6;
  overflow: hidden;
  position: relative;
  z-index: 10;
  margin-bottom: -50px;
}

.cta-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  max-width: 597px;
  background-color: #27eaa6;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  box-sizing: border-box;
}

/* .cta-content .secondary-btn:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
} */

.cta-content .secondary-btn:hover {
  color: var(--deep-teal);
  border-bottom-color: var(--deep-teal);
}

::selection {
  background: #dfff00;
  color: var(--deep-teal);
}
/* =======================================
  OUR work featured Section
======================================= */
.featured-in-section {
  padding: 87px 0 125px;
  text-align: center;
}

.featured-title-wrap {
  margin-bottom: 30px;
}

.featured-editor-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: left;
  max-width: 1192px;
  margin: 0 auto;
}

.featured-editor-content p {
  font-size: 18px;
  line-height: 135%;
  letter-spacing: -1%;
  color: #141311;
  margin: 0;
  padding: 0;
}
/* =======================================
  LINK LIST Section
======================================= */

.global-cta-section {
  padding: 64px 0;
  width: 100%;
  box-sizing: border-box;
}

.cta-list-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cta-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--dark-black);
  position: relative;
  cursor: pointer;
  padding: 43px 10px 43px 0;
}


.cta-title {
  position: relative;
  z-index: 2;
  line-height: 108%;
  font-weight: 400;
}

.cta-link-arrow {
  font-family: "Outfit";
  display: inline-flex;
  align-items: center;
  color: var(--dark-black);
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1%;
  line-height: 21%;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  transition: color 3s ease;
}

.cta-row-item::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  right: 0;
  background-color: var(--green);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
  z-index: 1;
}

.cta-row-item:hover::before {
  transform: scaleX(1);
}

.cta-link-arrow.secondary-btn {
  border: none !important;
  padding-bottom: 0 !important;
}

.cta-link-arrow.secondary-btn:hover {
  border: none !important;
  color: #000;
}

.cta-row-item:hover .cta-link-arrow.secondary-btn {
  transform: none !important;
}
.cta-row-item:hover .cta-link-arrow.secondary-btn::after {
  transform: translateX(6px) !important;
}

/* =======================================
  Image Content Section
======================================= */

.image-content-section {
  overflow-x: hidden;
  padding: 0px;
}

.image-content-section.extra-padding {
  padding: 112px 0;
}

.image-content-section .img-con-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  max-height: 100%;
  height: 100%;
}

@media only screen and (min-width: 1400px) {

  .image-content-section .img-con-wrap {
    grid-template-columns: 1fr minmax(764px, 1fr);
  }
  .image-content-section .img-con-wrap.row-reverse {
    grid-template-columns: minmax(788px, 1fr) 1fr;
  }
}
.image-content-section.bg-teel-sec {
  background-color: var(--deep-teal);
}
.image-content-section.bg-teel-sec .hd-desc h3,
.image-content-section.bg-teel-sec .desc,
.image-content-section.bg-teel-sec .secondary-btn {
  color: var(--white);
}
.image-content-section.bg-teel-sec .secondary-btn {
  border-bottom: 2px solid var(--white);
}
.image-content-section.bg-teel-sec .secondary-btn:hover {
  color: var(--yellow);
  border-bottom: 2px solid var(--yellow);
}

.img-con-wrap.row-reverse .image-content {
  order: 2;
  padding: 40px;
}

.img-con-wrap.row-reverse .img-col {
  order: 1;
}

.image-content-section .image-content {
  display: grid;
  gap: 30px;
}

.image-content-section .left-section-2,
.image-content-section .left-section-1 {
  display: grid;
  gap: 40px;
  max-width: 575px;
  width: 100%;
}

.image-content-section .hd-desc {
  display: grid;
  gap: 15px;
}

.left-section-2 h3 {
  display: grid;
  line-height: 108%;
  width: 100%;
  font-weight: 400;
}

.desc {
  color: #141311;
  line-height: 135%;
  letter-spacing: -1%;
}
/* Buttons */
.image-content-section .btn-wrap {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 40px;
}

.image-content-section .img-col {
  display: grid;
  overflow: hidden;
  background-color: #193133;
  height: 100%;
}

.image-content-section .img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-content-section .img-col video,
.image-content-section .img-col iframe {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
  display: block;
}

.image-content-section .youtube-video iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: block;
}

.img-con-wrap:not(.row-reverse) .image-content {
  padding-left: calc((100vw - 1320px) / 2);
}

.image-content-section .secondary-btn:nth-of-type(2) {
  border: none;
  font-weight: 500;
}
.image-content-section .secondary-btn:nth-of-type(2)::after {
  content: none !important;
}

.image-content-section .secondary-btn:nth-of-type(2):hover::after {
  transform: none !important;
}


#image_and_content-1 .img-col,
#image_and_content-1 .dither-wrap {
  width: 100% !important;
  aspect-ratio: 764/750 !important; 
  position: relative !important;
  overflow: hidden !important;
}

#image_and_content-1 .dither-wrap canvas,
#image_and_content-1 .dither-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; 
  object-position: center !important;
  display: block !important;
}
/* ==============================
 Publications 
===========================*/

.publications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.publication-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.publication-media img,
.publication-media .image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.publications-category {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.publications-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: var(--font-helvetica);
}

.publications-excerpt p {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.publications-meta {
  margin-top: auto;
}

.publications-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.publications-meta-bottom {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
}

.meta-divider {
  margin: 0 8px;
  color: var(--dark);
}
.publication-sec-ft {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
}
.publication-sec-ft div {
  color: var(--dark-black);
  padding: 3px 10px;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-family: var(--font-jetbarnis-mono);
  background: var(--yellow);
  color: var(--deep-teal);
  padding: 12px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.84px;
}

/* new */
.publications-section {
  background-color: transparent;
  padding: 160px 0 70px;
}

.publications-section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
   gap: 24px;
  padding: 32px 0 41px;
  border-top: 1px solid black;
  margin: 0px;
}

.publications-asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.publication-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.publications-footer-btn {
  margin-top: 64px;
  text-align: end;
}

.small-card {
  position: relative;
  height: 344px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.small-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.small-card-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.small-card-content a {
  pointer-events: auto;
}

.small-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  border: 1px solid #282828;
}

.small-card .card-badge-top {
  font-family: var(--font-jetbarnis-mono);
  background: #fff;
  color: var(--deep-teal);
  padding: 12px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.84px;
}

.small-card .see-more-top {
  color: #fff;
  font-family: var(--font-jetbarnis-mono);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.84px;
}

.small-card .publications-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.56px;
}

.small-card .publications-title a {
  color: var(--white) !important;
  text-decoration: none;
}

.small-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--deep-teal);
  transform: translateY(100%);
  transition: transform 0.45s ease;
  z-index: 2;
}

.small-card:hover::before {
  transform: translateY(0);
}

.small-card-bg {
  z-index: 1;
}

.small-card .publications-title,
.small-card .card-badge-top,
.small-card .see-more-top {
  transition: 0.35s ease;
}

.small-card-excerpt {
  margin-top: 16px;
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  opacity: 0;
  display: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
  max-height: 0;
  overflow: hidden;
}

.small-card:hover .small-card-excerpt {
  opacity: 1;
  display: block;
  transform: translateY(0);
  max-height: 5ch;
}

.big-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s ease;
}
.big-card .publication-media a {
  display: block;
  height: 100%;
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 662/392;
}
.big-card .publication-media a img {
  height: 100%;
  width: 100%;
}
/* The Sliding Green Mask */
.big-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  right: 0;
  background-color: var(--deep-teal);
  z-index: 3;
  transform: translateY(100%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.big-card:hover::before {
  transform: translateY(0);
}

/* .big-card .media-overlay-content {
  position: absolute;
  bottom: -50px;
  top: auto;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  padding: 0;
  transition:
    background-color 0.25s ease,
    color 0.35s ease;
} */

.big-card .publication-info {
  padding: 24px 40px;
  /* background: #ffffff; */
  position: relative;
  z-index: 5;
  transition:
    background-color 0.25s ease,
    color 0.35s ease;
}

.big-card:hover .media-overlay-content,
.big-card:hover .publication-info {
  background: transparent !important;
}

.big-card:hover .publications-title a,
.big-card:hover .publications-excerpt p,
.big-card:hover .publications-tags,
.big-card:hover .card-badge-top,
.big-card:hover .see-more-top {
  color: #ffffff !important;
}

.big-card:hover .publications-tags span::after {
  color: #ffffff !important;
  opacity: 0.5;
}

.big-card .publication-media {
  position: relative;
  width: 100%;
  overflow: visible;
}

.big-card .media-overlay-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  padding: 0;
  margin-bottom: 30px;

}

.big-card .card-badge-top {
  font-family: var(--font-jetbarnis-mono), monospace;
  background: transparent !important;
  color: var(--deep-teal) !important;
  padding: 0 !important;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.84px;
}

.big-card .see-more-top {
  color: var(--deep-teal) !important;
  font-family: var(--font-jetbarnis-mono), monospace;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.84px;
}

.big-card .publication-info {
  padding: 24px 40px;
}

.big-card .publications-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 12px;
}

.big-card .publications-title a {
  color: #000 !important;
  text-decoration: none;
}

.big-card .publications-excerpt {
  font-size: 15px;
  line-height: 24px;
  color: #333;
  margin-bottom: 30px;
}

.big-card .publications-tags {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-jetbarnis-mono);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  color: #767676;
}

.publications-tags span:not(:last-child)::after {
  content: "•";
  margin-left: 10px;
  color: #79766f;
}


/* =========================
   Content Section 
========================= */

.text-content-section {
  padding: 128px 0px;
  background: linear-gradient(360deg, #FFFFFF 0%, #F7FFEF 44.71%, #FFFFFF 100%), linear-gradient(0deg, #FFFFFF, #FFFFFF);

}

.text-content-section .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-sec_wrap {
  display: flex;
  justify-content: center;
}

.content-sec_inner {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Subheading */
.content-sec_inner .subheading {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.content-sec_text .heading {
  font-size: 75px;
  font-family: var(--font-Bebas);
  text-align: center;
}

/* Description */
.content-sec_text .desc {
  font-size: 22px;
  text-align: center;
}
.content-sec_text .about-desc {
  font-size: 36px;
  text-align: left;
  line-height: 135%;
  color: var(--dark);
  font-weight: 500;
  font-family: var(--font-outfit);
}

/* Buttons */
.content-sec_buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ==============================
  TWO COLUMN SECTION
  ================================== */
.past-work-section {
	padding-top: 122px;
	padding-bottom: 60px;
}

.past-work-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 32px 0px 55px;
  border-top: 1px solid #000;
}

.left-header-content {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.past-work-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.past-work-card {
  background: #fff;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  padding: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s linear;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-num {
  font-size: 12px;
  font-weight: 400;
  color: var(--deep-teal);
  line-height: 16px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
}

.card-body p {
  margin: 0;
  line-height: 135%;
  letter-spacing: -1%;
  color: var(--deep-teal);
}

.past-work-card:hover {
  background-color: var(--green);
}

/* ==============================
  Security Page 
  ================================== */
.text-content-section.security_page .container.width-small {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-content-section.security_page .container.width-small .content-sec_inner {
  text-align: left;
}

.text-content-section.security_page .container.width-small .subheading,
.text-content-section.security_page .container.width-small .heading,
.text-content-section.security_page .container.width-small .heading-describe {
  text-align: center;
}

.text-content-section.security_page .container.width-small .heading {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -0.1px;
  color: var(--dark);
  margin-bottom: 24px;
}

.text-content-section.security_page .container.width-small .heading-describe {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 112px;
}

.text-content-section.security_page .container.width-small .about-desc {
  text-align: left;
}

.text-content-section.security_page .container.width-small .about-desc h2 {
  font-size: 48px;
  line-height: 1.2em;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin: 0px 0 24px 0;
}

.text-content-section.security_page .container.width-small .about-desc h3 {
  font-size: 40px;
  line-height: 1.2em;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin: 24px 0 24px 0;
}
.text-content-section.security_page .container.width-small .about-desc h4 {
  font-size: 32px;
  line-height: 1.2em;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin: 24px 0 24px 0;
}
.text-content-section.security_page .container.width-small .about-desc h5 {
  font-size: 24px;
  font-weight: 700;
  margin: 24px 0 24px 0;
}
.text-content-section.security_page .container.width-small .about-desc h6 {
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 0px 0;
}

.text-content-section.security_page .container.width-small .about-desc p {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.5em;
  margin-bottom: 24px;
}

.text-content-section.security_page .container.width-small .about-desc h2 {
  font-weight: 600;
  color: #000;
}
.text-content-section.security_page .container.width-small .about-desc span {
  font-weight: 600;
}

.text-content-section.security_page
  .container.width-small
  .about-desc
  blockquote {
  margin: 36px 0;
  padding: 0px 20px 0px 20px;
  border-left: 1px solid rgb(3, 3, 3, 0.15);
}

.text-content-section.security_page
  .container.width-small
  .about-desc
  blockquote
  p {
  font-style: italic;
  color: var(--dark);
  font-size: 20px;
  margin-bottom: 0;
}

/* =========================
   FAQ Section
========================= */

.faq-section {
  padding: 64px 0px;
  background: linear-gradient(180deg, #ffffff 42%, #ffffff00 100%);
}

.faq-section .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.faq-section .heading {
  font-size: 50px;
  font-weight: 400;
  line-height: 108%;
  font-family: var(--font-outfit);
  color: var(--dark);
  margin-bottom: 12px;
  text-align: center;
}
.faq-section .desc {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 135%;
  font-family: var(--font-helvetica);
  font-weight: 400;
  text-align: center;
  color: var(--dark);
}

.faq_inner {
  max-width: 920px;
  min-width: 920px;
  padding: 40px;
}

.faq_item {
  border: 1px solid rgb(40 40 40 / 30%);
  border-bottom: 0;
  transition: 0.3s;
  padding: 24px;
}
.faq_inner .faq_item:last-child {
  border-bottom: 1px solid rgb(40 40 40 / 30%);
}

.faq_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
  padding: 20px 0;
}

.faq_title h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
  font-family: var(--font-outfit);
}

.faq_num {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq_num {
  display: none;
}

.faq_icon {
  position: relative;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.faq_icon::before,
.faq_icon::after {
  content: "";
  position: absolute;
  background: #000;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  transition: transform 0.3s ease;
}

.faq_icon::after {
  transform: rotate(90deg);
}

.faq_item.active .faq_icon::after {
  transform: rotate(0deg);
}

.faq_item.active .faq_icon img {
  transform: rotate(0deg);
}

.faq_content {
  display: none;
  margin-top: 0px;
  font-size: 18px;
  padding-bottom: 24px;
  font-family: var(--font-helvetica);
  font-weight: 400;
  line-height: 135%;
  color: var(--dark);
}

/* =========================
   Featured Post
========================= */
.featured-post-section {
  background: var(--white);
  padding-bottom: 80px;
}

.featured-post-section .container {
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.featured-content .subheading {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.featured-content .heading {
  font-size: 75px;
  margin-bottom: 15px;
}

.featured-content .desc {
  font-size: 22px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Layout */
.featured-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Image */
.featured-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Buttons */
.featured-content .btn-wrap {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.featured-post-section {
  position: relative;
}

.featured-overlay-link {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 10;
}

.featured-wrap {
  position: relative;
  z-index: 1;
}

.featured-content,
.featured-image {
  position: relative;
  z-index: 2;
}
.featured-image {
  max-width: 500px;
}

.featured-overlay-link {
  cursor: pointer;
}

/* =========================
   Post Section
========================= */

.post-section {
  background: var(--white);
}

/*  GRID */

.post-grid {
  gap: 2rem;
}

/* CARD */

.post-card {
  background: var(--white);
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.post-card:hover {
  transform: translateY(-5px);
  border-color: var(--FireBlue);
}

/* IMAGE */

.post-thumb {
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

.post-card:hover .post-thumb img {
  transform: scale(1.05);
}

/* CONTENT */

.post-content {
  padding: 1.5rem;
}

.post-date {
  color: var(--FireBlue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-content h5 a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-content h5 a:hover {
  color: var(--FireBlue);
}

.post-content .sm-text {
  opacity: 0.8;
}

/* BUTTONS */

.buttons {
  gap: 1rem;
  flex-wrap: wrap;
}

/* PAGINATION */

.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.pagination-wrap .btn,
.pagination-wrap button {
  padding: 10px 18px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-wrap .btn:hover,
.pagination-wrap button:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.page-number {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  background: #f5f5f5;
  border-radius: 6px;
  min-width: 40px;
  text-align: center;
}

.pagination-wrap button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* AJAX BUTTON */

.ajax-load-wrap .btn {
  margin: 0 auto;
}

/* SWIPER */

.post-slider {
  overflow: hidden;
  padding-bottom: 3rem;
}

.post-slider .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

/* =========================
   Newsletter Section
========================= */
.newsletter-section {
  background-color: #f9f8f7;
  padding: 110px 0px;
}

.newsletter-section .container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.newsletter-section .display-heading {
  font-size: 84px;
  font-weight: 700;
}
.newsletter-subtitle {
  font-family: var(--font-jetbarnis-mono);
  font-size: 11px;
  letter-spacing: 1.32px;
  line-height: 15.9px;
  color: var(--Neutral-dark);
}
.newsletter-section .btn-wrap {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Two Column Section Styles
   ========================================================================== */

.two-column-section {
  padding: 112px 0;
}

.two-column-header {
  margin-bottom: 32px;
}

.two-column-header .inner_top.h5 {
  margin-bottom: 20px;
}

.two-column-header h2 {
  margin-bottom: 20px;
}

.two-column-header .desc {
  color: var(--dark);
}

.two-column-grid {
  display: flex;
  justify-content: space-between;
}

.two-column-grid .col-left,
.two-column-grid .col-right {
  max-width: 600px;
  width: 100%;
}

.two-column-grid .column-item {
  border-bottom: 1px solid rgba(3, 3, 3, 0.15);
  padding: 16px 0px;
}

.two-column-grid .column-item p {
  font-size: 16px;
  line-height: 1.5em;
  color: var(--dark);
  font-weight: 400;
  margin: 0;
  max-width: 550px;
}

/* ==========================================================================
   Text Carousel Styles
   ========================================================================== */
/* 
.text_carousel_section {
  padding: 18px 0;
  background-color: #f5f5f5;
  border-top: 1px solid rgba(243, 241, 237, 0.14);
  border-bottom: 1px solid rgba(243, 241, 237, 0.14);
  overflow: hidden;
}
.text_carousel_container {
  padding-left: 48px;
}

.text-caro-wrapper {
  display: flex;
  align-items: center;
}

.caro-fixed-title {
  flex-shrink: 0;
  white-space: nowrap;
  padding-right: 32px;
}

.caro-fixed-title h4 {
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.carousel_text.swiper {
  width: 100%;
  overflow: hidden;
}

.carousel_text .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
  display: flex;
  gap: 32px;
}

.carousel_text .swiper-slide {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}

.caro-item-text {
  font-family: var(--font-jetbarnis-mono);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--Neutral-dark);
  letter-spacing: 0.72px;
  line-height: 18.6px;
}

.caro-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  margin-right: 10px;
} */

/* ====================
   Form Section
   =======================*/
.form-section {
  padding: 112px 0px;
  background: linear-gradient(360deg, #edfbe0 0%, #ffffff 100%);
}
.form-area {
  padding: 56px;
  max-width: 760px;
  background-color: var(--white);
  box-shadow: rgba(25, 49, 51, 0.09) 0px 2px 24px;
  transition: all 0.4s ease !important;
  border-radius: 4px;
}
.form-section .form-area {
  transition: all 0.4s ease !important;
}
.form-content {
  max-width: 786px;
  width: 100%;
}
.form-content h2 {
  margin-bottom: 24px;
  font-size: 50px;
  font-weight: 500;
  color: var(--dark);
}
.form-section .md-text {
  font-family: var(--font-outfit);
}
.form-part {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Gravity Form Style */
.form-title-hide .form-title-inner {
  display: none !important;
}
.form-title-show .form-title-inner {
  display: flex !important;
}
.form-title-show .form-title-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.form-title-show .form-title-inner h4 {
  font-weight: 400;
}
.form-title-inner .badge {
  font-size: 14px;
  padding: 9px 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--dark);
}
.form-title-show .form-title-inner .sm-text {
  color: #79766f !important;
  font-size: 18px !important;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif !important;
  line-height: 1.55 !important;
  letter-spacing: 0.15px !important;
  max-width: 768px !important;
}
.form-section .gform-body {
  max-width: 768px !important;
  width: 100%;
}
.form-section .gform-theme--foundation .gform-grid-row {
  margin-inline: 0 !important;
}
.form-section .gform-theme--foundation .ginput_complex label,
.gform-theme--foundation .ginput_complex legend {
  display: none !important;
}
.form-section .form-title-show .gform-theme--foundation .gform_fields {
  row-gap: 24px !important;
  column-gap: 20px !important;
}
.form-section .form-title-hide .gform-theme--foundation .gform_fields {
  column-gap: 36px !important;
}
.form-section .gfield_required.gfield_required_text {
  display: none;
}
.gform_required_legend {
  display: none;
}
.form-section .gfield_label {
  gap: 0px !important;
}
.form-section .gfield_label,
.form-section select option,
.form-section input,
.form-section textarea,
.form-section select,
.form-section .gfield_required {
  font-size: 14px !important;
  font-family: var(--font-outfit) !important;
  font-weight: 600 !important;
  line-height: 1.5em !important;
  color: var(--dark) !important;
}
.form-section select {
  font-size: 14px !important;
}
.form-section .gfield_required {
  color: rgb(212, 69, 47) !important;
  margin-left: 2px;
}
.required {
  color: rgb(212, 69, 47);
}
.form-section .name_first {
  padding: 0px !important;
}
.form-section input,
.form-section textarea,
.form-section select {
  padding: 8px 12px !important;
  outline: none !important;
  border: 1px solid rgba(3, 3, 3, 0.15) !important;
  max-height: 52px !important;
  min-height: 52px !important;
  height: 100%;
  background: #00000000 !important;
  border-radius: 0px !important;
  font-weight: 400 !important;
}
.form-section #field_2_21 {
  display: block !important;
}
.form-section input,
.form-section textarea,
.form-section select {
  background: #00000000 !important;
}
.form-section select {
  min-height: 40px !important;
  height: 100%;
  cursor: pointer;
}
.form-section textarea {
  max-height: 126px !important;
  min-height: 126px !important;
  height: 100%;
}
.form-section input:focus,
.form-section textarea:focus,
.form-section select:focus {
  border: 1.5px solid rgb(25, 49, 51) !important;
  outline: none !important;
  transition:
    border-color 0.18s,
    box-shadow 0.18s !important;
  box-shadow: rgba(25, 49, 51, 0.13) 0px 0px 0px 3px !important;
}
.form-section input::placeholder,
.form-section textarea::placeholder {
  color: rgb(121, 118, 111, 0.5) !important;
  font-size: 16px !important;
  font-family: var(--font-inter) !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}
.form-section #input_1_20 {
  display: flex;
  gap: 16px;
  flex-direction: row;
  flex-wrap: wrap;
}

.form-section #input_1_20 .gchoice input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

.form-section #input_1_20 .gchoice label {
  padding: 8px 16px;
  border: 1px solid rgba(3, 3, 3, 0.15) !important;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  text-align: center;
  user-select: none;
  margin: 0px !important;
}

.form-section #input_1_20 .gchoice input[type="radio"]:checked + label {
  background-color: var(--green);
  font-weight: 600;
  transition: all 0.15s ease-in-out;
  border-color: var(--green);
  color: var(--black);
}
.gfield_description.ginput_counter {
  position: relative;
  color: transparent !important;
  user-select: none;
}
.form-section .form-title-show #field_2_21 .gfield_label,
.form-section .form-title-show #field_2_23 .gfield_label,
.form-section .form-title-show #field_2_35 .gfield_label,
.form-section .form-title-show #field_2_35 .gfield_required_asterisk,
.form-section .form-title-show #field_2_21 .gfield_label .gfield_required {
  font-family: var(--font-outfit) !important;
  font-size: 14px !important;
  line-height: 1.4375em !important;
  color: #79766f !important;
  letter-spacing: 0.15px !important;
  font-weight: 400 !important;
  margin-bottom: 8px !important;
  margin-top: 32px !important;
}
.form-section .form-title-show #field_2_35 .gfield_required_asterisk,
.form-section .form-title-show #field_2_21 .gfield_label .gfield_required {
  color: rgb(212, 69, 47) !important;
}
.gfield--type-html h3 {
  font-family: var(--font-helvetica) !important;
  font-size: 24px !important;
  font-weight: 500;
  line-height: 1.4375rem !important;
  color: rgb(0, 0, 0, 0.87) !important;
  letter-spacing: 0.15px !important;
  margin: 8px 0px;
}
.form-section .form-title-show #field_2_23 .gfield_label,
.form-section .form-title-show #field_2_35 .gfield_label {
  margin-top: 0px;
  margin-bottom: 16px;
}
.form-section .form-title-show #input_2_21 label,
.form-section .form-title-show #field_2_23 label,
.form-section .form-title-show #field_2_35 label {
  font-size: 16px;
  font-family: var(--font-outfit);
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  user-select: none;
  margin-left: 10px;
}
.form-section .form-title-show #input_2_21,
.form-section .gfield_checkbox {
  gap: 16px !important;
}

.form-section .gform-theme--framework .gfield--type-choice .gchoice {
  display: flex;
  align-items: center;
}

/* .form-section .form-title-show input[type="file"] {
    color: transparent !important;
    position: relative;
    cursor: pointer;
} */

/* .form-section .form-title-show input[type="file"]::-webkit-file-upload-button {
    display: none !important;
}
 .form-section .form-title-show input[type="file"]::file-selector-button {
    display: none !important;
} */
.form-section .form-title-show .gform_fileupload_rules {
  display: none !important;
}
/* .form-section .form-title-show input[type="file"]::before {
    content: "Placeholder";
    color: rgb(3, 3, 3, 0.60); 
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
} */

.form-section .form-title-show .gchoice input[type="radio"] {
  padding: 0px !important;
  border: 2px solid rgba(3, 3, 3, 0.6) !important;
  border-radius: 50% !important;
  min-height: 20px !important;
  height: 20px !important;
  width: 20px !important;
}
.form-section .form-title-show .gchoice input[type="radio"]:checked {
  border-color: 2px solid var(--green) !important;
  outline-color: #1976d200 !important;
}

.form-section .form-title-show .gchoice input[type="radio"]:checked,
.form-section .form-title-show .gchoice input[type="checkbox"]:checked {
  border-color: var(--green) !important;
}
.form-section .gchoice input::before {
  color: var(--green) !important;
}

.form-section .form-title-show .gchoice input[type="radio"]::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: scale(0);
  background-color: var(--green);
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-section .form-title-show .gchoice input[type="radio"]:checked::before {
  transform: scale(1);
}
.form-section input[type="checkbox"] {
  padding: 0px 0px !important;
  outline: none !important;
  border: 2px solid rgba(0, 0, 0, 0.6) !important;
  border-radius: 0px !important;
  min-height: 18px !important;
  height: 18px;
}

.form-title-hide .gfield_description.ginput_counter::before {
  content: "~ 500 characters";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dark);
}
.form-title-show .charleft {
  display: none !important;
}
.form-title-show .gfield--type-textarea .gfield_description {
  font-size: 12px !important;
  letter-spacing: 0.4px !important;
  color: rgb(0, 0, 0, 0.6) !important;
}
.form-section .gform-footer {
  margin-top: 48px !important;
}
.form-section .gform-footer,
.form-section .gform-footer,
.form-section
  .form-title-show
  .gform_wrapper
  .gform-footer {
  position: relative;
  display: inline-block;
  overflow: hidden;
  max-width: 185px;
  width: 100%;
}

.form-section .gform-footer::after,
.form-section .gform-footer::after,
.form-section
  .form-title-show
  .gform_wrapper
  .gform-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

.form-section .gform-footer:hover::after,
.form-section .gform-footer:hover::after,
.form-section
  .form-title-show
  .gform_wrapper
  .gform-footer:hover::after {
  transform: scaleX(1);
}

.form-section input[type="submit"],
.form-section .gform-footer input[type="submit"],
.form-section
  .form-title-show
  .gform_wrapper
  .gform_button {
  position: relative;
  z-index: 1;
  background: var(--green) !important;
  width: 100% !important;
  max-width: 185px !important;
  color: var(--deep-teal) !important;
  text-transform: capitalize !important;
  font-size: 20px !important;
  font-family: var(--font-outfit) !important;
  box-shadow: none !important;
  font-weight: 800 !important;
  line-height: 1.5em !important;
  border: 1px solid var(--green) !important;
  padding: 10px 20px !important;
  transition:
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease !important;
}

.form-section .gform-footer:hover input[type="submit"],
.form-section
  .form-title-show
  .gform_wrapper
  .gform-footer:hover
  .gform_button {
  background: transparent !important;
  border: 1px solid var(--yellow) !important;
  color: var(--deep-teal) !important;
}
.form-section input[type="submit"]:focus,
.form-section .gform-footer input[type="submit"]:focus {
  outline: none !important;
}

/* .form-section .form-title-show .gform_wrapper .gform_button {
  display: none !important;
} */
/* 
.form-section .form-title-show .gform_wrapper input#gform_submit_button_1 {
  display: block !important;
} */

.form-section
  .form-title-show
  .gform_wrapper
  .gform_button {
  display: block !important;
}

.form-section .form-area.form-title-show {
  transition: all 0.4s ease !important;
}

/* ==========================================
   Section: Our Team Styles
   ========================================== */

.our-team-section {
  padding-top: 128px;
  padding-bottom: 64px;
  background: linear-gradient(180deg, #ffffff 0%, #f7ffef 45%, #ffffff 100%);
}

.team-section-header {
  max-width: 550px;
  padding-bottom: 48px;
  text-align: center;
  margin: auto;
}
.our-team-section .name-role {
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: gap 0.4s ease;
}
.our-team-section .member-row-item.active .name-role {
  gap: 6px;
}
.member-row-item.active .member-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.our-team-section .name-role .member-name {
  font-family: var(--font-outfit);
  width: 100%;
  display: block;
  padding: 0px;
  background: none;
  color: #282828;
  font-size: 36px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 110%;
  letter-spacing: 0%;
}
.our-team-section .toggle-btn {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-outfit);
  line-height: 21px;
  letter-spacing: 2%;
  color: #282828;
  cursor: pointer;
  white-space: nowrap;
}
.our-team-section .toggle-btn:hover {
  color: var(--green);
}

.our-team-section .team-section-header .sub-title {
  margin-bottom: 24px;
}

.our-team-section .team-section-header .h2 {
  margin-bottom: 12px;
  /* font-size: 50px; */
  font-weight: 400;
  line-height: 108%;
  font-family: var(--font-outfit);
  color: #282828;
}

.our-team-section .member-content-wrapper {
  max-width: 100%;
  width: 100%;
  transition: all 0.4s ease;
}

.our-team-section .member-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: align-items 0.4s ease;
}
.our-team-section .member-row-item.active .member-header {
  align-items: flex-start;
}
.team-section-header .desc.md-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: -1%;
  font-family: var(--font-helvetica);
  color: #030303;
}

.our-team-section .main-part {
  display: flex;
  gap: 24px;
  align-items: center;
  width: 100%;
  transition: gap 0.4s ease;
  cursor: pointer;
}
.our-team-section .member-row-item.active .main-part {
  gap: 30px;
  align-items: flex-start;
}
.team-section-header p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--Neutral-dark);
}

.team-members-list {
  display: flex;
  flex-direction: column;
}

.member-row-item {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 43px 0;
  border-top: 1px solid var(--black);
}

/* dither-wrap needs its own transition since it controls the visible box width */
.member-row-item .dither-wrap {
  max-width: 125px;
  transition: max-width 0.4s ease;
}
.member-row-item.active .dither-wrap {
  max-width: 360px;
}

.member-row-item:last-child {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.member-media {
  min-width: 125px;
  transition:
    min-width 0.4s ease,
    max-width 0.4s ease;
}
.member-row-item.active .member-media {
  min-width: 360px;
  max-width: 360px;
}

.member-media img {
  width: 125px;
  height: 125px;
  object-fit: cover;
  aspect-ratio: 125 / 125;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.member-row-item.active .member-media img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  aspect-ratio: 360 / 360;
  border-radius: 2px;
}
.member-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.our-team-section .member-info h3 {
  margin-bottom: 4px;
}

.our-team-section .member-role {
  color: var(--black);
  font-size: 30px;
  font-weight: 400;
  line-height: 110%;
  font-family: var(--font-outfit);
  letter-spacing: 0%;
}

/* ---- Expandable bio/footer area (READ MORE content) ---- */
.our-team-section .extra-info {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.35s ease,
    margin-top 0.4s ease;
}
.our-team-section .member-row-item.active .extra-info {
  opacity: 1;
  /* max-height is set inline via JS (scrollHeight) so the transition is smooth
     regardless of how long the bio text is */
}

.our-team-section .member-bio {
  font-size: 22px;
  line-height: 140%;
  color: var(--dark);
  font-weight: 400;
  font-family: var(--font-helvetica);
  margin-bottom: 16px;
  max-width: 768px;
}
.member-row-item.active .member-bio {
  margin-bottom: 24px;
}
.our-team-section .member-footer {
  display: flex;
  align-items: center;
  gap: 24px;
}

.member-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  line-height: 21px;
  font-weight: 400;
  color: var(--dark);
}

.our-team-section .member-socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.our-team-section .member-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
.our-team-section .member-socials a:hover img {
  filter: drop-shadow(100px 0 0 var(--green));
  transform: translateX(-100px);
}
/* ================
  Thank You Page 
================ */

.thank-you-section {
  padding: 112px 0;
  background-color: #f9f8f7;
}
.thank-you-section .container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.thank-you-section .h5 {
  margin-bottom: 16px;
}
.thank-you-section h2 {
  margin-bottom: 24px;
}
.ty-header-wrap {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

/* MapBox Section */
.mapbox-section {
  background: linear-gradient(360deg, #FFFFFF 0%, #F7FFEF 44.71%, #FFFFFF 100%), linear-gradient(0deg, #FFFFFF, #FFFFFF);
}
.mapbox-section .container {
  gap: 80px;
}
.mapbox-section .map-wrapper {
  position: relative;
  height: 75vh;
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100% !important;
}

#locationSelect {
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 10;
  padding: 10px;
  width: 260px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* ========================= RESPONSIVE=========================  */
@media (min-width: 1700px) {
  .label_university {
    left: 200px;
    bottom: 240px;
  }
}

@media (min-width: 1900px) {
  .label_university {
    left: 200px;
    bottom: 400px;
  }
}

@media (min-width: 2000px) {
  .label_university {
    left: 200px;
    bottom: 490px;
  }
}

@media (max-width: 1400px) {
  .label_university {
    left: 250px;
    bottom: 95px;
  }
}

/* ================= 1340px ================= */
@media (max-width: 1340px) {
	.label_advocates {
		/* left: 40px; */
  		top: 300px;
	}
}

/* ================= 1200px ================= */
@media (max-width: 1200px) {
  .two-column-section {
    padding: 80px 0;
  }

  .two-column-grid {
    gap: 0 40px;
  }

  /* Get Involve */
  .get-involved-section {
    padding: 80px 0;
  }
  .gi-row-one-flex,
  .gi-row-two-flex {
    flex-direction: column;
    gap: 40px;
  }
  .gi-row-one-item,
  .gi-row-two-item {
    width: 100%;
  }

  /* =============== link list =================*/
  .cta-image {
    width: 100%;
    max-width: 750px;
  }

  .cta-content {
    max-width: 500px;
    padding: 35px;
    gap: 30px;
  }

  .cta-row-item {
    padding: 36px 0px;
  }
  /* banner */
  .banner_grid_container {
    grid-template-columns: 1.2fr 2fr 1fr;
    /* height: 800px; */
    gap: 8px;
  }



  .col_left .image_wrapper {
    height: 430px;
  }

  .content_box_overlay {
    max-width: 460px;
    padding: 32px 45px;
  }

  .heading_big {
    font-size: clamp(42px, 4vw, 62px);
  }

  .grid_label {
    font-size: 16px;
    line-height: 18px;
    padding: 8px 10px;
  }

  .label_student {
    right: 70px;
    top: 340px;
  }

  .label_advocates {
    top: 310px;
  }

  .label_university {
    left: 170px;
    bottom: 100px;
  }

  .label_researchers {
    top: 120px;
  }

  .label_organizers {
    top: 110px;
  }

  /* publication section */
  .big-card .publication-info {
    padding: 24px 30px;
  }


  .big-card .publications-title,
  .small-card .publications-title {
    font-size: 26px;
    line-height: 32px;
  }

  .small-card {
    height: 300px;
  }

  /* image and content section */
  .image-content-section.extra-padding {
    padding: 60px 0;
  }

  .image-content-section .img-con-wrap {
    gap: 30px;
  }

  .img-con-wrap:not(.row-reverse) .image-content {
    padding-left: 40px;
    padding-right: 20px;
  }

  .img-con-wrap.row-reverse .image-content {
    padding: 30px 40px;
  }

  .image-content-section .img-col video,
  .image-content-section .img-col iframe,
  .image-content-section .youtube-video iframe {
    min-height: 500px;
  }
}

@media (max-width: 1100px) {
  /* =============== link list =================*/
  .cta-image {
    max-width: 650px;
  }

  .cta-content {
    max-width: 450px;
  }

  .cta-row-item {
    padding: 32px 0px;
  }
  /* banner */
  .banner_grid_container {
    grid-template-columns: 1fr 1.8fr 0.9fr;
    /* height: 720px; */
  }

  .col_left .image_wrapper {
    height: 380px;
  }

  .content_box_overlay {
    max-width: 420px;
    padding: 28px 36px;
    gap: 28px;
  }

  .heading_big {
    font-size: clamp(36px, 4vw, 54px);
  }

  .grid_label {
    font-size: 14px;
    padding: 7px 10px;
  }

  .label_student {
    right: 40px;
    top: 295px;
  }

  .label_advocates {
    top: 260px;
  }

  .label_university {
    left: 170px;
    bottom: 170px;
  }

  .label_researchers {
    left: 25px;
    top: 90px;
  }
  .label_organizers {
    top: 90px;
  }
}

@media (max-width: 1024px) {
  .banner_grid_container {
    display: grid;
    /* grid-template-columns: 1fr; */
    grid-template-columns: 1.3fr 2.5fr 1fr;
    /* height: 500px; */
    position: relative;
  }

  .content_box_overlay {
    max-width: 350px;
    padding: 20px;
    gap: 20px;
  }

  .heading_big {
    font-size: 40px;
  }

  .label_advocates {
    top: 120px;
  }

  .label_university {
    left: 25%;
    bottom: 30%;
  }
  .label_student {
    right: 40px;
    top: 15%;
  }
  /* 
  .banner_grid_container .col_center {
    display: block;
    width: 100%;
  }

  .banner_grid_container .col_center .image_wrapper {
    height: 320px;
  } */

  /* .label_researchers,
  .label_student,
  .label_organizers {
    display: none;
  } */

  /* .label_advocates {
    top: 60px;
  }

  .label_university {
    left: 800px;
    bottom: 120px;
  } */

  /* 
  .col_center {
    position: relative;
    height: 100%;
    order: 1;
  }

  .col_center .image_wrapper {
    height: 100%;
  }

  .content_box_overlay {
    position: relative;
    max-width: 100%;
    padding: 20px;
    gap: 26px;
  }

  .col_left {
    order: 2;
  } */

  /* .col_right {
    display: none;
  }

  .col_left .image_wrapper {
    display: none;
  } */

  /* our team */
  .member-row-item {
    padding: 30px 0;
  }
  .our-team-section .name-role .member-name {
    font-size: 30px;
  }

  .our-team-section .member-role {
    font-size: 24px;
  }
  .our-team-section .toggle-btn {
    font-size: 18px;
  }
  .our-team-section .member-bio {
    font-size: 18px;
    max-width: 450px;
  }

  /* =============== link list =================*/
  .cta-wrapper {
    min-height: 380px;
  }

  .cta-image {
    max-width: 550px;
  }

  .cta-content {
    max-width: 400px;
    padding: 30px;
  }

  .cta-row-item {
    padding: 28px 0px;
  }

  .cta-link-arrow {
    font-size: 18px;
  }

  /* publication section */
  .publications-section {
    padding: 40px 0px;
  }

  .publications-asymmetric-grid {
    gap: 20px;
  }

  .small-card {
    height: 270px;
  }

  .big-card .publication-info {
    padding: 22px 24px;
  }


  .big-card .publications-title,
  .small-card .publications-title {
    font-size: 24px;
    line-height: 30px;
  }

  /* image and content section */
  .image-content-section .img-con-wrap {
    gap: 25px;
  }
  .image-content-section .img-con-wrap {
    max-height: 100%;
    height: 100%;
}

  .img-con-wrap:not(.row-reverse) .image-content {
    padding: 20px;
  }

  .img-con-wrap.row-reverse .image-content {
    padding: 60px 20px 20px;
  }

  .bg-teel-sec .img-con-wrap.row-reverse .image-content {
    padding: 30px 20px;
  }
  .image-content-section .left-section-1,
  .image-content-section .left-section-2 {
    max-width: 100%;
    gap: 30px;
  }

  .left-section-2 h3 {
    max-width: 100%;
  }

  .image-content-section .img-col video,
  .image-content-section .img-col iframe,
  .image-content-section .youtube-video iframe {
    min-height: 420px;
  }


  /* Map section */
  .mapbox-section .container {
    gap: 40px;
  }
}

/* ================= 998px ================= */
@media (max-width: 998px) {
  /* Banner */

  /* .label_university {
    left: 70%;
    bottom: 120px;
  } */

  .label_university {
    left: 38%;
    bottom: 25%;
  }

  .grid_label {
    font-size: 12px;
    padding: 5px 8px;
  }

  /* Image Content */
  .image-content-section {
    padding: 80px 0;
  }
  .image-content-section.extra-padding {
    padding: 60px 0;
  }

  .image-content-section .img-con-wrap {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }

  /* Image Up */
  .image-content-section .img-col {
    order: 1;
    width: 100%;
  }

  /* Content Down */
  .image-content-section .image-content {
    order: 2;
    width: 100%;
    max-width: 100%;
    gap: 20px;
  }

  .image-content-section .img-col img,
  .image-content-section .img-col video,
  .image-content-section .img-col iframe {
    width: 100%;
    min-height: auto;
    aspect-ratio: 16/10;
    border-radius: 12px;
  }

  .image-content-section .youtube-video iframe {
    width: 100%;
    min-width: 100%;
    height: 500px;
  }

  .image-content-section .btn-wrap {
    gap: 16px;
  }
  /* FAQ Section */
  .faq-section {
    padding: 40px 0px;
  }
  .faq-section .heading {
    font-size: 40px;
  }
  .faq_inner {
    max-width: 700px;
    min-width: 700px;
    padding: 30px;
  }
  .faq-section .desc {
    margin-bottom: 16px;
  }
  .faq_item {
    padding: 0px 16px;
  }
  .faq_content {
    padding-bottom: 16px;
  }
  .faq_title {
    padding: 18px 0;
  }
  /* Text content */
  .about-desc {
    font-size: 18px !important;
  }
  /* News letter */
  .newsletter-section {
    padding: 90px 0;
  }

  .newsletter-section .container {
    gap: 28px;
  }

  .newsletter-section .display-heading {
    font-size: 56px;
  }

  /* two column */
  .two-column-section {
    padding: 64px 0;
  }

  .two-column-grid .col-left,
  .two-column-grid .col-right {
    max-width: 48%;
  }

  .text_carousel_container {
    padding-left: 24px;
  }

  .past-work-section {
    padding-top: 80px;
  }

  .past-work-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  /* our work featured */
  .featured-editor-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Our Team */
  .our-team-section .main-part {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: baseline;
  }
  .our-team-section {
    padding: 80px 0;
  }
  .member-row-item {
    gap: 32px;
  }
  .member-row-item.active .member-media img {
    width: 200px;
    height: 200px;
    aspect-ratio: 200 / 200;
  }

  .our-team-section .member-row-item.active .main-part {
    gap: 16px;
  }
  .member-row-item.active .member-content-wrapper {
    gap: 18px;
  }
  .member-row-item.active .member-bio {
    margin-bottom: 18px;
  }
  .member-socials {
    gap: 18px;
  }
  .our-team-section .member-footer {
    gap: 18px;
  }
  .our-team-section .main-part {
    gap: 16px;
  }
  .our-team-section .toggle-btn {
    font-size: 16px;
  }
  .our-team-section .name-role .member-name {
    font-size: 24px;
  }
  .our-team-section .member-role {
    font-size: 18px;
  }

  .member-row-item {
    padding: 24px 0;
  }
  /* Thankyou Page */
  .thank-you-section {
    padding: 80px 0;
  }
  .thank-you-section .container {
    gap: 40px;
  }

  /* publication section */

  .publications-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
  }

  .big-card .publication-media {
    height: 320px;
    overflow: visible;
  }
  .publications-asymmetric-grid {
    grid-template-columns: 1fr;
  }

  .publication-right-col {
    gap: 20px;
  }

  .small-card {
    height: 320px;
  }

  .publications-footer-btn {
    margin-top: 20px;
    text-align: left;
  }
  /* Form Section */
  .form-section {
    padding: 80px 0px;
  }
  .form-part {
    gap: 50px;
  }
  .form-section .gform-body {
    min-width: 100% !important;
    width: 100%;
  }
  .form-section .gform-theme--foundation .gform_fields {
    row-gap: 24px !important;
    column-gap: 24px !important;
  }

  .form-section #input_1_20 {
    gap: 12px;
  }
  .form-section #input_1_20 .gchoice label {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }
  /* CTA */
  .cta-image {
    width: 60%;
  }
  /* =============== link list =================*/
  .global-cta-section {
    padding: 40px 0;
  }

  .cta-row-item {
    padding: 24px 0px;
  }

  .cta-row-item::before {
    top: 10px;
    bottom: 10px;
  }

  .cta-wrapper {
    min-height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }

  .cta-image {
    max-width: 100%;
  }

  .cta-content {
    position: relative;
    max-width: 100%;
    padding: 25px;
    gap: 24px;
  }
}

/* ================= 768px ================= */
@media (max-width: 768px) {
  /* Banner */

  .heading_big {
    font-size: 33px;
  }

  .grid_label {
    font-size: 12px;
    padding: 5px 8px;
    margin-top: 22px;
    margin-left: 10px;
  }

  .banner_grid_container {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    position: relative;
  }

  .content_box_overlay {
    max-width: 350px;
    padding: 20px;
    gap: 20px;
  }

  .label_advocates {
    top: 120px;
    left: 40px;
  }

  .label_student {
    right: 40px;
    top: 15%;
  }

  .label_university {
    left: 65%;
  }

  .banner_grid_container .col_center {
    display: block;
    width: 100%;
  }

  .banner_grid_container .col_center .image_wrapper {
    height: 350px;
  }

  .label_researchers,
  .label_student,
  .label_organizers {
    display: none;
  }

  .label_advocates {
    top: 60px;
  }

  .col_center {
    position: relative;
    height: 100%;
    order: 1;
  }

  .col_center .image_wrapper {
    height: 100%;
  }

  .content_box_overlay {
    position: relative !important;
    max-width: 100%;
    padding: 34px 22px 0px;
    gap: 26px;
  }

  .col_left {
    order: 2;
  }

  .col_right {
    display: none;
  }

  .col_left .image_wrapper {
    display: none;
  }

  /* Image and Content section */
  .image-content-section {
    padding: 0px;
  }
  .image-content-section.extra-padding {
    padding: 40px 0;
  }

  .image-content-section .image-content {
    gap: 18px;
  }

  .image-content-section .left-section-1,
  .image-content-section .left-section-2 {
    gap: 18px;
  }

  .image-content-section .hd-desc {
    gap: 18px;
  }
  /* 
  .image-content-section .image-content,
  .img-con-wrap.row-reverse .image-content,
  .img-con-wrap:not(.row-reverse) .image-content {
    padding: 0 20px;
  } */

  .image-content-section .btn-wrap {
    gap: 16px;
  }

  .image-content-section .btn-wrap a {
    width: fit-content;
  }

  .image-content-section .img-col video,
  .image-content-section .img-col iframe,
  .image-content-section .youtube-video iframe {
    min-height: 300px;
  }

  /* FAQ Section */
  .faq-section .heading {
    font-size: 32px;
  }

  .faq_inner {
    max-width: 100%;
    min-width: 100%;
    padding: 0px;
  }
  .faq_title h3 {
    font-size: 16px;
  }
  .faq_content {
    font-size: 14px;
  }

  /* News letter */
  .newsletter-section {
    padding: 70px 0;
  }

  .newsletter-section .container {
    gap: 24px;
  }

  .newsletter-section .display-heading {
    font-size: 42px;
    line-height: 1.1;
  }

  .newsletter-subtitle {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 1px;
  }

  /* Two Column Section */
  .two-column-section {
    padding: 48px 0;
  }

  .two-column-header {
    margin-bottom: 24px;
  }

  .two-column-grid {
    flex-direction: column;
    gap: 0;
  }

  .two-column-grid .col-left,
  .two-column-grid .col-right {
    max-width: 100%;
  }

  .two-column-grid .col-left .column-item:last-child {
    border-bottom: 1px solid rgba(3, 3, 3, 0.15);
  }

  .two-column-grid .column-item {
    padding: 14px 0;
  }

  .past-work-section {
    padding-top: 30px;
  }

  .past-work-header {
    flex-direction: column;
    padding: 20px 0;
  }

  .past-work-grid-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .past-work-card {
    min-height: 156px;
  }
  .card-body p {
    font-size: 14px !important;
  }

  .past-work-card {
    padding: 20px;
  }
  /* text content */
  .text-content-section.security_page .container.width-small .heading {
    font-size: 32px;
  }
  .text-content-section.security_page .container.width-small .about-desc h2 {
    font-size: 26px;
  }
  /* Text carousel */
  /* .text_carousel_container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .text-caro-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .caro-fixed-title {
    padding-right: 0;
    margin-bottom: 4px;
  } */

  /* Our Team */
  .our-team-section {
    padding: 64px 0;
  }
  .team-section-header .desc.md-text {
    font-size: 16px;
  }

  .our-team-section .team-section-header .sub-title {
    margin-bottom: 16px;
  }
  .team-section-header {
    margin-bottom: 0px;
    padding-bottom: 40px;
  }

  .faq_icon {
    width: 12px;
    height: 12px;
  }
  .our-team-section .name-role {
    max-width: 250px;
  }
  .our-team-section .member-bio {
    max-width: 340px;
  }

  .member-row-item {
    gap: 16px;
  }
  .member-bio {
    font-size: 15px;
  }
  .our-team-section .toggle-btn {
    font-size: 12px;
    text-wrap-mode: nowrap;
  }
  .member-row-item.active .member-content-wrapper {
    gap: 18px;
  }
  /* Thank you page */
  .thank-you-section {
    padding: 64px 0;
  }

  .ty-header-wrap .max-w-text {
    font-size: 16px;
  }
  /* Publication Section */
  .publications-grid {
    grid-template-columns: 1fr;
  }
  .publications-section {
    padding: 20px 0;
  }
  .publications-excerpt p {
    margin-bottom: 12px;
  }
  .publication-media {
    margin-bottom: 16px;
  }
  .publications-section-header {
    border: none;
  }

  .big-card .publication-info {
    padding: 16px;
  }

  .big-card .publications-title,
  .small-card .publications-title {
    font-size: 18px;
    line-height: 28px;
  }

  .big-card .publication-media {
    height: 200px;
  }
  .small-card {
    height: 200px;
  }

  .small-card-content {
    padding: 18px;
  }

  .small-card-excerpt {
    font-size: 14px;
    line-height: 22px;
  }
  .small-card .card-badge-top {
    padding: 8px;
  }
  .small-card-top {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }



  /* Form Sction */

  .form-section {
    padding: 28px 0px 30px 0px;
  }
  .form-part {
    gap: 40px;
  }
  .form-area {
    padding: 26px 22px 30px;
  }
  .form-title-show .form-title-inner {
    gap: 12px !important;
  }
  .form-section .gform-theme--foundation .gform_fields {
    row-gap: 24px !important;
    column-gap: 24px !important;
  }
  .form-section .gform-footer {
    margin-top: 32px !important;
  }
  .form-section #input_1_20 {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
  }
  .form-title-show .form-title-inner h4 {
    font-weight: 400;
    font-size: 32px;
  }
  .form-content h2 {
    margin-bottom: 16px;
  }
  .form-section textarea {
    max-height: 88px !important;
    min-height: 88px !important;
    height: 100%;
  }
  .form-content .h5 {
    margin-bottom: 12px;
  }
  .form-section .form-title-show .gform-theme--foundation .gform_fields {
    row-gap: 16px !important;
    column-gap: 16px !important;
  }
  .form-section .form-title-hide .gform-theme--foundation .gform_fields {
    column-gap: 16px !important;
  }
  .form-title-show .form-title-inner .sm-text {
    font-size: 16px;
  }
  .form-section input {
    padding: 0px 14px !important;
    max-height: 48px !important;
    min-height: 48px !important;
  }
  .form-section .gform-footer,
  .form-section .gform-footer,
  .form-section
    .form-title-show
    .gform_wrapper
    .gform-footer {
    max-width: 100%;
    width: 100%;
  }
  .form-section input[type="submit"],
  .form-section .gform-footer input[type="submit"] {
    width: 100% !important;
    font-size: 18px !important;
    max-width: 100% !important;
  }
  .form-section input[type="submit"],
  .form-section .gform-footer input[type="submit"],
  .form-section
    .form-title-show
    .gform_wrapper
    .gform_button {
    max-width: 100% !important;
  }
  /* CTA */
  .cta-section {
    margin-bottom: -30px;
  }
  .cta-content h2 {
    font-size: 28px;
  }

  .cta-wrapper {
    min-height: auto;
    overflow: hidden;
  }

  .cta-content {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    padding: 40px;
  }


  /* =============== link list =================*/
  .cta-row-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px 0px;
  }

  .cta-row-item::before {
    top: 5px;
    bottom: 5px;
  }

  .cta-link-arrow {
    font-size: 16px;
    line-height: normal;
  }

  .cta-section .container {
    padding: 0 15px;
  }


  .cta-content {
    padding: 20px;
    gap: 16px;
  }

  .cta-row-item {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
  }

  .cta-row-item::before {
    top: 8px;
    bottom: 8px;
  }

  .cta-title {
    padding: 0px;
  }

  .cta-link-arrow {
    align-self: flex-start;
    padding: 0px;
  }
  .cta-row-item h3 {
    font-size: 24px;
  }

  /* our work featured */
  .featured-editor-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  /* text-content-section */
  .text-content-section {
    padding: 60px 0px;
  }
}

/* ================= 447px ================= */
@media (max-width: 447px) {
  /* Banner */
  section.banner_section .container {
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 288px;
  }
 

  .content_box_overlay.is-fixed {
    position: static;
  }

  .inner_bottom {
    gap: 16px;
  }

  .image-content-section .img-con-wrap {
    gap: 10px;
  }

  .image-content-section .youtube-video iframe {
    height: 260px;
  }

  .label_university {
    left: 52%;
  }

  .label_advocates {
    top: 60px;
    left: 20px;
  }
  /* News letter */
  .newsletter-section .display-heading {
    font-size: 32px;
    line-height: 1.1;
  }

  .newsletter-subtitle {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 1px;
  }

  /* Two column section */
  .two-column-section {
    padding: 40px 0;
  }

  .two-column-header .inner_top.h5 {
    margin-bottom: 12px;
  }

  .featured-in-section {
    padding: 40px 0;
  }
}

/* ================= 330px ================= */
@media (max-width: 330px) {
  .image-content-section .btn-wrap,
  .buttons {
    width: 100%;
  }

  .image-content-section .btn-wrap a,
  .buttons a {
    width: 100%;
  }

  /* News letter */
  .newsletter-section {
    padding: 56px 0;
  }

  .newsletter-section .display-heading {
    font-size: 28px;
  }
}
