/* --------------------------------------------------------- */
/* -------------------------- COLLEGE --------------------------- */
/* --------------------------------------------------------- */
/* FONT FAMILY */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOkCnqEu92Fr1MmgVxIIzc.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmSU5fBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu4mxP.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmYUtfBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 200;
  src: url(https://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5l2WgcRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5lB2gcRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5lWWgcRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5la2gcRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5lh28cRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5lvm8cRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5l2W8cRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5l8G8cRiyX.ttf) format('truetype');
}
/*--PREDEFINED COLOURS--*/
/*--RESPONSIVE BREAKPOINTS--*/
/* PHONE MEDIA QUERY */
/* TABLET MEDIA QUERY */
/* DESKTOP MEDIA QUERY */
/*----------------------- MIXINS -----------------------*/
/*
.animation(@animation, @duration, @timing-function, @count) {
  -o-animation: @animation;
  -moz-animation: @animation;
  -webkit-animation: @animation;
  animation: @animation;
  animation-duration: @duration;
  animation-timing-function: @timing-function;
  animation-iteration-count: @count;
}*/
.middle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*----------------------- ANIMATION -----------------------*/
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    tranform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    tranform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    tranform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    tranform: rotate(360deg);
  }
}
@keyframes bouncing {
  0%,
  100% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0, 0, 1);
  }
}
@-webkit-keyframes bouncing {
  0%,
  100% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0, 0, 1);
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes up-and-down {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@media all and (min-width: 571px) {
  .page-node-611 #section-banner {
    position: relative;
  }
  .page-node-611 #section-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
  }
}
@media all and (max-width: 570px) {
  .page-node-611 #section-banner {
    background-image: url(/sites/default/files/professional-development/college/PICS/college-mobile.jpg) !important;
  }
  .page-node-611 #section-banner:before {
    display: none;
  }
  .page-node-611 #section-banner .img-parallax {
    display: none;
  }
}
.page-node-611 #section-banner .top-banner {
  padding: 9% 15% 2%!important;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}
@media all and (max-width: 1200px) {
  .page-node-611 #section-banner .top-banner {
    padding: 9% 17% 2%;
  }
}
@media all and (max-width: 992px) {
  .page-node-611 #section-banner .top-banner {
    padding: 10% 16% 5%;
  }
}
@media all and (max-width: 570px) {
  .page-node-611 #section-banner .top-banner {
    padding: 36% 10% 5%;
  }
}
.page-node-611 #section-banner .top-banner .page-main-header {
  color: #fff;
  font-family: Cairo;
  font-size: 0em!important;
  margin: 0px auto;
  line-height: 1em;
  text-transform: uppercase;
  text-align: center;
  background-image: url(/sites/default/files/ACP_H_WHITE_APA_WEBSITE_RGB.png);
  min-height: 100px;
  background-size: contain;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media all and (max-width: 570px) {
  .page-node-611 #section-banner .top-banner .page-main-header {
    margin: 0 10%;
  }
}
.page-node-611 #section-banner .top-banner h3 {
  margin-top: 0;
  font-weight: 300;
  font-size: 1.7em;
}
@media all and (max-width: 1200px) {
  .page-node-611 #section-banner .top-banner h3 {
    font-size: 1.3em;
  }
}
@media all and (max-width: 992px) {
  .page-node-611 #section-banner .top-banner h3 {
    font-size: 1em;
  }
}
@media all and (max-width: 570px) {
  .page-node-611 #section-banner .top-banner h3 {
    font-size: 1.6em;
  }
}
.page-node-611 #section-banner .top-banner p {
  color: #fff;
  font-size: 17px;
}
@media all and (max-width: 570px) {
  .page-node-611 #section-banner .top-banner p {
    font-size: 15px;
  }
}
.page-node-611 #section-banner .top-banner .separator {
  width: 100%;
  position: relative;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  margin: 20px 0;
}
.page-node-611 #section-banner .top-banner .separator:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 20px;
  background: #fff;
}
.page-node-611 #section-banner .top-banner .text-container {
  font-family: Roboto;
  color: #fff;
  font-size: 1.4em;
  font-weight: 300;
  text-align: left;
  letter-spacing: 0.5px;
}
.page-node-611 #section-banner .top-banner .arrowDown {
  border: 1px #fff solid;
  transform: scale(0.7);
  margin: 25px auto 15px;
}
@media all and (max-width: 570px) {
  .page-node-611 #section-banner .top-banner {
    padding: 150px 10% 5%;
  }
  .page-node-611 #section-banner .top-banner .page-main-header {
    font-size: 3em;
  }
  .page-node-611 #section-banner .top-banner .text-container {
    font-size: 1.2em;
  }
}
@media all and (max-width: 1200px) {
  .page-node-611 #section-banner .img-parallax {
    top: 0;
  }
}
@media all and (max-width: 570px) {
  .page-node-611 #section-banner {
    -webkit-background-size: cover!important;
    -moz-background-size: cover!important;
    -o-background-size: cover!important;
    background-size: cover!important;
  }
  .page-node-611 #section-banner .img-parallax {
    display: none;
  }
  .page-node-611 #section-banner .sub-top-banner {
    padding: 25px 25px;
    font-size: 1.7em;
    background: #009fda;
  }
  .page-node-611 #section-banner .top-banner {
    background-image: linear-gradient(to top, #000000 0%, #000000 40%, #000000 52%, rgba(255, 255, 255, 0) 85%);
    height: auto;
  }
  .page-node-611 #section-banner .top-banner #scroll-chevron {
    transform: scale(0.8);
  }
  .page-node-611 #section-banner .top-banner #scroll-chevron a span {
    top: -20px;
  }
  .page-node-611 #section-banner .top-banner .separator {
    margin: 10px 0;
  }
  .page-node-611 #section-banner .top-banner .page-main-header {
    font-size: 2.5em;
  }
}
.page-node-611 #section-banner {
  background-position: 70% 70px!important;
}
@media all and (max-width: 1200px) {
  .page-node-611 #section-banner #scroll-chevron {
    margin: 15px 0 20px;
  }
}
@media all and (max-width: 992px) {
  .page-node-611 #section-banner #scroll-chevron {
    margin: 15px 0 0px;
  }
}
.page-node-611 #section-banner .sub-top-banner {
  padding: 2%;
  margin: 0 auto;
  background: rgba(0, 159, 218, 0.9);
  font-family: Roboto;
  color: #fff;
  font-size: 1.4em !important;
  font-weight: 400;
  display: flex;
  justify-content: center;
  text-align: left;
}
@media all and (max-width: 1200px) {
  .page-node-611 #section-banner .sub-top-banner {
    padding: 2% 1% 2% 3%;
  }
}
@media all and (max-width: 992px) {
  .page-node-611 #section-banner .sub-top-banner {
    padding: 2% 1% 3% 3%;
  }
}
.page-node-611 #section-banner .sub-top-banner > .flex-container {
  flex-wrap: nowrap;
  padding: 0;
  max-width: 1500px;
  position: relative;
}
.page-node-611 #section-banner .sub-top-banner .featured-logo {
  padding-right: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media all and (max-width: 992px) {
  .page-node-611 #section-banner .sub-top-banner .featured-logo {
    display: none;
  }
}
.page-node-611 #section-banner .sub-top-banner .featured-logo:after {
  content: '';
  position: absolute;
  right: 10%;
  height: 100%;
  width: 1px;
  background: #fff;
}
@media all and (max-width: 1200px) {
  .page-node-611 #section-banner .sub-top-banner .featured-logo:after {
    right: 5%;
  }
}
.page-node-611 #section-banner .sub-top-banner .featured-logo img {
  max-height: 67px;
}
.page-node-611 #section-banner .sub-top-banner .left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
}
@media all and (max-width: 1200px) {
  .page-node-611 #section-banner .sub-top-banner .left-content {
    padding-left: 30px;
  }
}
@media all and (max-width: 992px) {
  .page-node-611 #section-banner .sub-top-banner .left-content {
    width: 70%;
    padding-left: 30px;
  }
}
@media all and (max-width: 570px) {
  .page-node-611 #section-banner .sub-top-banner .left-content {
    padding-left: 0;
  }
}
.page-node-611 #section-banner .sub-top-banner .left-content span:not(.lead-text) {
  letter-spacing: 0.5px;
  font-size: 1em;
  color: #fff;
  font-weight: 500;
}
@media all and (max-width: 1200px) {
  .page-node-611 #section-banner .sub-top-banner .left-content span:not(.lead-text) {
    font-size: 0.8em;
  }
}
.page-node-611 #section-banner .sub-top-banner .left-content .lead-text {
  display: block;
  color: #fff;
  font-size: 1.7em;
  font-weight: 200;
}
@media all and (max-width: 570px) {
  .page-node-611 #section-banner .sub-top-banner .left-content .lead-text {
    padding: 10px 9%;
  }
}
.page-node-611 #section-banner .sub-top-banner .left-content p {
  margin: 0;
}
.page-node-611 #section-banner .sub-top-banner .right-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
@media all and (max-width: 1200px) {
  .page-node-611 #section-banner .sub-top-banner .right-content {
    justify-content: center;
  }
}
.page-node-611 #section-banner .sub-top-banner .lead-text {
  font-size: 1.6em;
  line-height: 1em;
  margin-bottom: 10px;
}
.page-node-611 #section-banner .sub-top-banner .lead-text .mobile-hidden {
  display: inline;
}
@media all and (max-width: 992px) {
  .page-node-611 #section-banner {
    background-size: cover;
    background-attachment: scroll;
  }
}
@media all and (max-width: 768px) {
  .page-node-611 #section-banner {
    background-position: 72% 60px !important;
    background-attachment: fixed!important;
  }
  .page-node-611 #section-banner .sub-top-banner {
    background: #009fda;
    text-align: center;
  }
  .page-node-611 #section-banner .sub-top-banner .flex-container {
    flex-direction: column;
  }
  .page-node-611 #section-banner .sub-top-banner .left-content {
    margin-bottom: 20px;
    width: 100%;
  }
  .page-node-611 #section-banner .sub-top-banner .right-content {
    width: 100%;
    justify-content: center;
  }
  .page-node-611 #section-banner .sub-top-banner .lead-text .mobile-hidden {
    display: none;
  }
}
@media all and (max-width: 570px) {
  .page-node-611 #section-banner {
    background-position: 90% -35px !important;
    background-size: cover !important;
    background-attachment: scroll !important;
  }
  .page-node-611 #section-banner .top-banner {
    padding: 36% 15% 5%;
    background-image: linear-gradient(to top, #000000 0%, #000000 30%, #000000 30%, rgba(255, 255, 255, 0) 85%);
  }
  .page-node-611 #section-banner .top-banner h1.page-main-header {
    font-size: 2em;
  }
  .page-node-611 #section-banner .top-banner .text-container {
    font-size: 1em;
  }
  .page-node-611 #section-banner .top-banner .separator {
    margin: 6px 0;
  }
  .page-node-611 #section-banner .top-banner #scroll-chevron a span {
    top: -27px;
  }
  .page-node-611 #section-banner .sub-top-banner {
    padding: 20px 0 40px;
  }
  .page-node-611 #section-banner .sub-top-banner .left-content {
    padding-right: 0;
  }
  .page-node-611 #section-banner .sub-top-banner .lead-text {
    padding: 10px 0;
    font-size: 1.1em;
  }
  .page-node-611 #section-banner .sub-top-banner .lead-text + span {
    display: none;
  }
  .page-node-611 #section-banner .sub-top-banner .secondary-button {
    font-size: 0.8em;
  }
}
.page-node-611 #section-main-content {
  margin: 80px 0 40px;
}
.page-node-611 #section-main-content .dexp-box-shortcode {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 17px 50px;
}
@media all and (min-width: 571px) {
  .page-node-611 #section-main-content .dexp-box-shortcode:hover .box-icon {
    background: #009fda;
  }
  .page-node-611 #section-main-content .dexp-box-shortcode:hover .box-icon:before {
    top: calc(-50% - 15px);
    opacity: 0;
  }
  .page-node-611 #section-main-content .dexp-box-shortcode:hover .box-icon:after {
    top: calc(50% - 15px);
    opacity: 1;
  }
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon {
  float: none;
  display: flex;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #009fda;
  transition: 0.2s linear;
  /* ICONS */
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon:before {
  content: '';
  position: absolute;
  top: calc(50% - 15px);
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: 0.2s linear;
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon:after {
  content: '';
  position: absolute;
  top: calc(150% - 15px);
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.2s linear;
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon.about-college:before {
  background-image: url(/sites/default/files/professional-development/college/ICONS/ABOUT_60PX_B.png);
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon.about-college:after {
  background-image: url(/sites/default/files/professional-development/college/ICONS/ABOUT_60PX_W.png);
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon.pathways:before {
  background-image: url(/sites/default/files/professional-development/college/ICONS/PATHWAY_60PX_B.png);
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon.pathways:after {
  background-image: url(/sites/default/files/professional-development/college/ICONS/PATHWAY_60PX_W.png);
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon.become-a-fellow:before {
  background-image: url(/sites/default/files/professional-development/college/ICONS/FELLOW_60PX_B.png);
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon.become-a-fellow:after {
  background-image: url(/sites/default/files/professional-development/college/ICONS/FELLOW_60PX_W.png);
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon.fees-forms:before {
  background-image: url(/sites/default/files/professional-development/college/ICONS/FEES-60PX_B.png);
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon.fees-forms:after {
  background-image: url(/sites/default/files/professional-development/college/ICONS/FEES-60PX_W.png);
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon.regulations:before {
  background-image: url(/sites/default/files/professional-development/college/ICONS/REGULATIONS_60PX_B.png);
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon.regulations:after {
  background-image: url(/sites/default/files/professional-development/college/ICONS/REGULATIONS_60PX_W.png);
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon.college-titles:before {
  background-image: url(/sites/default/files/professional-development/college/ICONS/TITLES_60PX_B.png);
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-icon.college-titles:after {
  background-image: url(/sites/default/files/professional-development/college/ICONS/TITLES_60PX_W.png);
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-title {
  margin: 10px 0;
  font-size: 1.6em;
  font-weight: 600;
  font-family: Roboto!important;
  text-align: center;
  letter-spacing: 0;
}
@media all and (max-width: 768px) {
  .page-node-611 #section-main-content .dexp-box-shortcode .box-title {
    font-weight: 500;
  }
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-content {
  text-align: center;
  margin: 10px 0;
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-content p {
  font-size: 1.4em;
}
@media all and (max-width: 768px) {
  .page-node-611 #section-main-content .dexp-box-shortcode .box-content p {
    font-size: 1.2em;
    letter-spacing: 0.25px;
  }
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-content .button {
  font-size: 0;
  background: none!important;
  border: none!important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-node-611 #section-main-content #college-features {
  display: flex;
  flex-wrap: wrap;
}
.page-node-611 #section-main-content .dexp-box-shortcode {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 50px;
}
.page-node-611 #section-main-content .dexp-box-shortcode p {
  margin: 0;
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-content .dexp-shortcodes-button {
  font-size: 0;
  background: none!important;
  border: 0px solid #009fda;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-node-611 #section-main-content .dexp-box-shortcode .box-content .dexp-shortcodes-button:hover {
  background: none!important;
  border: 0px solid #009fda !important;
}
@media all and (max-width: 769px) {
  .page-node-611 #section-main-content .dexp-box-shortcode {
    padding: 15px 30px;
  }
}
@media all and (max-width: 570px) {
  .page-node-611 #section-main-content .dexp-box-shortcode {
    padding: 5px 20px 15px;
    border-bottom: 1px solid #e7e8e9;
    margin: 0 10px;
  }
}
.page-node-611 #section-ad-block {
  background: #fff !important;
}
/* COLLEGE INFO PAGE */
.page-node-633 {
  /* FONT STYLES */
  /* CONTENT STYLES */
  /* BACKGROUND FEATURED CONTAINER */
  /* ACCORDION */
  /* TABLE NO BORDER */
  /* TABLE WITH BACKGROUND */
  /* TEXT BOX WITH ICON LEFT */
  /* BOTTOM NAV */
}
.page-node-633 #section-main-content strong {
  color: #333;
  font-size: 17px;
}
.page-node-633 #section-main-content strong a {
  color: black;
}
.page-node-633 p {
  font-size: 1.2em;
}
.page-node-633 .no-bottom-space p {
  margin-bottom: 0;
}
.page-node-633 .no-bottom-space + p,
.page-node-633 .no-bottom-space ul {
  margin-top: 0;
}
.page-node-633 h3 {
  color: #009fda;
  font-size: 1.8em;
  font-family: Roboto;
  font-weight: 700;
  padding-top: 25px;
  margin: 12px 0px 10px;
  letter-spacing: 0.5px;
}
.page-node-633 h2 {
  font-size: 3em;
  line-height: 1.1em;
  display: block;
  font-weight: 500;
  color: #009fda;
  margin-top: 0;
  padding-bottom: 0;
  font-family: Cairo;
}
@media all and (max-width: 570px) {
  .page-node-633 h2 {
    font-size: 2.5em;
  }
}
.page-node-633 .left-content a,
.page-node-633 .content-block a {
  text-decoration: underline;
  transition: all 0.3s linear;
  opacity: 1;
}
.page-node-633 .left-content a:hover,
.page-node-633 .content-block a:hover {
  opacity: 0.8;
}
.page-node-633 .dark-link {
  color: #000;
  transition: all 0.2s linear;
}
.page-node-633 .dark-link:hover {
  color: #009fda;
}
.page-node-633 .dark-link a {
  color: #000;
  transition: all 0.2s linear;
}
.page-node-633 .dark-link a:hover {
  color: #009fda;
}
.page-node-633 .content-block {
  padding: 60px 0 20px;
  max-width: 75%;
}
@media all and (max-width: 768px) {
  .page-node-633 .content-block {
    max-width: 100%;
  }
}
.page-node-633 .border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.page-node-633 #section-main-content .background-featured .content-block {
  padding: 50px 0;
}
.page-node-633 #section-main-content .background-featured .content-block .sub-heading {
  padding-top: 0;
}
.page-node-633 #section-main-content .background-featured .inner-container {
  width: 75%;
}
@media all and (max-width: 768px) {
  .page-node-633 #section-main-content .background-featured .inner-container {
    width: 100%;
  }
}
.page-node-633 #section-main-content .background-featured .content {
  max-width: 1500px;
  padding: 0px 20px;
  margin: 0 auto;
}
.page-node-633 #section-main-content .background-featured h3 {
  color: #fff;
  font-weight: 400;
}
.page-node-633 #section-main-content .background-featured p {
  color: #fff;
}
.page-node-633 #section-main-content .background-featured p strong {
  color: #009fda;
}
.page-node-633 #section-main-content .background-featured ul,
.page-node-633 #section-main-content .background-featured span,
.page-node-633 #section-main-content .background-featured h2,
.page-node-633 #section-main-content .background-featured h4,
.page-node-633 #section-main-content .background-featured h5 {
  color: #fff;
}
.page-node-633 #section-main-content .background-featured a {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  opacity: 1;
  transition: all 0.3s linear;
}
.page-node-633 #section-main-content .background-featured a:hover {
  opacity: 0.8;
}
.page-node-633 #section-main-content .background-featured strong a {
  color: #009fda;
}
.page-node-633 #section-main-content h6 {
  color: #333;
  font-size: 1.8em;
  font-family: Roboto;
  font-weight: 700;
  margin: 25px 0 0 0;
  position: relative;
  padding-left: 35px;
  display: table;
  cursor: pointer;
}
.page-node-633 #section-main-content h6:before,
.page-node-633 #section-main-content h6:after {
  content: '';
  width: 15px;
  height: 4px;
  background: #009fda;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  transition: all 0.3s linear;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.page-node-633 #section-main-content h6:after {
  transform: rotate(90deg) scale(1);
}
.page-node-633 #section-main-content h6.active:after {
  transform: rotate(90deg) scale(0);
}
.page-node-633 #section-main-content h6.active + div {
  animation: fadeineffect 0.5s linear 0s 1 forwards;
}
.page-node-633 #section-main-content h6 + div {
  padding: 25px 0 25px 35px;
  float: left;
  opacity: 0;
  animation: fadeouteffect 0.5s linear 0s 1 forwards;
}
.page-node-633 table {
  border: 0;
  width: 100%;
  max-width: 700px;
  color: black;
  font-size: 1.2em;
}
.page-node-633 table tbody {
  border: 0;
}
.page-node-633 table tbody tr {
  border: 0;
}
.page-node-633 table tbody tr td {
  border: 0;
  width: 30%;
}
.page-node-633 table tbody tr td:first-child {
  width: 70%;
}
.page-node-633 .table-full-heading {
  padding: 10px 20px;
  text-align: center;
  max-width: 700px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.page-node-633 .table-full-heading p {
  margin: 0;
  font-weight: 700;
  color: #5e6067;
  font-size: 1.3em;
}
.page-node-633 .table-full-heading + table {
  margin-top: 0;
  margin-bottom: 0;
}
.page-node-633 .table-full-heading + table tbody tr:nth-child(odd) {
  background: #efeff0;
}
.page-node-633 .table-full-heading + table tbody tr:nth-child(even) {
  background: #f5f5f6;
}
.page-node-633 .table-full-heading + table tbody tr td {
  padding: 10px 20px;
}
.page-node-633 .featured-icon-box .featured-icon {
  min-width: 80px;
  padding: 8px 30px 0 0;
}
.page-node-633 .featured-icon-box .featured-icon img {
  width: 100%;
}
.page-node-633 .featured-icon-box .text-box span {
  display: block;
  font-size: 1.7em;
  color: #000;
}
.page-node-633 .bottom-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px 0 100px;
}
@keyframes fadeineffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeouteffect {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#about-college .intro p a {
  text-decoration: underline;
}
.page-node-633 .region-right-sidebar ul {
  margin-left: 10%;
}
.page-node-633 .panel-default .panel-title a {
  border: none!important;
}
