/*=========================
     V A R I A B L E S
===========================*/
* {
  box-sizing: border-box;
}

body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin-top: 3rem;
  background-color: #fff;
}

h1,
h2,
h3 {
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.2;
}
h1 span,
h2 span,
h3 span {
  font-weight: 600;
}

h2 {
  font-size: 1.2rem;
}

h3 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
}
h3 + p {
  margin-top: 0;
}

h4 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
}

a {
  text-decoration: underline;
  transition: color 0.3s;
}

.performance_description a,
.performance_description a:visited {
  color: #ff1919;
}
.performance_description a:hover,
.performance_description a:visited:hover {
  color: #ff7f7f;
}

.our_performances a,
.our_performances a:visited {
  color: #860000;
}
.our_performances a:hover,
.our_performances a:visited:hover {
  color: #E50000;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  height: 3rem;
  width: 100%;
  z-index: 10;
  background-color: #f3f3f3;
}
header h1 {
  color: #252525;
  font-size: 0.75rem;
  line-height: 3rem;
  padding-left: 2.25rem;
  margin: 0;
  background: transparent url("../img/logo_small.svg") 0.25rem 50%/32px 32px no-repeat;
}
header h1 span {
  color: #AD0000;
  font-weight: 600;
}
header .menu {
  position: absolute;
  right: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background: transparent url("../img/menu.svg") 50% 50%/20px 20px no-repeat;
}
header nav {
  position: absolute;
  top: 3rem;
  right: 0;
  height: 0;
  width: 100%;
  max-width: 24rem;
  overflow: hidden;
  background-color: #fff;
  transition: height 0.5s;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
}
header nav.open {
  height: 15rem;
}
@keyframes nav_hover_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
header nav a {
  display: block;
  position: relative;
  height: 3rem;
  line-height: 3rem;
  font-size: 0.75rem;
  padding: 0 1rem;
  color: #252525;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: #f3f3f3 solid 1px;
  overflow: hidden;
  transition: all 0.3s;
}
header nav a::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.5rem;
  width: 2rem;
  height: 100%;
  top: 100%;
  transition: all 0.5s;
  background: transparent url("../img/logo_small.svg") 50% 50%/2rem 2rem no-repeat;
  animation: nav_hover_rotate 1.5s linear 0s infinite forwards;
}
header nav a:hover {
  background-color: #f3f3f3;
}
header nav a:hover::after {
  top: 0;
}
header nav .get_in_touch {
  width: 100%;
  height: 2rem;
}
header nav .get_in_touch a {
  width: 50%;
  float: left;
  background-position: 50% 50%;
  background-size: 32px 32px;
  background-repeat: no-repeat;
}
header nav .get_in_touch a.email {
  background-image: url("../img/email.svg");
}
header nav .get_in_touch a.facebook {
  background-image: url("../img/facebook.svg");
}

.row {
  width: 100%;
}
.row.light {
  background: #fff;
  background: linear-gradient(to right, #fff 0%, #D9D9D9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$left", endColorstr="$right", GradientType=1 );
}
.row.dark {
  background: #181818;
  background: linear-gradient(to right, #181818 0%, #323232 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$left", endColorstr="$right", GradientType=1 );
  color: #fff;
}
.row.red {
  background: #AD0000;
  background: linear-gradient(to right, #AD0000 0%, #860000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$left", endColorstr="$right", GradientType=1 );
}
.row li {
  margin-block: 0.75rem;
}

.inner_content {
  width: calc(100% - 1rem);
  max-width: 1440px;
  margin: 0 auto;
}
.inner_content.top_banner {
  display: flex;
  gap: 1rem;
  justify-items: center;
  align-items: center;
  padding: 2rem 0;
}
.inner_content.top_banner .logo {
  width: 40%;
  background: transparent url("../img/adelaide_summer_orchestra_logo_2019_paths.svg") 50% 50%/90% 90% no-repeat;
  padding-top: 45%;
}
.inner_content.top_banner .logo h1 {
  position: absolute;
  visibility: hidden;
}
@media screen and (min-width: 1240px) {
  .inner_content.top_banner .logo {
    position: relative;
    height: 30rem;
  }
}
.inner_content.top_banner .poster {
  width: 30%;
}
.inner_content.top_banner .poster img {
  width: 100%;
  height: auto;
  padding-right: 2rem;
}
.inner_content.top_banner.details_tbd .poster {
  width: 60%;
}
@media screen and (max-width: 48rem) {
  .inner_content.top_banner {
    flex-direction: column;
    align-items: center;
  }
  .inner_content.top_banner .logo {
    width: 100%;
    padding-top: 100%;
  }
  .inner_content.top_banner.details_tbd .poster {
    width: 100%;
    padding-right: 0;
  }
}
.inner_content.top_banner .next_performance {
  width: 30%;
}
@media screen and (max-width: 48rem) {
  .inner_content.top_banner .next_performance {
    width: 100%;
    padding: 0 1rem;
  }
}
.inner_content.top_banner .next_performance h2 {
  color: #fff;
  margin: 1rem 0;
}
.inner_content.top_banner .next_performance h2 span {
  color: #E50000;
}
.inner_content.top_banner .next_performance h3 {
  color: #E50000;
}
.inner_content.top_banner .next_performance a, .inner_content.top_banner .next_performance a visited {
  color: #fff;
}
.inner_content.top_banner .next_performance .tickets {
  padding-bottom: 1rem;
}
.inner_content.top_banner .next_performance .tickets a {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  background: #AD0000; /* Old browsers */ /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
  background: linear-gradient(to bottom, #AD0000 0%, #860000 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 ); /* IE6-9 */
  height: 3rem;
  line-height: 3rem;
  width: calc(100% - 4rem);
  max-width: 18rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0.25rem;
  text-decoration: none;
}
.inner_content.top_banner .next_performance .tickets a:hover {
  background: #AD0000;
  background: #e00000; /* Old browsers */ /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
  background: linear-gradient(to bottom, #e00000 0%, #AD0000 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 ); /* IE6-9 */
  box-shadow: 0 0 1rem rgba(255, 71, 71, 0.5);
}

.overlay {
  position: fixed;
  z-index: 8;
  left: 0;
  top: 3rem;
  bottom: 0;
  width: 100%;
  display: none;
  background-color: #fff;
  overflow: scroll;
}
.overlay.showing {
  display: flex;
  justify-content: center;
}
.overlay.showing .about_adelaide_summer_orchestra {
  padding-top: 3rem;
  max-width: 50rem;
  margin: auto;
}
.overlay.showing .about_adelaide_summer_orchestra p {
  line-height: 1.8;
}

.close {
  position: absolute;
  width: 3rem;
  height: 3rem;
  right: 0.5rem;
  top: 0.5rem;
  background: transparent url("../img/close.svg") 50% 50%/32px 32px no-repeat;
}

.our_performances {
  padding: 1rem 0;
}
@media screen and (min-width: 1024px) {
  .our_performances {
    padding: 1rem;
  }
}
.our_performances h2 span {
  color: #860000;
}
.our_performances .performance {
  border-top: 1px solid #D9D9D9;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .our_performances .performance {
    display: grid;
    grid-template-columns: 8rem 30rem 1fr 1fr 1fr;
  }
}
.our_performances .performance .date {
  margin-bottom: 1rem;
  padding-top: 1rem;
}
.our_performances .performance .date .day {
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1;
}
.our_performances .performance .date .year {
  font-size: 3rem;
  line-height: 1;
}
.our_performances .performance .date .year span {
  color: #860000;
  font-weight: 600;
}
.our_performances .performance .program,
.our_performances .performance .conductor,
.our_performances .performance .soloist,
.our_performances .performance .supported_charity {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .our_performances .performance .program,
  .our_performances .performance .conductor,
  .our_performances .performance .soloist,
  .our_performances .performance .supported_charity {
    padding: 1rem 1rem 0 0;
  }
}
.our_performances .performance .program button,
.our_performances .performance .conductor button,
.our_performances .performance .soloist button,
.our_performances .performance .supported_charity button {
  position: relative;
  border: 0;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  background-color: #dedede;
  background-image: linear-gradient(#fff, #dedede);
  display: inline-block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 5rem 0.5rem 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15), inset 0 -0.0625rem 0.125rem rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
.our_performances .performance .program button:after,
.our_performances .performance .conductor button:after,
.our_performances .performance .soloist button:after,
.our_performances .performance .supported_charity button:after {
  display: block;
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 100%;
  right: 1rem;
  top: 0;
  background: url(../img/play_recording_icon.svg) 50% 50%/1.25rem 1.25rem no-repeat;
}
@media screen and (max-width: 1024px) {
  .our_performances .performance .program button,
  .our_performances .performance .conductor button,
  .our_performances .performance .soloist button,
  .our_performances .performance .supported_charity button {
    width: auto;
  }
}
.our_performances .performance .program button:hover,
.our_performances .performance .conductor button:hover,
.our_performances .performance .soloist button:hover,
.our_performances .performance .supported_charity button:hover {
  background-image: linear-gradient(#eee, #cdcdcd);
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .our_performances .performance .program,
  .our_performances .performance .conductor,
  .our_performances .performance .soloist,
  .our_performances .performance .supported_charity {
    font-size: 0.8rem;
  }
  .our_performances .performance .program > span,
  .our_performances .performance .conductor > span,
  .our_performances .performance .soloist > span,
  .our_performances .performance .supported_charity > span {
    font-size: 0.6rem;
  }
}
.our_performances .performance .program > h3,
.our_performances .performance .conductor > h3,
.our_performances .performance .soloist > h3,
.our_performances .performance .supported_charity > h3 {
  font-size: 0.75rem;
  color: #860000;
  display: block;
  font-weight: 600;
}

.youtube_overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
}
.youtube_overlay.showing {
  display: flex;
}
.youtube_overlay div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.youtube_overlay .layout_container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% - 1rem);
  max-width: 36rem;
  aspect-ratio: 1;
  margin: auto;
}
.youtube_overlay .layout_container iframe {
  margin: auto;
  border: 1px solid #666;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.6);
}
.youtube_overlay .layout_container .close {
  display: block;
  position: relative;
  width: 10rem;
  height: 12rem;
  background: transparent url(../img/close_button.svg) 50% 50%/8rem 8rem no-repeat;
  margin: auto;
  border: 0;
  cursor: pointer;
}
.youtube_overlay .layout_container .close span {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.75rem;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

.join_the_orchestra {
  padding: 1rem 1rem 4rem;
  color: #fff;
  text-transform: uppercase;
}
.join_the_orchestra .form_layout {
  display: grid;
}
@media screen and (min-width: 48rem) {
  .join_the_orchestra .form_layout {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.join_the_orchestra .form_layout .waiting_list {
  height: 3.25rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.join_the_orchestra .form_layout .waiting_list label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  cursor: pointer;
}
.join_the_orchestra .form_layout .waiting_list [type=checkbox] {
  all: unset;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  border-radius: 0.125rem;
  background-color: #F05E61;
  cursor: pointer;
}
.join_the_orchestra .form_layout .waiting_list [type=checkbox]:checked {
  background: #F05E61 url("../img/tick.svg") 50% 50%/20px 20px no-repeat;
}
.join_the_orchestra .form_layout label, .join_the_orchestra .form_layout legend {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.join_the_orchestra .form_layout [type=text],
.join_the_orchestra .form_layout textarea,
.join_the_orchestra .form_layout [type=checkbox],
.join_the_orchestra .form_layout [type=email] {
  width: 100%;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  background-color: #F05E61;
  border-radius: 0.125rem;
  border: 0;
  padding: 0.5rem 0.25rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.join_the_orchestra .form_layout textarea {
  height: 6rem;
}
.join_the_orchestra .form_layout textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}
.join_the_orchestra .form_layout textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}
.join_the_orchestra .form_layout [type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.join_the_orchestra .form_layout [type=checkbox]:checked {
  background: #F05E61 url("../img/tick.svg") 50% 50%/20px 20px no-repeat;
}
.join_the_orchestra .form_layout .willing_to_lead {
  position: relative;
  line-height: 2rem;
}
.join_the_orchestra .form_footer {
  display: flex;
  justify-content: flex-end;
}
.join_the_orchestra [type=submit] {
  position: relative;
  padding: 1rem 0;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  border: 0;
  background-color: #fff;
  border-radius: 0.125rem;
  width: 12rem;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
}
.join_the_orchestra [type=submit]::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.5rem;
  width: 2rem;
  height: 100%;
  top: 100%;
  transition: all 0.5s;
  background: transparent url("../img/logo_small.svg") 50% 50%/2rem 2rem no-repeat;
  animation: nav_hover_rotate 1.5s linear 0s infinite forwards;
}
.join_the_orchestra [type=submit]:hover {
  background-color: #f3f3f3;
}
.join_the_orchestra [type=submit]:hover::after {
  top: 0;
}

h2.sponsors_title {
  padding: 3rem 1rem 0;
}
h2.sponsors_title span {
  color: #860000;
}

.sponsors {
  display: grid;
  gap: 1rem;
  grid-template-columns: 100%;
  padding-bottom: 4rem;
}
@media screen and (min-width: 48rem) {
  .sponsors {
    grid-template-columns: 50% 50%;
  }
}
.sponsors .sponsor {
  padding: 1rem;
  border: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.sponsors .sponsor .sponsor_name {
  text-align: center;
  text-transform: uppercase;
}
.sponsors .sponsor .sponsors_logo {
  height: 20rem;
  display: flex;
}
.sponsors .sponsor .sponsors_logo img {
  margin: auto;
  max-width: 50%;
  max-height: 20rem;
  width: auto;
  height: auto;
}
.sponsors .sponsor .sponsor_description {
  font-size: 0.75rem;
  text-align: center;
}
.sponsors .sponsor a {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

/*# sourceMappingURL=aso.css.map */