.ba-title {
  padding: 0 !important;
  margin: 0 !important;
}
.ba-title p {
  font-size: 6rem;
  font-weight: 900;
  text-align: center;
  color: rgba(0, 0, 0, 0.1);
}

/* some color*/
.hero-profile {
  position: relative;
  height: var(--bg-item-height);
  display: flex;
  overflow: hidden;
  margin-bottom: 50px;
  background-color: darkslateblue;
}

.hero-content {
  position: absolute;
  display: flex;
  width: 100%;
  /* height: 400px; */
  color: white;
  align-items: center;
  justify-content: center;
}

.hero-bg-image img {
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: auto;
  filter: blur(8px) brightness(45%) grayscale(100%);
  transform: scale(130%);
}

.profile-title {
  color: white;
  font-size: var(--fs-900);
  font-weight: 200;
  text-shadow: 0 0 10px #000000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  font-family: "Barlow Condensed", sans-serif !important;
}

.node--type-profile .social-media-links--platforms li {
  padding: 8px 5px 5px 5px;
  height: 50px;
  width: 50px;
  border: 1px solid lightgray;
  border-radius: 50%;
  margin: 0 10px;
}

.social-media-links--platforms.horizontal .fa:hover,
.social-media-links--platforms.horizontal .fa:focus {
  border-bottom: 0px !important;
}

.node--type-profile .social-media-links--platforms li:hover {
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px darkslateblue;
  animation: flip 1000ms ease-in-out;
}

.hero-bio-text p {
  font-size: 1.1rem;
}

.fade-in {
  animation: 2s ease 500ms normal forwards 1 fadeIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.profile-secondary-image ul,
.profile-secondary-image li {
  list-style: none !important;
}

.profile-secondary-image ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.profile-primary-image img {
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.profile-secondary-image img {
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 0 5px;
}

.profile-links a {
  color: white !important;
  font-size: 1.2em !important;
}

.profile-links a:hover {
  color: var(--gt-gold) !important;
}

.profile-links ul,
.profile-links li {
  list-style: none !important;
  padding-inline-start: 0 !important;
}

.profile-icon {
  font-size: 4em !important;
  color: #00FFFF;
  margin-bottom: 8px;
}

.flip-over:hover {
  animation: flip 1s;
}

@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.other-media a {
  color: white !important;
  font-size: 1.1rem;
}
.other-media a:hover {
  color: var(--gt-gold) !important;
}
.other-media a:hover i {
  transform: translateX(-8px);
  transition: all 250ms ease-in;
}
.other-media i {
  margin-right: 5px;
}

.profile-block-image img {
  border-radius: 50% !important;
  border: 2px solid #3A5DAE;
  box-shadow: 0 4px 2px -2px gray;
}

.profile-block-title {
  line-height: 1.2 !important;
}

.profile-block-headline-title h2:before {
  border-top: 10px solid rgba(0, 0, 0, 0.4) !important;
}

.profile-search-image {
  transition: ease-in-out 200ms;
}
.profile-search-image:hover {
  transform: scale(1.1);
}
.profile-search-image:hover img {
  box-shadow: 0 6px 4px -2px gray;
}
.profile-search-image img {
  border-radius: 50%;
  border: 2px solid #3A5DAE;
  box-shadow: 0 4px 2px -2px gray;
}

.profile-search-wrapper div:not(:first-child) {
  line-height: 1.15rem !important;
  border-radius: 5px;
  margin-bottom: 8px;
}

.profile-search-view form {
  display: flex;
  align-items: center;
}
.profile-search-view .form-item {
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.profile-content .col a {
  text-decoration: underline !important;
}

.event-header-image {
  border-bottom: 2px solid var(--gt-gold);
}
.event-header-image img {
  height: auto;
  width: 100%;
}

.event-tickets-block {
  background-color: #333333;
  color: white;
  width: 100%;
  padding: 40px 20px;
  border-radius: 0 0 10px 10px;
  animation-duration: 1500ms;
  animation-name: slidein;
  animation-timing-function: ease-out;
}

@keyframes slidein {
  from {
    transform: translateY(-270px);
  }
  to {
    transform: translateY(0);
  }
}
.ticket-hide {
  overflow: hidden;
}

.main-container a:hover {
  text-decoration: none !important;
}

.buy-now-btn {
  margin-bottom: 30px;
  overflow: hidden;
}
.buy-now-btn a {
  border: 1px solid var(--gt-gold);
  padding: 0.8em 1em;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  border-radius: 8px;
  position: relative;
  color: white;
}
.buy-now-btn a:hover {
  background-color: var(--gt-gold) !important;
  color: #000000;
}
.buy-now-btn a > i {
  margin-right: 5px;
  transition: transform 500ms ease-in-out;
}
.buy-now-btn a:hover > i {
  transform: rotate(-22deg);
}

.color-red {
  color: red !important;
  text-align: center;
  transform: rotate(-12.5deg);
  margin-bottom: 20px;
}

.node--type-event h1,
.node--type-event h2,
.node--type-event h3,
.node--type-event h4,
.node--type-event h5 {
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 600;
}

.event-title {
  font-size: 3em;
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 400;
  color: var(--gt-gold);
  text-shadow: 1px 1px 2px #333333;
}
.event-title::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(88, 88, 88, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  margin-bottom: 10px;
}

.event-tagline {
  font-size: 1.3em;
  font-style: italic;
}

.event-dates ul,
.event-dates li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.event-dates li {
  font-size: 1.05em;
  margin-bottom: 3px !important;
}

.event-images {
  margin-top: 20px;
}
.event-images ul,
.event-images li {
  list-style: none !important;
}
.event-images ul {
  padding-inline-start: 0 !important;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.event-images li {
  margin-right: 1em !important;
}
.event-images img {
  width: auto;
  height: 120px;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.107);
  border-radius: 5px;
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.event-profile-bio-text,
.event-profile-bio-text p {
  color: white !important;
}

.event-block-feature {
  color: white !important;
}
.event-block-feature .event-block-feature-image img {
  border: 2px solid #5F249F !important;
  border-radius: 8px !important;
}
.event-block-feature .event-block-featured-date {
  font-size: 1.2rem;
  font-weight: 800;
}
.event-block-feature .event-block-featured-date i {
  color: #5F249F;
}
.event-block-feature .event-block-featured-date i::before {
  opacity: var(--fa-primary-opacity, 1);
  color: var(--fa-primary-color, #9251d8);
}
.event-block-feature .event-block-featured-date i::after {
  opacity: var(--fa-secondary-opacity, 1);
  color: var(--fa-secondary-color, inherit);
}
.event-block-feature .event-block-featured-tagline {
  font-size: 1.1rem;
}
.event-block-feature .event-block-more a.btn {
  padding: 0.2rem 0.5rem !important;
  background-color: #5F249F !important;
  color: white !important;
}
.event-block-feature .event-block-more a:hover.btn {
  background-color: #2d114c !important;
  color: white !important;
}

.event-block {
  color: white !important;
}
.event-block .event-block-more a.btn {
  padding: 0.2rem 0.5rem !important;
}
.event-block .event-block-image img {
  border-radius: 15px;
  transition: 200ms ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.event-block .event-block-image img:hover {
  transform: scale(1.05);
}
.event-block ul,
.event-block li {
  list-style: none;
  padding-inline-start: 0;
  margin-top: 50px;
}
.event-block .pager__item a {
  background-color: #3A5DAE;
  padding: 0.5rem 0.5rem !important;
  border-radius: 5px;
}
.event-block .pager__item a:hover {
  background-color: white;
  color: black;
}

.event-block-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.event-block-wrapper .event-block-date {
  /* puts cal icon inline with date */
  display: flex;
  align-items: center;
}
.event-block-wrapper .event-block-date i {
  padding-right: 5px;
}

/* Impact blocks */
.impact-pillars-event img {
  border-radius: 5px;
  border: 1px solid var(--gt-gold);
  box-shadow: 0 8px 6px -6px black;
}
.impact-pillars-event i {
  color: #3A5DAE;
}

.past-event {
  color: var(--gt-gold) !important;
  padding-left: 10px;
}

/**KILLS ALL RULE TEXT */
.rule-text {
  display: none;
}

.single-event-dates-block .event-dates .recurring-output--wrapper {
  display: flex;
  gap: 3rem;
}
.single-event-dates-block .event-dates .recurring-output--wrapper details summary {
  font-weight: bold;
}

/*  SPECIAL PAST EVENT STYLING FOR PAST VIEW MODE */
.past-events-special-view .field__item {
  display: none;
}

.past-events-special-view {
  display: flex;
}

.past-events-special-view .field__item:first-child, .past-events-special-view .field__item:last-child {
  display: block;
}

.past-events-special-view .field__item:last-child:not(:first-child)::before {
  content: " - ";
  padding-left: 5px;
}

.btn-list ul,
.btn-list li {
  list-style: none !important;
}
.btn-list ul {
  padding-inline-start: 0 !important;
}

.media-svg {
  animation: boing;
  animation-duration: 1000ms;
  animation-timing-function: ease-in-out;
  animation-delay: 500ms;
  animation-fill-mode: forwards;
  transform: scale(0%);
}

@keyframes boing {
  0% {
    transform: scale(0%);
  }
  25% {
    transform: scale(135%);
  }
  50% {
    transform: scale(75%);
  }
  75% {
    transform: scale(100%);
  }
  90% {
    transform: scale(90%);
  }
  100% {
    transform: scale(100%);
  }
}
.impact-pillars-media {
  font-size: 1.25rem;
  line-height: 1.3 !important;
}
.impact-pillars-media i {
  color: #FFCD00;
  padding: 15px;
  border: 1px solid lightgray;
  border-radius: 50%;
  margin-right: 12px;
  background-color: black;
  font-size: 1.8rem;
  transition-duration: 800ms;
}
.impact-pillars-media i::after {
  opacity: var(--fa-secondary-opacity, 0.7);
}
.impact-pillars-media .wrapper:hover i {
  color: black !important;
  box-shadow: inset 0 0 50px #fff, inset 20px 0 80px #f0f, inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff, 0 0 50px #fff, -10px 0 80px #f0f, 10px 0 80px #0ff;
}

.pub-art-additional-images ul,
.pub-art-additional-images li {
  list-style: none !important;
}
.pub-art-additional-images ul {
  padding-inline-start: 0 !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.pub-art-title {
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 3em;
  color: var(--gt-gold);
  font-weight: 600;
  text-shadow: 1px 1px 2px black;
}

.public-art-images img {
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 5px 5px 10px 5px;
  box-shadow: 0px 10px 13px -7px #000000, 2px 2px 1px 3px rgba(86, 86, 86, 0);
}

.public-art-info {
  color: white !important;
  font-size: 1.2em !important;
}
.public-art-info p {
  font-size: 1em !important;
  color: white !important;
}

.public-art-grid img {
  padding: 5px;
  margin-bottom: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.75);
}

.public-art-grid-view form {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
}
.public-art-grid-view .form-item {
  padding-right: 10px;
}
.public-art-grid-view .form-actions {
  padding-bottom: 10px;
}

.filter-checkboxes .form-checkboxes.bef-checkboxes {
  width: 300px;
  margin-bottom: 20px;
}
.filter-checkboxes .form-checkboxes.bef-checkboxes label {
  font-weight: bold;
}

.arts-on-campus-wrapper {
  min-height: 500px;
}
.arts-on-campus-wrapper .arts-on-campus {
  background-color: hsla(0, 0%, 97%, 0.25);
  /* translucent off-white */
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  text-align: center;
  padding: 30px;
  font-size: 3vw;
  border-radius: 10px;
  color: #FFCC00;
  text-shadow: 2px 2px 2px black;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1.5px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.3);
}

.js-pager__items {
  margin-top: 10px;
}
.js-pager__items .pager__item {
  list-style: none;
}
.js-pager__items .pager__item a {
  background-color: #3A5DAE;
  padding: 0.5rem 0.5rem !important;
  border-radius: 5px;
  color: white !important;
}

.bef-checkboxes {
  width: 100% !important;
}
.bef-checkboxes .js-form-type-checkbox {
  flex: none !important;
}

.profile-search-view form {
  flex-wrap: wrap;
}

:root {
  --fs-900: 2rem;
  --fs-600: 1.5rem;
  --fs-500: 1.25rem;
  --fs-400: 1rem;
  --bg-item-height: 350px;
}

/* on larger screens */
@media (min-width: 40em) {
  :root {
    --fs-900: 5rem;
    --fs-600: 1.5rem;
    --fs-500: 1.25rem;
    --fs-400: 1rem;
    --bg-item-height: 450px;
  }
  .hero-bg-image img {
    transform: scale(130%);
  }
}
/* kill title for profile pages */
.node--type-profile #gt-page-title,
.node--type-event #gt-page-title,
.node--type-arts-media #gt-page-title,
.node--type-public-art #gt-page-title {
  display: none !important;
}

.flex-center-vertical {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.section-padding-large {
  padding: 5rem 0 !important;
}

.staff-image {
  width: 150px;
  height: 150px;
}/*# sourceMappingURL=style.css.map */