/* Fonts */
* {
  box-sizing: border-box;
}
:root {
  --header-height: 104px;
  --red: #AA0522;
  --purple: #68246D;
}
@font-face {
  font-family: GothamMedium;
  src: url('../fonts/gotham/Gotham-Medium.otf');
  font-style: normal;
}
@font-face {
  font-family: Gotham;
  src: url('../fonts/gotham/Gotham-Book.otf');
  font-style: normal;
}
@font-face {
  font-family: GothamBold;
  src: url('../fonts/gotham/Gotham-Bold.otf');
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  src: url('../fonts/opensans/OpenSans-VariableFont_wdth,wght.ttf');
  font-style: normal;
}
@font-face {
  font-family: OpenSansItalic;
  src: url('../fonts/opensans/OpenSans-Italic-VariableFont_wdth,wght.ttf');
  font-style: italic;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: OpenSans;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 26px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smooth: never;
}
.right {
	text-align: inherit !important;
}
p {
  margin-top: 0;
  font-size: 18px;
  line-height: 24px;
}
img {
  width: 100%;
  height: auto;
}
header.fixed-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 9999;
  transition: all .4s ease;
  background: transparent;
  transform: translateY(0);
}
header .logo-container img {
  height: 64px;
  width: auto;
}
.flex-row {
	display: flex;
	flex-direction: row;
}
.fcol {
	display: flex;
	flex-direction: column;
}
.flex-row.vertical-align {
	align-items: center;
}
.jcsb {
  justify-content: space-between;
}
.mobile-menu-toggle {
	display: none;
}
.mobile-menu-toggle {
  display: none;
}
.mobile-menu-toggle svg {
  width: 80px;
  position: relative;
  z-index: 5;
  top: 1.5px;
	left: 18px;
}
.mobile-menu-toggle input {
  opacity: 0;
  cursor: pointer;
}
.mobile-menu-toggle .menu .line--1,
.mobile-menu-toggle .menu .line--3 {
    --total-length: 126.64183044433594;
}
.mobile-menu-toggle .menu .line--2 {
    --total-length: 70;
}
.home .small-card {
	padding: 32px 16px;
}
.free-text-content ul li {
	font-size: 18px;
	line-height: 24px;
}
.fifty-fifty .btn-container {
	margin-top: 32px;
}
.gallery-swiper {
	height: 100%;
}
.mobile-menu-toggle path {
    fill: none;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-dasharray: var(--length) var(--total-length);
    stroke-dashoffset: var(--offset);
    -webkit-transition: all .8s cubic-bezier(.645,.045,.355,1);
    transition: all .8s cubic-bezier(.645,.045,.355,1);
}
.mobile-menu-toggle circle {
    fill: hsla(0,0%,100%,.2);
    opacity: 0;
}
.mobile-menu-toggle .menu {
  --length: 24;
  --offset: -38;
}
.footer-body p {
	color: #64696C;
    font-size: 16px;
    line-height: 20px;
}
.mobile-menu-toggle .menu input:checked+svg .line--1,
.mobile-menu-toggle .menu input:checked+svg .line--3 {
  --offset: -94.1149185097;
}
.mobile-menu-toggle .cross input:checked+svg .line--1,
.mobile-menu-toggle .cross input:checked+svg .line--3 {
  --length: 22.627416998;
}
.mobile-menu-toggle .menu input:checked+svg .line--2 {
  --offset: -50;
}
.mobile-menu-toggle .cross input:checked+svg .line--2 {
  --length: 0;
}
header .menu-main-menu-container ul {
	list-style: none;
	padding: 0;
	margin: 0;
  display: flex;
  flex-direction: row;
}
header {
  padding: 24px 40px 16px;
}
header .menu-main-menu-container ul li {
	margin: 0 14px; 
}
header .menu-main-menu-container ul li:last-of-type {
  margin-right: 0;
}
header .menu-main-menu-container ul li a {
  font-size: 14px;
  line-height: 17px;
  font-family: OpenSans;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
	padding: 16px 16px;
  display: block;
}
header .menu-main-menu-container ul li.hdr-btn a {
  padding: 14px 16px;
  padding-right: 38px;
  border: 2px solid #ffffff;
  position: relative;
}
header .menu-main-menu-container ul li.hdr-btn a::after {
  background-image: url('/wp-content/uploads/2023/11/arrow-right-large.png');
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  width: 11px;
  height: 12px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
header .menu-main-menu-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.container {
  max-width: 1178px;
  padding: 0 40px;
  margin: 0 auto;
}
.sidebar-page-wrap .container,
.container.no-mx {
  max-width: none;
}
.sidebar-page-wrap .container {
  padding: 0 32px;
}
.sidebar-page-wrap .main-content {
  background: #F7F7F7;
}
section {
  position: relative;
}
section.form-section {
	margin: 80px 0;
}
.form-section .body {
	margin-bottom: 24px;
}
.hero-section .bg-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
img.ofc {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-section .bg-container img {
  display: block;
  position: relative;
  z-index: 1;
}
.hero-section .bg-container .overlay-container {
  background: linear-gradient(89.89deg, rgba(0, 0, 0, 0.51) 1.24%, rgba(0, 0, 0, 0) 55.86%),
linear-gradient(180deg, rgba(0, 0, 0, 0.45) 9.54%, rgba(0, 0, 0, 0) 100%),
linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.home .hero-section {
  min-height: 635px;
}
.hero-section {
  min-height: 534px;
  justify-content: center;
}
.hero-section .hero-inner {
  position: relative;
  z-index: 5;
}
.home .hero-section .hero-content {
  max-width: 748px;
  margin-right: auto;
	padding: 24px 0;
}
.hero-section .body p {
  font-size: 18px;
  line-height: 30px;
}
h1.white,
h2.white,
h3.white,
h4.white,
h5.white,
h6.white,
p.white,
.body.white p {
  color: #ffffff;
}
h1 {
  font-family: OpenSans;
  color: #ffffff;
  font-size: 68px;
  font-style: normal;
  line-height: 76px;
  font-weight: 400;
  margin: 0 0 24px;
}
h2 {
  font-family: OpenSans;
  font-size: 39px;
  font-weight: 400;
  line-height: 40px;
  color: #000000;
  margin: 0 0 24px;
}
h3 {
  font-family: OpenSans;
  font-size: 39px;
  font-weight: 700;
  line-height: 40px;
  color: #000000;
  margin: 0 0 24px;
}
h4 {
  font-family: OpenSans;
  font-size: 31px;
  font-weight: 700;
  line-height: 37px;
  color: #000000;
  margin: 0 0 24px;
}
.hero-section h1 strong {
  font-style: normal;
  font-family: OpenSans;
  font-weight: 700;
}
.hero-section {
  padding-top: var(--header-height);
}
.home .hero-section h1 {
  padding-bottom: 48px;
  border-bottom: 2px solid #ffffff;
}
.home .hero-section h1 {
  margin: 0 0 48px;
}
.hero-section .container.no-mx {
  max-width: 1440px;
}
.hero-section .btn-container {
  margin-top: 48px;
}
input.btn-fill-red,
input.btn-border-red,
a.btn {
  font-family: OpenSans;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  display: inline-block;
  text-decoration: none;
}
input.btn-border-red {
	background: transparent !important;
}
body.modal-open {
	height: 100vh;
	max-height: 100vh;
	overflow: hidden;
}
.submit-wrap {
  position: relative;
}
.submit-wrap br {
  display: none;
}
.submit-wrap::after {
  content: '';
  background: url('../assets/white-arrow.png');
  width: 16px;
  height: 16px;
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
.submit-wrap.white::after {
  background: url('../assets/red-arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
}
a.btn-border-white {
  padding: 18px 75px 18px 25px;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 0px 0px 100px 0px;
  position: relative;
}
input.btn-border-red,
a.btn-border-red {
  padding: 18px 75px 18px 25px;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 0px 0px 100px 0px;
  position: relative;
}
a.btn-border-black {
  padding: 18px 75px 18px 25px;
  color: #262623;
  border: 2px solid #262623;
  border-radius: 0px 0px 100px 0px;
  position: relative;
}
a.btn-border-purple {
  padding: 18px 75px 18px 25px;
  color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 0px 0px 100px 0px;
  position: relative;
}
.form-section a {
	color: var(--purple);
}
a.btn-fill-purple {
  padding: 18px 75px 18px 25px;
  color: #ffffff;
  background-color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 0px 0px 100px 0px;
  position: relative;
}
input.btn-fill-red,
a.btn-fill-red {
  padding: 18px 75px 18px 25px;
  color: #ffffff;
  background-color: var(--red);
  border: 2px solid var(--red);
  border-radius: 0px 0px 100px 0px;
  position: relative;
}
a.btn-fill-white {
  padding: 18px 75px 18px 25px;
  color: #262623;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 0px 0px 100px 0px;
  position: relative;
}
a.btn-fill-black {
  padding: 18px 75px 18px 25px;
  color: #ffffff;
  background-color: #262623;
  border: 2px solid #262623;
  border-radius: 0px 0px 100px 0px;
  position: relative;
}
a.btn-plain-red {
  padding: 18px 75px 18px 0;
  color: var(--red);
  border: 2px solid transparent;
  position: relative;
}
a.btn-plain-purple {
  padding: 18px 75px 18px 0;
  color: var(--purple);
  border: 2px solid transparent;
  position: relative;
}
a.btn-plain-white {
  padding: 18px 75px 18px 0;
  color: #ffffff;
  border: 2px solid transparent;
  position: relative;
}
a.btn-plain-black {
  padding: 18px 75px 18px 0;
  color: #262623;
  border: 2px solid transparent;
  position: relative;
}
a.btn svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 48px;
	transition: right .2s ease;
}
a.btn-border-red svg path,
a.btn-plain-red svg path {
  fill: var(--red);
}
a.btn-border-purple svg path,
a.btn-plain-purple svg path {
  fill: var(--purple);
}
a.btn-fill-white svg path,
a.btn-border-black svg path,
a.btn-plain-black svg path {
  fill: #262623;
}
a.btn.nbr {
  border-radius: 0;
}
a.btn.nbr svg {
  right: 32px;
}
.text-center {
  text-align: center;
}
a.load-more {
  margin-top: 16px;
}
a.load-more.hidden {
  display: none;
}
footer {
  padding: 64px 0 22px;
}
.footer-grid {
  display: grid;
  grid-column-gap: 32px;
  grid-template-columns: 200px 200px 200px 1fr;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-grid ul li a {
  text-decoration: none;
  color: #64696C;
  font-size: 16px;
  line-height: 16px;
}
.footer-grid ul li {
  margin-bottom: 16px;
}
.footer-grid p.footer-title {
  font-size: 16px;
  line-height: 16px;
  color: var(--red);
  font-family: OpenSans;
  font-weight: 600;
  position: relative;
  padding-top: 22px;
}
.footer-grid p.footer-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 99px;
  height: 6px;
  background: var(--red);
  margin-bottom: 16px;
}
.footer-top-row {
  margin-bottom: 56px;
}
.footer-cta {
  border-top: 8px solid var(--red);
}
.inner-section {
  position: relative;
}
.inner-section.white-bg::after,
.footer-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: var(--red);
  height: 48px;
  width: 96px;
  z-index: 10;
}
.inner-section.white-bg::before,
.footer-cta::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 0;
  background: var(--red);
  height: 48px;
  width: 48px;
  z-index: 10;
}
.inner-section.white-bg::before,
.inner-section.white-bg::after {
  background: #EBEBEB;
}
.fifty-fifty.style-right,
.fifty-fifty.style-right .right {
  position: unset;
}
.fifty-fifty.style-right .right .img-container .bg {
  display: none;
}
.fifty-fifty.style-right .right .img-container {
  right: 0;
  top: 0;
  width: 50%;
  left: auto;
}
.fifty-fifty.style-right .right .img-container img {
  border-radius: 0 0 0 1000px;
  max-height: 690px;
}
.footer-cta-row {
  padding: 128px 0;
}
.has-background-image .bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 100%;
}
.has-background-image .bg-container .overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  height: 100%;
  background: rgba(0,0,0,0.4);
}
.has-background-image .container {
  position: relative;
  z-index: 5;
}
.footer-cta-row .btn-container {
  margin-bottom: 12px;
}
.footer-cta-row > .left {
  max-width: 560px;
}
.footer-cta-row > .right {
  max-width: 304px;
}
.footer-cta-row .body {
  margin-bottom: 24px;
}
.footer-cta-row .icon-container img {
  width: 32px;
  min-width: 32px;
}
.footer-cta-row .icon-container {
  margin-right: 24px;
}
.footer-cta p {
  font-size: 16px;
  line-height: 24px;
}
.footer-cta a {
  text-decoration: none;
  color: #ffffff;
}
.footer-cta .phone p,
.footer-cta .address p {
  margin-bottom: 0;
}
.footer-cta .address {
  margin-bottom: 24px;
}
.footer-cta .phone a {
  display: block;
}
.sidebar-page-wrap {
  display: grid;
  grid-template-columns: 322px 1fr;
  grid-column-gap: 24px;
}
.sidebar-top,
.sidebar-bottom {
  background: #F7F7F7;
}
.sidebar-page-wrap {
  max-width: 1440px;
  padding: 40px 40px;
  margin: 0 auto;
}
.sidebar-title {
  margin: 0;
  font-family: OpenSans;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
}
.sidebar-top {
  padding: 16px;
  border-bottom: 1px solid #AFB4B6;
}
.sidebar-bottom {
  padding: 16px;
}
.sidebar-bottom ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-bottom ul li {
  margin-bottom: 16px;
}
.sidebar-bottom ul li:last-of-type {
  margin-bottom: 0;
}
.sidebar-bottom ul li a {
  font-size: 16px;
  line-height: 24px;
  color: #262623;
  text-decoration: none;
}
.course-details-section {
  padding: 32px 0;
  border-bottom: 1px solid #AFB4B6;
}
.course-details-row p {
  margin: 0;
  font-size: 18px;
  line-height: 32px;
}
.course-details-row p.title {
  font-family: OpenSans;
  font-weight: 700;
}
.course-details-row .list-item {
  margin: 10px 0;
  margin-right: 24px;
}
.course-details-row .btn-container {
  margin: 10px 0;
}
.sidebar-sticky {
  position: sticky;
  top: 20px;
  left: 0;
}
.fifty-fifty h2 {
  font-family: OpenSans;
  font-size: 62px;
  font-style: normal;
  line-height: 80px;
}
.fifty-fifty h2 strong {
  font-family: OpenSans;
  font-weight: 700;
  font-style: normal;
}
.large-cards-section h3,
.fifty-fifty h3 {
  font-family: OpenSans;
  font-size: 40px;
  font-style: normal;
  line-height: 48px;
}
.large-cards-section h3 strong,
.fifty-fifty h3 strong {
  font-family: OpenSans;
  font-weight: 700;
  font-style: normal;
}
.fifty-fifty.style-none .img-container .bg {
  display: none;
}
.fifty-fifty.style-none .right .img-container img {
  border-radius: 0;
}
.map-image.fifty-fifty .right .img-container img {
  object-fit: unset;
  width: 100%;
  height: auto;
  mix-blend-mode: darken;
}
.sidebar-page-wrap h2 {
  font-family: OpenSans;
  font-size: 31px;
  font-style: normal;
  line-height: 32px;
  position: relative;
}
input.btn-fill-red {
	line-height: 22px;
}
.sidebar-page-wrap h2 strong {
  font-family: OpenSans;
  font-weight: 700;
  font-style: normal;
}
.title.pre-border {
  position: relative;
  padding-top: 32px;
}
.title.pre-border::before {
  content: '';
  position: absolute;
  background: var(--red);
  width: 130px;
  height: 8px;
  top: 0;
  left: 0;
}
.red-bg .title.pre-border::before {
	background: #000000;
}
.fifty-fifty-gallery .btn-container a.btn {
	padding: 8px 75px 8px 0
}
.sidebar-page-wrap section:not(.course-details-section) {
  margin: 80px 0;
}
.inner-section.dark-bg {
  background: #262623;
}
.inner-section.red-bg {
  background: var(--red);
}
.inner-section.white-bg {
  background: #ffffff;
}
.inner-section.grey-bg {
  background: #EBEBEB;
}
.sidebar-page-wrap .inner-section.grey-bg {
  background: #F7F7F7;
	padding: 0;
	margin: 80px 0;
}
.inner-section.red-bg .quote-card *,
.inner-section.red-bg .leaders-wrap *,
.inner-section.red-bg .full-video-section *,
.inner-section.red-bg .free-text-section *,
.inner-section.red-bg .fifty-fifty *,
.inner-section.dark-bg .quote-card *,
.inner-section.dark-bg .leaders-wrap *,
.inner-section.dark-bg .full-video-section *,
.inner-section.dark-bg .free-text-section *,
.inner-section.dark-bg .fifty-fifty * {
  color: #ffffff;
}
.inner-section {
  padding: 104px 0;
}
.sidebar-page-wrap .inner-section {
  padding: 80px 0;
}
.sidebar-page-wrap .inner-section > section {
  padding: 0;
  margin: 80px 0;
}
.inner-section > section {
  margin: 120px 0;
}
.inner-section > section:first-of-type {
  margin-top: 0;
}
.inner-section > section:last-of-type {
  margin-bottom: 0;
}
.sidebar-page-wrap section.course-details-section {
  padding: 22px 0;
}
.sidebar-sticky .btn-container {
  margin-top: 24px;
}
.two-cols.media-pos-left {
  flex-direction: row-reverse;
}
.two-cols.media-pos-left .left {
  padding-left: 12px;
  padding-right: 0;
}
.two-cols.media-pos-left .right {
  padding-right: 38px;
  padding-left: 0;
}
.two-cols .col {
  width: 50%;
  max-width: 50%;
  min-width: 50%;
}
.fifty-fifty .left {
  padding-right: 38px;
}
.fifty-fifty .right {
  padding-left: 12px;
  position: relative;
}
.fifty-fifty .right .img-container {
  max-height: 100%;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.fifty-fifty .right .img-container img {
  border-radius: 0 0 220px 0;
  position: relative;
  z-index: 5;
}
.fifty-fifty .right .img-container .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -16px;
  right: -16px;
  background: #EBEBEB;
  border-radius: 0 0 220px 0;
  z-index: 1;
}
.free-text-content .btn-container {
  margin-top: 40px;
}
.small-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, calc(25% - 12px));
  grid-column-gap: 16px;
}
.small-card {
  background: #EBEBEB;
  padding: 16px;
}
.small-card .top-title {
  margin-bottom: 28px;
}
.small-card.img-card .top-title {
  margin-bottom: 16px;
}
.small-card p.large-text {
  font-size: 56px;
  font-weight: 400;
  line-height: 54px;
  color: var(--red);
  margin-bottom: 28px;
}
.small-card p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 19px;
}
.small-card p.bottom-text {
  font-family: OpenSans;
  font-weight: 700;
  margin-top: auto;
}
strong {
  font-family: OpenSans;
  font-weight: 700;
}
.cta-cards-grid {
  display: grid;
  grid-template-columns: repeat(3,calc(33.33% - 16px));
  grid-column-gap: 24px;
}
.cta-cards-grid > div.cta-card:nth-of-type(1) {
  background: var(--purple);
}
.cta-cards-grid > div.cta-card:nth-of-type(2) {
  background: #262623;
}
.cta-cards-grid > div.cta-card:nth-of-type(3) {
  background: var(--red);
}
.cta-cards-grid .cta-card {
  padding: 24px 24px 4px;
}
.cta-card .btn-container {
  margin-top: auto;
}
.cta-card .top-title p {
  font-family: OpenSans;
  font-size: 23px;
  font-weight: 700;
  line-height: 30px;
}
.cta-card .body p {
  font-size: 16px;
  line-height: 21px;
}
.leader-card {
  margin: 62px 0 0;
}
.leader-card img {
  border-radius: 0 0 100px 0;
}
.leader-card .left {
  width: 255px;
  min-width: 255px;
  margin-right: 24px;
}
.leader-card p.name {
  font-family: OpenSans;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 8px;
}
.leader-card p.role {
  font-size: 16px;
  line-height: 16px;
  margin: 0;
}
.leader-card .body p {
  font-size: 16px;
  line-height: 20px;
}
.leader-card .body {
  margin-top: 24px;
}
.sidebar-page-wrap h4 {
  font-size: 22px;
  font-style: normal;
  line-height: 32px;
  font-family: OpenSans;
	font-weight: 600;
  margin: 32px 0 24px;
}
.sidebar-page-wrap h4 strong {
  font-style: normal;
  font-family: OpenSans;
  font-weight: 700;
}
a.social-icon {
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  border-radius: 50%;
  border: 1px solid var(--red);
	transition: all .2s ease;
}
a.social-icon svg path {
	transition: all .2s ease;
}
footer a.social-icon {
	border: 1px solid var(--purple);
}
a.social-icon:hover {
	background: var(--purple);
}
a.btn:hover svg {
	right: 40px;
}
.footer-col-menu a:hover {
	text-decoration: underline;
}
.sidebar a.social-icon:hover {
	background: var(--red);
}
a.social-icon:hover svg path {
	fill: #ffffff;
}
.share-wrap {
  margin: 24px 0 0;
}
.share-wrap p {
  font-family: OpenSans;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  margin: 0 0 20px;
}
.iframe-wrap iframe {
  width: 100%;
  height: 632px
}
.full-video-section .title {
  margin-bottom: 32px;
}
.fifty-fifty .title p {
  font-size: 25px;
  line-height: 30px;
}
.fifty-fifty .title p strong {
  font-family: OpenSans;
	font-weight: 600;
}
.quote-card .left {
  width: 255px;
  min-width: 255px;
  margin-right: 60px;
}
.quote-card p.quote {
  font-family: OpenSans;
  font-size: 25px;
	font-weight: 600;
  font-style: normal;
  line-height: 31px;
  margin: 24px 0;
}
.quote-card .quote-wrap {
  margin-bottom: 24px;
}
.quote-card .bottom-quotation {
  margin-left: auto;
  margin-right: 0;
  display: block;
}
.quote-card p.role {
  font-size: 16px;
  line-height: 16px;
  margin: 0;
}
.quote-card p.name {
  margin-bottom: 8px;
  font-family: OpenSans;
	font-weight: 700;
  font-size: 20px;
  line-height: 20px;
}
.large-cards-grid {
  display: grid;
  grid-template-columns: repeat(2,calc(50% - 12px));
  grid-column-gap: 24px;
  margin-top: 40px;
}
.large-card {
  background-size: cover;
  background-position: center;
  min-height: 553px;
  position: relative;
  border-radius: 0 0 220px 0;
  overflow: hidden;
}
.large-card::after {
  content: '';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.large-card .card-inner {
  height: 100%;
  padding: 32px 24px 12px;
  position: relative;
  z-index: 5;
}
.large-card .card-content {
  margin-top: auto;
}
.large-card .tag,
.large-card .tag p {
  display: inline-block;
}
.large-card .tag {
  background: var(--red);
  border-radius: 50px;
  margin-left: auto;
  margin-right: 0;
}
.large-card .card-tag-wrap {
  text-align: right;
}
.large-card .tag p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 14px;
  padding: 8px 24px;
}
.large-card p.larger-text {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
.large-card p.smaller-text {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 24px;
}
.large-card h4 {
  margin: 0 0 16px;
  font-size: 31px;
  line-height: 37px;
}
.large-card p.pre-title {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}
.large-cards-section {
  padding: 80px 0 60px;
  background: #EBEBEB;
}
.large-cards-section .container > .btn-container {
  margin-top: 20px;
}
.large-cards-section .container {
  position: relative;
  z-index: 5;
}
.large-cards-section::before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  background: #ffffff;
  width: 214px;
  height: 107px;
  z-index: 1;
}
.large-cards-section::after {
  position: absolute;
  content: '';
  top: 107px;
  right: 0;
  background: #ffffff;
  width: 107px;
  height: 107px;
  z-index: 1;
}
.large-cards-section .bg-decoration::after {
  position: absolute;
  content: '';
  top: 214px;
  right: 107px;
  background: #F7F7F7;
  width: 107px;
  height: 107px;
  z-index: 1;
}
.large-cards-section .bg-decoration::before {
  position: absolute;
  content: '';
  top: 107px;
  right: 214px;
  background: #F7F7F7;
  width: 107px;
  height: 107px;
  z-index: 1;
}
.large-cards-section .body {
  max-width: 898px;
  margin-right: auto;
  margin-left: 0;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, calc(33.33% - 10.67px));
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-bottom: 16px;
}
.posts-grid .post-card {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: background .2s ease;
  border: 1px solid rgba(248, 248, 248, 0.15);
}
.posts-grid .post-card h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: #ffffff;
  margin-bottom: 5px;
}
.posts-grid .post-card .meta-row p {
  color: #B4B4B4;
  font-size: 12px;
  line-height: 15px;
  margin: 0;
}
.posts-grid .post-card .meta-row {
  align-items: center;
  flex-wrap: wrap;
}
.posts-grid .post-card .meta-row .separator {
  height: 3px;
  width: 3px;
  margin: 0 8px;
  background-color: #B4B4B4;
  border-radius: 50%;
}
.posts-grid .post-card img {
  height: 110px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.posts-grid .post-card a {
  text-decoration: none;
  height: 100%;
}
.posts-grid .post-card .bottom {
  padding: 16px;
  height: calc(100% - 110px);
}
.posts-grid .post-card .bottom .bottom-bottom {
  margin-top: auto;
}
.posts-grid .post-card p.tag {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.3);
  color: #EEEDED;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  border-radius: 4px;
  margin: 10px 0 0;
  font-family: OpenSans;
}
.posts-grid .post-card:hover {
  background: var(--red);
}
.gallery-grid {
  display: grid;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: repeat(24,calc(4.16% - 15.33px));
}
.gallery-grid > div:nth-of-type(4n),
.gallery-grid > div:nth-of-type(4n + 1) {
  grid-column: span 11;
}
.gallery-grid > div:nth-of-type(4n + 3),
.gallery-grid > div:nth-of-type(4n + 2) {
  grid-column: span 13;
}
.accordion-content {
  height: 0;
  transition: all .5s ease;
  overflow: hidden;
}
.accordion-item .accordion-title {
  padding: 16px 48px 16px 16px;
}
.accordion-item {
  background: #ffffff;
  border-radius: 0 0 120px 0;
  margin: 0 0 8px;
}
.accordion-item .accordion-title svg {
  transition: all .3s ease;
  min-width: 16px;
}
.accordion-item.active .accordion-title svg {
  transform: rotate(-180deg);
}
.accordion-item h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  margin: 0;
  margin-right: 32px;
  font-family: OpenSans;
}
.accordion-item .accordion-inner {
  padding: 0 109px 14px 16px;
}
.accordion-item .accordion-inner .body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.accordion-title {
  cursor: pointer;
}
.faq-block h4 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  font-style: normal;
  font-family: OpenSans;
  font-weight: 300;
}
.faq-block {
  margin: 24px 0;
}
section.faqs-section {
  padding: 32px 0;
}
.fifty-fifty-with-cards .small-cards-grid {
  grid-template-columns: repeat(2, calc(50% - 12px));
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
.fifty-fifty-with-cards .left .body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}
.main-content > section:first-of-type {
  padding-top: 32px;
	margin-top: 0;
}
.sidebar-page-wrap .inner-section#course-content,
.sidebar-page-wrap .inner-section#study-and-work,
.sidebar-page-wrap .inner-section#find-out-more {
	padding-top: 80px;
}
#course-content::after,
#study-and-work::after,
#find-out-more::after {
	content: '';
	width: calc(100% - 64px);
	height: 1px;
	background: #262623;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
#accommodation p,
.fifty-fifty.map-image p {
	font-size: 16px;
	line-height: 21px;
}
.course-dates .table-title {
  background: var(--red);
  padding: 8px;
  border-bottom: 1px solid #000000;
}
.course-dates .table-title p {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  font-family: OpenSans;
  color: #ffffff;
  margin: 0;
}
.course-dates .left,
.course-dates .right {
  width: 50%;
  max-width: 50%;
  min-width: 50%;
  border: 1px solid #000000;
}
.course-dates .right {
  border-left: 0;
}
.course-dates ul {
  margin: 0;
  padding-left: 22px;
}
.course-dates ul li {
  margin-bottom: 10px;
}
.course-dates .table-text {
  padding: 16px;
}
.course-dates {
  margin-bottom: 80px;
  margin-top: 32px;
}
.fifty-fifty-gallery {
  padding: 128px 0;
  background-size: cover;
}
.fifty-fifty-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}
.fifty-fifty-gallery .container {
  position: relative;
  z-index: 5;
}
.fifty-fifty-gallery h2 {
  font-size: 39px;
  font-style: normal;
  line-height: 47px;
  color: #ffffff;
}
.fifty-fifty-gallery p {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
}
.gallery-swiper {
  overflow: hidden;
}
.gallery-swiper .slide-bottom {
  background: var(--red);
  padding: 16px 100px 16px 16px;
	position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.gallery-swiper .slide-bottom p {
  color: #ffffff;
  font-family: OpenSans;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 0;
}
.gallery-swiper {
  position: relative;
}
.gallery-swiper .nav-row {
  position: absolute;
  bottom: 50px;
  right: 0;
  z-index: 5;
}
.gallery-swiper .swiper-nav {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  background: var(--red);
  cursor: pointer;
  transition: opacity .2s ease;
}
.gallery-swiper .swiper-nav.swiper-right {
  margin-left: 1px;
}
.gallery-swiper .swiper-nav.swiper-button-disabled {
  opacity: 0.5;
}
.gallery-swiper .slide-img img,
.gallery-swiper .slide-img {
  min-height: 350px;
	height: 100%;
}
.fifty-fifty-gallery {
  padding: 128px 0;
}
.fifty-fifty-gallery .flex-row .left {
  width: 45%;
  max-width: 45%;
  min-width: 45%;
  padding-left: 20px;
}
.fifty-fifty-gallery .flex-row .right {
  width: 55%;
  max-width: 55%;
  min-width: 55%;
  padding-right: 20px;
}
#mailing-list-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%,-50%);
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
  padding: 24px;
}
.modal-open #mailing-list-modal {
  transform: translate(-50%,-50%);
  visibility: visible;
  opacity: 1;
}
#mailing-list-modal .modal-inner {
  padding: 40px 32px;
  background: #ffffff;
  max-width: 933px;
  max-height: 90vh;
}
#mailing-list-modal h2 {
  font-size: 26px;
  line-height: 34px;
	font-weight: 700;
}
#mailing-list-modal .body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
#mailing-list-modal .wpcf7 label {
  font-family: OpenSans;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  width: 100%;
}
#mailing-list-modal .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
#mailing-list-modal .wpcf7 input[type="text"],
#mailing-list-modal .wpcf7 input[type="email"] {
  width: 100%;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 32px;
  font-family: OpenSans;
  color: #212529;
  outline: none;
  border: 1px solid #000000;
  border-radius: none;
  margin-top: 16px;
}
#mailing-list-modal .wpcf7 label span.required {
  color: var(--red);
}
#mailing-list-modal .wpcf7 select {
  width: 100%;
  appearance: none;
  color: #212529;
  outline: none;
  border: 1px solid #000000;
  font-size: 16px;
  line-height: 32px;
  font-family: OpenSans;
  padding: 8px 16px;
}
#mailing-list-modal .wpcf7 .select-wrap {
	display: block;
	margin-top: 16px;
	position: relative;
}
#mailing-list-modal .wpcf7 .select-wrap::after {
	content: '';
	background-image: url('/wp-content/uploads/2023/11/down-arrow.png');
	background-size: contain;
	width: 28px;
	height: 28px;
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
}
#mailing-list-modal .wpcf7 .wpcf7-acceptance {
  margin-top: 16px;
  display: block;
}
#mailing-list-modal .wpcf7 .wpcf7-acceptance label {
  font-size: 16px;
  line-height: 24px;
  font-family: OpenSans;
}
#mailing-list-modal .wpcf7 .wpcf7-acceptance label {
	font-weight: 400;
}
#mailing-list-modal .wpcf7 .flex-row > p {
  width: 50%;
  max-width: 50%;
  min-width: 50%;
}
#mailing-list-modal .wpcf7 .flex-row > p:first-of-type {
  padding-right: 8px;
}
#mailing-list-modal .wpcf7 .flex-row > p:last-of-type {
  padding-left: 8px;
}
#mailing-list-modal .wpcf7 .submit-wrap {
  text-align: right;
}
#mailing-list-modal .modal-scroll-wrap {
  overflow-y: scroll;
  max-height: 100%;
  height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#mailing-list-modal .modal-inner {
  position: relative;
}
#mailing-list-modal #modal-close {
  position: absolute;
  top: 20px;
  right: 12px;
  z-index: 100;
  padding: 20px;
  background: #ffffff;
  cursor: pointer;
}
#mailing-list-modal #modal-close svg {
  display: block;
}
#mailing-list-modal .modal-scroll-wrap::-webkit-scrollbar {
  display: none;
}
.course-details-row {
  flex-wrap: wrap;
}
.footer-bottom-row {
  align-items: center;
}
.footer-top-row {
  align-items: center;
}
.footer-top-row .left .flex-row > .btn-container:first-of-type {
  margin-right: 16px;
}
.footer-logo img {
  max-width: 150px;
  display:block;
}
.footer-logo {
  margin-bottom: 15px;
}
p.footer-address {
  font-size: 14px;
  line-height: 18px;
  color: #3C3C3B;
  margin: 0;
}
ul.footer-bottom-menu li a,
p.copyright {
  font-size: 14px;
  line-height: 14px;
  color: #3C3C3B;
  margin: 0;
}
ul.footer-bottom-menu {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
ul.footer-bottom-menu li {
  margin-left: 24px;
  line-height: 14px;
}
.footer-above-bottom {
  margin: 40px 0;
}
.wpcf7-spinner {
  display: none !important;
}
.small-sign-up {
  margin-top: 24px;
}
.small-sign-up input[type="email"] {
  padding: 19px 16px;
  font-family: OpenSans;
  font-size: 16px;
  line-height: 16px;
  outline: 0;
  border: 1px solid #000000;
  width: 100%;
  border-right: none;
}
.fifty-fifty-with-cards .small-card {
  padding-top: 34px;
  padding-bottom: 34px;
}
.fifty-fifty-with-cards .small-card img {
  margin-top: 12px;
}
.fifty-fifty-with-cards .small-card p.large-text {
  font-family: OpenSans;
	font-weight: 700;
  margin-top: 12px;
}
.fifty-fifty-with-cards .small-cards-grid > div.small-card:nth-of-type(4),
.fifty-fifty-with-cards .small-cards-grid > div.small-card:nth-of-type(1) {
  background: var(--red);
}
.fifty-fifty-with-cards .small-cards-grid > div.small-card:nth-of-type(3),
.fifty-fifty-with-cards .small-cards-grid > div.small-card:nth-of-type(2) {
  background: #ffffff;
}
.fifty-fifty-with-cards .small-cards-grid > div.small-card:nth-of-type(4) *,
.fifty-fifty-with-cards .small-cards-grid > div.small-card:nth-of-type(1) * {
  color: #ffffff;
}
.fifty-fifty-with-cards .small-cards-grid > div.small-card:nth-of-type(4) {
  border-radius: 0 0 110px 0;
}
.load-more-posts a.btn:hover svg {
	right: 32px;
}
@media all and (max-width:1200px) {
  .posts-grid {
    grid-template-columns: repeat(2,calc(50% -  8px));

  }
  .footer-grid {
    grid-template-columns: repeat(3,calc(33% - 21.33px));
    grid-row-gap: 24px;
  }
  .footer-grid .footer-col-last {
    grid-column: span 3;
  }
  header .menu-main-menu-container ul li {
    margin: 0 7px;
  }
  header .menu-main-menu-container ul li a {
    padding: 16px 8px;
  }
  .footer-top-row.flex-row {
    align-items: flex-start;
  }
  .footer-top-row .right {
    margin-top: 24px;
  }
  .footer-top-row.flex-row,
  .sidebar-page-wrap .fifty-fifty .two-cols {
    flex-direction: column;
  }
  .sidebar-page-wrap .fifty-fifty .two-cols .left,
  .sidebar-page-wrap .fifty-fifty .two-cols .right {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .sidebar-page-wrap .fifty-fifty .img-container img,
  .sidebar-page-wrap .fifty-fifty .img-container {
    position: relative;
    max-height: 500px;
  }
	.sidebar-page-wrap .fifty-fifty.map-image .img-container img,
	.sidebar-page-wrap .fifty-fifty.map-image .img-container {
		max-height: none;
	}
  .sidebar-page-wrap .small-cards-grid {
    grid-template-columns: repeat(2, calc(50% - 8px));
    grid-row-gap: 16px;
  }
  .sidebar-page-wrap .cta-cards-grid {
    grid-template-columns: 100%;
    grid-row-gap: 16px;
    max-width: 320px;
  }
  .fifty-fifty-with-cards .flex-row .right {
    padding-top: 40px;
  }
}
@media all and (max-width: 997px) {
	#course-content::after,
	#study-and-work::after,
	#find-out-more::after {
		width: calc(100% - 48px);
	}
  .fifty-fifty.style-right .right .img-container {
    width: 100%;
  }
  .fifty-fifty.style-right .right {
    margin-top: 40px;
  }
  .footer-top-row a.btn-plain-purple {
    padding-right: 27px;
  }
  .footer-top-row a.btn-plain-purple svg {
    right: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .menu-main-menu-container {
    position: absolute;
    padding-top: var(--header-height);
    top: 0;
    left: 0;
    width: 100%;
    background: var(--purple);
    z-index: 10;
    transform: translateY(-100%);
    transition: transform .6s ease;
  }
  header .menu-main-menu-container ul li:last-of-type,
  header .menu-main-menu-container ul li {
    margin: 2px 24px;
  }
  header .menu-main-menu-container ul {
    padding-bottom: 20px;
  }
  header .menu-main-menu-container ul li.hdr-btn a {
    display: inline-block;
  }
  .mobile-menu-open header .menu-main-menu-container {
    transform: translateY(0);
  }
  header .mobile-menu-toggle,
  header .logo-container {
    position: relative;
    z-index: 20;
  }
  header .menu-main-menu-container ul {
    flex-direction: column;
  }
  .sidebar-page-wrap {
    padding: 40px 24px;
    grid-template-columns: 265px 1fr;
  }
  .flex-row.tc {
    flex-direction: column;
  }
  .fifty-fifty .two-cols .right,
  .fifty-fifty .two-cols .left,
  .flex-row.tc .right,
  .flex-row.tc .left {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .fifty-fifty .right .img-container {
    position: relative;
  }
  .footer-bottom-row {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  p.copyright {
    margin-bottom: 12px;
  }
  ul.footer-bottom-menu li {
    margin-left: 0;
    margin-right: 24px;
  }
  .leader-card img {
    max-width: 320px;
    margin-right: auto;
    margin-left: 0;
  }
  .leader-card .left {
    margin-bottom: 24px;
  }
  .footer-cta-row {
    padding: 80px 0;
  }
  .footer-cta-row .right {
    margin-top: 40px;
  }
  .inner-section.white-bg::after,
  .footer-cta::after {
    height: 32px;
    width: 64px;
  }
  .inner-section.white-bg::before,
  .footer-cta::before {
    height: 32px;
    width: 32px;
    top: 32px;
  }
  .sidebar-page-wrap .container,
  .container {
    padding: 0 24px;
  }
  header {
    padding: 24px 24px 16px;
  }
  .fifty-fifty .two-cols {
    flex-direction: column;
  }
  .large-cards-grid {
    grid-template-columns: 100%;
    grid-row-gap: 24px;
    max-width: 500px;
    margin-right: auto;
    margin-left: 0;
  }
}
@media all and (max-width: 768px) {
  .sidebar-page-wrap {
    grid-template-columns: 100%;
    grid-row-gap: 40px;
  }
  .sidebar-page-wrap .sidebar {
    max-width: 348px;
    padding: 40px 24px 0;
  }
  .quote-card,
  .flex-row.mc {
    flex-direction: column;
  }
  .quote-card .left,
  .quote-card .right,
  .flex-row.mc .right,
  .flex-row.mc .left {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .quote-card .left {
    margin-bottom: 24px;
  }
  .quote-card .left img {
    max-width: 340px;
  }
  .footer-top-row .left .flex-row > .btn-container:first-of-type {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .footer-grid {
    grid-template-columns: 100%;
  }
  .footer-grid .footer-col-last {
    grid-column: span 1;
  }
  ul.footer-bottom-menu li {
    margin: 10px 0;
    margin-right: 24px;
  }
  h1 {
    font-size: 42px;
    line-height: 56px;
  }
  .sidebar-page-wrap {
    padding: 0;
  }
  .small-cards-grid {
    grid-template-columns: repeat(2,calc(50% - 8px));
    grid-row-gap: 16px;
  }
  #mailing-list-modal .wpcf7 .flex-row {
    flex-direction: column;
  }
  #mailing-list-modal .wpcf7 .flex-row p {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
	.home .hero-section h1 {
		padding-bottom: 24px;
		margin-bottom: 24px;
	}
	.fifty-fifty h2 {
		font-size: 36px;
		line-height: 42px;
	}
	.large-card {
		border-radius: 0 0 140px 0;
	}
}
@media all and (max-width: 560px) {
  .small-cards-grid,
  .sidebar-page-wrap .small-cards-grid {
    grid-template-columns: 100%;
    max-width: 320px;
    margin-right: auto;
    margin-left: 0;
  }
  .gallery-grid {
    grid-template-columns: 100%;
  }
  .gallery-grid > div.gallery-img {
    grid-column: span 1 !important;
  }
  .course-details-row,
  .flex-row.vsc {
    flex-direction: column;
  }
  .flex-row.vsc .right,
  .flex-row.vsc .left {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .course-dates .right {
    border-left: 1px solid #000000;
    border-top: none;
  }
  .posts-grid {
    grid-template-columns: 100%;
    max-width: 330px;
    margin-right: auto;
    margin-left: 0;
  }
  footer .wpcf7 .flex-row {
    flex-direction: column;
  }
  footer .wpcf7 .flex-row p {
    margin: 0;
  }
  .small-sign-up input[type="email"] {
    border-right: 1px solid #000000;
  }
}