:root {
	--aiu-blue-dark: #11416b;
	--aiu-blue-light: #00a6ce;
	--aiu-orange: #e64f25;
	--aiu-gray: #6D6E71;
	--font-family: acumin-pro-condensed, sans-serif;
	--font-size-body-x-small: 0.75rem;
	--font-size-body-small: 0.875rem;
	--font-size-body: 1rem;
	--font-size-body-large: 1.125rem;
	--font-size-body-x-large: 1.25rem;
	--font-size-title-1: clamp(3rem, 1.333vw + 2.4rem, 3.5rem);
	--font-size-title-2: clamp(2rem, 1.333vw + 1.4rem, 2.5rem);
	--font-size-title-3: clamp(1.75rem, 0.667vw + 1.45rem, 2rem);
	--font-size-title-4: clamp(1.5rem, 0.667vw + 1.2rem, 1.75rem);
	--font-size-title-5: clamp(1.375rem, 0.333vw + 1.225rem, 1.5rem);
	--font-size-title-6: clamp(1.125rem, 0.333vw + 0.975rem, 1.25rem);
	
	--line-height-title-1: clamp(3.25rem, 1.333vw + 2.65rem, 3.75rem);
	--line-height-title-2: clamp(2.25rem, 1.333vw + 1.65rem, 2.75rem);
	--line-height-title-3: clamp(2rem, 0.667vw + 1.7rem, 2.25rem);
	--line-height-title-4: clamp(1.75rem, 0.667vw + 1.45rem, 2rem);
	--line-height-title-5: clamp(1.5rem, 0.333vw + 1.225rem, 1.75rem);
	
	--screen-width-wide: 1320px;
	--featured-image-height: 480px;
	--featured-image-height-laptop: 360px;
	--featured-image-height-mobile: 240px;
	--featured-image-home-height: 540px;
	
	--select-campus-menu-width: 280px;
	--select-campus-menu-width-laptop: 240px;
	--select-campus-menu-width-mobile: 180px;
	
	--side-offset: calc((100vw - var(--screen-width-wide)) / 2);
}

.aiu-blue-dark-color {color: var(--aiu-blue-dark)}
.aiu-blue-light-color {color: var(--aiu-blue-light)}
.aiu-orange-color {color: var(--aiu-orange)}
.aiu-gray-color {color: var(--aiu-gray)}

.aiu-blue-dark-bkg {background-color: var(--aiu-blue-dark)}
.aiu-blue-light-bkg {background-color: var(--aiu-blue-light)}
.aiu-orange-bkg {background-color: var(--aiu-orange)}
.aiu-gray-bkg {background-color: var(--aiu-gray)}

.font-size-body-x-small {font-size: var(--font-size-body-x-small)}
.font-size-body-small {font-size: var(--font-size-body-small)}
.font-size-body-large {font-size: var(--font-size-body-large)}
.font-size-body-x-large {font-size: var(--font-size-body-x-large)}
.font-size-title-1 {font-size: var(--font-size-title-1); line-height: var(--line-height-title-1)}
.font-size-title-2 {font-size: var(--font-size-title-2); line-height: var(--line-height-title-2)}
.font-size-title-3 {font-size: var(--font-size-title-3); line-height: var(--line-height-title-3)}
.font-size-title-4 {font-size: var(--font-size-title-4); line-height: var(--line-height-title-4)}
.font-size-title-5 {font-size: var(--font-size-title-5)}
.font-size-title-6 {font-size: var(--font-size-title-6)}

.line-height-title-1 {line-height: var(--line-height-title-1)}
.line-height-title-2 {line-height: var(--line-height-title-2)}
.line-height-title-3 {line-height: var(--line-height-title-3)}
.line-height-title-4 {line-height: var(--line-height-title-4)}
.line-height-title-5 {line-height: var(--line-height-title-5)}


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

html, body {
color: #231F20;
margin: 0 auto;
padding: 0;
font-family: var(--font-family);
font-size: 20px;
font-weight: 300;
font-style: normal;
line-height: 1.25;
}

.campus-text {text-transform: capitalize;}

#warningMessage { color: red; font-weight: bold; display: none; }

strong {font-weight: 600}

a {
	color: var(--aiu-blue-light);
	transition: all 0.3s ease;
	text-decoration: none;
}
a:hover {
color: var(--aiu-blue-dark);
	text-decoration: underline;
}


p {padding-bottom: 1rem;}
ul {padding: 0 0 1rem 2rem; line-height: 1.125rem;}
li {padding-bottom: 0.75rem;}
li:last-child {padding-bottom: 0;}

main {padding-bottom: 1rem;}

.wrapper {
width:100%;
	max-width:var(--screen-width-wide);
	margin:0 auto;
}

h1 {
font-weight: 600;
	color: var(--aiu-blue-dark);
	font-size: var(--font-size-title-1);
}


.row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	min-height: 200px;
}

    /* Each column is half the viewport width */
    .column50 {
      width: 50%;
      position: relative; /* helpful for advanced positioning if needed */
    }
    .column33 {
      width: 33.333%;
      position: relative; /* helpful for advanced positioning if needed */
    }
    .column66 {
      width: 66.666%;
      position: relative; /* helpful for advanced positioning if needed */
    }

    .column40 {
      width: 40%;
      position: relative; /* helpful for advanced positioning if needed */
    }
    .column60 {
      width: 60%;
      position: relative; /* helpful for advanced positioning if needed */
    }

    /* Outer content area */
    .column33 .content-wrapper {
      max-width: calc(var(--screen-width-wide) / 3);
    }
    .column50 .content-wrapper {
      max-width: calc(var(--screen-width-wide) / 2);
    }
    .column66 .content-wrapper {
      max-width: calc(var(--screen-width-wide) / 1.5);
		

    }

.section {
  position: relative;
  overflow: hidden;
	margin-bottom:20px;
}

.container-fluid {
  position: relative;
  max-width: var(--screen-width-wide);
  margin: 0 auto;
}

.container {
  position: relative;
  max-width: var(--screen-width-wide);
  padding: 0 20px;
  margin:0 auto;
}

.bkg {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}


	.left-bkg-50 {
		left: calc( -1 * var(--side-offset) );
		width: calc(50% + var(--side-offset));
	}
	.right-bkg-50 {
		right: calc( -1 * var(--side-offset) );
		width: calc(50% + var(--side-offset));
	}


	.left-bkg-66 {
		left: calc( -1 * var(--side-offset) );
		width: calc(66.667% + var(--side-offset));
	}
	.right-bkg-33 {
		right: calc( -1 * var(--side-offset) );
		width: calc(33.333% + var(--side-offset));
	}
	.left-bkg-33 {
		left: calc( -1 * var(--side-offset) );
		width: calc(33.333% + var(--side-offset));
	}
	.right-bkg-66 {
		right: calc( -1 * var(--side-offset) );
		width: calc(66.667% + var(--side-offset));
	}

	.left-bkg-60 {
		left: calc( -1 * var(--side-offset) );
		width: calc(60% + var(--side-offset));
	}
	.right-bkg-40 {
		right: calc( -1 * var(--side-offset) );
		width: calc(40% + var(--side-offset));
	}





    /* Inner content area */
    .content {
      color: #fff;
	  padding: 20px;
	height: 100%;
		    position: relative;
    overflow: hidden;
    }

    /* Pin the content box against the right edge in the left column */
    .left .content-wrapper {
      margin-left: 0;
      margin-right: auto;
		height: 100%;
		
    }

    .left .content-wrapper .content {padding: 40px 60px 40px 20px;}

    /* Pin the content box against the left edge in the right column */
    .right .content-wrapper {
      margin-left: auto;
      margin-right: 0;
		height: 100%;
    }

	.right .content-wrapper .content {padding: 40px 40px 40px 60px;}

@media (max-width: 1280px) {
	.left-bkg-33 {left:0; width:33.333%}
	.right-bkg-33 {right:0; width:33.333%}
	.left-bkg-50 {left:0; width:50%}
	.right-bkg-50 {right:0; width:50%}
	.left-bkg-66 {left:0; width:66.667%}
	.right-bkg-66 {right:0; width:66.667%}
	.column33,
	.column66 {width:100%}
	.column33 .content-wrapper,
	.column66 .content-wrapper {max-width:100%;}
	.left .content-wrapper .content,
	.right .content-wrapper .content {padding: 40px 20px 40px 20px;}
}

@media (max-width: 1024px) {
		.column50 {width:100%}
		.column50 .content-wrapper{max-width:100%;}
}


.section--featured-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #FFFFFF;
}

.featured-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}

.featured-image.featured-home {
    max-width: 1920px;
    height: var(--featured-image-home-height);
    margin: 0 auto;
}


.featured-image {
    max-width: 1920px;
    height: var(--featured-image-height);
    margin: 0 auto;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85% 50%;
}
.featured-image.featured-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 25% 35%;
}

.featured-title {
    position: relative;
    z-index: 9;
	max-width: var(--screen-width-wide);
	padding: 0 20px;
	margin:0 auto;
	opacity: 0;
	animation: slideUp 0.3s ease-out forwards;
	animation-delay: 0.5s;
}

.featured-title h1 {
	position: absolute;
	bottom: 60px;
    color: #FFFFFF;
    font-size: var(--font-size-title-1);
	line-height: var(--line-height-title-1);
    font-weight: 600;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.75);
}

.featured-title h1 br {
    display: none;
}

.start-date-wrapper {
    position: relative;
    z-index: 9;
	max-width: var(--screen-width-wide);
	padding: 0 20px;
	margin:0 auto;
	background-color: var(--aiu-blue-light);
	
}

.start-date-wrapper .start-date {
	position: absolute;
	bottom: 160px;
    color: #FFFFFF;
    font-weight: 500;
	line-height: 1;
	display: flex;
  align-items: stretch;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
	box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.25);
}
.start-date-wrapper .start-date span {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
	font-weight:600;

}

.start-date-wrapper .start-date span.start-text {
	font-size: var(--font-size-title-6);
		background-color: var(--aiu-blue-light);
	padding: 12px 18px 14px 18px
}

.start-date-wrapper .start-date span.date-text {
	font-size: var(--font-size-title-3);
		background-color: var(--aiu-blue-dark);
	padding: 10px 18px 14px 18px;
		
}

@media (max-width: 1120px) {
	.featured-image,
	.featured-image.featured-home {
    	height: var(--featured-image-height-laptop);
	}
}
@media (max-width: 720px) {
	.featured-image,
	.featured-image.featured-home {
    	height: var(--featured-image-height-mobile);
	}
	.featured-image::after {
		content: "";
    	display: none;
		overflow: hidden;
	}
	
	.featured-title {
		background-color: var(--aiu-blue-dark);
		padding:8px 20px 14px 20px;
		opacity: 1 !important;
		animation: none !important;
    	animation-delay: 0s !important;
	}

	.featured-title h1 {
		position: relative;
		bottom: 0;
    	font-size: var(--font-size-title-3);
		line-height: var(--line-height-title-3);
	    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0);
	}
	
	.start-date-wrapper .start-date {
		position: relative;
		bottom: 0;
    	font-size: var(--font-size-title-5);
		text-shadow: none;
		box-shadow: none;
	}
	.start-text::after {
		content: ":";
		padding-right: 0.2em;
  }
.start-date-wrapper .start-date span {
	
	    flex: none;
}
	
	.start-date-wrapper .start-date span.start-text {
padding: 0.2em 0 0.4em 0;
	}
	.start-date-wrapper .start-date span.date-text {
		background-color: transparent;
		padding:0.2em 0 0.4em 0;
		font-size: var(--font-size-title-6);
		

}
	
	
}

header {
	background-color: #FFFFFF;
	position: relative;
    padding: 0;
	height:120px;
}
	
header a {
	transition: all 0.3s ease;
}

.header {
	display: flex;
	gap: 1rem;
	justify-content: space-between; 
	align-items: flex-start;   
	font-size: var(--font-size-body-small);
    position: relative;
    max-width: var(--screen-width-wide);
	height: 100%;
    padding: 0 20px;
    margin: 0 auto;	
}

.header--logo {
		padding: 0;
	margin: 0;
	width:280px;
	height: 100%;
    display: flex;
    align-items: center;
	position: absolute;
	    z-index: 99999;
}

.header--logo a img.logo,
.header--logo a svg {
	display:block;	
}

.header--logo img.logo {
	width:100%;
	height:auto;
}

.header--logo svg {
		width:100%;
	height:auto;
}

.header--menu {
flex: 1;
    display: flex;
    flex-direction: column;
	height: 100%;
    justify-content: space-between;
	z-index: 999;
}

.campus-menu {
	display: flex;
	justify-content: flex-end;
	
}

.campus-menu span.campus-text {
	display: block;
	font-size: 1.4rem;
	font-weight:600;
	line-height: 1;
	color: #FFFFFF;
background-color: var(--aiu-blue-dark);
	padding: 3px 10px 10px 10px;
	margin: 0 5px 10px 0;
}

.main-menu {
}

.main-menu ul {
	display: flex;
	gap: 1rem; 
	justify-content: flex-end;
	list-style: none;
	padding: 0;
	margin: 10px 0 5px 0;
	font-size: 1.2rem;
	font-weight: 400;
}

.main-menu li {
	padding: 0;
	margin: 0;
}

.main-menu li a {
	display: block;
	text-decoration: none;
	color: var(--aiu-blue-dark);
	padding: 10px 0;
	white-space: nowrap;
}

.main-menu li a:hover {
	color: var(--aiu-blue-light);
}
.main-menu li.active a,
.main-menu li.active a:hover {
	color: var(--aiu-blue-light);
	font-weight: 600;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 25px;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
}




@media (max-width: 1120px) {
	header {height: 90px;}
	.header--logo {width: 190px;}
	.campus-menu span.campus-text {font-size: 1.2rem; margin: 0 0 5px 0;}
	.main-menu ul {font-size: 1.125rem; margin: 5px 0 5px 0;}
}

@media (max-width: 960px) {
	header {height: 120px;}
	.header--logo {padding: 10px 0 0 0; align-items: flex-start;}
	.main-menu ul {font-size: 1.125rem; justify-content: flex-start;}
}

@media screen and (max-width: 720px) {
    header {
        height: 84px;
    }
.header--logo {
    margin: 0 0 0 -4px;
	}
	
	
  .main-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }

  .main-menu ul {
	    margin: 0;
    flex-direction: column;
    gap: 0;
  }
	
  .main-menu ul li {
	  border-top: 1px solid #eeeeee;
	}

  .main-menu.open {
    display: flex;
  }

  .hamburger {
    display: flex;
	z-index: 99999;
        position: absolute;
        bottom: 10px;
        right: 20px;
  }
}



	
footer {
	background-color: var(--aiu-blue-dark);
	position: relative;
    padding: 40px 0;
}
	
footer a {
	transition: all 0.3s ease;
}

.footer {
	display: flex;
	gap: 1rem;
	justify-content: space-between; 
	align-items: center;   
	font-size: var(--font-size-body-small);
	color: #FFFFFF;	
    position: relative;
    max-width: var(--screen-width-wide);
    padding: 0 20px;
    margin: 0 auto;	
}

.footer--text {
	color: rgba(255,255,255,0.75);
	flex: 1;      
}
	
.footer--text a {
	color: rgba(255,255,255,1);
	text-decoration:none;
}

.footer--text a:hover {
	color: rgba(255,255,255,0.75);
	text-decoration:underline;
}
	
.footer--icons {}
	
.social-icon-menu ul {
	display: flex;
	gap: 1rem; 
	/*justify-content: space-between;*/
	list-style: none;
	padding: 0;
	margin: 0;
}

.social-icon-menu li {
	padding: 0;
	margin: 0;
	width: 36px;
}

.social-icon-menu li a {
	display: block;
	color: rgba(255,255,255,1);
}

.social-icon-menu li a:hover {
	color: rgba(255,255,255,0.25);
}

.social-icon-menu li svg {
	width:100%;
	height:auto;
}

@media (max-width: 720px) {
.footer {
	text-align: center;
	flex-direction: column;
	}

}

@keyframes slideIn {
  from {
    transform: translateX(200px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(200px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}