@import "live-service-banner.css";

:root {
  --keyfont: proxima-nova, sans-serif;
  --corners: 6px;
  --graybg: #eeeeee;
  --dropshadow: drop-shadow(15px 15px 10px rgba(0, 0, 0, 0.1));
  --dark: color: #2a2a2a;
  --fontfam: open-sans, sans-serif;
  --padding-0: 1.25em 1.75em;
  --padding-480: 1.75em 2em;
  --padding-768: 2.5em 3.5em;
  --padding-992: 3em 5em;
  --padding-1200: 3.5em 10em;
  --video-width-0: 100vw;
  --video-width-480: 85vw;
  --video-width-768: 80vw;
  --video-width-992: 75vw;
  --video-width-1200: 70vw;
  --video-width-1600: 60vw;
  font-family: "Open Sans", sans-serif;
}
html{
  font-size: 19px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  background-color: var(--graybg);
}

body > * {
  color: #2a2a2a;
}

a {
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
  /* font-weight: 500; Unset becuase it invalidates strong tags. Set by the wysiwyg editor.*/
}

a:hover, button:hover {
  opacity: 0.9;
}

a:hover,
a:focus {
  color: inherit;
  text-decoration: inherit;
}

img{
  max-width: 100%;
}

h3{
  font-size: 33px;
}

.bcc-row {
  position: relative;
  font-family: open-sans, sans-serif;
  background-color: var(--graybg);
}

.post-password-form{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 30vh;
  text-align: center;
}

.bcc-row h1 {
  font-weight: 600;
  font-family: var(--keyfont);
  margin: 0 0 10px 0;
}
.bcc-row h2 {
  font-weight: 700;
  font-family: var(--keyfont);
  margin-top: 0;
}
.bcc-row h3 {
  font-weight: 500;
  font-family: var(--keyfont);
  margin-top: 0;
}
.bcc-row h4 {
  font-weight: 500;
  font-family: open-sans, sans-serif;
  margin-top: 0;
}

.bcc-button {
  font-family: var(--keyfont);
  font-weight: 600;
  text-transform: none;
  text-align: center;
  line-height: 1;
  margin: 0.5em 0;
  padding: 10px 32px;
  font-size: 20px;
  display: inline-block;
  z-index: 1;
  width: fit-content;
}

.button-dark,
.button-dark:hover,
.button-dark:visited,
.button-dark:focus {
  color: white;
  background-color: rgba(42, 42, 42, 1);
}

.button-light,
.button-light:hover,
.button-light:visited,
.button-light:focus {
  color: rgba(42, 42, 42, 1);
  background-color: white;
}

.bcc-button-group {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 1em;
}
.bcc-button-group a {
  width: 100% !important;
  text-align: center;
}




.bcc-hero-component{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  position: relative;
}
.bcc-hero-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}
.bcc-hero-component img{
    margin: 80px 0;
    object-fit: contain;
}
.bcc-hero-component h1{
    font-weight: 600;
    margin: 0;
    color: #ffff;
    margin-bottom: 0.25em;
    font-family: var(--keyfont);
}
.bcc-hero-component h2{
    font-weight: 600;
    margin: 0;
    color: #ffff;
    font-family: open-sans,sans-serif;
    line-height: 1.25;
}


.bcc-locations{
  padding: 1em;
  display: grid;
  grid-auto-flow: dense;
  grid-gap: 1.5em;
}

.bcc-locations .bcc-location{
	background: white;
	justify-content: space-between;
	display: flex;
	flex-direction: column;
}
.bcc-locations .bcc-location p{
	margin: 0;
}
.bcc-locations .bcc-location-name{
	height: 150px;
	justify-content: center;
	align-items: center;
	display: flex;
}
.bcc-locations .bcc-location-name p{
	color: white;
	text-transform: uppercase;
	font-size: 1.4em;
	font-family: var(--keyfont);
	font-weight: 600;
}

.bcc-locations .bcc-location-info{
	padding: 1em;
}



.bcc-locations .bcc-location-services{
	margin-bottom: 10px;
}


.bcc-locations .campus-socials{
	display: flex;
	justify-content: center;
	align-items: center;
	color:white;
	background-color: rgba(42, 42, 42, 1);
}
.bcc-locations .campus-socials a{
	background: none;
	margin: 10px;
	font-size: 1.1em;
	color: white;
}

@media screen and (min-width: 0px) {
  .bcc-row h1 {
    font-size: 2em;
    line-height: 1;
  }
  .bcc-row {
    padding: var(--padding-0);
  }
  .bcc-bg-attach{
    background-attachment: unset !important;
  }
  .bcc-hero-component{
		background-attachment: unset !important;
	}
  .bcc-hero-content{
    max-width: 300px;
  }
  .bcc-hero-component h1 {
    font-size: 3em;
  }
  .bcc-hero-component h2{
    font-size: 1em;
  }
  .bcc-hero-component img{
    max-width: 90%;
  }
  .bcc-locations{
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .bcc-locations .bcc-location{
    max-width: unset;
  }
}
@media screen and (min-width: 480px) {
  .bcc-row {
    padding: var(--padding-480);
  }
  .bcc-hero-content{
      max-width: 400px;
  }
  .bcc-hero-component h1 {
      font-size: 3.5em;
  }
  .bcc-hero-component h2{
      font-size: 1.1em;
  }
}
@media screen and (min-width: 768px) {
  .bcc-row h1 {
    font-size: 2.5em;
  }
  .bcc-row {
    padding: var(--padding-768);
  }
  .bcc-hero-content{
    max-width: 600px;
  }
  .bcc-bg-attach{
    background-attachment: fixed !important;
  }
  .bcc-hero-component{
    background-attachment: fixed !important;
  }
  .bcc-hero-component h1 {
    font-size: 4.5em;
  }
  .bcc-hero-component h2{
    font-size: 1.2em;
  }
  .bcc-hero-component img{
    max-width: 800px;
  }
  .bcc-locations{
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .bcc-locations .bcc-location{
    max-width: 350px;
  }
}
@media screen and (min-width: 992px) {
  .bcc-row {
    padding: var(--padding-992);
  }
  .bcc-hero-component h1 {
    font-size: 5em;
  }
  .bcc-hero-component h2{
    font-size: 1.3em;
  }
}
@media screen and (min-width: 1200px) {
  .bcc-row {
    padding: var(--padding-1200);
  }
}


