:root {
  --primary: rgba(4, 103, 72, 1);
  --primary-dark: rgba(5, 76, 54, 1);
  --yellow: rgba(255, 197, 66, 1);
  --light-primary: rgb(248, 255, 242);
  --white: #FFFFFF;
  --black: #000000;
  --text-dark: #161a19;
  --text-light-dark: rgba(22, 26, 25, 0.7);
  --text-light-green: rgba(2, 37, 26, 0.7);
  --transition: 0.4s ease-in-out;
  --poppins: "Poppins", sans-serif;
  --inter: "Inter", sans-serif;
}

body {
  color: var(--text-dark);
  font-family: var(--poppins);
  background: var(--white) !important;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: currentColor;
}

button:focus {
  outline: 0;
}

ul {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
.h1 {
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -2.88px;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}

h2,
.h2 {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -2.24px;
  line-height: 1.1;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

.bg_green {
  background-color: var(--primary);
}

.bg_light_primary {
  background-color: var(--light-primary);
}

.bg_light_gray {
  background-color: rgba(244, 244, 244, 1);
}

.container {
  width: 100%;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.submit_wrapper input[type="submit"],
.btn {
  white-space: nowrap;
  padding: 11px 15px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  background-color: var(--primary);
  border: 1px solid var(--primary);
  text-decoration: none;
  cursor: pointer;
  border-radius: 50px;
  width: max-content;
  transition: all var(--transition);
  margin: 0;
}

.btn svg {
  height: 24px;
  width: 24px;
  min-width: 24px;
}

.btn svg path {
  stroke: currentColor;
}

.submit_wrapper input[type="submit"]:hover,
.btn:hover {
  color: var(--primary);
  background-color: transparent;
}

.btn.btn_outlined {
  color: var(--primary-dark);
  background-color: transparent;
}

.btn.btn_outlined:hover {
  color: var(--white);
  background-color: var(--primary-dark);
}

.btn.btn_yellow {
  color: var(--text-dark);
  background-color: var(--yellow);
  border-color: var(--yellow);
}

.btn.btn_yellow:hover {
  color: var(--yellow);
  background-color: transparent;
}

.btn.btn_white {
  color: var(--primary-dark);
  background-color: var(--white);
  border-color: var(--white);
}

.btn.btn_white:hover {
  color: var(--white);
  background-color: transparent;
}

.btn.btn_light_primary {
  color: var(--primary-dark);
  background-color: var(--light-primary);
  border-color: var(--light-primary);
}

.btn.btn_light_primary:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
  background-color: transparent;
}

.bg_green .btn.btn_light_primary:hover {
  color: var(--white);
  border-color: var(--white);
  background-color: transparent;
}

.heading_block {
  text-align: center;
  margin-bottom: 48px;
}

.heading_block h2 {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  color: var(--primary-dark);
}

.heading_block p {
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  color: var(--text-light-green);
}

.mob_only {
  display: none;
}

/* Header */
.header {
  width: 100%;
  background-color: var(--white);
  padding: 16px 0;
  z-index: 9;
  border-bottom: 2px solid white;
  transition: all var(--transition);
  position: relative;
}

.header.scrolled {
  border-color: var(--primary-dark);
}

.header_inner_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.menu_wrapper {
  flex: 1;
}

.logos {
  max-width: 104px;
  width: 100%;
  display: block;
}

.nav_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 64px;
  width: fit-content;
}

.nav_menu>li {
  position: relative;
}

.menu_dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.menu_dropdown span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.menu_dropdown svg {
  height: 24px;
  width: 24px;
  transition: all var(--transition);
}

.nav_menu>li:hover>.sub_menu {
  opacity: 1;
  visibility: visible;
}

.nav_menu>li:hover>.menu_dropdown svg {
  rotate: 180deg;
}

.sub_menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  border-radius: 8px;
  width: max-content;
  box-shadow: 5px 10px 30px 0 rgb(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  overflow: hidden;
}

.sub_menu .sub_menu_link {
  padding: 10px 15px;
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.sub_menu .sub_menu_link.active,
.sub_menu .sub_menu_link:hover {
  background-color: var(--light-primary);
  color: var(--primary-dark);
}

.menu_btn {
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  outline: 0;
  background-color: transparent;
  color: var(--primary-dark);
}

.menu_btn svg {
  height: 24px;
  width: 24px;
}

.menu_btn .menu_close_icon,
.menu_btn.active .menu_open_icon {
  display: none;
}

.menu_btn.active .menu_close_icon {
  display: block;
}

/* Home Page */
.banner_section {
  min-height: calc(100vh - 122px);
  position: relative;
  display: flex;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.banner_section .banner_bg {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.banner_section .banner_bg::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(25%, 74%);
  border: 104px solid rgba(13, 67, 50, 0.21);
  width: 1276px;
  height: 824px;
  border-radius: 50%;
  z-index: 3;
}

.banner_section .banner_bg::after {
  content: "";
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(4, 103, 72, 0) 0%, rgba(4, 103, 72, 0) 25%, var(--primary) 80%, var(--primary) 100%);
}

.banner_section .banner_bg img {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.banner_section .container {
  min-height: 100%;
}

.banner_content {
  height: 100%;
  padding: 56px 0;
  position: relative;
  z-index: 3;
}

.banner_content .text_btn_wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: end;
}

.banner_content:not(:has(.text_btn_wrapper)) .btn {
  margin-top: 48px;
}

.banner_content .h1,
.banner_content h1 {
  max-width: 1088px;
  color: var(--white);
  margin: 0;
}

.banner_content p {
  margin-top: 30px;
  letter-spacing: -0.8px;
  max-width: 795px;
  width: 100%;
  line-height: 1.5;
  font-size: 20px;
}

.counter_section {
  padding: 72px 0;
}

.counter_wrapper {
  display: flex;
  text-align: center;
  justify-content: space-between;
}

.counter_wrapper .counter_line {
  width: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0 15px;
}

.counter_block {
  width: 100%;
  max-width: 195px;
}

.counter_block>span {
  font-size: 48px;
  font-weight: 600;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1.92px;
}

.counter_block p {
  font-size: 16px;
  letter-spacing: -0.64px;
  color: var(--text-light-dark);
  line-height: 1.5;
}

.build_career_section {
  padding: 70px 0;
}

.build_career_section .heading_block {
  margin-bottom: 40px;
}

.build_career_section .heading_block h2 {
  max-width: 688px;
  width: 100%;
}

.tab_btn_wrapper {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 48px;
  gap: 16px;
  border-radius: 50px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.tab_content {
  position: relative;
}

.tab_btn_wrapper .tab_btn {
  display: inline-flex;
  justify-content: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-dark);
  line-height: 1.5;
  padding: 11px 15px;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  background-color: rgba(249, 249, 249, 1);
  min-width: 164px;
  transition: all var(--transition);
}

.bg_light_gray .tab_btn_wrapper .tab_btn {
  background-color: var(--white);
}

.bg_light_primary .tab_btn_wrapper .tab_btn {
  background-color: transparent;
}

.tab_btn_wrapper .tab_btn:hover {
  border-color: var(--primary-dark);
}

.tab_btn_wrapper .tab_btn.active {
  color: var(--white);
  border-color: var(--primary);
  background-color: var(--primary);
}

.tab_btn_wrapper .tab_btn path {
  fill: currentColor;
}

.tab_btn_wrapper .tab_btn svg {
  height: 24px;
  width: 24px;
  min-width: 24px;
}

.build_career_card {
  border-bottom: 1px solid rgba(22, 26, 25, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.build_career_card .build_career_image {
  position: relative;
  padding-top: 82%;
  border-radius: 16px;
  overflow: hidden;
}

.build_career_card .build_career_image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.build_career_card .build_career_content {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.build_career_link {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: var(--primary-dark);
  line-height: 1.5;
  text-decoration: none;
  gap: 4px;
}

.build_career_link,
.build_career_content .btn {
  margin-top: auto;
}

.build_career_link:hover svg {
  margin-left: 5px;
}

.build_career_link svg {
  height: 24px;
  width: 24px;
  transition: all var(--transition);
}

.build_career_link svg path {
  stroke: currentColor;
}

.build_career_content h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
  margin: 0 0 16px;
  letter-spacing: -0.08px;
}

.build_career_content p {
  font-size: 16px;
  color: var(--text-light-dark);
  line-height: 1.5;
  letter-spacing: -0.64px;
  font-family: var(--inter);
}

.build_career_content p:has(+ .btn),
.build_career_content p:has(+ .build_career_link) {
  margin-bottom: 24px;
}

.build_career_slider .swiper-slide {
  height: auto !important;
}

.swiper_btn_wrapper .swiper_btn {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: var(--white);
  top: 30%;
  transition: all var(--transition);
  color: var(--primary-dark);
}

.swiper_btn_wrapper .swiper_btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.swiper_btn_wrapper .swiper_btn svg {
  height: 32px;
  width: 32px;
}

.swiper_btn_wrapper .swiper_btn svg path {
  fill: currentColor;
}

.swiper_btn_wrapper .swiper-button-prev {
  left: 0;
  transform: translateX(-50%);
}

.swiper_btn_wrapper .swiper-button-next {
  right: 0;
  transform: translateX(50%);
}

.choose_section {
  padding: 120px 0 0;
}

.choose_section .heading_block {
  margin-bottom: 56px;
}

.choose_section .heading_block p {
  margin-top: 24px;
  font-size: 18px;
  letter-spacing: -0.72px;
  line-height: 1.5;
}

.choose_box_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.choose_box_wrapper .choose_box {
  width: calc(50% - 10px);
  padding: 32px 20px;
  background-color: rgba(250, 250, 250, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}

.choose_box_wrapper .choose_box h3 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.96px;
  margin: 0 0 32px;
  font-weight: 600;
}

.choose_list {
  margin: 0;
}

.choose_list li {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 16px 15px 16px 6px;
  margin-bottom: 8px;
  border-radius: 8px;
}

.choose_list li:last-child {
  margin: 0;
}

.choose_list li:nth-child(1),
.choose_list li:nth-child(2n + 1) {
  background-color: var(--white);
}

.choose_list li p {
  font-size: 18px;
  letter-spacing: -0.72px;
  line-height: 1.5;
  color: var(--text-light-green);
  font-family: var(--inter);
}

.choose_list li::before {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  min-width: 24px;
  background-image: url(https://christinevdev.wpengine.com/new-design/assets/images/right_arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.accreditations_section {
  padding: 64px 0;
}

.accreditations_section .heading_block {
  margin-bottom: 30px;
}

.accreditations_section .heading_block h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.96px;
  margin: 0;
}

.brands_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.brand_logo {
  height: 140px;
  width: fit-content;
}

.brands_slider .swiper-slide {
  width: fit-content;
}

.brands_wrapper .brand_logo {
  height: 122px;
  width: auto;
}

.brand_logo img {
  height: 100%;
  width: auto;
}

.training_section {
  background-color: var(--primary);
  padding: 72px 0 114px;
}

.training_heading_block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
  color: var(--white);
  margin-bottom: 48px;
}

.training_heading_block h2 {
  max-width: 621px;
  width: 100%;
  color: var(--white);
}

.training_heading_block p {
  margin-left: auto;
  max-width: 443px;
  width: 100%;
  font-size: 18px;
  letter-spacing: -0.72px;
  line-height: 1.5;
}

.training_card_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.training_card {
  width: calc(50% - 10px);
  border-radius: 24px;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
}

.training_card_image {
  position: relative;
  padding-top: 52.408%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.training_card_image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.training_card_content .location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-dark);
  font-family: var(--inter);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.56px;
  margin: 0 0 8px;
}

.training_card_content .location svg {
  height: 24px;
  width: 24px;
}

.training_card_content h3 {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.96px;
  margin: 0 0 16px;
}

.training_card_content p {
  font-size: 18px;
  letter-spacing: -.72px;
  line-height: 1.5;
  color: var(--text-light-green);
  margin: 0 0 32px;
  font-family: var(--inter);
}

.training_card_content .btn {
  margin-top: auto;
  width: max-content;
}

.training_card_content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.image_content_section {
  padding: 120px 0;
}

.image_content_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -15px;
}

.image_content_wrapper .content_block {
  padding: 0 15px;
  width: 50%;
}

.image_content_wrapper .content_block_inner_wrapper {
  width: 100%;
  max-width: 652px;
}

.image_content_wrapper .image_block {
  padding: 0 15px;
  width: 50%;
  max-width: 545px;
  margin-right: auto;
}

.invest_section .image_block {
  max-width: 540px;
}

.image_wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.invest_section .image_wrapper {
  padding-top: 79.61%;
}

.image_wrapper img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.content_block h2 {
  color: var(--primary-dark);
  margin: 0 0 32px;
}

.content_block p {
  color: var(--text-light-green);
  font-size: 18px;
  letter-spacing: -.72px;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 537px;
}

.content_block p:has(+ .btn) {
  margin-bottom: 40px;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 90px 0 0;
}

.footer_wrapper {
  padding-bottom: 80px;
  display: flex;
  justify-content: space-between;
}

.footer_logo {
  display: block;
  width: 140px;
  height: auto;
  margin-bottom: 110px;
}

.footer_logo img {
  width: 100%;
}

.social_icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.social_icons a {
  display: block;
}

.social_icons svg {
  height: 40px;
  width: 40px;
}

.location_wrapper {
  max-width: 314px;
  width: 100%;
}

.footer_links {
  margin: 0;
}

.location_wrapper h3,
.footer_links a {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  display: inline-block;
  text-decoration: none;
  transition: all var(--transition);
  color: var(--white);
  margin: 0;
}

.footer_links a:hover {
  color: var(--yellow);
}

.footer_links li:not(:last-child) {
  margin-bottom: 16px;
}

.location_wrapper h3 {
  margin: 0 0 24px;
}

.location_list li {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.location_list li:last-child {
  margin: 0;
}

.location_list li svg {
  height: 24px;
  width: 24px;
}

.location_list li p {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.64px;
  color: rgba(255, 255, 255, 0.8);
}

.location_list li p span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.52px;
  color: rgba(255, 255, 255, 0.6);
}

.terms_list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
}

.terms_list li {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  transition: all var(--transition);
}

.terms_list li a {
  text-decoration: none;
}

.terms_list a:hover {
  color: var(--yellow);
}

.copyright_wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright_wrapper p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
  color: rgba(255, 255, 255, 0.57);
}

/* NYC Campus page */
.card_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 20px;
}

.card_wrapper>.card {
  width: calc(33.33% - ((20px * 2) / 3));
  height: auto;
}

.btn_wrapper {
  margin-top: 48px;
  text-align: center;
}

.offered_section {
  padding: 96px 0 0;
}

.offered_section .heading_block h2 {
  max-width: 760px;
}

.reverse_column .image_content_wrapper {
  flex-direction: row-reverse;
}

.reverse_column .image_block {
  margin: 0 0 0 auto;
}

.content_block ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 24px;
  font-size: 18px;
  color: var(--text-light-green);
  line-height: 1.5;
  letter-spacing: -0.72px;
  font-family: var(--inter);
}

.content_block ul li b,
.content_block ul li span {
  color: var(--text-dark);
}

.checkmark_list>li {
  position: relative;
  padding-left: 32px;
}

.checkmark_list>li::before,
.content_block ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  vertical-align: middle;
  height: 24px;
  width: 24px;
  background-image: url(https://christinevdev.wpengine.com/new-design/assets/images/checkmark_image.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.checkmark_list>li::before {
  top: 2px;
  transform: unset;
}

.flexible_class_section .content_block h2 {
  margin-bottom: 24px;
}

.flexible_class_section .content_block p {
  font-family: var(--inter);
}

.image_bottom {
  padding: 72px 0 0;
}

.image_bottom .content_block {
  padding-bottom: 106px;
}

.image_bottom .image_wrapper {
  border-radius: 24px 24px 0 0;
}

.virtual_tour_section .heading_block h2 {
  max-width: 648px;
}

.virtual_tour_section .heading_block p {
  margin-top: 16px;
  font-size: 18px;
  letter-spacing: -.72px;
  max-width: 789px;
}

.virtual_tour_image {
  width: 100%;
  padding-top: 42%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.virtual_tour_image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.virtual_tour_section {
  padding-bottom: 120px;
}

.learning_section {
  min-height: 592px;
  padding: 92px 0;
  position: relative;
  background-color: var(--primary);
}

.dropshadow_image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  max-width: 65%;
}

.dropshadow_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(4, 103, 72, 0) 100%);
}

.dropshadow_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drophadow_content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 566px;
  width: 50%;
}

.drophadow_content h2 {
  margin-bottom: 32px;
  color: var(--white);
}

.drophadow_content p {
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.72px;
  font-family: var(--inter);
  max-width: 537px;
}

.stories_section {
  padding: 96px 0 120px;
}

.story_card {
  text-align: center;
}

.story_card .vector {
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-primary);
  margin: 0 auto 32px;
  border-radius: 50px;
}

.story_card .vector img,
.story_card .vector svg {
  height: 40px;
  width: 40px;
}

.story_card p {
  font-size: 22px;
  line-height: 1.7;
  font-style: italic;
  color: rgba(5, 76, 54, 0.8);
  margin: 0 0 24px;
  letter-spacing: -0.88px;
}

.story_card h6 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.96px;
  color: var(--primary-dark);
  line-height: 1.1;
}

.stories_slider .swiper-pagination {
  position: unset;
  margin-top: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stories_slider .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  height: 12px;
  width: 12px;
  background-color: rgba(230, 228, 228, 1);
  opacity: 1;
}

.stories_slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-dark);
}

.faq_section {
  padding: 64px 0 132px;
  background-color: rgba(249, 249, 249, 1);
}

.faq_section .heading_block h2 {
  max-width: 680px;
}

.accordion_body {
  display: none;
}

.accordion_header.active+.accordion_body {
  display: block;
}

.faq_accordion .accordion {
  border: 1px solid rgba(5, 76, 54, 0.2);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 23px;
}

.faq_accordion .accordion:has(.active) {
  border-color: var(--primary-dark);
  background-color: var(--white);
}

.faq_accordion .accordion:last-child {
  margin: 0;
}

.faq_accordion .accordion_header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.accordion_header .down_arrow {
  transition: all var(--transition);
}

.accordion_header.active .down_arrow {
  rotate: 180deg;
}

.faq_accordion .accordion_body {
  padding: 0 24px 24px;
}

.faq_accordion .accordion_body p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-light-green);
  letter-spacing: -0.64px;
}

.faq_accordion .accordion_header h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.80px;
  margin: 0;
  color: var(--text-dark);
}

.pdf_section {
  padding: 56px 0;
}

.pdf_wrapper {
  text-align: center;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto;
}

.pdf_wrapper h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.pdf_wrapper p {
  font-size: 19px;
  line-height: 1.7;
  letter-spacing: -0.76px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px;
}

.license_section {
  padding: 120px 0;
}

.license_wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 32px;
}

.license_image {
  display: flex;
  gap: 40px;
  align-items: center;
}

.license_logo {
  height: 190px;
}

.license_image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.license_content {
  flex: 1;
}

.license_content h2 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.license_content p {
  font-size: 16px;
  font-family: var(--inter);
  line-height: 1.5;
  letter-spacing: -.64px;
  color: var(--text-light-dark);
}

.report_table_section {
  padding-bottom: 120px;
}

.table_wrapper.report_table {
  background-color: var(--light-primary);
  border-radius: 16px;
  padding: 16px;
}

.report_table .table_heading,
.report_table .table_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.report_table .table_row:last-child {
  margin-bottom: 0;
}

.report_table .table_row span,
.report_table .table_row a,
.report_table .table_row p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -.64px;
  font-family: var(--inter);
}

.report_table .table_row a {
  white-space: nowrap;
  text-decoration: underline;
}

.report_table .table_row p {
  max-width: 370px;
}

.report_table .table_heading {
  padding: 19px 24px;
  background-color: var(--primary);
  color: var(--white);
}

.report_table .table_heading h5 {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.64px;
  font-weight: 600;
  margin: 0;
  color: var(--white);
}

.report_table .table_row:nth-child(2n + 1) {
  background-color: var(--white);
}

.report_table .table_heading>h5:last-child,
.report_table .table_row>div:last-child {
  text-align: right;
}

/* How to Apply */
.breadcrum {
  display: flex;
  flex-wrap: wrap;
}

.breadcrum,
#breadcrumbs {
  background-color: transparent;
  padding: 0;
  margin-bottom: 16px;
}

#breadcrumbs a,
.breadcrum a {
  text-decoration: none;
  cursor: pointer;
  color: rgba(240, 250, 235, 0.7);
}

.breadcrum a {
  padding-right: 18px;
  margin-right: 2px;
  display: block;
}

#breadcrumbs span,
.breadcrum li {
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  transition: all var(--transition);
}

.breadcrum li:hover {
  color: var(--white);
}

.breadcrum li:last-child {
  color: var(--white);
}

.breadcrum li:last-child a {
  margin: 0;
  padding: 0;
}

.breadcrum li:last-child::after {
  display: none;
}

.breadcrum li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 16px;
  width: 16px;
  background-image: url(https://christinevdev.wpengine.com/new-design/assets/images/right_small_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.heading_text_wrapper {
  display: flex;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.heading_text_wrapper .h1,
.heading_text_wrapper h1 {
  max-width: 622px;
  width: calc(55% - 10px);
}

.banner_content .heading_text_wrapper p {
  font-size: 18px;
  letter-spacing: -0.72px;
  margin: 0;
  max-width: 515px;
  width: calc(45% - 10px);
}

.how_to_apply_section {
  padding: 120px 0;
}

.step_wrapper {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
}

.step_box {
  width: calc(33.33% - ((20px * 2) / 3));
  position: relative;
}

.step_box:not(:last-child)::after {
  content: "";
  height: 32px;
  width: calc(100% - 140px);
  position: absolute;
  top: 50px;
  right: 0;
  transform: translate(50%, -50%);
  background-image: url(https://christinevdev.wpengine.com/new-design/assets/images/step_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.step_box .vector {
  margin: 0 auto 40px;
  height: 100px;
  width: 100px;
  background-color: #F0FAEB;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.step_box h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 1.1;
  max-width: 245px;
  width: 100%;
  margin: 0 auto 16px;
}

.step_box p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.64px;
  font-family: var(--inter);
  color: var(--text-light-dark);
}

.requirements_section {
  padding: 72px 0;
  color: var(--white);
}

.requirements_section .heading_block {
  margin-bottom: 40px;
}

.requirements_section .heading_block h2 {
  color: var(--white);
}

.tab_primary .tab_btn_wrapper {
  border-color: rgba(255, 255, 255, 0.2);
}

.tab_primary .tab_btn_wrapper .tab_btn {
  background-color: rgba(2, 96, 66, 1);
  border-color: rgba(2, 96, 66, 1);
  color: var(--white);
}

.tab_primary .tab_btn_wrapper .tab_btn:hover {
  border-color: var(--white);
}

.tab_primary .tab_btn_wrapper .tab_btn.active {
  background-color: var(--white);
  color: var(--primary);
}

.content_block h3 {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.28px;
  color: currentColor;
}

.bg_green .content_block ul li {
  color: rgba(255, 255, 255, 0.8);
}

.bg_green .content_block ul li b {
  font-weight: 500;
  color: var(--white);
}

.bg_green .content_block ul li::before {
  background-image: url(https://christinevdev.wpengine.com/new-design/assets/images/checkmark_image_white.svg);
}

.bg_green .content_block p {
  color: var(--white);
}

.support_step_section {
  padding-top: 0;
}

.support_step_section .content_block p {
  font-family: var(--inter);
  max-width: unset;
}

.meet_team_section {
  padding: 72px 0;
}

.meet_team_section .heading_block {
  margin-bottom: 24px;
}

.meet_team_section .heading_block h2 {
  margin-bottom: 24px;
}

.meet_team_section .heading_block p {
  max-width: 528px;
}

.team_member_card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.team_member_image {
  position: relative;
  padding-top: 100%;
}

.team_member_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(167, 167, 167, 0.0) 0%, rgb(0 0 0 / 50%) 100%);
}

.team_member_image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.team_member_card .team_member_name {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1.04px;
  color: var(--white);
  z-index: 1;
}

.team_member_image .team_member_name {
  position: absolute;
  left: 24px;
  bottom: 24px;
}

.team_member_content {
  display: flex;
  flex-direction: column;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--primary);
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.team_member_card:hover .team_member_content {
  opacity: 1;
}

.team_member_details {
  margin-top: auto;
}

.team_member_details li:not(:last-child) {
  margin-bottom: 16px;
}

.team_member_details a {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.64px;
  line-height: 1.5;
  text-decoration-style: dotted;
}

.team_member_details .vector {
  height: 48px;
  width: 48px;
  border-radius: 50px;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team_member_details .vector img,
.team_member_details .vector svg {
  height: 24px;
  width: 24px;
}

.team_member_slider+.swiper_btn_wrapper .swiper_btn {
  top: 50%;
}

.have_questions_section {
  padding: 106px 0;
  background-color: rgba(249, 249, 249, 1);
  position: relative;
  overflow: hidden;
}

.have_questions_section::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 0;
  transform: translateX(-73%);
  height: 90%;
  width: auto;
  aspect-ratio: 1.55;
  border: 24px solid rgba(4, 103, 72, 0.03);
  border-radius: 50%;
}

.have_questions_section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(80%, -50%);
  height: 130%;
  width: auto;
  aspect-ratio: 1.55;
  border: 24px solid rgba(4, 103, 72, 0.03);
  border-radius: 50%;
}

.have_questions_section .heading_block {
  margin-bottom: 32px;
}

.have_questions_section .heading_block p {
  margin-top: 24px;
}

.have_questions_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

/* FAQ's Page */
.faq_tab_section {
  padding: 105px 0 115px;

}

.faq_tab_wrapper {
  display: flex;
  gap: 52px;
}

.faq_tab_btn {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 33.33%;
  width: fit-content;
}

.faq_tab_content {
  flex: 1;
}

.faq_tab_btn button {
  border: 0;
  padding: 0;
  background-color: transparent;
  color: rgba(22, 26, 25, 0.63);
  text-align: left;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  font-weight: 600;
  font-family: var(--poppins);
  cursor: pointer;
}

.faq_tab_btn button.active {
  color: var(--primary-dark);
}

/* Financial Aid Page */
.how_it_works_section .content_block p {
  font-family: var(--inter);
}

.how_it_works_section .content_block p:has(+ .btn) {
  margin-bottom: 32px;
}

.how_it_works_section .content_block h2 {
  margin-bottom: 16px;
}

.how_it_works_section .content_block ul li {
  color: rgba(2, 37, 26, 1);
}

.your_options_section .content_block ul li strong,
.your_options_section .content_block ul li b,
.how_it_works_section .content_block ul li strong,
.how_it_works_section .content_block ul li b {
  color: rgba(66, 139, 117, 1);
}

.how_it_works_section .content_block_inner_wrapper {
  max-width: 545px;
}

.how_it_works_section .image_block {
  max-width: 50%;
}

.your_options_section .content_block h2 {
  margin-bottom: 24px;
}

.your_options_section .content_block ul li::before {
  top: 2px;
  transform: unset;
}

.your_options_section .content_block ul {
  margin-bottom: 43px;
}

.contact_details {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background-color: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
}

.contact_details a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.72px;
  word-break: break-all;
}

.contact_details a:last-child {
  margin-bottom: 0;
}

.contact_details a .vector {
  background-color: rgba(240, 250, 235, 1);
  height: 46px;
  width: 46px;
  min-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.need_help_section {
  padding: 75px 0 95px;
}

.need_help_section .heading_block {
  margin-bottom: 40px;
}

.need_help_wrapper {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 22px;
}

.need_help_wrapper>div {
  width: calc(33.33% - (22px * 2)/3);
}

.need_help_content h3 {
  margin: 0 0 24px;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -1.28px;
  font-weight: 600;
}

.need_help_content ul li {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.72px;
  color: var(--text-light-green);
  margin-bottom: 24px;
  font-family: var(--inter);
}

.need_help_content ul ul {
  padding-left: 25px;
}

.need_help_content ul ul li {
  margin: 0;
  list-style: disc;
}

.need_help_content ul li b {
  color: rgba(2, 37, 26, 1);
  font-weight: 500;
}

.need_help_content .btn {
  word-break: break-all;
}

.need_help_image .image_wrapper {
  padding-top: 89%;
  border-radius: 24px;
}

.need_image_content .image_block h4,
.need_help_image .image_wrapper h4 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1.04px;
  color: var(--white);
  position: absolute;
  left: 24px;
  bottom: 24px;
}

.need_image_content .image_block {
  max-width: 556px;
}

.need_image_content .content_block ul b {
  font-weight: 500;
}

.qualify-image .image_wrapper {
  padding-top: 67%;
}

.qualify-image .image_content_wrapper {
  align-items: center;
}

/* Accreditation Page */

.no_bg_image {
  background-color: var(--primary);
}

.no_bg_image .banner_content p {
  margin: 24px 0;
}

.banner_tag_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 25px;
}

.banner_tag_list li {
  padding: 6px 16px;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.banner_section.no_bg_image {
  min-height: unset;
  position: relative;
}

.banner_section.no_bg_image .banner_bg {
  display: none;
}

.no_bg_image .banner_content {
  padding: 116px 0;
}

.no_bg_image::after {
  content: "";
  position: absolute;
  background-position: left bottom;
  background-size: contain;
  background-repeat: no-repeat;
  height: 67px;
  width: 30%;
  bottom: 0;
  left: 0;
  background-image: url(https://christinevdev.wpengine.com/new-design/assets/images/banner_vector_left.png);
}

.no_bg_image::before {
  content: "";
  position: absolute;
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
  height: 170px;
  width: 40%;
  top: 0;
  right: 0;
  background-image: url(https://christinevdev.wpengine.com/new-design/assets/images/banner_vector_right.png);
}

.accreditation_section {
  padding: 78px 0;
}

.accreditation_section .heading_block h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--primary-dark);
  margin: 0 0 24px;
  letter-spacing: -1.28px;
}

.accreditation_section .heading_block p {
  max-width: 950px;
  font-size: 18px;
  letter-spacing: -0.72px;
  font-family: var(--inter);
}

.accreditation_card_wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.accreditation_card {
  width: calc(33.33% - ((20px * 2) / 3));
  border-radius: 24px;
  padding: 20px;
  background-color: rgba(248, 248, 248, 1);
}

.accreditation_brand {
  background-color: var(--white);
  border-radius: 12px;
  padding: 13px;
  height: 127px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 24px;
}

.accreditation_brand img {
  height: 100%;
  width: auto;
}

.accreditation_card h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}

.accreditation_card p {
  color: var(--text-light-green);
  font-size: 18px;
  line-height: 1.5;
  font-family: var(--inter);
  letter-spacing: -0.72px;
}

.since_section {
  padding: 120px 0 112px;
}

.since_section .heading_block ul {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.since_section .heading_block ul li {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.96px;
  color: rgba(66, 139, 117, 1);
  font-weight: 600;
}

.since_section .heading_block h2 {
  max-width: 1008px;
}

.since_section .heading_block p {
  max-width: 1054px;
  font-family: var(--inter);
}

.since_section .heading_block ul li:not(:last-child)::after {
  content: "  •  ";
  white-space: pre;
}

/* About Us Page */

.about_details_section {
  padding-bottom: 147px;
}

.about_details_wrapper {
  display: flex;
  gap: 60px;
}

.about_details_wrapper .about_image {
  width: 32%;
}

.about_details_wrapper .about_image .image_wrapper {
  padding-top: 138.51%;
}

.about_details {
  flex: 1;
}

.about_details ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 30px;
}

.about_details h5 {
  line-height: 1.1;
  font-size: 24px;
  letter-spacing: -0.96px;
  color: rgba(66, 139, 117, 1);
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}

.about_details h5::before {
  content: "";
  height: 12px;
  width: 12px;
  background-color: currentColor;
  display: block;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.about_details p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-light-green);
  font-style: italic;
}

.about_details p b,
.about_details p strong {
  color: var(--primary);
  font-weight: 500;
}

.about_details:last-child {
  text-align: right;
}

.about_details:last-child li h5 {
  padding-left: 0;
  padding-right: 20px;
}

.about_details:last-child li h5::before {
  right: 0;
  left: unset;
}

.about_desc_slider {
  margin-bottom: 36px;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: unset;
  margin-top: 20px;
  gap: 4px;
}

.swiper-pagination-bullet {
  height: 9px;
  width: 9px;
  background-color: #E8E8E8;
  margin: 0 !important;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary);
}

.skin_care_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -20px;
  z-index: 2;
  position: relative;
}

.skin_care_wrapper .skin_care_inner_wrp {
  padding: 0 20px;
}

.skin_care_section {
  padding: 72px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.skin_care_section::after {
  content: "";
  height: 100%;
  width: 100%;
  background-image: url(https://christinevdev.wpengine.com/new-design/assets/images/skin_care_bg.png);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 57% auto;
}

.skin_care_left {
  width: 50%;
}

.skin_care_right {
  width: 50%;
  max-width: 545px;
}

.skin_care_left .image_wrapper {
  padding-top: 49%;
  border-radius: 24px;
}

.skin_care_left h2 {
  margin-bottom: 25px;
}

.skin_care_left p {
  margin-bottom: 40px;
  max-width: 537px;
}

.skin_care_inner_wrp p {
  margin-bottom: 32px;
  font-family: var(--inter);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  letter-spacing: -0.72px;
}

.skin_care_right {
  align-self: flex-end;
}

.skin_care_right .image_wrapper {
  padding-top: 67.525%;
  margin-bottom: 30px;
}

.results_section {
  padding: 120px 0 60px;
}

.results_section .heading_block {
  display: flex;
  text-align: left;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

.results_section .heading_block h2 {
  max-width: 622px;
  width: 50%;
  margin: 0;
}

.results_section .heading_block p {
  max-width: 515px;
  width: 50%;
  font-size: 18px;
  letter-spacing: -.6px;
  margin: 0;
  font-family: var(--inter);
}

.results_card_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.results_card {
  width: calc(33.33% - (20px * 2) /3);
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 24px;
}

.results_card .vector {
  height: 56px;
  width: 56px;
  border-radius: 100px;
  background-color: rgba(66, 139, 117, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 74px;
}

.results_card .vector img,
.results_card .vector svg {
  height: 24px;
  width: 24px;
}

.results_card h4 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.80px;
  margin-bottom: 16px;
  font-weight: 500;
}

.results_card p {
  color: var(--text-light-dark);
  font-family: var(--inter);
  line-height: 1.5;
  letter-spacing: -.64px;
}

.results_card_wrapper:not(.card_bordered) .results_card:nth-child(2n) {
  background-color: rgba(240, 250, 235, 1);
  border-color: rgba(240, 250, 235, 1);
}

.history_section {
  padding: 60px 0 127px;
}

.history_section .heading_block h2 {
  max-width: 760px;
}

.history_inner_wrp {
  padding: 100px 0;
  display: flex;
  align-items: center;
  gap: 130px;
  position: relative;
}

.history_inner_wrp .history_image {
  width: calc(50% - 130px / 2);
}

.history_image .image_wrapper {
  padding-top: 57%;
}

.history_inner_wrp .history_content {
  width: calc(50% - 130px / 2);
  border: 1px solid var(--primary-dark);
  padding: 24px 19px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.72px;
  font-family: var(--inter);
  border-radius: 16px;
  color: var(--text-light-dark);
}

.history_years {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: calc(50% + 130px / 2 + 7px);
  background-color: rgba(240, 250, 235, 1);
  padding: 13px 27px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -.84px;
  color: var(--primary);
  z-index: 2;
}

.history_years::before {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  background-color: rgba(240, 250, 235, 1);
  z-index: 1;
  top: 36%;
  left: -7px;
  rotate: 45deg;
}

.history_wrapper {
  max-width: 945px;
  margin: 0 auto;
  position: relative;
}

.step_line {
  position: absolute;
  top: 0;
  width: 8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(239, 239, 239, 1);
  height: 100%;
}

.step_line.filled {
  background-color: var(--primary);
  height: 0px;
}

.history_inner_wrp .step_fill {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 48px;
  width: 48px;
  background-color: var(--white);
  z-index: 1;
  border: 10px solid rgba(234, 234, 234, 1);
  border-radius: 50px;
  transition: all var(--transition);
}

.history_inner_wrp.filled .step_fill {
  border: 10px solid var(--primary);
}

.history_inner_wrp.filled .history_years {
  animation: scale var(--transition);
}

@keyframes scale {
  0% {
    scale: 1;
  }

  50% {
    scale: 1.1;
  }

  100% {
    scale: 1;
  }
}

.history_inner_wrp:nth-child(2n) {
  flex-direction: row-reverse;
}

.history_inner_wrp:nth-child(2n) .history_years {
  left: unset;
  right: calc(50% + 130px / 2 + 7px);
}

.history_inner_wrp:nth-child(2n) .history_years::before {
  left: unset;
  right: -7px;
}

.history_inner_wrp:last-child {
  padding-bottom: 0;
}

.awards_section {
  padding: 0 0 72px;
  position: relative;
}

.awards_section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 38%;
  background-image: url(https://christinevdev.wpengine.com/new-design/assets/images/awards_bg_vector_1.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}

.awards_section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background-image: url(https://christinevdev.wpengine.com/new-design/assets/images/awards_bg_vector_2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
}

.awards_content {
  padding: 72px 0 0;
  flex: 1;
  max-width: 729px;
}

.awards_content h2 {
  color: var(--primary-dark);
}

.awards_content p {
  margin-top: 24px;
  font-family: var(--inter);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light-green);
  line-height: 1.5;
  letter-spacing: -.72px;
  max-width: 685px;
  width: 100%;
}

.awards_wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.awards_image {
  width: 100%;
  max-width: 300px;
  height: auto;
  background-color: var(--primary);
  padding: 134px 18px 14px;
  border-radius: 0 0 500px 500px;
}

.awards_image .image_wrapper {
  padding-top: 100%;
}

/* Salon & Spa Services */
.luxury_treatments_section .heading_block h2 {
  max-width: 786px;
}

.luxury_treatments_section .heading_block p {
  margin: 24px 0 0;
  font-size: 18px;
  letter-spacing: -.72px;
}

.luxury_treatments_section .heading_block {
  margin-bottom: 32px;
}

.luxury_treatments_section {
  padding: 112px 0 117px;
}

.services_section {
  padding: 84px 0 99px;
}

.services_section .heading_block {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 62px;
}

.services_section .heading_block h2 {
  margin: 0;
}

.card_white .results_card {
  background-color: rgba(255, 255, 255, 1) !important;
  border: none;
}

.lower_price_section {
  padding: 117px 0;
}

.lower_price_section .content_block p {
  font-family: var(--inter);
}

.pricing_section {
  padding-bottom: 117px;
}

.pricing_section .heading_block h2 {
  max-width: 940px;
}

.pricing_section .heading_block {
  margin-bottom: 32px;
}

.pricing_tab_wrapper {
  background-color: rgba(249, 249, 249, 1);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 11px;
}

.pricing_tab_btn_wrapper {
  width: 100%;
  max-width: 296px;
  background-color: var(--white);
  border-radius: 8px;
  padding: 16px;
}

.pricing_tab_btn_wrapper .tab_btn {
  padding: 15px 24px;
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 500;
  color: rgba(116, 116, 116, 1);
  text-align: left;
  letter-spacing: -.64px;
  font-family: var(--poppins);
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50px;
  transition: all var(--transition);
  margin-bottom: 16px;
  cursor: pointer;
}

.pricing_tab_btn_wrapper .tab_btn.active,
.pricing_tab_btn_wrapper .tab_btn:hover {
  background-color: rgba(240, 250, 235, 1);
  border-color: var(--primary);
  color: var(--text-dark);
}

.pricing_tab_content_wrapper {
  background-color: var(--white);
  border-radius: 8px;
  padding: 16px;
  flex: 1;
}

.table {
  width: 100%;
  border-spacing: 0;
  text-align: left;
}

.table .table_row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  overflow: hidden;
  background-color: var(--white);
  border-radius: 8px;
}

.table .table_heading {
  align-items: unset;
}

.table .table_row:last-child {
  margin: 0;
}

.table .table_row:nth-child(2n + 1) {
  background-color: rgba(249, 249, 249, 1);
  border-radius: 8px;
}

.table .table_heading {
  border-radius: 8px;
}

.ny_price_table .table_cell:first-child {
  width: 30%;
}

.ny_price_table .table_cell:nth-child(2) {
  width: 25%;
}

.ny_price_table .table_cell:last-child {
  width: 45%;
}

.table .table_heading .table_cell {
  padding: 18px 24px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.125;
  background-color: var(--primary);
  letter-spacing: -.64px;
  font-family: var(--poppins);
  display: flex;
  align-items: center;
}

.table .table_cell {
  padding: 14px 24px;
  width: 100%;
}

.table .table_cell.full_width {
  width: 100% !important;
}

.table .table_cell,
.table .table_cell h6,
.table .table_cell p {
  font-size: 16px;
  font-family: var(--inter);
  line-height: 1.5;
  letter-spacing: -.64px;
  font-weight: 400;
}

.table .table_cell p {
  color: var(--text-light-green);
}

.nj_price_table .table_cell:first-child {
  width: 60%;
}

.nj_price_table .table_cell:nth-child(2) {
  width: 40%;
}

.table .table_cell h5 {
  color: var(--primary);
  letter-spacing: -.72px;
  text-align: center;
  font-family: var(--inter);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

/* Career Outcomes Page */
.career_banner_section .heading_text_wrapper .h1,
.career_banner_section .heading_text_wrapper h1 {
  max-width: 662px;
}

.graduates_work_section h2 {
  max-width: 565px;
  margin-bottom: 24px;
}

.graduates_work_section .content_block p {
  font-family: var(--inter);
  margin-bottom: 16px;
}

.graduates_work_section .content_block p:last-child {
  margin: 0;
}

.graduates_work_section .content_block ul li {
  margin-bottom: 16px;
}

.graduates_work_section .content_block .btn {
  margin-top: 8px;
}

.why_graduates_section {
  padding: 50px 0 71px;
}

.why_graduates_section .heading_block h2 {
  max-width: 640px;
}

.results_card_wrapper.card_4 .results_card {
  width: calc(25% - (20px * 3 / 4));
}

.stories_tabs_section {
  padding: 120px 0;
}

.graduate_spotlight_section {
  padding: 72px 0;
}

.bg_gray {
  background-color: rgba(249, 249, 249, 1);
}

.graduate_spotlight_section .heading_block {
  text-align: left;
}

.graduate_spotlight_section .heading_block p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.5;
  font-family: var(--inter);
  letter-spacing: -.72px;
}

.graduate_card_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.graduate_card {
  width: calc(33.33% - (20px * 3 / 4));
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.graduate_card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(167, 167, 167, 0.0) 0%, rgb(0 0 0 / 50%) 100%);
}

.graduate_card h4 {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: var(--white);
  font-size: 26px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -1.04px;
  z-index: 1;
}

.graduate_card .image_wrapper {
  padding-top: 100%;
}

.specialties_section {
  padding: 120px 0 112px;
}

.graduates_work_section .content_block h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.96px;
}

.locations_enrollment_section {
  padding: 64px 0 112px;
  position: relative;
}

.locations_enrollment_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 54%;
  z-index: -1;
  background-color: rgba(248, 255, 242, 1);
}

.locations_card_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.locations_card {
  width: calc(50% - 10px);
  text-align: center;
}

.locations_card .image_wrapper {
  border-radius: 32px;
  padding-top: 76.604%;
  height: auto;
  margin-bottom: 24px;
}

.locations_card h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.96px;
  margin: 0 0 16px;
}

.locations_card p {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -.64px;
  font-family: var(--inter);
  color: var(--text-light-dark);
}

.study_esthetics_section {
  padding: 0 0 108px;
}

.study_esthetics_section .content_block {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Esthetics - NY Page */
.esthetics_ny_banner_section .banner_content {
  padding: 300px 0 67px;
}

.esthetics_content_section {
  padding: 112px 0 140px;
}

.esthetics_content_section .container {
  max-width: 1082px;
}

.esthetics_content_wrapper h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.28px;
  color: rgba(5, 76, 54, 1);
  margin: 0 0 24px;
}

.esthetics_content_wrapper p {
  font-size: 18px;
  font-family: var(--inter);
  margin-bottom: 24px;
  line-height: 1.5;
  letter-spacing: -.72px;
  color: var(--text-light-green);
}

.esthetics_content_wrapper p:last-child,
.esthetics_content_wrapper h3:last-child {
  margin: 0;
}

.esthetics_content_wrapper .image_wrapper {
  border-radius: 16px;
  padding-top: 53.334%;
}

.content_tag_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
}

.content_tag_list li {
  font-family: var(--inter);
  background-color: rgba(240, 250, 235, 1);
  border-radius: 50px;
  padding: 8px 13px 8px 45px;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(2, 37, 26, 1);
  letter-spacing: -0.72px;
  position: relative;
}

.content_tag_list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
  background-image: url(https://christinevdev.wpengine.com/new-design/assets/images/checkmark_image.svg);
  height: 24px;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.content_inner_wrapper {
  margin-bottom: 56px;
}

.esthetics_accordion .accordion:not(:last-child) {
  margin-bottom: 56px;
}

.esthetics_accordion .accordion_header {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.esthetics_accordion .accordion_header h3 {
  margin: 0;
}

.esthetics_accordion .accordion_header h3+p {
  margin-top: 24px;
}

.esthetics_accordion .accordion_body {
  padding-top: 24px;
}

.esthetics_accordion .table {
  padding: 16px;
  background-color: rgba(248, 248, 248, 1);
  border-radius: 16px;
}

.curriculum_table .table_cell:nth-child(2) {
  width: 20%;
  text-align: center;
  justify-content: center;
}

.total_row .table_cell {
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.schedules_table .table_cell:first-child {
  width: 34%;
}

.schedules_table .table_cell:nth-child(2) {
  justify-content: center;
  text-align: center;
  width: 32%;
}

.schedules_table .table_cell:last-child {
  width: 34%;
  justify-content: end;
  text-align: right;
}

/* Request Information Page */
.explore_programs_section {
  padding: 120px 0;
}

.enquiry_form_section {
  padding: 112px 0 0;
}

.enquiry_form_wrapper {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.19);
  border-radius: 24px;
  padding: 34px 18px;
}

.enquiry_form_wrapper h3 {
  margin: 0 0 15px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.12px;
  color: var(--primary);
}

.enquiry_form_wrapper .hidden-fields-container {
  display: none;
}

.enquiry_form_wrapper .form_group {
  margin-bottom: 24px;
}

.enquiry_form_wrapper .row,
.enquiry_form_inner_wrp {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin: 0;
}

.form_group {
  width: calc(50% - 10px);
}

.form_group.full_width {
  width: 100%;
}

.form_group label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.56px;
  display: block;
}

.form_group label:has(+ .checkbox_gorup) {
  margin-bottom: 16px;
}

.form_group select,
.form_group input {
  width: 100%;
  background-color: rgba(244, 244, 244, 1);
  border-radius: 9px;
  border: none;
  font-size: 16px;
  padding: 15px 14px;
  line-height: 1.1;
  letter-spacing: -.64px;
  box-shadow: none;
  outline: none;
  font-family: var(--poppins);
}

.form_group select {
  appearance: none;
  -webkit-appearance: none;
  background: url(https://christinevdev.wpengine.com/new-design/assets/images/down_arrow.svg) rgba(244, 244, 244, 1) no-repeat;
  background-position: center right 14px;
}


label:has(>input[type="checkbox"]),
.checkbox_gorup {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  margin: 0 24px 0 0;
}

.enquiry_form_wrapper label input[type="checkbox"],
.checkbox_gorup input {
  height: 18px;
  width: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

.checkbox_gorup label {
  margin: 0;
  font-size: 16px;
  letter-spacing: -.64px;
}

.submit_wrapper input[type="submit"] {
  width: 100%;
}

.why_christine_section {
  padding: 120px 0;
}

.why_christine_section .heading_block h2 {
  max-width: 100%;
}

.invest_in_your_future_section {
  padding: 64px 0;
}

.translate_wrap {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.skin_care_wrapper h2 {
  color: #FFFFFF;
}

.background-logo {
  background: linear-gradient(#E8F3ED, #FFFFFF) !important;
}

.virtual_tour_section h2 {
    padding-bottom: 48px !important;
}

.graduate_card_wrapper.desk_only .graduate_description {
    color: white;
}

.stripe .container {
  margin: 0 auto;
  padding-top: 0;
}




/*gravity form*/
.enquiry_form_section .gform_wrapper.gravity-theme form .gfield,
.enquiry_form_section .gform_wrapper.gform-theme form .gfield {
    padding: 0 !important;
}
.enquiry_form_section .gform_wrapper.gravity-theme .ginput_container select,
.enquiry_form_section .gform_wrapper.gform-theme .ginput_container select,
.enquiry_form_section .gform_wrapper.gravity-theme form .gfield input,
.enquiry_form_section .gform_wrapper.gform-theme form .gfield input {
    background-color: #F4F4F4;
    border-radius: 9px;
    border-color: #F4F4F4;
    margin-bottom: 24px !important;
    height: 48px;
    padding: 14px 15px; 
    line-height: 1;
}
.enquiry_form_section .gform-theme--framework .gfield--type-choice .gfield_checkbox,
.enquiry_form_section .gform-theme--framework .gfield--type-choice .gfield_radio {
    display: flex;
    flex-direction: row;
    gap: 32px;
}
.enquiry_form_section .gform_wrapper.gform-theme form .gfield_checkbox input {
    border-radius: 0px;
    border-color: #046748 !important;
    background-color:#Fff;
    height: 18px;
    width: 18px;
}
.enquiry_form_section .gform_wrapper.gravity-theme .gfield_checkbox input:before,
.enquiry_form_section .gform_wrapper.gform-theme .gfield_checkbox input:before {
    color: #fff;
    background-color: #046748;
}
.enquiry_form_section .gform_wrapper.gform-theme form .gfield_checkbox label {
    margin-left: 3px;
}
.enquiry_form_section .enquiry_form_wrapper h3 {
        margin: 0 0 32px;
}


body .enquiry_form_section .gform_footer input {margin: 0 !important;}


.enquiry_form_section .gform_wrapper.gravity-theme form .gform_footer input[type="submit"],
 .enquiry_form_section .gform_wrapper.gform-theme form .gform_footer input[type="submit"] {
    margin: 0 !important;
    padding: 12px !important;
    cursor: pointer !important;
    border-radius: 50px !important;
    font-size: 16px !important;
}
.enquiry_form_section .gfield_label,
.enquiry_form_section .gform_wrapper.gform-theme form .gfield label {
    color: #161A19 !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    font-family: 'Poppins' !important;
}
.enquiry_form_section .gform-theme--foundation .gform-grid-col { 
    padding: 0 10px;
}
.enquiry_form_section
.gfield_label.gform-field-label.gfield_label_before_complex {
    font-weight: 400 !important;
    color: black !important;
    font-size: 14px !important;
    font-family: 'Poppins' !important;
}

.enquiry_form_section
.gfield_checkbox label {
    font-size: 16px !important;
}



