/* RESET & GENERAL */


.cf:after {
  content: "";
  clear: both;
  display: block;
}

a {
  color: #28343F;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  list-style: none;
}

html {
  margin: 0;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

body {
  background-color: #FCFDFF;
  color: #28343F;
  margin: 0;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  overflow-y: scroll;
}

.content-area {
  padding-top: 58px;
  padding-bottom: 88px;
}

@media screen and (min-width: 550px) {
  .content-area {
    padding-top: 86px;
    padding-bottom: 76px;
  }
}

@media screen and (min-width: 750px) {
  .content-area {
    padding-top: 110px;
    padding-bottom: 90px;
  }
}


/* HEADER */

header {
  background-color: #FCFDFF;
  border-bottom: 1px solid #DBDCDD;
  display: flex;
  font-family: 'Open Sans', sans-serif;
  height: 40px;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 20;
}

.logo {
  height: 32px;
  padding-left: 4px;
  padding-top: 5px;
}

.menu {
  width: 24%;
  margin-top: 12px;
  min-width: 270px;
  font-size: 10px;
  font-weight: 500;
  box-sizing: border-box;
  height: 24px;
}

.menu-item {
  padding-right: 16px;
  text-transform: uppercase;
  transition: color 0.15s;
  -webkit-transition: color 0.15s;
}

.menu-item:hover {
  color: #bb1f26;
}

.submenu-link:hover .submenu {
  display: block;
  opacity: 1;
}

.submenu-link:hover .menu-item {
  color: #bb1f26;
}

.submenu:hover {
  display: block;
  opacity: 1;
}

.submenu {
  display: none;
  font-size: 10px;
  padding-right: 5px;
  position: absolute;
  opacity: 0;
}

.submenu-item {
  color: #bb1f26;
  padding: 10px;
  padding-top: 0;
}

.submenu-item:hover {
  color: #28343F;
}

@media screen and (min-width: 550px) {
  header {
    height: 58px;
  }

  .logo {
    height: 50px;
    padding-left: 10px;
    padding-top: 5px;
  }

  .menu {
    font-size: 14px;
    margin-top: 18px;
    min-width: 360px;
  }

  .menu-item {
    padding-right: 18px;
  }

  .submenu {
    font-size: 12px;
    padding-right: 5px;
    padding-left: 10px;
  }
}

@media screen and (min-width: 750px) {
  header {
    height: 77px;
  }

  .logo {
    height: 70px;
    padding-left: 10px;
    padding-top: 5px;
  }

  .menu {
    font-size: 20px;
    margin: 26px 20px 0 0;
    min-width: 531px;
    width: 44%;
  }

  .menu-item {
    padding-right: 30px;
  }

  .submenu {
    font-size: 14px;
    padding-bottom: 9px;
    padding-right: 5px;
    padding-left: 10px;
  }
}




/* FOOTER */

footer {
  align-items: center;
  background-color: #bb1f26;
  bottom: 0;
  box-sizing: border-box;
  color: #28343F;
  display: flex;
  flex-wrap: wrap;
  font-family: 'Open Sans', sans-serif;
  font-size: 8px;
  min-height: 50px;
  justify-content: space-between;
  padding: 10px 12px;
  position: fixed;
  width: 100vw;
  z-index: 10;
}

footer section {
  display: flex;
  flex-wrap: wrap;
}

.footer-left {
  width: calc(100% - 108px);
}

.footer-right {
  width: 108px;
}

footer span {
  padding-right: 30px;
}

footer a {
  color: white;
}

footer a:hover {
  color: #EDD;
  font-weight: bold;
}

footer img {
  width: 18px;
  padding-right: 8px;
  padding-top: 4px;
}

@media screen and (min-width: 350px) {
  footer {
    font-size: 10px;
  }
}

@media screen and (min-width: 750px) {
  footer {
    font-size: 12px;
    padding: 0 20px;
  }

  .footer-left {
    width: calc(100% - 188px);
  }

  .footer-right {
    width: 188px;
  }

  footer img {
    width: 26px;
    padding-left: 13px;
  }
}





/* HOME */

.title {
  position: absolute;
  z-index: 1;
  top: calc(24px + 6vw);
  padding: 3vw 20px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  line-height: 0.95;
  font-family: 'Open Sans', sans-serif;
  font-size: 10vw;
  text-transform: uppercase;
  box-sizing: border-box;
}

.title-name {
  font-size: 8vw;
  display: block;
}

.title-red {
  color: #bb1f26;
}

.title-gray {
  color: #bb1f26;
}

.home-banner {
  width: 100%;
}

.home-quote {
  color: #E0C200;
  font-family: 'Open Sans';
  font-weight: 300;
  font-size: 7vw;
  margin: 15vw auto;
  width: 80%;
}

.home-quote-source {
  color: #6D6D6D;
  display: block;
  text-align: right;
  font-family: "Nothing You Could Do";
  font-size: 4vw;
  margin-bottom: 40px;
  margin-top: 20px;
  transform: skew(0deg);
  -webkit-transform: skew(6deg);
}

.home-image {
  display: block;
  margin: 0 auto;
  margin-bottom: 60px;
  width: 80%;
}

@media screen and (min-aspect-ratio: 1/1) {
  .home-quote-source {
    margin-bottom: 60px;
  }
  .home-image {
    display: none;
  }
}

@media screen and (min-width: 550px) {
  .title {
    top: calc(24px + 8vw);
  }

  .home-quote {
    font-size: 3.5vw;
    margin: 0 auto;
    margin-top: 3vw;
  }

  .home-quote-source {
    font-size: 3vw;
  }

}

@media screen and (min-width: 750px) {
  .home-quote {
    font-size: 3vw;
  }

  .home-quote-source {
    font-size: 2.3vw;
  }
}

@media screen and (min-width: 1500px) {
  .home-quote {
    font-size: 3vw;
  }
}



/* GENERAL PAGE TEMPLATE */

.page-title {
  color: #E8C905;
  font-family: 'Open Sans', serif;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 20px;
}

.page-body {
  margin: 0 auto;
  font-family: 'PT Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  width: 84vw;
}

.page-content {
  margin: 0 10%;
}

h3 {
  padding-top: 70px;
  font-size: 20px;
  font-weight: 400;
}

h3:first-of-type {
  padding: 0;
}

h4 {
  font-weight: 400;
}

@media screen and (min-width: 550px) {
  .page-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .page-body {
    font-size: 15px;
  }
}

@media screen and (min-width: 750px) {
  .page-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .page-body {
    font-size: 17px;
    width: 80vw;
  }
}




/* PROGRAMS PAGE */

.programs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.art-of-the-actor {
  background-color: #EFEFEF;
  height: 100%;
  margin-bottom: 10px;
  width: 100%;
}

.programs-grid {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  height: 160px;
  justify-content: space-between;
  width: 100%;
}

.program-card {
  align-items: center;
  background-color: #E8C905;
  border-radius: 2px;
  box-sizing: border-box;
  color: white;
  display: flex;
  font-family: 'Open Sans', serif;
  height: calc(50% - 20px);
  justify-content: center;
  margin: 10px 0;
  text-align: center;
  vertical-align: top;
  width: 30%;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.program-card-full-width {
  background-color: inherit;
  margin: 0;
  width: 100%;
}

.program-card-hidden {
  display: none;
}

.programs-img {
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: brightness(94%);
}

.program-card.clear {
  color: black;
}

.program-card.red {
  background-color: #bb1f26;
}

.program-card.gray {
  background-color: gray;
}

.program-card.black {
  background-color: #101419;
}

.program-card.clear div {
  z-index: 10;
}

.program-card:hover {
  opacity: 0.8;
  cursor: pointer;
}

.program-card.clear:hover {
  cursor: default;
  opacity: 1;
}

.program-card-title {
  font-size: 10.5px;
  margin: 0 10px;
}

.programs-info {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  justify-content: center;
  align-items: flex-start;
  margin: 10px 0;
  width: 100%;
}

.program-description {
  background-color: #EFEFEF;
  box-sizing: border-box;
  max-height: 97%;
  overflow-y: scroll;
  padding: 30px;
  width: 100%;
}

.description-placeholder {
  font-size: 20px;
}

.description-title {
  color: #bb1f26;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.description-header {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.description-section {
  margin-bottom: 20px;
}

.description-section:last-of-type {
  margin-bottom: 0;
}

.description-class-section {
  margin-bottom: 6px;
}

.description-link {
  color: #bb1f26;
}

.description-link:hover {
  font-weight: bold;
}

.register-button {
  background-color: white;
  border-radius: 1px;
  box-sizing: border-box;
  color: #bb1f26;
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 24px;
  padding: 12px 20px;
}

.programs-calendar-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.programs-video {
  height: 235px;
  width: 100%;
}

.programs-calendar {
  background-color: #EFEFEF;
  box-sizing: border-box;
  height: 235px;
  margin-left: 0;
  margin-top: 30px;
  width: 100%;
}

@media screen and (min-width: 380px) {
  .program-card-title {
    font-size: 13px;
  }
}

@media screen and (min-width: 550px) {
  .programs-info {
    font-size: 15px;
  }

  .programs-calendar-section {
    flex-wrap: nowrap;
  }

  .programs-video {
    width: 40%;
  }

  .programs-calendar {
    margin-left: 40px;
    margin-top: 0;
    width: 60%;
  }
}





/* CONTACT PAGE */

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  width: 100%;
}

.contact-grid-item {
  width: 100%;
}

.contact-grid-text {
  margin-left: 10px;
  margin-right: 60px;
}

.contact-section {
  text-align: left;
  margin: 30px 0;
}

.contact-section:first-of-type {
  margin-top: 0;
}

.contact-section span {
  display: block;
}

.contact-section span a {
  color: #bb1f26;
  font-weight: bold;
}

.contact-grid-image {
  display: none;
}

.contact-image-source {
  font-size: 14px;
  text-align: right;
  width: 100%;
}

@media screen and (min-width: 550px) {
  .contact-grid {
    flex-wrap: nowrap;
    font-size: 12px;
    justify-content: space-between;
  }

  .contact-grid-item {
    width: 50%;
  }

  .contact-grid-text {
    margin-left: 0;
    margin-right: 20px;
  }

  .contact-grid-image {
    display: block;
    width: 40%;
  }

  .contact-image {
    height: calc(60vw / 1.36);
    width: 100%;
  }
}

@media screen and (min-width: 750px) {
  .contact-grid {
    font-size: 17px;
  }

  .contact-grid-text {
    margin-right: 60px;
  }
}





/* PHILOSOPHY / STUDIO */

.page-section {
  padding: 20px;
  margin-bottom: 10px;
}

.page-section p {
  margin-top: 22px;
  margin-bottom: 0;
}

.page-section p:first-of-type {
  margin-top: 0;
}

.page-section-gray {
  background-color: #EFEFEF;
}

.page-section-clear {
  padding-top: 0;
}

.section-header {
  color: #bb1f26;
  font-size: 20px;
  margin-bottom: 14px;
}

@media screen and (min-width: 550px) {
  .page-section {
    padding: 30px;
  }

  .section-header {
    font-size: 23px;
    margin-bottom: 16px;
  }
}

@media screen and (min-width: 750px) {
  .page-section {
    padding: 40px;
  }

  .section-header {
    font-size: 26px;
    margin-bottom: 20px;
  }
}




 /* PHILOSOPHY */

.phil-quote {
  color: #bb1f26;
  font-family: "Open Sans";
  font-weight: 300;
  font-size: 16px;
}

.phil-quote-source {
  text-align: right;
}

.phil-intro-grid {
  display: flex;
  flex-wrap: wrap;
}

.phil-intro-text {
  width: 100%;
}

.phil-intro-video {
  margin-bottom: 30px;
  width: 100%;
}

.phil-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.phil-image-grid {
  display: flex;
  flex-wrap: wrap;
}

.phil-img {
  box-sizing: border-box;
  height: 100%;
  padding: 0 5px;
  margin-bottom: 10px;
  width: 50%;
}

.phil-bio-name {
  color: #bb1f26;
}

.phil-book-link {
  color: #bb1f26;
}

.phil-video-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 40px;
}

.phil-video {
  height: auto;
  width: 100%;
}

.phil-video-description {
  padding-top: 20px;
  text-align: center;
  width: 100%;
}

.phil-video-attribution {
  margin-top: 20px;
  padding: 0 20px;
  width: 40%;
}

.phil-video-attribution-image {
  width: 100%;
}

@media screen and (min-width: 550px) {
  .phil-quote {
    font-size: 19px;
  }

  .phil-intro-grid {
    flex-wrap: nowrap;
  }

  .phil-intro-video {
    height: 167px;
    float: right;
    margin: 0 0 30px 30px;
    width: 300px;
  }

  .phil-img {
    box-sizing: border-box;
    height: 100%;
    padding: 25px 15px;
    width: 25%;
  }

  .phil-video-section {
    flex-wrap: nowrap;
    margin-top: 60px;
  }

  .phil-video {
    width: 60%;
  }

  .phil-video-attribution {
    margin-top: 0;
    width: 40%;
  }
}

@media screen and (min-width: 750px) {
  .phil-quote {
    font-size: 22px;
  }

  .phil-intro-video {
    height: 190px;
    width: 340px;
  }

}




/* STUDIO */

.studio-greeting {
  color: #bb1f26;
  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: 300;
  margin: 20px auto;
}

.group {
  margin-top: 22px;
  margin-bottom: 0;
}

.wide-page-section {
  padding: 30px 0;
}

.studio-video {
  float: left;
  margin-right: 0;
  margin-bottom: 20px;
  width: 100%;
}

.studio-video-text {
  display: block;
}

.studio-link {
  color: #bb1f26;
  font-weight: bold;
}

.studio-page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.page-nav-item {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  width: 31%;
  position: relative;
}

.page-nav-item img {
  filter: brightness(80%);
  width: 100%;
}

.page-nav-item label {
  align-items: center;
  color: #FCFDFF;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 4.5vw;
  justify-content: center;
  height: 100%;
  position: absolute;
  text-shadow: 2px 2px 2px black;
  width: 100%;
  z-index: 1;
}

.studio-quote {
  font-size: 16px;
}

.studio-quote-source {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 24px;
  padding-top: 10px;
}

@media screen and (min-width: 550px) {
  .studio-greeting {
    font-size: 30px;
  }

  .studio-video {
    height: 167px;
    margin-right: 14px;
    margin-bottom: 0;
    width: 300px;
  }

  .studio-page-nav {
    padding-top: 50px;
  }

  .page-nav-item label {
    height: 100%;
    width: 100%;
  }

  .studio-quote {
    font-size: 22px;
  }
}

@media screen and (min-width: 750px) {
  .studio-video {
    height: 222px;
    margin-right: 14px;
    margin-bottom: 0;
    width: 400px;
  }

  .page-nav-item label {
    font-size: 3vw;
    height: 100%;
    width: 100%;
  }
}




/* LENARD */

.lenard-quote {
  font-family: "Encode Sans Expanded";
  font-weight: 100;
  font-size: 16px;
}

.lenard-attribution {
  display: flex;
  font-family: "Nothing You Could Do";
  font-weight: 600;
  font-size: 22px;
  justify-content: flex-end;
}

.image-float {
  margin-bottom: 20px;
  width: 100%;
}

.lenard-grid {
  background-color: #EFEFEF;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
  padding: 30px;
}

.lenard-quote-section {
  width: 100%;
}

.lenard-image-section {
  margin: 0 auto;
  margin-top: 30px;
  width: 55%;
}

.lenard-image {
  width: 100%;
}

.lenard-image-source {
  font-size: 8px;
  float: right;
}

.lenard-chart-container {
  margin-top: 40px;
}

.section-sub-header {
  margin: 0;
  margin-bottom: 18px;
}

.lenard-chart {
  display: flex;
  flex-wrap: wrap;
  font-size: 3vw;
}

.chart-image {
  height: 80%;
  margin: 20px auto;
  width: 80%;
}

.chart-terms {
  padding: 0 10px;
}

.chart-term {
  border: 1px solid #28343F;
  cursor: pointer;
  display: inline-block;
  margin: 3px;
  padding: 2px 10px;
}

.chart-definition {
  background-color: #EFEFEF;
  border-radius: 3px;
  padding: 20px;
  margin-top: 16px;
}

@media screen and (min-width: 550px) {
  .image-float {
    float: left;
    margin: 0 30px 20px 0;
    width: 300px;
  }

  .lenard-chart {
    font-size: 2.3vw;
  }

  .lenard-quote {
    font-size: 26px;
  }
}

@media screen and (min-width: 750px) {
  .lenard-grid {
    flex-wrap: nowrap;
  }

  .lenard-quote-section {
    width: 65%;
  }

  .lenard-image-section {
    width: 28%;
  }

  .lenard-chart {
    flex-wrap: nowrap;
    font-size: 1.55vw;
    justify-content: space-between;
  }

  .chart-image {
    height: 45%;
    margin: 0;
    width: 45%;
  }

  .chart-explanation {
    width: 45%;
  }
}




/* FACULTY */

.faculty-grid {
  display: flex;
  flex-wrap: wrap;
}

.faculty-card {
  box-sizing: border-box;
  padding: 30px;
  padding-bottom: 30px;
  width: 100%;
}

.faculty-img {
  float: left;
  margin: 0 10px 5px 0;
  width: 100px;
}

.faculty-name {
  color: #bb1f26;
  font-size: 24px;
  margin-bottom: 14px;
}

@media screen and (min-width: 550px) {
  .faculty-img {
    width: 150px;
  }
}



/* FRIENDS */

.map-text {
  font-size: 16px;
  margin-bottom: 10px;
}

#map {
  margin-bottom: 40px;
  width: 100%;
  height: 56vh;
}

.marker {
  background-image: url('images/mapbox-icon.png');
  background-size: cover;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
}

.mapboxgl-popup {
  max-width: 300px;
}

.map-marker-title {
  font-size: 20px;
  padding: 5px;
  position: relative;
  top: 4px;
}

.mapboxgl-popup-content {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

@media screen and (min-width: 550px) {
  .map-text {
    font-size: 20px;
  }
}
